Browse Source

Merge branch 'master-new-wgg' of wugg/phpstock into master-new

wugg 2 years ago
parent
commit
7a5cf27047

+ 2 - 3
app/admin/controller/CompanyCatProfit.php

@@ -249,11 +249,10 @@ class CompanyCatProfit extends Base
         $list = Db::name('company_cat_profit')
             ->alias('a')
             ->leftJoin('cat b', 'b.id=a.cat_id')
-//            ->leftJoin('cat c', 'c.id=b.pid')
-//            ->leftJoin('cat d', 'd.id=c.pid')
-            ->field('a.id,b.search cat_name,a.cat_id,a.rate,a.order_rate,a.money_rate,a.low_rate,a.sale_rate,a.status')
+            ->field('a.id,b.search cat_name,a.cat_id,a.rate,a.order_rate,a.money_rate,a.low_rate,a.sale_rate,a.status,b.pid,a.cat_id is_gold')
             ->where($where)
             ->order(['a.id' => 'desc'])
+            ->withAttr("is_gold",function ($value){ return cat_is_gold($value);})
             ->page($param['page'], $param['size'])
             ->select()
             ->toArray();

+ 10 - 9
app/admin/controller/Consult.php

@@ -1663,16 +1663,15 @@ class Consult extends Base
         if($status===''){
             return error_show(1005,"参数status不能为空");
         }
-//  $catinfo = Db::name("cat")->where(["id"=>$bids['cat_id']])->find();
-
-        $tmp = Db::name('consult_order')
+       $adjunct = isset($this->post['adjunct'])&& $this->post['adjunct']!=='' ? trim($this->post['adjunct']):"";
+	   $tmp = Db::name('consult_order')
             ->field('id,companyNo,platform_code')
             ->where(['is_del'=>0,'zxNo'=>$bids['zxNo']])
             ->findOrEmpty();
 
         $catinfo = get_budget($bids['cat_id'],$tmp['companyNo']??'',$tmp['platform_code']??0,true);
 
-        $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
+//        $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
         $rate = isset($catinfo['rate']) ? $catinfo['rate']/100:0; //业务主管利率
         if($bids['is_gold_price']==1){
             $gold = Db::name("gold_price1")->where(["type"=>$bids['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
@@ -1698,6 +1697,7 @@ class Consult extends Base
         if($status==1){
 			    if($info['after_price']<$rate_price){
                     $info['status']=3;
+                  if($adjunct=='')  return error_show(1005,"越线通过附件不能为空");
                 }
         }
         $remark = isset($this->post['remark'])&& $this->post['remark']!=""?trim($this->post['remark']):"";
@@ -1707,8 +1707,9 @@ class Consult extends Base
         try{
             $examinfo = isset($info['exam_info'])&&$info['exam_info']!="" ? json_decode($info['exam_info'],true):[];
             $examinfo[]=["status"=>$status,"info_status"=>$ra_status,"remark"=>$remark,"createrid"=>$createrid, "creater"=>$creater];
-//            $info['status'] =$status;
+
             $info['remark'] =$remark;
+            $info['adjunct'] =$adjunct;
             $info['exam_info']=json_encode($examinfo) ;
             $info['updatetime'] =date("Y-m-d H:i:s");
             $up =Db::name("bargain_order")->save($info);
@@ -1722,7 +1723,7 @@ class Consult extends Base
                 ], "YJD", $info['status'], $info);
                 $process=["order_code"=>$bargainNo,"order_id"=>$info['id'],"order_status"=>$info['status'],"order_type"=>'YJD',"before_status"=>$ra_status,'holder_id'=>$info['createrid']];
                 ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname],$process);
-                if($info['status']==1||$info['status']==3){
+                if($info['status']==1||$info['status']==2||$info['status']==3){
                     $bidstatus=$bids['status'];
                     $bids['status']=5;
                        if($info['status']==1||$info['status']==3){
@@ -1731,7 +1732,7 @@ class Consult extends Base
                                $bids['sale_cost_fee'] = $info['cost_after_price'];
                                $bids['gold_price'] =isset($gold["price"])?$gold["price"]:0;
                            }
-                       }
+                       }else  $bids['remark'] = $remark;
                     $bids['updatetime']=date("Y-m-d H:i:s");
                     $up =Db::name("consult_bids")->save($bids);
                     if($up==false){
@@ -2008,7 +2009,7 @@ class Consult extends Base
                 $value['reject'] = Db::name('bargain_order')
                     ->field('id,remark,status')
                     ->where(['infoNo' => $infoNo, 'bidsNo' => $value['bidNo']])
-                    ->whereIn('status', [3,8,11])->order("id desc")
+                    ->whereIn('status', 2)->order("id desc")
                     ->find();
             }
             //产地
@@ -2577,7 +2578,7 @@ class Consult extends Base
                 $value['reject'] = Db::name('bargain_order')
                     ->field('id,remark,status')
                     ->where(['infoNo' => $infoNo, 'bidsNo' => $value['bidNo']])
-                    ->whereIn('status', [3, 8, 11])->order("id desc")
+                    ->whereIn('status', 2)->order("id desc")
                     ->find();
             }
             //产地

+ 1 - 1
app/admin/controller/Goodup.php

@@ -1826,7 +1826,7 @@ class Goodup extends Base
 		                if(empty($post['good_ladder']))throw new \Exception("商品阶梯价不能为空");
 		                foreach ($post['good_ladder'] as $value){
 		                	     $lemp=[];
-				                $value["id"]?$lemp['id']=$value['id']:$lemp['addtime'] = date("Y-m-d H:i:s");
+				                isset($value["id"])?$lemp['id']=$value['id']:$lemp['addtime'] = date("Y-m-d H:i:s");
 				                $lemp['skuCode']=$platform['skuCode'];
 				                $lemp['min_num'] = $value['min_num'];
 				                $lemp['max_num'] = 0;

+ 53 - 23
app/admin/controller/OrderOutChild.php

@@ -66,6 +66,7 @@ class OrderOutChild extends Base
             'order_type' => '',
             'relaComNo' => '',
             'use_type' => '',
+            'IsByMe' => '0',
         ], 'post', 'trim');
 
         $where = [['a.is_del', '=', 0]];
@@ -88,32 +89,47 @@ class OrderOutChild extends Base
         if ($param['relaComNo'] != '') $where[] = ['a.companyNo', '=', $param['relaComNo']];
         if ($param['use_type'] !== '') $where[] = ['p.use_type', '=', $param['use_type']];
 
-        $condition = '';
+        $condition = '1=1';
+        if($param['IsByMe']==1)$condition = '1=0';
         //只有level2的账号过滤数据权限
         if ($this->level == 2) {
-
             //库管只能看到库存品订单,供应商负责人只能看到非库存品订单
-
             //是否是仓库管理员
             $tmp = Db::name('warehouse_info')->field('id')->where(['is_del' => 0, 'contactor' => $this->uid])->findOrEmpty();
 
             //库管看到所有的库存品发货申请单
-            if (!empty($tmp)) $condition .= " a.order_type=1 AND c.contactor=" . $this->uid;
+            if (!empty($tmp)) $condition .= " or (a.order_type=1 AND c.contactor=" . $this->uid.")";
             else {
-                $role = $this->checkDataShare();
-                if (!empty($role[DataGroupModel::$type_全部])) {
-                    if ($condition != '') $condition .= " or ";
-                    $condition .= " a.apply_id in (" . implode(',', $role[DataGroupModel::$type_全部]) . ")";
-                }
+            	if($param['IsByMe']==0){
+	                 $role = $this->checkDataShare();
+	                if (!empty($role[DataGroupModel::$type_全部])) {
+//	                    if ($condition != '') $condition .= " or ";
+	                    $condition .= " or (a.apply_id in (" . implode(',', $role[DataGroupModel::$type_全部]) . "))";
+	                }
+            	}
+
             }
             $person_supplier = Db::connect('mysql_sys')
                 ->name('supplier')
                 ->where(['is_del' => 0, 'personid' => $this->uid])
                 ->column('code');
             if ($person_supplier) {
-                if ($condition != '') $condition .= " or ";
-                $condition .= "(a.order_type<>1 and a.supplierNo in ('" . implode('\',\'', $person_supplier) . "'))";
+            	if($param['IsByMe']==1){
+            		$suppe = checkHasAccountBySupplierNos($person_supplier);
+            		$suppAcco =array_diff($person_supplier,array_keys($suppe));
+		            $person_supplier= $suppAcco;
+            	}
+                $condition .= " or (a.order_type<>1 and a.supplierNo in ('" . implode('\',\'', $person_supplier) . "'))";
             }
+        }
+         if ($this->level == 3 && $param['IsByMe']==1) {
+
+         	 //是否是仓库管理员
+            $tmp = Db::name('warehouse_info')->field('id')->where(['is_del' => 0, 'contactor' => $this->uid])->findOrEmpty();
+             //库管看到所有的库存品发货申请单
+            if (!empty($tmp)) $condition .= " or (a.order_type=1 AND c.contactor=" . $this->uid.")";
+             $condition .= " or (a.order_type <>1 )";
+
         }
 
         $count = Db::name('order_out_child')
@@ -176,6 +192,7 @@ class OrderOutChild extends Base
             'order_type' => '',
             'relaComNo' => '',
             'use_type' => '',
+            'IsByMe' => '0',
         ], 'post', 'trim');
 
         $where = [['a.is_del', '=', 0]];
@@ -197,33 +214,46 @@ class OrderOutChild extends Base
         if ($param['order_type'] != '') $where[] = ['a.order_type', '=', $param['order_type']];
         if ($param['relaComNo'] != '') $where[] = ['a.companyNo', '=', $param['relaComNo']];
         if ($param['use_type'] !== '') $where[] = ['p.use_type', '=', $param['use_type']];
-
-        $condition = '';
+        $condition = '1=1';
+        if($param['IsByMe']==1)$condition = '1=0';
         //只有level2的账号过滤数据权限
         if ($this->level == 2) {
-
             //库管只能看到库存品订单,供应商负责人只能看到非库存品订单
-
             //是否是仓库管理员
             $tmp = Db::name('warehouse_info')->field('id')->where(['is_del' => 0, 'contactor' => $this->uid])->findOrEmpty();
 
             //库管看到所有的库存品发货申请单
-            if (!empty($tmp)) $condition .= " a.order_type=1 AND c.contactor=" . $this->uid;
+            if (!empty($tmp)) $condition .= " or (a.order_type=1 AND c.contactor=" . $this->uid.")";
             else {
-                $role = $this->checkDataShare();
-                if (!empty($role[DataGroupModel::$type_全部])) {
-                    if ($condition != '') $condition .= " or ";
-                    $condition .= " a.apply_id in (" . implode(',', $role[DataGroupModel::$type_全部]) . ")";
-                }
+            	if($param['IsByMe']==0){
+	                 $role = $this->checkDataShare();
+	                if (!empty($role[DataGroupModel::$type_全部])) {
+//	                    if ($condition != '') $condition .= " or ";
+	                    $condition .= " or (a.apply_id in (" . implode(',', $role[DataGroupModel::$type_全部]) . "))";
+	                }
+            	}
+
             }
             $person_supplier = Db::connect('mysql_sys')
                 ->name('supplier')
                 ->where(['is_del' => 0, 'personid' => $this->uid])
                 ->column('code');
             if ($person_supplier) {
-                if ($condition != '') $condition .= " or ";
-                $condition .= "(a.order_type<>1 and a.supplierNo in ('" . implode('\',\'', $person_supplier) . "'))";
+            	if($param['IsByMe']==1){
+            		$suppe = checkHasAccountBySupplierNos($person_supplier);
+            		$suppAcco =array_diff($person_supplier,array_keys($suppe));
+		            $person_supplier= $suppAcco;
+            	}
+                $condition .= " or (a.order_type<>1 and a.supplierNo in ('" . implode('\',\'', $person_supplier) . "'))";
             }
+        }
+         if ($this->level == 3 && $param['IsByMe']==1) {
+
+         	 //是否是仓库管理员
+            $tmp = Db::name('warehouse_info')->field('id')->where(['is_del' => 0, 'contactor' => $this->uid])->findOrEmpty();
+             //库管看到所有的库存品发货申请单
+            if (!empty($tmp)) $condition .= " or (a.order_type=1 AND c.contactor=" . $this->uid.")";
+
         }
 
         $list = Db::name('order_out_child')

+ 5 - 0
app/admin/controller/Purchin.php

@@ -1951,6 +1951,9 @@ class Purchin extends Base
 	        		];
 	        	$up=Db::name("purchease_in")->where($info)->update($upsend);
 	        	if($up==false) throw new \Exception("入库失败");
+	        	$order = ["order_code"=>$post['wsm_in_code'],"status"=>2,"action_remark"=>'',"action_type"=>"status"];
+	        	 ActionLog::logAdd(['id'=>$this->uid,'nickname'=>$this->uname],$order,"RKD", $info['status'], $info);
+	        	 $cgdstatus=$cgdinfo['status'];
                 $cgdinfo['wsend_num']-=$info['send_num'];
                 $cgdinfo['send_num']+=$info['send_num'];
                 $cgdinfo['th_num']+=$info['send_num'] - $post['wsm_num'];
@@ -1960,6 +1963,8 @@ class Purchin extends Base
                 $cgdinfo['updatetime']=date("Y-m-d H:i:s");
                 $upOrder=Db::name("purchease_order")->save($cgdinfo);
                 if($upOrder==false)throw new \Exception("入库失败");
+                $order = ["order_code"=>$info['cgdNo'],"status"=>$cgdinfo['status'],"action_remark"=>'',"action_type"=>"status"];
+                ActionLog::logAdd(['id'=>$this->uid,'nickname'=>$this->uname],$order,"RKD",$cgdstatus, $cgdinfo);
                     $good['wait_in_stock']-=$info['send_num'];
                 	$good['usable_stock']+=$post['wsm_num'];
                 	$good['total_stock']=$good['usable_stock']+$good['wait_out_stock'];

+ 6 - 1
app/admin/controller/Reorder.php

@@ -509,6 +509,8 @@ class Reorder extends Base
 
         $use_type = $this->post['use_type']??'';
         if($use_type!=='') $where[]=['p.use_type','=',$use_type];
+        $order_type = $this->post['order_type']??'';
+          if($order_type!=='') $where[]=['sr.order_type','=',$order_type];
 //        $customer_code = trim($this->post['customer_code']??'');
 //        $where[]=['b.customer_code', "like", "%{$customer_code}%"];
 
@@ -1511,7 +1513,8 @@ class Reorder extends Base
         if ($order['wsend_num'] != $order['good_num']) {
             return json_show(1005, "订单未发货数量与总数不等,无法全退");
         }
-        $retrun = Db::name("sale_return")->where(["orderCode" => $orderCode, "is_del" => 0, "status" => [1, 9, 8, 10, 11, 12]])->count('id');
+        $retrun = Db::name("sale_return")->where(["orderCode" => $orderCode, "is_del" => 0, "status" => [1, 2, 7,9,
+        10,8,11,12]])->count('id');
 
         if ($retrun > 0) {
             return json_show(1005, "存在退货订单数据");
@@ -1946,6 +1949,8 @@ class Reorder extends Base
             if ($value['addr_code'] != '') {
                 $value['addr_code_cn'] = GetAddr($value['addr_code']);
             }
+            $child =Db::name("order_out_child")->where(["outCode"=>$value["outCode"],"status"=>[1,2,3],"is_del"=>0])->findOrEmpty();
+            $value["is_has_child"] = empty($child);
         }
 
         return json_show(0, '获取列表成功', ['count' => $count, 'list' => $list, 'is_sale_return_child_count' => $is_sale_return_child_count]);

+ 47 - 20
app/admin/controller/Sale.php

@@ -630,7 +630,7 @@ class Sale extends Base
             return error_show(1002, "未找到数据");
         }
         $retrun = Db::name("sale_return")->where([["orderCode", "=", $orderCode], ["is_del", "=", 0], ["status", "in", [1, 2, 3,
-            7, 9, 10, 11, 12]]])->count('id');
+            7, 9,8, 10, 11, 12]]])->count('id');
         if ($retrun > 0) {
             return error_show(1005, "存在未完成退货订单数据");
         }
@@ -656,7 +656,7 @@ class Sale extends Base
             $total_num = array_sum(array_column($addrlist, "receipt_quantity"));
             $goodStock_num = Db::name('good_stock')->alias("a")
                         ->leftJoin("warehouse_info b","a.wsm_code=b.wsm_code")
-                        ->where(['a.is_del' => 0, 'a.spuCode' =>$etid['spuCode'],"b.wsm_type"=>[2,5]])->sum('usable_stock');
+                        ->where(['a.is_del' => 0, 'a.spuCode' =>$etid['good_code'],"b.wsm_type"=>[2,5]])->sum('usable_stock');
 
             if ($goodStock_num < $total_num && $etid['is_stock'] == 1) throw new Exception("库存品库存数不足发货");
             foreach ($addrlist as $value) {
@@ -4019,7 +4019,7 @@ class Sale extends Base
             if (isset($temp[$einfo['supNo']])) return json_show(1004, '非供应商账号不能操作');
         }
 
-        $is_reurn = Db::name("sale_return")->where(['orderCode' => $outinfo['orderCode'], 'is_del' => 0])->where("status", "in", [1,2,3,7,9,10])->find();
+        $is_reurn = Db::name("sale_return")->where(['orderCode' => $outinfo['orderCode'], 'is_del' => 0])->where("status", "in", [1,2,3,7,9,10,8,11,12])->find();
         if ($is_reurn != false) {
             return error_show(1002, "销售单存在退货未处理完成");
         }
@@ -5141,32 +5141,31 @@ class Sale extends Base
 
         $list = Db::name('sale')
             ->alias('a')
-            ->field('a.id sale_id,a.good_code,a.wsend_num,a.order_type,a.status sale_status,a.orderCode,a.cat_id,a.good_createrid,c.id cgd_id,c.status cgd_status,c.cgdNo,c.cgder_id')
+            ->field('a.id sale_id,a.good_code,a.good_name,a.wsend_num,a.total_price,a.order_type,a.status sale_status,a.orderCode,a.cat_id,a.good_createrid,c.id cgd_id,c.status cgd_status,c.cgdNo,c.cgder_id')
             ->leftJoin('order_num b', 'b.orderCode=a.orderCode')
             ->leftJoin('purchease_order c', 'c.cgdNo=b.cgdNo')
             ->where(['a.is_del' => 0, 'a.orderCode' => $orderCode])
             ->select()
             ->toArray();
 
-        //贵金属的所有三级分类
-        $cat_temp = Db::name('cat')
-            ->field('id')
-            ->where(['pid' => 6, 'is_del' => 0])
-            ->buildSql();
-        $cat_id = Db::name('cat')
-            ->where('is_del = 0 AND pid IN ' . $cat_temp)
-            ->column('id');
+//        //贵金属的所有三级分类
+//        $cat_temp = Db::name('cat')
+//            ->field('id')
+//            ->where(['pid' => 6, 'is_del' => 0])
+//            ->buildSql();
+//        $cat_id = Db::name('cat')
+//            ->where('is_del = 0 AND pid IN ' . $cat_temp)
+//            ->column('id');
 
         Db::startTrans();
         try {
 
             $date = date('Y-m-d H:i:s');
-
+			$th=[];
             foreach ($list as $sale) {
 
                 if ($sale['sale_status'] == 3) throw new \think\Exception($sale['orderCode'] . '已取消,无法重复操作');
-                if (in_array($sale['cat_id'], $cat_id)) throw new \think\Exception($sale['orderCode'] . '为贵金属,无法取消');
-
+                if (cat_is_gold($sale['cat_id'])) throw new \think\Exception($sale['orderCode'] . '为贵金属,无法取消');
 //                if ($sale['sale_status']!=0) throw new \think\Exception($sale['orderCode'] . '已发货,无法取消');
                 if ($sale['order_type'] == 1) {
                     if ($sale['sale_status'] != 0) throw new \think\Exception($sale['orderCode'] . '已发货,无法取消');
@@ -5175,12 +5174,25 @@ class Sale extends Base
                     $stock = Db::name("good")->where($good)->update(["usable_stock" => $good['usable_stock'] + $sale['wsend_num'], "updatetime" => date("Y-m-d H:i:s")]);
                     if ($stock == false) throw new Exception('商品库存更新失败');
                 }
-				 $fininfo =GetFin("admin/orderischeck",["token"=>$this->post['token'],"orderCode"=>$sale['orderCode'],
-				 "isCgd"=>1]);
+				 $fininfo =GetFin("admin/orderischeck",["token"=>$this->post['token'],"orderCode"=>$sale['orderCode'], "isCgd"=>1]);
 				if(!isset($fininfo['code'])||$fininfo['code']!=0 ){
 					throw new Exception($fininfo['message']??"结算校验失败");
 //					return json_show(1005, $fininfo['message']??"结算校验失败");
 				}
+				$thtemp=[
+					"orderCode"=>$sale["orderCode"],
+					"th_type"=>4,//取消订单
+					"th_num"=>$sale["wsend_num"],
+					"th_fee"=>$sale["total_price"],
+					"th_Code"=>$sale["orderCode"],
+					"cat_id"=>$sale["cat_id"],
+					"good_name"=>$sale["good_name"],
+					"spuCode"=>$sale["good_code"],
+					"apply_id"=>$this->uid,
+					"apply_name"=>$this->uname,
+					"addtime"=>$date
+				];
+				$th[]=$thtemp;
                 //修改状态,添加待办
                 ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], [
                     "order_code" => $sale['orderCode'],//销售单号
@@ -5219,11 +5231,26 @@ class Sale extends Base
             }
             Db::name('sale')
                 ->where(['is_del' => 0, 'id' => array_column($list, 'sale_id')])
-                ->update(['status' => 3, 'updatetime' => $date]);
-
+                ->update([
+                	'status' => 3,
+                	'th_num' => Db::raw("wsend_num"),
+                	'th_fee' =>Db::raw("total_price"),
+                	'wsend_num' =>0,
+                	'send_num' =>Db::raw("wsend_num"),
+                	'send_status' =>3,
+                	'updatetime' => $date
+                	]);
+            Db::name("th_data")->insertAll($th);
             Db::name('purchease_order')
                 ->where(['is_del' => 0, 'id' => array_column($list, 'cgd_id')])
-                ->update(['status' => 4, 'updatetime' => $date]);
+                ->update([
+                	'status' => 4,
+                    'th_num' => Db::raw("wsend_num"),
+                	'th_fee' =>Db::raw("total_fee"),
+                	'wsend_num' =>0,
+                	'send_num' =>Db::raw("wsend_num"),
+                	'send_status' =>3,
+                    'updatetime' => $date]);
 
             $out_list = Db::name('order_out')
                 ->where(['is_del' => 0, 'orderCode' => $orderCode])

+ 4 - 3
app/admin/controller/SupplierClient.php

@@ -689,9 +689,9 @@ class SupplierClient extends Base {
              if ($relaComNo != '') $where[] = ['b.supplierNo', '=', $relaComNo];
         }
 
-        //供应商账号只能看到非库存品的订单
+//        //供应商账号只能看到非库存品的订单
         if ($this->level == 3){
-        	$where[] = ['b.supNo', '=', $relaComNo];
+        	$where[] = ['b.order_type', '<>', 1];
         }
 
         $company_name = isset($this->post['company_name']) && $this->post['company_name'] !== "" ? trim($this->post['company_name']) : "";
@@ -1117,7 +1117,8 @@ class SupplierClient extends Base {
 
         $use_type = $this->post['use_type']??'';
         if($use_type!=='') $where[]=['p.use_type','=',$use_type];
-
+        $order_type = $this->post['order_type']??'';
+          if($order_type!=='') $where[]=['sr.order_type','=',$order_type];
         $count=Db::name("sale_return")
             ->alias('sr')
             ->leftJoin("sale b", "b.orderCode=sr.orderCode AND b.is_del=0")

+ 54 - 270
app/command/good.php

@@ -5,292 +5,76 @@ namespace app\command;
 
 use think\console\Command;
 use think\console\Input;
-use think\console\input\Argument;
-use think\console\input\Option;
 use think\console\Output;
+use think\facade\Cache;
 use think\facade\Db;
 
 class good extends Command
 {
-    private $db;
     protected function configure()
     {   $this->setName('good')
         ->setDescription('the good command');
-
     }
 
     protected function execute(Input $input, Output $output)
     {
-        $this->db =Db::connect("mysql2");
-        $data = $this->Getdata();
-        foreach ($data as $value){
-            $value['spucode']= str_replace("GY","SPU",$value['good_code']);
-            $value['item_code']=str_replace("GY","SKU",$value['good_code']);
-            $isT=Db::name("good")->where("good_code","=",$value['good_code'])->find();
-            $temp=[
-                "spuCode"=>$value['spucode'],
-                "good_code"=>$value['good_code'],
-                "createrid"=>0,
-                "ownerid"=>0,
-                "cgderid"=>0,
-                "creater"=>$value['creater']??"",
-                "owner"=>$value['owner']??"",
-                "cgder"=>$value['cg_saler']==""?"":$value['cg_saler'],
-                "gys_code"=>$value['gys_code'],
-                "license"=>'',
-                "platform_code"=>$value['item']??"",
-                "cat_id"=>$this->getCat($value['sort_f'],$value['sort_s'],$value['sort_t']),
-                "addtime"=>isset($value['addtime'])&&$value['addtime']!=""? $value['addtime']:date("Y-m-d H:i:s"),
-                "updatetime"=>isset($value['updatetime'])&&$value['updatetime']!=""? $value['updatetime']:date("Y-m-d H:i:s"),
-            ];
-            if($isT){
-                Db::name("good")->where($isT)->save($temp);
-            }else{
-                Db::name("good")->save($temp);
-            }
-            $this->addType($value);
-            $this->laddle($value);
-        }
-    }
-    public function laddle($value){
-        if($value['step_num_1']!=""){
-            $temp=[
-                "skuCode"=>$value['item_code'],
-                "platform_code"=>$value['item']??"",
-                "min_num"=>$value['step_num_1'],
-                "max_num"=>$value['step_num_2']??0,
-                "sale_price"=>$value['step_price_1'],
-                "origin_price"=>$value['market_fee'],
-                "ladder"=>1,
-                "addtime"=>date("Y-m-d H:i:s"),
-                "updatetime"=>date("Y-m-d H:i:s")
-            ];
-            $upda= Db::name("good_ladder")->where(["skuCode"=>$value['item_code'],"platform_code"=>$temp['platform_code'],"ladder"=>$temp['ladder']])->find();
-            if($upda){
-                Db::name("good_ladder")->where($upda)->save($temp);
-            }else{
-                Db::name("good_ladder")->save($temp);
-            }
-        }
-        if($value['step_num_2']!=""){
-            $temp=[
-                "skuCode"=>$value['item_code'],
-                "platform_code"=>$value['item']??"",
-                "min_num"=>$value['step_num_2'],
-                "max_num"=>$value['step_num_3']??0,
-                "sale_price"=>$value['step_price_2'],
-                "origin_price"=>$value['market_fee'],
-                "ladder"=>2,
-                "addtime"=>date("Y-m-d H:i:s"),
-                "updatetime"=>date("Y-m-d H:i:s")
-            ];
-            $upda= Db::name("good_ladder")->where(["skuCode"=>$value['item_code'],"platform_code"=>$temp['platform_code'],"ladder"=>$temp['ladder']])->find();
-            if($upda){
-                Db::name("good_ladder")->where($upda)->save($temp);
-            }else{
-                Db::name("good_ladder")->save($temp);
-            }
-        }
-        if($value['step_num_3']!=""){
-            $temp=[
-                "skuCode"=>$value['item_code'],
-                "platform_code"=>$value['item']??"",
-                "min_num"=>$value['step_num_3'],
-                "max_num"=>0,
-                "sale_price"=>$value['step_price_3'],
-                "origin_price"=>$value['market_fee'],
-                "ladder"=>3,
-                "addtime"=>date("Y-m-d H:i:s"),
-                "updatetime"=>date("Y-m-d H:i:s")
-            ];
-            $upda= Db::name("good_ladder")->where(["skuCode"=>$value['item_code'],"platform_code"=>$temp['platform_code'],"ladder"=>$temp['ladder']])->find();
-            if($upda){
-                Db::name("good_ladder")->where($upda)->save($temp);
-            }else{
-                Db::name("good_ladder")->save($temp);
-            }
-        }
-    }
+    	 // 指令输出
+        $sttime = Cache::get("departTips");
+        if($sttime==1) return '';
+        Cache::set("departTips",1,1800);
+    	$daprtid = [52,53,56,57];
+		$data=[];
+		$companyNo='GS2203161855277894' ;
+		$date=date("Y-m-d");
+		$depart= Db::connect("mysql_sys")->name("company_item")->where(["id"=>$daprtid])->column("name","id");
+		$company= Db::connect("mysql_sys")->name("company_info")->where(["companyNo"=>$companyNo])->column("company_name","companyNo");
+		$uid= Db::connect("mysql_sys")->name("account_item")->where(["itemid"=>$daprtid])->column("account_id","itemid");
+		foreach ($depart as $itmeid=>$depart_name){
+			$ist=Db::name("depart_everyday")->where(["depart_id"=>$itmeid,'companyNo'=>$companyNo,"day_time"=>$date])->findOrEmpty();
+			$uidArr =$uid[$itmeid]??[];
+			$sale=$this->GetData($uidArr,$itmeid,$companyNo);
+			if($ist){
+				$ist['sale_total']=$sale['sale_total']??0;
+				$ist['th_total']=$sale['th_total']??0;
+			}else{
+				$ist=[
+					"depart_id"=>$itmeid,
+					"depart_name"=>$depart_name,
+					"day_time"=>date("Y-m-d"),
+					"sale_total"=>$sale['sale_total']??0,
+					"th_total"=>$sale['th_total']??0,
+					"companyNo"=>$companyNo,
+					"companyName"=>$company[$companyNo],
+				];
+			}
 
-    public function getCat($f,$s,$t){
-        if($f==''){
-            return 0;
-        }
-        $first = Db::name("cat")->where(['cat_name'=>$f,"level"=>1])->find();
-        if(empty($first)){
-            return 0;
-        }
-        if($s==""){
-            return $first['id'];
-        }
-        $sec = Db::name("cat")->where(['cat_name'=>$s,"level"=>2,"pid"=>$first['id']])->find();
-        if(empty($sec)){
-            return $first['id'];
-        }
-        if($t==""){
-            return $sec['id'];
-        }
-        $thd = Db::name("cat")->where(['cat_name'=>$t,"level"=>3,"pid"=>$sec['id']])->find();
-        if(empty($thd)){
-            return $sec['id'];
-        }
-        return $thd['id'];
+			Db::name("depart_everyday")->save($ist);
+		}
+		$date=date('Y-m-d H:i:s');
+		$output->writeln("[{$date}] 更新数据成功");
+	}
+	//各部门统计数据
+    public  function GetData($uid,$departid=0,$companyNo){
 
-    }
 
-    public function addType($value){
-        $data=[
-            "skuCode"=>$value['item_code'],
-            "spuCode"=>$value['spucode'],
-            "good_name"=>$value['good_name'],
-            "good_desc"=>'',
-            "good_img"=>'',
-            "good_type"=>$value['good_type'],
-            "good_title"=>'',
-            "barnd"=>$value['brand'],
-            "model"=>$value['model'],
-            "origin_place"=>$value['good_addr'],
-            "unit"=>$value['unit'],
-            "weight"=>$value['good_weight'],
-            "color"=>$value['color']??'',
-            "material"=>$value['material']??'',
-            "craft_desc"=>'',
-            "specs"=>$value['specs'],
-            "good_size"=>"",
-            "packing_size"=>$value['pack_size'],
-            "packing_way"=>"",
-            "packing_specs"=>"",
-            "packing_weight"=>"0",
-            "bar_code"=>$value['bar_code'],
-            "supply_area"=>$value['supply_area'],
-            "packing_img"=>"",
-            "delivery_place"=>$value['shipment'],
-            "delivery_day"=>intval($value['logistics']),
-            "market_price"=>$value['market_fee'],
-            "warn_stock"=>0,
-            "web_url"=>"",
-            "is_diff"=>$value['is_diff']=="是"?1 :0,
-            "cert_fee"=>$value['cert_fee']??0,
-            "packing_fee"=>$value['packing_fee']??0,
-            "mark_fee"=>$value['mark_fee']??0,
-            "cost_fee"=>$value['cost_fee']??0,
-            "demo_fee"=>0,
-            "noble_metal"=>$value['noble_metal'],
-            "open_fee"=>0,
-            "response_time"=>intval($value['fk_day']),
-            "lead_time"=>intval($value['duration']),
-            "custom_moq"=>intval($value['min_num']),
-            "custome_day"=>0,
-            "sample_day"=>intval($value['sampling_period']),
-            "sample_fee"=>floor($value['sample_fee']),
-            "nake_price"=>$value['nake_fee'],
-            "addtime"=>date("Y-m-d H:i:s"),
-            "updatetime"=>date("Y-m-d H:i:s")
-        ];
-        $ist = Db::name("good_type")->where(["skuCode"=>$data['skuCode']])->find();
-        if($ist){
-            Db::name("good_type")->where($ist)->save($data);
-        }else{
-            Db::name("good_type")->save($data);
-        }
+		$day_total =Db::name("sale")->where([["apply_id","in",$uid],["is_del","=",0],['supplierNo',"=",$companyNo]])->whereDay("addtime","today")
+		->sum('total_price');
+		$day_thtotal=Db::name("th_data")->alias("a")
+		->leftJoin("sale b","a.orderCode=b.orderCode")
+		->where([["a.apply_id","in",$uid],["a.is_del","=",0],['b.supplierNo',"=",$companyNo]])
+		->whereDay("a.addtime","today")->sum('a.th_fee');
+		if($departid==56){
+			$wlb= $this->wlb();
+			$day_total+=$wlb;
+		}
+		return ["sale_total"=>$day_total,"th_total"=>$day_thtotal];
     }
 
-    public function Getplat($name){
-        $plat=Db::name("platform")->where(["paltform_name"=>$name])->find();
-        return isset($plat['paltform_code'])&&$plat['paltform_code']!='' ?$plat['paltform_code']:$name;
-    }
-    public function  Getdata(){
-        $date = date("Y-m-d H:i:s",strtotime("-1 day"));
-        $sql="SELECT
-b.Date1618678149288 as 'addtime',
-b.ShortText1621438752474 as 'good_code',
-b.ShortText1615776172238 as 'item',
-(SELECT 
-    b_.`name` 
-  FROM
-    h_org_user b_ 
-  WHERE b_.id =b.creater) as 'creater',
-		(SELECT 
-    b_.`name` 
-  FROM
-    h_org_user b_ 
-  WHERE b_.id =b.`owner`) as 'owner',
-b.text1615776332933 as 'good_name',
-b.ShortText1622973543024 as 'old_item',
-b.ShortText1618630964434 as 'tkcode',
-b.text1615776271768 as 'item_code',
-b.text1618981719029 as 'spucode',
-b.text1615776440661 as 'model',
-b.text1615776695388 as 'color',
-b.text1615776685415 as 'material',
-b.text1618677034797 as 'technology',
-b.ShortText1615776786473 as 'unit',
-b.text1618677035673 as 'good_type',
-b.text1619509430228 as 'specs',
-b.ShortText1618677119629 as 'is_main',
-b.ShortText1617875730953 as 'is_diff',
-ifnull(b.Number1618677207590,0)  as 'good_weight',
-ifnull(b.Number1619054377997,0)  as 'box_weight',
-b.ShortText1618677229373 as 'box_specs',
-b.text1618677251640 as 'box_size',
-b.text1618677252567 as 'pack_size',
-b.ShortText1618677280883 as 'bar_code',
-b.ShortText1618677293358 as 'good_addr',
-b.ShortText1618677303623 as 'fk_day',
-b.ShortText1618677324610 as 'supply_area',
-b.text1619517580239 as 'shipment',
-ifnull(b.ShortText1615776990102,'') as 'gys_code',
-b.Number1618677463881 as 'min_num',
-b.number1619054436137 as 'order_minnum',
-b.Number1617867853654 as 'duration',
-b.Number1618677510201 as 'sampling_period',
-ifnull(b.Number1618677523586,0) as 'sample_fee',
-ifnull(b.number1615788597819,0)  as 'nake_fee',
-b.number1617867867574 as 'logistics',
-ifnull(b.number1615788674789,0)  as 'logistics_fee',
-ifnull(b.number1615788650916,0)  as 'cert_fee',
-ifnull(b.number1615788639684,0)  as 'packing_fee',
-ifnull(b.number1615788611295,0)  as 'mark_fee',
-ifnull(b.number1617875705335,0)  as 'cost_fee',
-ifnull(b.number1615788686735,0)  as 'unit_price',
-ifnull(b.ShortText1615454226082,'') as 'noble_metal',
-ifnull(b.number1618677641446,0)  as 'metal_weight',
-ifnull(b.Number1616399256021,0)  as 'market_fee',
-b.ShortText1616119282513 as 'wsm_nature',
-b.ShortText1619054472299 as 'is_step',
-b.ShortText1618677768792 as 'tax',
-b.Number1618677857395 as 'step_num_1',
-b.Number1619054496274 as 'step_post_1',
-b.Number1618677862829 as 'step_price_1',
-b.number1618677888101 as 'step_num_2',
-b.number1619054497412 as 'step_post_2',
-b.number1618677890766 as 'step_price_2',
-b.number1618677920417 as 'step_num_3',
-b.number1619054516068 as 'step_post_3',
-b.number1618677922828 as 'step_price_3',
-b.number1618677997457 as 'sale_1',
-b.number1618677998335 as 'sale_2',
-b.number1618678013601 as 'sale_3',
-b.number1618964483608 as 'sale_other',
-(SELECT 
-    b_.`name` 
-  FROM
-    h_org_user b_ 
-  WHERE b_.id = JSON_EXTRACT (
-      b.StaffSelector1616205980618,
-      '$[0].id'
-    )) as 'cg_saler',
-b.ShortText1618678061783 as 'is_online',
-b.ShortText1618678132819 as 'fund',
-b.ShortText1615802884401 as 'brand',
-b.ShortText1615776612618 as 'sort_f',
-b.text1615776646788 as 'sort_s',
-b.ShortText1618558317611 as 'sort_t',
-b.ShortText1616222832962 as 'supplier',
-b.ShortText1631180192195 as 'change',
-b.modifiedTime as 'updatetime'
- from ibt0b_SPXX b ";
-    $result = $this->db->query($sql);
-    return $result;
+	//网络部数据统计
+    public function wlb(){
+    	$Db=Db::connect("mysql_cxinv");
+    	$day_total =$Db->name("inter_order")->alias("a")->leftjoin("qrd_info b","a.orderCode=b.sequenceNo and b.qrdSource = 10 and  b.is_del = 0")
+    	->whereDay("a.addtime","today")->where("b.companyNo","GS2203161855277894")->sum('totalPrice');
+    	return $day_total;
     }
 }

+ 15 - 2
app/common.php

@@ -185,7 +185,11 @@ function UploadImg($files)
     $files = !is_array($files) ? [$files] : $files;
     try {
         //验证
-        validate(['imgFile' => ['fileSize' => 10240000, 'fileExt' => 'jpg,jpeg,png,bmp,gif', 'fileMime' => 'image/jpeg,image/png,image/gif']])->check(['imgFile' => $files]);
+        validate(['imgFile' => [
+        	'fileSize' => 10240000,
+        	'fileExt' => 'jpg,jpeg,png,bmp,gif',
+        	'fileMime' => 'image/jpeg,image/png,image/gif']
+        	])->check(['imgFile' => $files]);
 
         //文件存放路径
         $root = config('filesystem.disks.public.root') . DIRECTORY_SEPARATOR;
@@ -1511,7 +1515,7 @@ if(!function_exists("cgd_sale_return")){
 		$order =Db::name("order_num")->alias("a")
 		->leftJoin("sale_return b","a.orderCode=b.orderCode and b.is_del=0")
 		->where(["a.cgdNo"=>$cgdNo])
-		->whereIn("b.status",[1,2,3,7,9,10])
+		->whereIn("b.status",[1,2,3,7,8,9,10,11,12])
 		->findOrEmpty();
 		return !empty($order);
 	}
@@ -1691,4 +1695,13 @@ if(function_exists('get_personid_by_supplierNo')==false){
         unset($res);
         return $data;
     }
+}
+//是否是贵金属
+if(function_exists('cat_is_gold')==false){
+    function cat_is_gold($catid,$gold_cat_id=[6]){
+    	    if(in_array($catid,$gold_cat_id)) return true;
+			$catlist =Db::name("cat")->where([["pid","in",$gold_cat_id],["is_del","=",0],["status","=",1]])->column("id");
+			if(empty($catlist))return in_array($catid,$gold_cat_id);
+			else return cat_is_gold($catid,$catlist);
+    }
 }