Good.php 55 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\GoodLog;
  4. use think\App;
  5. use think\db\Raw;
  6. use think\facade\Db;
  7. use think\facade\Validate;
  8. //线上商品
  9. class Good extends Base
  10. {
  11. private $acton=[
  12. "allotsend"=>'调拨发货',
  13. "allotin"=>'调拨入库',
  14. "allotincheck"=>'调拨验货',
  15. 'CGD'=>'采购单',
  16. 'BHD'=>'备库单',
  17. 'FKD'=>'备库反馈单',
  18. 'RKD'=>'入库单',
  19. 'ZXQRD'=>'咨询单',
  20. 'XSQRD'=>'销售单',
  21. 'PDD'=>'盘点单',
  22. 'DBD'=>'调拨单',
  23. 'CKD'=>'出库单',
  24. 'CGTHD'=>'采购退货单',
  25. 'XSTHD'=>'销售退货单',
  26. 'CGGCD'=>'采购工差单',
  27. 'ZXGCD'=>'咨询工差单'
  28. ];
  29. public $noble=[];
  30. public function __construct(App $app)
  31. {
  32. parent::__construct($app);
  33. $this->noble=\think\facade\Config::get("noble");
  34. }
  35. public function list(){
  36. $page = isset($this->post['page']) && $this->post['page'] !==""? intval($this->post['page']):"1";
  37. $size = isset($this->post['size']) && $this->post['size'] !==""? intval($this->post['size']):"10";
  38. $where =[["a.is_del","=",0]];
  39. $cat_id = isset($this->post['cat_id']) && $this->post['cat_id'] !=="" ? trim($this->post['cat_id']):"";
  40. if($cat_id!==""){
  41. $where[]=['a.cat_id',"=",$cat_id];
  42. }
  43. $good_name = isset($this->post['good_name']) && $this->post['good_name'] !=="" ? trim($this->post['good_name']):"";
  44. if($good_name!==""){
  45. $where[]=['a.good_name',"like","%$good_name%"];
  46. }
  47. $skucode = isset($this->post['skucode']) && $this->post['skucode'] !=="" ? trim($this->post['skucode']):"";
  48. if($skucode!==""){
  49. $where [] = ['b.skucode',"like","%$skucode%"];
  50. }
  51. $spucode = isset($this->post['spucode']) && $this->post['spucode'] !=="" ? trim($this->post['spucode']):"";
  52. if($spucode!==""){
  53. $where [] = ['b.spucode',"like","%$spucode%"];
  54. }
  55. $start = isset($this->post['start']) && $this->post['start']!=="" ? $this->post['start']:"";
  56. if($start!==""){
  57. $where[]=['a.addtime',">=",date('Y-m-d H:i:s',strtotime($start))];
  58. }
  59. $end = isset($this->post['end']) && $this->post['end']!=="" ? $this->post['end']:"";
  60. if($end!==""){
  61. $where[]=['a.addtime',"<",date('Y-m-d H:i:s',strtotime($end)+24*3600)];
  62. }
  63. $is_stock = isset($this->post['is_stock']) && $this->post['is_stock'] !=="" ? intval($this->post['is_stock'])
  64. :"";
  65. if($is_stock!==""){
  66. $where[]=['is_stock',"=",$is_stock];
  67. }
  68. $good_type = isset($this->post['good_type']) && $this->post['good_type'] !=="" ? intval($this->post['good_type'])
  69. :"";
  70. if($good_type!==""){
  71. $where[]=['a.good_type',"=",$good_type];
  72. }
  73. $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] !=="" ? trim($this->post['supplierNo'])
  74. :"";
  75. if($supplierNo!==""){
  76. $where[]=['a.supplierNo',"=",$supplierNo];
  77. }
  78. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !=="" ? trim($this->post['companyNo']) :"";
  79. if($companyNo!==""){
  80. $where[]=['a.companyNo',"like","%$companyNo%"];
  81. }
  82. $creater = isset($this->post['creater']) && $this->post['creater'] !=="" ? trim($this->post['creater']):"";
  83. if($creater!==""){
  84. $where[]=['a.creater',"like","%$creater%"];
  85. }
  86. $createrid = isset($this->post['createrid']) && $this->post['createrid'] !=="" ? intval($this->post['createrid']):"";
  87. if($createrid!==""){
  88. $where[]=['a.createrid',"=",$createrid];
  89. }
  90. $status = isset($this->post['status']) && $this->post['status'] !=="" ? intval($this->post['status'])
  91. :"";
  92. if($status!==""){
  93. $where[]=['a.status',"=",$status];
  94. }
  95. $platform_code = isset($this->post['platform_code']) && $this->post['platform_code'] !=="" ? trim($this->post['platform_code'])
  96. :"";
  97. if($platform_code!==""){
  98. //$platform = Db::name("good_platform")->where(["platform_code"=>$platform_code,"is_del"=>0])->column
  99. //("spuCode");
  100. $where[]=["platform_code","=",$platform_code];
  101. }
  102. $plat_code = isset($this->post['plat_code']) && $this->post['plat_code'] !=="" ? trim($this->post['plat_code'])
  103. :"";
  104. if($plat_code!==""){
  105. $where[]=["b.plat_code","like","%$plat_code%"];
  106. }
  107. $exam_status = isset($this->post['exam_status']) && $this->post['exam_status'] !=="" ? intval($this->post['exam_status'])
  108. :"";
  109. if($exam_status!==""){
  110. $where[]=['b.exam_status',"=",$exam_status];
  111. }
  112. $brand_id = isset($this->post['brand_id']) && $this->post['brand_id'] !=="" ? intval($this->post['brand_id'])
  113. :"";
  114. if($brand_id!==""){
  115. $where[]=['a.brand_id',"=",$brand_id];
  116. }
  117. $count = Db::name('good')->alias("a")->leftJoin("good_platform b","a.spuCode=b.spuCode")->where($where)
  118. ->count();
  119. $total = ceil($count / $size);
  120. $page = $page >= $total ? $total : $page;
  121. $list = Db::name('good')
  122. ->alias("a")
  123. ->field("b.skuCode,b.platform_code,b.plat_code,b.id as good_id,a.*,b.addtime,b.updatetime,b.exam_status,gb.createrid purchase_id,gb.creater purchase")//成本表里的创建人,也是线上商品的采购人,为了防止混淆,给creater取个别名
  124. ->leftJoin("good_platform b","a.spuCode=b.spuCode")
  125. ->leftJoin("good_basic gb","gb.spuCode=a.spuCode")
  126. ->where($where)
  127. ->page($page,$size)
  128. ->order("b.addtime desc")
  129. ->select()
  130. ->toArray();
  131. $data=[];
  132. foreach ($list as $value){
  133. $value['cat_info']= made($value['cat_id'],[]);
  134. $platform = Db::name("platform")->where(["id"=>$value['platform_code']])->find();
  135. $value['platform_name'] = isset($platform['platform_name']) ? $platform['platform_name']:"";
  136. $value['platform_code_en'] = isset($platform['platform_code_en']) ? $platform['platform_code_en']:"";
  137. $supplier = Db::name("supplier")->where(["code"=>$value['supplierNo']])->find();
  138. $value['supplier_name'] = isset($supplier['name']) ? $supplier['name']:"";
  139. $brand=Db::name("brand")->where(["id"=>$value['brand_id']])->find();
  140. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  141. $unit = Db::name("unit")->where(["id"=>$value['good_unit']])->find();
  142. $value['unit'] =isset($unit['unit'])?$unit['unit']:"";
  143. $company = Db::name("business")->where(["companyNo"=>$value['companyNo']])->find();
  144. $value['company'] = isset($company['company'])?$company['company']:"";
  145. $value['stock_total'] = Db::name("good_stock")->where(['spuCode'=>$value['spuCode'],"is_del"=>0])->sum("usable_stock");
  146. $value['status']=$value['exam_status'];
  147. $value['exclusive']=makeExcluse($value['is_exclusive']);
  148. $value['good_info_img']=$value['good_info_img'];
  149. $value['good_img']=$value['good_img'];
  150. $spec = Db::name("good_spec")->where(["spuCode"=>$value['spuCode'],"is_del"=>0])->select()->toArray();
  151. $speclist=[];
  152. if(!empty($spec)){
  153. foreach ($spec as $val){
  154. $temp=[];
  155. $temp['spec_id']=$val['spec_id'];
  156. $temp['spec_value_id']=$val['spec_value_id'];
  157. $sp = Db::name("specs")->where(["id"=>$val['spec_id']])->find();
  158. $temp['spec_name']=isset($sp["spec_name"]) ? $sp["spec_name"]:"";
  159. $spv = Db::name("spec_value")->where(["id"=>$val['spec_value_id']])->find();
  160. $temp['spec_value']=isset($spv["spec_value"]) ? $spv["spec_value"]:"";
  161. $speclist[]=$temp;
  162. }
  163. }
  164. $value['specinfo']=$speclist;
  165. $value['noble_name']=isset($value['noble_metal'])&&$value['noble_metal']!=0?$this->noble[$value['noble_metal']] :"";
  166. $data[]=$value;
  167. }
  168. return app_show(0,"获取成功",['list'=>$data,'count'=>$count]);
  169. }
  170. public function info(){
  171. $skucode=isset($this->post['skuCode'])&&$this->post['skuCode']!=""?trim($this->post['skuCode']):"";
  172. if($skucode==""){
  173. return error_show(1005,"参数skuCode不能为空");
  174. }
  175. $good_platform = Db::name("good_platform")->where(['skuCode'=>$skucode,"is_del"=>0])->find();
  176. if($good_platform==false){
  177. return error_show(1004,"未找到商品数据");
  178. }
  179. $data = Db::name("good")->where(["spuCode"=>$good_platform['spuCode'],"is_del"=>0])->find();
  180. if($data==false){
  181. return error_show(1004,"未找到商品数据");
  182. }
  183. $plat =Db::name("platform")->where(["id"=>$good_platform['platform_code']])->find();
  184. $data['skuCode']=$good_platform['skuCode'];
  185. $data['platform_code']=$good_platform['id'];
  186. $data['platform_code_en']=isset($plat['platform_code'])?$plat['platform_code']:"";
  187. $data['platform_name']=isset($plat['platform_name'])?$plat['platform_name']:"";
  188. $data['online_reason']=$good_platform['online_reason'];
  189. $data['online_time']=$good_platform['online_time'];
  190. $data['online_remark']=$good_platform['online_remark'];
  191. $data['exam_status']=$good_platform['exam_status'];
  192. $data['is_online']=$good_platform['is_online'];
  193. $data['plat_code']=$good_platform['plat_code'];
  194. $data['exclusive']=makeExcluse($data['is_exclusive']);
  195. $unit =Db::name("unit")->where(["id"=>$data['good_unit']])->find();
  196. $data['unit'] = isset($unit['unit'])?$unit['unit']:'';
  197. $data['cat_info'] = made($data['cat_id'],[]);
  198. $spec = Db::name("good_spec")->where(["spuCode"=>$good_platform['spuCode'],"is_del"=>0])->select()->toArray();
  199. $supplier = Db::name("supplier")->where(["code"=>$data['supplierNo']])->find();
  200. $data['supplierName'] = isset($supplier['name'])?$supplier['name']:"";
  201. $data['noble_name']=isset($data['noble_metal'])&&$data['noble_metal']!=0?$this->noble[$data['noble_metal']] :"";
  202. $company = Db::name("business")->where(["companyNo"=>$data['companyNo']])->find();
  203. $data['company'] = isset($company['company'])?$company['company']:"";
  204. if($data['brand_id']!=0){
  205. $brand=Db::name("brand")->where(["id"=>$data['brand_id']])->find();
  206. $data["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  207. }else{
  208. $data["brand_name"]="";
  209. $data["brand_id"]="";
  210. }
  211. $data['origin_place_cn']="";
  212. $data['delivery_place_cn']="";
  213. if($data['delivery_place']!==""){
  214. $place = ["provice_code"=>"","city_code"=>"","area_code"=>""];
  215. list($place['provice_code'],$place['city_code'],$place['area_code'])=explode(",",$data['delivery_place']);
  216. $data['delivery_place_cn']=GetAddr(json_encode($place));
  217. }
  218. if($data['origin_place']!==""){
  219. $place = ["provice_code"=>"","city_code"=>"","area_code"=>""];
  220. list($place['provice_code'],$place['city_code'],$place['area_code'])=explode(",",$data['origin_place']);
  221. $data['origin_place_cn']=GetAddr(json_encode($place));
  222. }
  223. $excluse = makeExcluse($data['is_exclusive']);
  224. $data['exclusive']=$excluse;
  225. $data["good_info_img"]=$data['good_info_img']!=""? $data['good_info_img']:[];
  226. $data["good_img"]=$data['good_img']!=""? $data['good_img']:[];
  227. $speclist=[];
  228. if(!empty($spec)){
  229. foreach ($spec as $value){
  230. $temp=[];
  231. $temp['id']=$value['id'];
  232. $temp['spuCode']=$value['spuCode'];
  233. $temp['spec_id']=$value['spec_id'];
  234. $temp['spec_value_id']=$value['spec_value_id'];
  235. $temp['is_del']=$value['is_del'];
  236. $sp = Db::name("specs")->where(["id"=>$value['spec_id']])->find();
  237. $temp['spec_name']=isset($sp["spec_name"]) ? $sp["spec_name"]:"";
  238. $spv = Db::name("spec_value")->where(["id"=>$value['spec_value_id']])->find();
  239. $temp['spec_value']=isset($spv["spec_value"]) ? $spv["spec_value"]:"";
  240. $speclist[]=$temp;
  241. }
  242. }
  243. $data["speclist"]=empty($speclist)?[]:$speclist;
  244. $ladder = Db::name("good_ladder")->where(['skuCode'=>$skucode,"is_del"=>0])->select()->toArray();
  245. $data["ladderlist"]=!empty($ladder)?$ladder:[];
  246. $nakelist = Db::name("good_nake")->where(['spuCode'=>$good_platform['spuCode'],"is_del"=>0])->select()->toArray();
  247. $catinfo = Db::name("cat")->where(["id"=>$data['cat_id']])->find();
  248. // $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  249. $nakearry=[];
  250. if(!empty($nakelist)){
  251. //实时金价
  252. $gold_price = Db::name("gold_price1")->where(["type" => $data['noble_metal'], "status" => 1, "is_del" => 0])->order("addtime desc")->value('price', 0);
  253. foreach ($nakelist as $value){
  254. $value['final_price'] = $value['sale_price'] =$value['nake_total'];
  255. //计算最终售价
  256. if ($data['is_gold_price']) {
  257. //普通商品:直接用财务提交的售价字段;
  258. //贵金属( 商品重量* 最新金价 + 工艺费(财务定价提交的)* 商品重量+包装费+加标费+证书费+产品裸价+其他费用)=商品库商品直接下单的售价
  259. $value['final_price'] = ($data['weight'] * $gold_price + $value['cost_fee'] * $data['weight'] + $value['package_fee'] + $value['mark_fee'] + $value['cert_fee'] + $value['nake_fee'] + $value['other_fee']);
  260. }
  261. $nakearry[] = $value;
  262. }
  263. }
  264. $proof =Db::name("good_proof")->where(["spuCode"=>$good_platform['spuCode'],"is_del"=>0])->order("updatetime desc")->field("id,proof_type,proof_url")->find();
  265. $data['proof'] = isset($proof)&&$proof!=false? $proof:[];
  266. $data["nakelist"]=$nakearry;
  267. //补充采购员字段
  268. //成本表里的创建人,也是线上商品的采购人,为了防止混淆,给creater取个别名
  269. $temp_basic_info = Db::name('good_basic')
  270. ->field('id,createrid purchase_id,creater purchase')
  271. ->where(['spuCode'=>$data['spuCode'],'is_del'=>0])
  272. ->find();
  273. $data['purchase_id'] = $temp_basic_info['purchase_id'];
  274. $data['purchase'] = $temp_basic_info['purchase'];
  275. return app_show(0,"获取成功",$data);
  276. }
  277. public function SetWarn(){
  278. $condition=["is_del"=>0];
  279. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code']):"";
  280. if($wsm_code!=""){
  281. $condition["wsm_code"] = $wsm_code;
  282. }else{
  283. return error_show(1004,"参数wsm_code 不能为空");
  284. }
  285. $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  286. if($type_code!=""){
  287. $condition["good_type_code"] = $type_code;
  288. }else{
  289. return error_show(1004,"参数type_code 不能为空");
  290. }
  291. $good= Db::name("good_stock")->where($condition)->find();
  292. if(empty($good)){
  293. return error_show(1005,"未找到数据");
  294. }
  295. $warn_stock = isset($this->post['warn_stock']) &&$this->post['warn_stock'] !=="" ? intval($this->post['warn_stock']):"";
  296. if($warn_stock===""){
  297. return error_show(1005,"参数warn_stock 不能为空");
  298. }
  299. $good['warn_stock'] = $warn_stock;
  300. $good['updatetime'] = date("Y-m-d H:i:s");
  301. $up= Db::name("good_stock")->save($good);
  302. if($up){
  303. //商品变动日志表,good_log_code字段存储仓库编码
  304. $data = ['good_log_code' => $wsm_code, "stock_id" => $good['id'], "type" => 1, 'stock' => $warn_stock, "stock_name" => "warn_stock"];
  305. GoodLog::LogAdd($this->post['token'],$data,'setwarn');
  306. return app_show(0,"预警库存更新成功");
  307. }else{
  308. return error_show(1005,"预警库存更新失败");
  309. }
  310. }
  311. public function SetStatus(){
  312. $id = isset($this->post['id']) &&$this->post['id'] !=="" ? intval($this->post['id']):"";
  313. if($id===""){
  314. return error_show(1005,"参数id 不能为空");
  315. }
  316. $good= Db::name("good_type")->where(["id"=>$id,"is_del"=>0])->find();
  317. if(empty($good)){
  318. return error_show(1005,"未找到数据");
  319. }
  320. $good['status'] = $good['status']==1?0 :1;
  321. $good['updatetime'] = date("Y-m-d H:i:s");
  322. $msg = $good['status']==1?"下架" :"上架";
  323. $up= Db::name("good_type")->save($good);
  324. return $up ? app_show(0,"商品{$msg}成功"): error_show(1005,"商品{$msg}失败");
  325. }
  326. public function GetStock(){
  327. $condition = [["a.is_del","=",0]];
  328. $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  329. if($type_code!==""){
  330. $condition[]=["a.spuCode","=",$type_code];
  331. }
  332. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code'])
  333. :"";
  334. if($wsm_code!==""){
  335. //$condition["a.wsm_code"]=$wsm_code;
  336. $condition[]=["a.wsm_code","=",$type_code];
  337. }
  338. $suplierNo = isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo'])
  339. :"";
  340. if($suplierNo!==""){
  341. $wsmcode = Db::name("warehouse_info")->where(['supplierNo'=>$suplierNo,"is_del"=>0])->column("wsm_code");
  342. $condition[]=["a.wsm_code","in",$wsmcode];
  343. }
  344. $list = Db::name("good_stock")->alias("a")->join("warehouse_info b","a.wsm_code=b.wsm_code","left")->join("supplier c","b.supplierNo=c.code","left")
  345. ->where($condition)->field("a.id,b.name as wsm_name,c.code,c.name,a.wait_in_stock,a.wait_out_stock,a.usable_stock,a.intra_stock,a.total_stock,a.status,a.warn_stock")->select();
  346. if(empty($list)){
  347. return error_show(1004,"未找到数据");
  348. }
  349. return app_show(0,"获取成功",$list);
  350. }
  351. /**
  352. * @return \think\response\Json|void
  353. * @throws \think\db\exception\DataNotFoundException
  354. * @throws \think\db\exception\DbException
  355. * @throws \think\db\exception\ModelNotFoundException
  356. */
  357. public function GetStockBet(){
  358. $page = isset($this->post['page']) &&$this->post['page'] !=="" ? intval($this->post['page']):1;
  359. $size = isset($this->post['size']) &&$this->post['size'] !=="" ? intval($this->post['size']):10;
  360. $condition = [["is_del","=",0]];
  361. $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  362. if($type_code!==""){
  363. $condition[]=["spuCode","like","%{$type_code}%"];
  364. }
  365. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code'])
  366. :"";
  367. if($wsm_code!==""){
  368. $condition[]=["wsm_code","=",$wsm_code];
  369. }
  370. $suplierNo = isset($this->post['suplierNo']) &&$this->post['suplierNo'] !=="" ? trim($this->post['suplierNo']):"";
  371. if($suplierNo!==""){
  372. $wsmcode = Db::name("warehouse_info")->where(['supplierNo'=>$suplierNo,"is_del"=>0])->column("wsm_code");
  373. $condition[]=["wsm_code","in",$wsmcode];
  374. }
  375. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  376. if ($companyNo !== "") {
  377. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$companyNo,"is_del"=>0])->column("wsm_code");
  378. $condition[]=["wsm_code","in",$wsmcode];
  379. }
  380. $start = isset($this->post['start']) &&$this->post['start'] !=="" ? $this->post['start']:"";
  381. $end = isset($this->post['end']) &&$this->post['end'] !=="" ? $this->post['end']:"";
  382. if($start!=""){
  383. $condition[]=["addtime",">=",$start];
  384. }
  385. if($end!=""){
  386. $condition[]=["addtime","<=",$end];
  387. }
  388. $count = Db::name("good_stock")->where($condition)->count();
  389. $page>=ceil($count/$size) ? $page=ceil($count/$size) :"";
  390. $list = Db::name("good_stock")->where($condition)->page($page,$size)->order("addtime desc")->select();
  391. $data=[];
  392. foreach ($list as $key=>$value){
  393. $temp=[];
  394. if($value['wsm_code']!=""){
  395. $wsm = Db::name("warehouse_info")
  396. ->alias("a")
  397. ->leftJoin("supplier b","a.supplierNo=b.code")
  398. ->leftJoin("business bus","a.companyNo=bus.companyNo")
  399. ->where(['a.wsm_code'=>$value['wsm_code'],"a.is_del"=>0])
  400. ->field("a.name as wsm_name,wsm_code,a.supplierNo,b.name supplierName,a.companyNo,bus.company")
  401. ->find();
  402. }
  403. $temp['wsm_name'] = isset($wsm['wsm_name'])?$wsm['wsm_name']:"";
  404. $temp['wsm_code']=$value['wsm_code'];
  405. $temp['supplier_code']=isset($wsm['supplierNo'])?$wsm['supplierNo']:"";
  406. $temp['supplier_name']=isset($wsm['supplierName'])?$wsm['supplierName']:"";
  407. $temp['company_no']=isset($wsm['companyNo'])?$wsm['companyNo']:"";
  408. $temp['company_name']=isset($wsm['company'])?$wsm['company']:"";
  409. if($value['spuCode']!=""){
  410. $good=Db::name("good")
  411. ->alias('g')
  412. ->field('g.*,b.brand_name,u.unit')
  413. ->where(["g.spuCode"=>$value['spuCode'],"g.is_del"=>0])
  414. ->leftJoin('brand b','b.id=g.brand_id')
  415. ->leftJoin('unit u','u.id=g.good_unit')
  416. ->find();
  417. //规格信息
  418. $spec = Db::name("good_spec")->field('id,spec_id,spec_value_id')->where(["spuCode" => $value['spuCode'], "is_del" => 0])->select()->toArray();
  419. $speclist = [];
  420. if (!empty($spec)) {
  421. foreach ($spec as $val) {
  422. $tmp = [];
  423. $tmp['spec_id'] = $val['spec_id'];
  424. $tmp['spec_value_id'] = $val['spec_value_id'];
  425. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  426. $tmp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  427. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  428. $tmp['spec_value'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  429. $speclist[] = $tmp;
  430. }
  431. }
  432. $temp['specinfo'] = $speclist;
  433. }
  434. $temp['good_code']=isset($good['spuCode'])?$good['spuCode']:"";
  435. // $temp['type_code']=isset($good['type_code'])?$good['type_code']:"";
  436. $temp['good_name']=isset($good['good_name'])?$good['good_name']:"";
  437. $temp['unit']=isset($good['unit'])?$good['unit']:"";
  438. $temp['brand_name']=isset($good['brand_name'])?$good['brand_name']:"";
  439. // $temp['attribute']=isset($good['attribute'])?$good['attribute']:"";
  440. $temp['sort_f']=isset($good['cat_id'])?$good['cat_id']:"";
  441. $temp['cat_info']=isset($good['cat_id'])?made($good['cat_id']):"";
  442. $temp['usable_stock'] = $value['usable_stock'];
  443. $temp['wait_in_stock'] = $value['wait_in_stock'];
  444. $temp['wait_out_stock'] = $value['wait_out_stock'];
  445. $temp['intra_stock'] = $value['intra_stock'];
  446. $temp['total_stock'] = $value['total_stock'];
  447. $temp['warn_stock'] = $value['warn_stock'];
  448. $temp['id'] = $value['id'];
  449. $temp['out_total'] =0;
  450. $temp['in_total'] = 0;
  451. $temp['addtime'] = $value['addtime'];
  452. $data[]=$temp;
  453. }
  454. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  455. }
  456. /**
  457. * @return \think\response\Json|void
  458. * @throws \think\db\exception\DataNotFoundException
  459. * @throws \think\db\exception\DbException
  460. * @throws \think\db\exception\ModelNotFoundException
  461. * @throws \think\exception\DbException
  462. */
  463. public function GetStockWsm(){
  464. $page = isset($this->post['page']) &&$this->post['page'] !=="" ? intval($this->post['page']):1;
  465. $size = isset($this->post['size']) &&$this->post['size'] !=="" ? intval($this->post['size']):10;
  466. $condition = [["gs.is_del","=",0]];
  467. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code']):"";
  468. if($wsm_code!==""){
  469. $condition[]=["gs.wsm_code","=",$wsm_code];
  470. }
  471. $suplierNo = isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']):"";
  472. if($suplierNo!==""){
  473. $wsmcode = Db::name("warehouse_info")->where(['supplierNo'=>$suplierNo,"is_del"=>0])->column("wsm_code");
  474. $condition[]=["gs.wsm_code","in",$wsmcode];
  475. }
  476. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  477. if ($companyNo !== "") {
  478. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$companyNo,"is_del"=>0])->column("wsm_code");
  479. $condition[]=["gs.wsm_code","in",$wsmcode];
  480. }
  481. $build= Db::name("good_stock")
  482. ->alias('gs')
  483. ->where($condition)
  484. ->where('whi.wsm_type','<>',2)//2表示虚拟仓,虚拟仓不参加统计
  485. ->leftJoin('warehouse_info whi','whi.wsm_code=gs.wsm_code AND whi.is_del=0')
  486. ->group("gs.wsm_code")
  487. ->field("gs.wsm_code")
  488. ->buildSql();
  489. $count = Db::table($build." a")->count();
  490. $page>=ceil($count/$size) ? $page=ceil($count/$size) :"";
  491. $list = Db::name("good_stock")
  492. ->alias('gs')
  493. ->where($condition)
  494. ->where('whi.wsm_type','<>',2)//2表示虚拟仓,虚拟仓不参加统计
  495. ->page($page,$size)
  496. ->leftJoin('warehouse_info whi','whi.wsm_code=gs.wsm_code AND whi.is_del=0')
  497. ->group("gs.wsm_code")
  498. ->field("gs.wsm_code,sum(wait_in_stock) wait_in_stock,sum(wait_out_stock) wait_out_stock,sum(usable_stock) usable_stock,sum(intra_stock) intra_stock,sum(warn_stock) warn_stock,sum(total_stock) total_stock")
  499. ->select()
  500. ->toArray();
  501. $data=[];
  502. foreach ($list as $key=>$value){
  503. $temp=[];
  504. if($value['wsm_code']!=""){
  505. $wsm = Db::name("warehouse_info")
  506. ->alias("a")
  507. ->leftJoin("business bus", "bus.companyNo=a.companyNo")
  508. ->leftJoin("supplier b","a.supplierNo=b.code")
  509. ->where(['a.wsm_code'=>$value['wsm_code'],"a.is_del"=>0])
  510. ->field("a.name as wsm_name,wsm_code,a.supplierNo,b.name supplierName,a.companyNo,bus.company")
  511. ->find();
  512. $good = Db::name("good_stock")
  513. ->alias("a")
  514. ->leftJoin("good c","c.spuCode=a.spuCode")
  515. ->where(["a.wsm_code"=>$value['wsm_code'],"a.is_del"=>0,"c.is_del"=>0])
  516. ->select()
  517. ->toArray();
  518. //商品单位和品牌
  519. $good_unit_s = Db::name("unit")->whereIn('id', array_column($good, 'good_unit'))->where('is_del', 0)->column('unit', 'id');
  520. $brands = Db::name("brand")->whereIn('id', array_column($good, 'brand_id'))->where('is_del', 0)->column('brand_name', 'id');
  521. foreach ($good as &$item_good){
  522. //规格信息
  523. $spec = Db::name("good_spec")->field('id,spec_id,spec_value_id')->where(["spuCode" => $item_good['spuCode'], "is_del" => 0])->select()->toArray();
  524. $speclist = [];
  525. if (!empty($spec)) {
  526. foreach ($spec as $val) {
  527. $tmp = [];
  528. $tmp['spec_id'] = $val['spec_id'];
  529. $tmp['spec_value_id'] = $val['spec_value_id'];
  530. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  531. $tmp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  532. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  533. $tmp['spec_value'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  534. $speclist[] = $tmp;
  535. }
  536. }
  537. $item_good['specinfo'] = $speclist;
  538. $item_good['unit'] = $good_unit_s[$item_good['good_unit']]??'';
  539. $item_good['brand_name'] = $brands[$item_good['brand_id']]??'';
  540. $item_good['can'] = made($item_good['cat_id'],[]);
  541. }
  542. }
  543. $temp['wsm_name'] = isset($wsm['wsm_name'])?$wsm['wsm_name']:"";
  544. $temp['wsm_code']=$value['wsm_code'];
  545. $temp['supplier_code']=isset($wsm['supplierNo'])?$wsm['supplierNo']:"";
  546. $temp['supplier_name']=isset($wsm['supplierName'])?$wsm['supplierName']:"";
  547. $temp['company_no']=isset($wsm['companyNo'])?$wsm['companyNo']:"";
  548. $temp['company_name']=isset($wsm['company'])?$wsm['company']:"";
  549. $temp['usable_stock'] = $value['usable_stock'];
  550. $temp['wait_in_stock'] = $value['wait_in_stock'];
  551. $temp['wait_out_stock'] = $value['wait_out_stock'];
  552. $temp['intra_stock'] = $value['intra_stock'];
  553. $temp['total_stock'] = $value['total_stock'];
  554. // $temp['warn_stock'] = $value['warn_stock'];
  555. $temp['child']=isset($good)&&!empty($good) ? $good:[];
  556. $data[]=$temp;
  557. }
  558. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  559. }
  560. public function GetStockGod(){
  561. $page = isset($this->post['page']) &&$this->post['page'] !=="" ? intval($this->post['page']):1;
  562. $size = isset($this->post['size']) &&$this->post['size'] !=="" ? intval($this->post['size']):10;
  563. $condition = [["b.is_del","=",0],["c.usable_stock",">",0]];
  564. $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  565. if($type_code!==""){
  566. $condition[]=["b.spuCode","like","%{$type_code}%"];
  567. }
  568. $count = Db::name("good")->alias("b")
  569. ->join("good_stock c","c.spuCode = b.spuCode","left")
  570. ->where($condition)
  571. ->group("b.spuCode,b.good_name,b.good_unit,b.cat_id,b.craft_desc,b.addtime")
  572. ->count();
  573. $page>=ceil($count/$size) ? $page=ceil($count/$size) :"";
  574. $list = Db::name("good")
  575. ->alias("b")
  576. ->join("good_stock c","c.spuCode = b.spuCode","left")
  577. ->where($condition)
  578. ->field("b.spuCode,b.good_name,b.good_unit,b.brand_id,b.cat_id,b.craft_desc,b.addtime,sum(c.wait_in_stock) wait_in_stock,sum(c.wait_out_stock) wait_out_stock,sum(c.usable_stock) usable_stock,sum(c.intra_stock) intra_stock,sum(c.warn_stock) warn_stock,sum(c.total_stock) total_stock")
  579. ->page($page,$size)
  580. ->order("b.addtime desc")
  581. ->group("b.spuCode,b.good_name,b.good_unit,b.brand_id,b.cat_id,b.craft_desc,b.addtime")
  582. ->select()
  583. ->toArray();
  584. // echo Db::name("good_type")->getLastSql();
  585. $data=[];
  586. if($list) {
  587. //商品单位和品牌
  588. $good_unit_s = Db::name("unit")->whereIn('id', array_column($list, 'good_unit'))->where('is_del', 0)->column('unit', 'id');
  589. $brands = Db::name("brand")->whereIn('id', array_column($list, 'brand_id'))->where('is_del', 0)->column('brand_name', 'id');
  590. foreach ($list as $key => $value) {
  591. $temp = [];
  592. if ($value['spuCode'] != "") {
  593. $child = Db::name("good_stock")
  594. ->alias("a")
  595. ->join("warehouse_info b", "a.wsm_code=b.wsm_code", "left")
  596. ->join("business bus", "bus.companyNo=b.companyNo", "left")
  597. ->join("supplier s", "s.code=b.supplierNo", "left")
  598. ->where(['a.spuCode' => $value['spuCode'], "b.wsm_type" => 1, "a.is_del" => 0])
  599. ->field("a.wsm_code,b.name wsm_name,a.wait_in_stock,a.wait_out_stock,a.usable_stock,a.intra_stock,a.total_stock,a.warn_stock,b.supplierNo,s.name supplierName,b.companyNo,bus.company")
  600. ->select()
  601. ->toArray();
  602. }
  603. $temp['good_name'] = $value['good_name'];
  604. $temp['good_code'] = $value['spuCode'];
  605. $temp['type_code'] = '';
  606. // $unit = Db::name("unit")->where(['id' => $value['good_unit']])->find();
  607. $temp['unit'] =$good_unit_s[$value['spuCode']]??'';
  608. $temp['brand_name'] =$brands[$value['brand_id']]??'';
  609. $temp['sort_f'] = isset($value['cat_id']) ? made($value['cat_id']) : [];
  610. $temp['sort_f'] = implode('/', array_column($temp['sort_f'], 'name'));//由于这个字段原样在页面显示,所以在这里特意拼接成字符串
  611. $temp['attribute'] = $value['craft_desc'];
  612. $temp['addtime'] = $value['addtime'];
  613. $temp['usable_stock'] = isset($value['usable_stock']) ? $value['usable_stock'] : "";
  614. $temp['wait_in_stock'] = isset($value['wait_in_stock']) ? $value['wait_in_stock'] : "";
  615. $temp['wait_out_stock'] = isset($value['wait_out_stock']) ? $value['wait_out_stock'] : "";
  616. $temp['intra_stock'] = isset($value['intra_stock']) ? $value['intra_stock'] : "";
  617. $temp['total_stock'] = isset($value['total_stock']) ? $value['total_stock'] : "";
  618. // $temp['warn_stock'] = isset($value['warn_stock'])? $value['warn_stock']:"";
  619. $temp['child'] = isset($child) && !empty($child) ? $child : [];
  620. //规格信息
  621. $spec = Db::name("good_spec")->field('id,spec_id,spec_value_id')->where(["spuCode" => $value['spuCode'], "is_del" => 0])->select()->toArray();
  622. $speclist = [];
  623. if (!empty($spec)) {
  624. foreach ($spec as $val) {
  625. $tmp = [];
  626. $tmp['spec_id'] = $val['spec_id'];
  627. $tmp['spec_value_id'] = $val['spec_value_id'];
  628. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  629. $tmp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  630. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  631. $tmp['spec_value'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  632. $speclist[] = $tmp;
  633. }
  634. }
  635. $temp['specinfo'] = $speclist;
  636. $data[] = $temp;
  637. }
  638. }
  639. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  640. }
  641. /**
  642. * @return \think\response\Json|void
  643. * @throws \think\db\exception\DataNotFoundException
  644. * @throws \think\db\exception\DbException
  645. * @throws \think\db\exception\ModelNotFoundException
  646. */
  647. public function Stat(){
  648. $condition =[["gs.is_del","=",0]];
  649. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code']):"";
  650. if($wsm_code!=""){
  651. //$condition["gs.wsm_code"] = $wsm_code;
  652. $condition[]=["gs.wsm_code","=",$wsm_code];
  653. }
  654. $suplierNo = isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']) :"";
  655. if($suplierNo!==""){
  656. $wsmcode = Db::name("warehouse_info")->where(['supplierNo'=>$suplierNo,"is_del"=>0])->column("wsm_code");
  657. $condition[]=["gs.wsm_code","in",$wsmcode];
  658. }
  659. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  660. if ($companyNo !== "") {
  661. // $where['khNo'] = $khNo;
  662. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$companyNo,"is_del"=>0])->column("wsm_code");
  663. $condition[]=["gs.wsm_code","in",$wsmcode];
  664. }
  665. // $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  666. // if($type_code!=""){
  667. // $condition[] = ["gs.good_type_code","=",$type_code];
  668. // }
  669. $statlist = Db::name("good_stock")
  670. ->alias('gs')
  671. ->where($condition)
  672. ->where('whi.wsm_type','<>',2)//2表示虚拟仓,虚拟仓不参与
  673. ->leftJoin('warehouse_info whi','whi.wsm_code=gs.wsm_code AND whi.is_del=0')
  674. ->field("sum(gs.wait_in_stock) as wait_in_stock,sum(gs.wait_out_stock) as wait_out_stock ,sum(gs.usable_stock) as usable_stock,sum(gs.intra_stock) as intra_stock,sum(gs.total_stock) as total_stock,sum(gs.warn_stock) as warn_stock")
  675. ->find();
  676. return app_show(0,"获取成功",$statlist);
  677. }
  678. public function all(){
  679. $condtion=["a.is_del"=>0,"b.is_del"=>0];
  680. $wsmcode =isset($this->post['wsmcode']) &&$this->post['wsmcode'] !=="" ? trim($this->post['wsmcode']):"";
  681. if($wsmcode!=""){
  682. $typecode= Db::name("good_stock")->where(["wsm_code"=>$wsmcode,'is_del'=>0])->column("good_type_code");
  683. $condtion["b.type_code"] = $typecode;
  684. }
  685. $good_code =isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  686. if($good_code!=""){
  687. $condtion['b.type_code'] = $good_code;
  688. }
  689. $goodcode =isset($this->post['good_code']) &&$this->post['good_code'] !=="" ? trim($this->post['good_code'])
  690. :"";
  691. if($goodcode!=""){
  692. $condtion['a.good_code'] = $goodcode;
  693. }
  694. $good_name =isset($this->post['good_name']) &&$this->post['good_name'] !=="" ? trim($this->post['good_name'])
  695. :"";
  696. if($good_name!=""){
  697. $condtion['a.good_name'] = Db::raw("like '%{$good_name}%'");
  698. }
  699. $supplierNo =isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']):"";
  700. if($supplierNo!=""){
  701. $supplier = Db::name("supplier")->where(["code"=>$supplierNo])->find();
  702. if(empty($supplier)){
  703. return error_show(1004,"未找到供应商信息");
  704. }
  705. $condtion["a.gys_code"] = $supplierNo;
  706. }
  707. $list = Db::name("good_type")->alias("b")->join("good a","a.good_code = b.good_code","left")
  708. ->where($condtion)->field("b.id,a.good_code,a.good_name,a.good_desc,a.brand,a.original_price,a.cg_saler,a.good_type,a.market_fee,a.gys_code,a.unit,
  709. a.sort_f,a.sort_s,a.sort_t,b.color,b.material,b.specs,b.is_main,b.type_code,b.attribute,b.status as bstatus,a.addtime,a.updatetime")
  710. ->select();
  711. $data=[];
  712. foreach ($list as $key=>$value){
  713. $stock = Db::name("good_stock")->where(["good_type_code"=>$value['type_code'],"is_del"=>0])->sum("usable_stock");
  714. $value['usable_stock']=$stock;
  715. $supplier = Db::name("supplier")->where(["code"=>$value['gys_code']])->find();
  716. $value['supplier_name'] =isset($supplier['name']) ?$supplier['name'] :"";
  717. $data[]=$value;
  718. }
  719. return app_show(0,"获取成功",$data);
  720. }
  721. public function loglist(){
  722. $page = isset($this->post['page']) && $this->post['page']!==""? intval($this->post['page']) :"1";
  723. $size = isset($this->post['size']) && $this->post['size']!==""? intval($this->post['size']) :"10";
  724. $where=[];
  725. $wsm_code= isset($this->post['wsm_code']) && $this->post['wsm_code']!="" ? trim($this->post['wsm_code']):"";
  726. if($wsm_code!=""){
  727. $where[]=['b.wsm_code',"like","%$wsm_code%"];
  728. }
  729. $supplierNo =isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']):"";
  730. if($supplierNo!=""){
  731. $supplier = Db::name("supplier")->where(["code"=>$supplierNo])->find();
  732. if(empty($supplier)){
  733. return error_show(1004,"未找到供应商信息");
  734. }
  735. $wsmcode = Db::name("warehouse_info")->where(["is_del"=>0,"supplierNo"=>$supplierNo])->column("wsm_code");
  736. $where[]=['b.wsm_code',"in",$wsmcode];
  737. }
  738. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  739. if ($companyNo !== "") {
  740. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$companyNo,"is_del"=>0])->column("wsm_code");
  741. $condition[]=["b.wsm_code","in",$wsmcode];
  742. }
  743. $count = Db::name("good_log")
  744. ->alias('a')
  745. ->join("good_stock b","b.id=a.id","left")
  746. ->where($where)
  747. ->count();
  748. $total = ceil($count/$size);
  749. $page = $total>=$page ? $page :$total;
  750. $list = Db::name("good_log")
  751. ->alias('a')
  752. ->join("good_stock b","b.id=a.stock_id","left")
  753. ->where($where)
  754. ->page($page,$size)
  755. ->order("a.addtime desc")
  756. ->field("a.good_log_code,a.action_name,a.type,a.stock_name,a.stock,a.action_type,b.spuCode,a.addtime,a.action_uid,b.wsm_code")
  757. ->select()
  758. ->toArray();
  759. $data=[];
  760. $action_uids = array_column($list, 'action_uid');
  761. $action_uids = array_unique($action_uids);
  762. $item = [];
  763. foreach ($action_uids as $action_uid) {
  764. $items = Db::name("depart_user")->where('uid', $action_uid)->column("itemid");
  765. foreach ($items as $it) {
  766. $item[$action_uid][] = implode('/', array_column(GetPart($it), 'name'));
  767. }
  768. }
  769. foreach ($list as $value){
  770. $wsm = Db::name("warehouse_info")
  771. ->alias("a")
  772. ->Join("supplier b","a.supplierNo=b.code","left")
  773. ->Join("business bus","bus.companyNo=a.companyNo","left")
  774. ->where(['a.wsm_code'=>$value['wsm_code'],"a.is_del"=>0])
  775. ->field("a.name as wsm_name,wsm_code,b.code,b.name,bus.company,bus.companyNo")
  776. ->find();
  777. $godd =Db::name("good")->where(["spuCode"=>$value['spuCode'],"is_del"=>0])->find();
  778. $value['good_name']=isset($godd['good_name'])? $godd['good_name']:"";
  779. $value['cat_id']=isset($godd['cat_id'])? $godd['cat_id']:"";
  780. $int = isset($value['cat_id']) && $value['cat_id'] != 0 ? made($value['cat_id']) : [];
  781. $value['wsm_name'] =$wsm['wsm_name'];
  782. $value['wsm_code'] =$wsm['wsm_code'];
  783. $value['code'] =$wsm['code'];
  784. $value['name'] =$wsm['name'];
  785. $value['action_type_cn'] =$this->acton[$value['action_type']];
  786. $value['item'] =$item[$value['action_uid']];
  787. $value['can'] =$int;
  788. $value['company'] =$wsm['company']??'';
  789. $value['companyNo'] =$wsm['companyNo']??'';
  790. $data[]=$value;
  791. }
  792. return app_show(0,"获取成功",['list'=>$data,'count'=>$count]);
  793. }
  794. public function goodlist(){
  795. $page = isset($this->post['page']) && $this->post['page'] !==""? intval($this->post['page']):"1";
  796. $size = isset($this->post['size']) && $this->post['size'] !==""? intval($this->post['size']):"10";
  797. $where =[["a.is_del","=",0],["b.exam_status","=",6],["b.is_del","=",0],["c.is_del","=",0],["c.status","=",1]];
  798. $paltcode = isset($this->post["platform_code"])&& $this->post["platform_code"]!=""? trim($this->post["platform_code"]):"";
  799. if($paltcode!=""){
  800. $where[]=["platform_code","=",$paltcode];
  801. }
  802. $companyNo = isset($this->post["companyNo"])&& $this->post["companyNo"]!=""? trim($this->post["companyNo"])
  803. :"";
  804. if($companyNo!=""){
  805. $where[]=["companyNo","like","%$companyNo%"];
  806. }
  807. $cat_id = isset($this->post["cat_id"])&& $this->post["cat_id"]!==""? intval($this->post["cat_id"]):"";
  808. if($cat_id!==""){
  809. $where[]=["cat_id","=",$cat_id];
  810. }
  811. $buy_num = isset($this->post["buy_num"])&& $this->post["buy_num"]!==""? intval($this->post["buy_num"]):"";
  812. if($buy_num!==""){
  813. $where[]=["min_num","<=",$buy_num];
  814. }
  815. $price = isset($this->post["price"])&& $this->post["price"]!==""? floatval($this->post["price"]):"";
  816. if($buy_num!==""){
  817. $where[]=["sale_price","<=",$price];
  818. }
  819. $count = Db::name('good')->alias("a")->leftJoin("good_platform b","a.spuCode=b.spuCode")->leftJoin("good_ladder c","b.skuCode=c.skuCode")
  820. ->where($where)->count();
  821. $total = ceil($count / $size);
  822. $page = $page >= $total ? $total : $page;
  823. $list = Db::name('good')->alias("a")->leftJoin("good_platform b","a.spuCode=b.spuCode")->leftJoin("good_ladder c","b.skuCode=c.skuCode")->where($where)->page
  824. ($page,$size)->field("c.id,c.min_num,c.sale_price,.a.good_name,a.spuCode,a.cat_id,a.brand_id,a.companyNo,a.supplierNo,a.good_unit,b.skuCode,b.platform_code,b.plat_code,b.id as good_id,b.addtime,b.updatetime,b.exam_status")
  825. ->order("b.addtime desc")
  826. ->select();
  827. $data=[];
  828. foreach ($list as $value){
  829. $value['cat_info']= made($value['cat_id'],[]);
  830. $platform = Db::name("platform")->where(["id"=>$value['platform_code']])->find();
  831. $value['platform_name'] = isset($platform['platform_name']) ? $platform['platform_name']:"";
  832. $value['platform_code_en'] = isset($platform['platform_code']) ? $platform['platform_code']:"";
  833. $supplier = Db::name("supplier")->where(["code"=>$value['supplierNo']])->find();
  834. $value['supplier_name'] = isset($supplier['name']) ? $supplier['name']:"";
  835. $brand=Db::name("brand")->where(["id"=>$value['brand_id']])->find();
  836. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  837. $unit = Db::name("unit")->where(["id"=>$value['good_unit']])->find();
  838. $value['unit'] =isset($unit['unit'])?$unit['unit']:"";
  839. $company = Db::name("business")->where(["companyNo"=>$value['companyNo']])->find();
  840. $value['company'] = isset($company['company'])?$company['company']:"";
  841. $value['stock_total'] = Db::name("good_stock")->where(['spuCode'=>$value['spuCode'],"is_del"=>0])->sum("usable_stock");
  842. $value['status']=$value['exam_status'];
  843. $data[]=$value;
  844. }
  845. return app_show(0,"获取成功",['list'=>$data,'count'=>$count]);
  846. }
  847. //根据价格区间,筛选符合条件的商品列表
  848. public function getGoodListByLadder()
  849. {
  850. //1.请求参数
  851. $param = $this->request->only([
  852. 'is_stock' => '',
  853. 'min_price' => 0,
  854. 'max_price' => 0,
  855. 'moq' => 0,
  856. 'cat_id' => 0,
  857. 'good_name' => '',
  858. 'skucode' => '',
  859. 'spucode' => '',
  860. 'start' => '',
  861. 'end' => '',
  862. 'good_type' => '',
  863. 'supplierNo' => '',
  864. 'companyNo' => '',
  865. 'creater' => '',
  866. 'createrid' => '',
  867. 'status' => '',
  868. 'platform_code' => '',
  869. 'plat_code' => '',
  870. 'exam_status' => '',
  871. 'brand_id' => 0,
  872. 'page' => 1,
  873. 'size' => 15
  874. ], 'post', 'trim');
  875. $where = $ladder_where = [];
  876. if ($param['min_price'] && $param['max_price']) {
  877. $skuCodes = Db::name('good_ladder')
  878. ->whereBetween('sale_price', [$param['min_price'], $param['max_price']])
  879. ->where(['is_del' => 0, 'status' => 1])
  880. ->group('skuCode')
  881. ->column('skuCode');
  882. $where[] = ['b.skuCode', 'in', $skuCodes];
  883. $ladder_where[] = ['sale_price', 'between', [$param['min_price'], $param['max_price']]];
  884. }
  885. if ($param['is_stock'] != '') $where[] = ['a.is_stock', '=', $param['is_stock']];
  886. if ($param['moq']) $where[] = ['a.moq', '>=', $param['moq']];
  887. if ($param['cat_id']) $where[] = ['a.cat_id', '=', $param['cat_id']];
  888. if ($param['good_name']) $where[] = ['a.good_name', 'like', '%' . $param['good_name'] . '%'];
  889. if ($param['skucode']) $where[] = ['b.skucode', 'like', '%' . $param['skucode'] . '%'];
  890. if ($param['spucode']) $where[] = ['b.spucode', 'like', '%' . $param['spucode'] . '%'];
  891. if ($param['start']) $where[] = ['a.addtime', '>=', date('Y-m-d H:i:s', strtotime($param['start']))];
  892. if ($param['end']) $where[] = ['a.addtime', '<', date('Y-m-d H:i:s', strtotime($param['end'] + 24 * 3600))];
  893. if ($param['good_type']!='') $where[] = ['a.good_type', '=', $param['good_type']];
  894. if ($param['supplierNo']) $where[] = ['a.supplierNo', '=', $param['supplierNo']];
  895. if ($param['companyNo']) $where[] = ['a.companyNo', 'like', '%' . $param['companyNo'] . '%'];
  896. if ($param['creater']) $where[] = ['a.creater', 'like', '%' . $param['creater'] . '%'];
  897. if ($param['createrid']) $where[] = ['a.createrid', '=', $param['createrid']];
  898. if ($param['status'] != '') $where[] = ['a.status', '=', $param['status']];
  899. if ($param['platform_code']) $where[] = ['platform_code', '=', $param['platform_code']];
  900. if ($param['plat_code']) $where[] = ['b.plat_code', 'like', '%' . $param['plat_code'] . '%'];
  901. if ($param['exam_status'] != '') $where[] = ['b.exam_status', '=', $param['exam_status']];
  902. if ($param['brand_id']) $where[] = ['a.brand_id', '=', $param['brand_id']];
  903. //5.获取结果
  904. $count = Db::name('good')
  905. ->alias("a")
  906. // ->field("b.skuCode,b.platform_code,b.plat_code,b.id as good_id,a.*,b.addtime,b.updatetime,b.exam_status,gb.createrid purchase_id,gb.creater purchase,gl.min_num,gl.max_num")//成本表里的创建人,也是线上商品的采购人,为了防止混淆,给creater取个别名
  907. ->leftJoin("good_platform b", "a.spuCode=b.spuCode")
  908. ->leftJoin("good_basic gb", "gb.spuCode=a.spuCode")
  909. // ->leftJoin("good_ladder gl", "gl.skuCode=b.skuCode")
  910. ->where($where)
  911. ->where('b.exam_status', '=', 6)//6表示上线成功
  912. ->order("b.addtime desc")
  913. ->count('a.id');
  914. $list = Db::name('good')
  915. ->alias("a")
  916. ->field("b.skuCode,b.platform_code,b.plat_code,b.id as good_id,a.*,b.addtime,b.updatetime,b.exam_status,gb.createrid purchase_id,gb.creater purchase")//成本表里的创建人,也是线上商品的采购人,为了防止混淆,给creater取个别名
  917. ->leftJoin("good_platform b", "a.spuCode=b.spuCode")
  918. ->leftJoin("good_basic gb", "gb.spuCode=a.spuCode")
  919. // ->leftJoin("good_ladder gl", "gl.skuCode=b.skuCode")
  920. ->page($param['page'], $param['size'])
  921. ->where($where)
  922. ->where('b.exam_status', '=', 6)//6表示上线成功
  923. ->order("b.addtime desc")
  924. // ->fetchSql()
  925. ->select()
  926. ->toArray();
  927. // halt($list);
  928. //6.补充数据,照搬list方法
  929. $data = [];
  930. foreach ($list as $value) {
  931. $value['cat_info'] = made($value['cat_id'], []);
  932. $platform = Db::name("platform")->where(["id" => $value['platform_code']])->find();
  933. $value['platform_name'] = isset($platform['platform_name']) ? $platform['platform_name'] : "";
  934. $value['platform_code_en'] = isset($platform['platform_code_en']) ? $platform['platform_code_en'] : "";
  935. $supplier = Db::name("supplier")->where(["code" => $value['supplierNo']])->find();
  936. $value['supplier_name'] = isset($supplier['name']) ? $supplier['name'] : "";
  937. $brand = Db::name("brand")->where(["id" => $value['brand_id']])->find();
  938. $value["brand_name"] = isset($brand['brand_name']) ? $brand['brand_name'] : "";
  939. $unit = Db::name("unit")->where(["id" => $value['good_unit']])->find();
  940. $value['unit'] = isset($unit['unit']) ? $unit['unit'] : "";
  941. $company = Db::name("business")->where(["companyNo" => $value['companyNo']])->find();
  942. $value['company'] = isset($company['company']) ? $company['company'] : "";
  943. $value['stock_total'] = Db::name("good_stock")->where(['spuCode' => $value['spuCode'], "is_del" => 0])->sum("usable_stock");
  944. $value['status'] = $value['exam_status'];
  945. $value['exclusive'] = makeExcluse($value['is_exclusive']);
  946. $value['good_info_img'] = $value['good_info_img'];
  947. $value['good_img'] = $value['good_img'];
  948. $spec = Db::name("good_spec")->where(["spuCode" => $value['spuCode'], "is_del" => 0])->select()->toArray();
  949. $speclist = [];
  950. if (!empty($spec)) {
  951. foreach ($spec as $val) {
  952. $temp = [];
  953. $temp['spec_id'] = $val['spec_id'];
  954. $temp['spec_value_id'] = $val['spec_value_id'];
  955. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  956. $temp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  957. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  958. $temp['spec_value'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  959. $speclist[] = $temp;
  960. }
  961. }
  962. $value['specinfo'] = $speclist;
  963. $value['noble_name'] = isset($value['noble_metal']) && $value['noble_metal'] != 0 ? $this->noble[$value['noble_metal']] : "";
  964. //补充阶梯数据
  965. $ladder_info = Db::name('good_ladder')
  966. ->field('min_num,max_num,sale_price')
  967. ->where(['skuCode' => $value['skuCode']])
  968. ->where($ladder_where)
  969. ->order('min_num', 'asc')
  970. ->find();
  971. $value['min_num'] = isset($ladder_info['min_num']) ? $ladder_info['min_num'] : 0;
  972. $value['max_num'] = isset($ladder_info['max_num']) ? $ladder_info['max_num'] : 0;
  973. $value['sale_price'] = isset($ladder_info['sale_price']) ? $ladder_info['sale_price'] : 0;
  974. $data[] = $value;
  975. }
  976. return app_show(0, "获取成功", ['list' => $data, 'count' => $count]);
  977. }
  978. }