Good.php 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\DataGroup as DataGroupModel;
  4. use app\admin\model\GoodCombind;use app\admin\model\GoodLog;
  5. use app\admin\model\GoodStock;use app\admin\model\GoodTax;use app\txx\model\ActGoodurl;use app\txx\model\YzGood;
  6. use think\App;
  7. use think\db\Raw;
  8. use think\facade\Db;
  9. use think\facade\Validate;
  10. //线上商品
  11. class Good extends Base
  12. {
  13. private $acton=[];
  14. public $noble=[];
  15. public function __construct(App $app)
  16. {
  17. parent::__construct($app);
  18. $this->noble=\think\facade\Config::get("noble");
  19. $order=\think\facade\Config::get("order");
  20. $this->acton=$order['order_type'];
  21. }
  22. public function list(){
  23. $page = isset($this->post['page']) && $this->post['page'] !==""? intval($this->post['page']):"1";
  24. $size = isset($this->post['size']) && $this->post['size'] !==""? intval($this->post['size']):"10";
  25. $where =[["a.is_del","=",0]];
  26. $cat_id = isset($this->post['cat_id']) && $this->post['cat_id'] !=="" ? trim($this->post['cat_id']):"";
  27. if($cat_id!==""){
  28. $where[]=['a.cat_id',"=",$cat_id];
  29. }
  30. $good_name = isset($this->post['good_name']) && $this->post['good_name'] !=="" ? trim($this->post['good_name']):"";
  31. if($good_name!==""){
  32. $where[]=['a.good_name',"like","%$good_name%"];
  33. }
  34. $skucode = isset($this->post['skucode']) && $this->post['skucode'] !=="" ? trim($this->post['skucode']):"";
  35. if($skucode!==""){
  36. $where [] = ['b.skucode',"like","%$skucode%"];
  37. }
  38. $spucode = isset($this->post['spucode']) && $this->post['spucode'] !=="" ? trim($this->post['spucode']):"";
  39. if($spucode!==""){
  40. $where [] = ['b.spucode',"like","%$spucode%"];
  41. }
  42. $start = isset($this->post['start']) && $this->post['start']!=="" ? $this->post['start']:"";
  43. if($start!==""){
  44. $where[]=['b.addtime',">=",date('Y-m-d H:i:s',strtotime($start))];
  45. }
  46. $end = isset($this->post['end']) && $this->post['end']!=="" ? $this->post['end']:"";
  47. if($end!==""){
  48. $where[]=['b.addtime',"<",date('Y-m-d H:i:s',strtotime($end)+24*3600)];
  49. }
  50. $is_stock = isset($this->post['is_stock']) && $this->post['is_stock'] !=="" ? intval($this->post['is_stock']) :"";
  51. if($is_stock!==""){
  52. $where[]=['a.is_stock',"=",$is_stock];
  53. }
  54. $create_source = isset($this->post['create_source']) && $this->post['create_source'] !=='' ? intval($this->post['create_source']) :'';
  55. if($create_source!==''){
  56. $where[]=['a.create_source','=',$create_source];
  57. }
  58. $good_type = isset($this->post['good_type']) && $this->post['good_type'] !=="" ? intval($this->post['good_type']) :"";
  59. if($good_type!==""){
  60. $where[]=['a.good_type',"=",$good_type];
  61. }
  62. $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']) :"";
  63. if($supplierNo!==""){
  64. $where[]=['a.supplierNo',"like","%$supplierNo%"];
  65. }
  66. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !=="" ? trim($this->post['companyNo']) :"";
  67. if($companyNo!==""){
  68. $where[]=['a.companyNo',"like","%$companyNo%"];
  69. }
  70. $creater = isset($this->post['creater']) && $this->post['creater'] !=="" ? trim($this->post['creater']):"";
  71. if($creater!==""){
  72. $where[]=['a.creater',"like","%$creater%"];
  73. }
  74. $online_creater = isset($this->post['online_creater']) && $this->post['online_creater'] !=="" ? trim($this->post['online_creater'])
  75. :"";
  76. if($online_creater!==""){
  77. $where[]=['b.creater',"like","%$online_creater%"];
  78. }
  79. $createrid = isset($this->post['createrid']) && $this->post['createrid'] !=="" ? intval($this->post['createrid']):"";
  80. if($createrid!==""){
  81. $where[]=['a.createrid',"=",$createrid];
  82. }
  83. $status = isset($this->post['status']) && $this->post['status'] !=="" ? intval($this->post['status']) :"";
  84. if($status!==""){
  85. $where[]=['a.status',"=",$status];
  86. }
  87. $platform_code = isset($this->post['platform_code']) && $this->post['platform_code'] !=="" ? trim($this->post['platform_code']) :"";
  88. if($platform_code!==""){
  89. //$platform = Db::name("good_platform")->where(["platform_code"=>$platform_code,"is_del"=>0])->column
  90. //("spuCode");
  91. $where[]=["b.platform_code","=",$platform_code];
  92. }
  93. $plat_code = isset($this->post['plat_code']) && $this->post['plat_code'] !=="" ? trim($this->post['plat_code']) :"";
  94. if($plat_code!==""){
  95. $where[]=["b.plat_code","like","%$plat_code%"];
  96. }
  97. $exam_status = isset($this->post['exam_status']) && $this->post['exam_status'] !=="" ? intval($this->post['exam_status']) :"";
  98. if($exam_status!==""){
  99. $where[]=['b.exam_status',"=",$exam_status];
  100. }
  101. $brand_id = isset($this->post['brand_id']) && $this->post['brand_id'] !=="" ? intval($this->post['brand_id']) :"";
  102. if($brand_id!==""){
  103. $where[]=['a.brand_id',"=",$brand_id];
  104. }
  105. $is_compliance = isset($this->post['is_compliance']) && $this->post['is_compliance'] !=="" ? intval($this->post['is_compliance']) :"";
  106. if($is_compliance!==""){
  107. $where[]=['b.is_compliance',"=",$is_compliance];
  108. }
  109. $supplier = isset($this->post['supplier_name']) && $this->post['supplier_name'] !=="" ? trim($this->post['supplier_name']) :"";
  110. if($supplier!==""){
  111. $where[]=['a.supplierName',"like","%$supplier%"];
  112. }
  113. $company_name = isset($this->post['company_name']) && $this->post['company_name'] !== "" ? trim($this->post['company_name']) : "";
  114. if ($company_name !== "") $where[] = ["b.createrid", 'in', get_company_item_user_by_name($company_name)];
  115. $relaComNo = isset($this->post['relaComNo']) && $this->post['relaComNo'] != "" ? trim($this->post['relaComNo']) : "";
  116. if ($relaComNo != "") $where[] = ['a.companyNo|a.supplierNo', '=', $relaComNo];
  117. $count = Db::name('good')
  118. ->alias("a")
  119. ->rightJoin("good_platform b","a.spuCode=b.spuCode")
  120. ->leftJoin("platform p","p.id=b.platform_code")
  121. ->where('p.platform_type',0)//只筛选非对接平台的商品
  122. ->where($where)
  123. ->count('a.id');
  124. $total = ceil($count / $size);
  125. $page = $page >= $total ? $total : $page;
  126. $list = Db::name('good')
  127. ->alias("a")
  128. ->field("b.skuCode,b.platform_code,b.plat_code,b.id as good_id,a.cat_id,a.good_name,a.good_img,b.is_fixed,
  129. a.good_info_img,a.good_thumb_img,b.createrid,a.is_exclusive,a.brand_id,a.supplierNo,a.supplierName,a.create_source,
  130. a.good_unit,a.noble_metal,a.companyNo,a.companyName,a.spuCode,a.good_type,b.creater,b.addtime,b.updatetime,
  131. b.exam_status,a.createrid purchase_id,a.creater purchase,a.is_stock,p.platform_name,b.is_compliance,b.compliance_remark")
  132. //成本表里的创建人,也是线上商品的采购人,为了防止混淆,给creater取个别名
  133. ->rightJoin("good_platform b","a.spuCode=b.spuCode")
  134. ->leftJoin("platform p","p.id=b.platform_code")
  135. ->where('p.platform_type',0)//只筛选非对接平台的商品
  136. ->where($where)
  137. ->page($page,$size)
  138. ->order("b.addtime desc")
  139. ->select()
  140. ->toArray();
  141. $all_createrid = array_column($list,'createrid');
  142. $item = get_company_name_by_uid($all_createrid);
  143. $brand=Db::name('brand')
  144. ->where(['id'=>array_column($list,'brand_id')])
  145. ->column('brand_name','id');
  146. $unit = Db::name('unit')
  147. ->where(['id'=>array_column($list,'good_unit')])
  148. ->column('unit','id');
  149. // $userCommon = \app\admin\common\User::getIns();
  150. // $names = $userCommon->handle('getCodeAndName',['code'=>array_merge(array_column($list,'companyNo'),
  151. // array_column($list,'supplierNo'))]);
  152. $data=[];
  153. foreach ($list as $value){
  154. $value['cat_info']= made($value['cat_id']);
  155. // $platform = Db::name("platform")->where(["id"=>$value['platform_code']])->find();
  156. // $value['platform_name'] = isset($platform['platform_name']) ? $platform['platform_name']:"";
  157. // $value['platform_code_en'] = isset($platform['platform_code_en']) ? $platform['platform_code_en']:"";
  158. // $supplier = Db::name("supplier")->where(["code"=>$value['supplierNo']])->find();
  159. // $value['supplier_name'] = isset($supplier['name']) ? $supplier['name']:"";
  160. // $brand=Db::name("brand")->where(["id"=>$value['brand_id']])->find();
  161. $value["brand_name"]=$brand[$value['brand_id']]??'';//isset($brand['brand_name'])?$brand['brand_name']:"";
  162. // $unit = Db::name("unit")->where(["id"=>$value['good_unit']])->find();
  163. $value['unit'] =$unit[$value['good_unit']]??'';//isset($unit['unit'])?$unit['unit']:"";
  164. // $company = Db::name("business")->where(["companyNo"=>$value['companyNo']])->find();
  165. $value['company'] = $value['companyName'];//$names['data'][$value['companyNo']]??'';//isset($company['company'])?$company['company']:"";
  166. // $value['supplierName'] = $names['data'][$value['supplierNo']]??'';//isset($company['company'])//?$company['company']:"";
  167. $value['stock_total'] = Db::name("good_stock")->where(['spuCode'=>$value['spuCode'],"is_del"=>0])->sum("usable_stock");
  168. $value['status']=$value['exam_status'];
  169. $value['exclusive']=makeExcluse($value['is_exclusive']);
  170. // $value['good_info_img']=$value['good_info_img'];
  171. // $value['good_img']=$value['good_img'];
  172. $spec = Db::name("good_spec")->where(["spuCode"=>$value['spuCode'],"is_del"=>0])->select()->toArray();
  173. $speclist=[];
  174. if(!empty($spec)){
  175. foreach ($spec as $val){
  176. $temp=[];
  177. $temp['spec_id']=$val['spec_id'];
  178. $temp['spec_value_id']=$val['spec_value_id'];
  179. $sp = Db::name("specs")->where(["id"=>$val['spec_id']])->find();
  180. $temp['spec_name']=isset($sp["spec_name"]) ? $sp["spec_name"]:"";
  181. $spv = Db::name("spec_value")->where(["id"=>$val['spec_value_id']])->find();
  182. $temp['spec_value']=isset($spv["spec_value"]) ? $spv["spec_value"]:"";
  183. $speclist[]=$temp;
  184. }
  185. }
  186. $value['specinfo']=$speclist;
  187. $value['noble_name']=isset($value['noble_metal'])&&$value['noble_metal']!=0?$this->noble[$value['noble_metal']] :"";
  188. $value['company_name'] = $item[$value['createrid']]??'';
  189. //是否具有编辑权限
  190. // $value['is_allow_update'] = 0;
  191. // if (in_array($this->roleid, [1, 33]) || in_array($value['createrid'], $role[DataGroupModel::$type_可编辑])) $value['is_allow_update'] = 1;
  192. $data[]=$value;
  193. }
  194. return app_show(0, "获取成功", ['count' => $count, 'list' => $data]);
  195. }
  196. //获取跟有赞对接的平台所属的商品上线信息
  197. public function listByYz()
  198. {
  199. $param = $this->request->only([
  200. 'page' => 1,
  201. 'size' => 15,
  202. 'cat_id' => '',
  203. 'good_name' => '',
  204. 'skucode' => '',
  205. 'spucode' => '',
  206. 'start' => '',
  207. 'end' => '',
  208. 'is_stock' => '',
  209. 'good_type' => '',
  210. 'supplierNo' => '',
  211. 'companyNo' => '',
  212. 'creater' => '',
  213. 'online_creater' => '',
  214. 'createrid' => '',
  215. 'status' => '',
  216. 'platform_code' => '',
  217. 'plat_code' => '',
  218. 'exam_status' => '',
  219. 'brand_id' => '',
  220. 'company_name' => '',
  221. 'relaComNo' => '',
  222. ], 'post', 'trim');
  223. $where = [["b.is_del", "=", 0],['a.is_del', '=', 0]];
  224. if ($param['cat_id'] !== "") $where[] = ['a.cat_id', "=", $param['cat_id']];
  225. if ($param['good_name'] !== "") $where[] = ['a.good_name', 'like', '%' . $param['good_name'] . '%'];
  226. if ($param['skucode'] !== '') $where [] = ['b.skucode', 'like', '%' . $param['skucode'] . '%'];
  227. if ($param['spucode'] !== '') $where [] = ['b.spucode', 'like', '%' . $param['spucode'] . '%'];
  228. if ($param['start'] !== '') $where[] = ['b.addtime', '>=', date('Y-m-d H:i:s', strtotime($param['start']))];
  229. if ($param['end'] !== "") $where[] = ['b.addtime', "<", date('Y-m-d H:i:s', strtotime($param['end']) + 24 * 3600)];
  230. if ($param['is_stock'] !== "") $where[] = ['a.is_stock', "=", $param['is_stock']];
  231. if ($param['good_type'] !== "") $where[] = ['a.good_type', "=", $param['good_type']];
  232. if ($param['supplierNo'] !== "") $where[] = ['a.supplierNo', "=", $param['supplierNo']];
  233. if ($param['companyNo'] !== "") $where[] = ['a.companyNo', "like", '%' . $param['companyNo'] . '%'];
  234. if ($param['online_creater'] !== '') $where[] = ['b.creater', "like", '%' . $param['online_creater'] . '%'];
  235. if ($param['creater'] !== '') $where[] = ['a.creater', "like", '%' . $param['creater'] . '%'];
  236. if ($param['createrid'] !== '') $where[] = ['a.createrid', "=", $param['createrid']];
  237. if ($param['status'] !== '') $where[] = ['a.status', '=', $param['status']];
  238. if ($param['platform_code'] !== "") $where[] = ["b.platform_id", '=', $param['platform_code']];
  239. if ($param['plat_code'] !== '') $where[] = ["b.plat_code", "like", '%' . $param['plat_code'] . '%'];
  240. if ($param['exam_status'] !== '') $where[] = ['b.exam_status', "=", $param['exam_status']];
  241. if ($param['brand_id'] !== "") $where[] = ['a.brand_id', "=", $param['brand_id']];
  242. if ($param['company_name'] !== '') $where[] = ["a.createrid", 'in', get_company_item_user_by_name($param['company_name'])];
  243. if($param['relaComNo'] !== '') $where[]=['a.companyNo|a.supplierNo','=', $param['relaComNo']];
  244. $count = Db::name('platform_youzan')
  245. ->alias("b")
  246. ->leftJoin("good_basic a", "a.spuCode=b.spuCode")
  247. ->where($where)
  248. ->count();
  249. $total = ceil($count / $param['size']);
  250. $param['page'] = $param['page'] >= $total ? $total : $param['page'];
  251. $list = Db::name('platform_youzan')
  252. ->alias("b")
  253. ->field("b.skuCode,b.platform_id platform_code,a.is_stock,b.plat_code,b.id as platform_youzan_id,a.cat_id,a.good_name,a.good_img,a.good_info_img,a.good_thumb_img,b.createrid,a.is_exclusive,a.brand_id,a.supplierNo,a.good_unit,a.noble_metal,a.companyNo,a.spuCode,a.good_type,b.creater,b.addtime,b.updatetime,b.exam_status,a.createrid purchase_id,a.creater purchase")//成本表里的创建人,也是线上商品的采购人,为了防止混淆,给creater取个别名
  254. ->leftJoin("good_basic a", "a.spuCode=b.spuCode")
  255. ->where($where)
  256. ->page($param['page'], $param['size'])
  257. ->order("b.addtime desc")
  258. ->select()
  259. ->toArray();
  260. $all_createrid = array_column($list,'createrid');
  261. $item = get_company_name_by_uid($all_createrid);
  262. //取回所有的详情链接字段
  263. $all_skuCode = array_column($list,'skuCode');
  264. $detail_url_skuCode = YzGood::where(['item_no'=>$all_skuCode,'is_del'=>0])
  265. ->column('detail_url','item_no');
  266. $brand = Db::name('brand')
  267. ->where(['id'=>array_column($list,'brand_id')])
  268. ->column('brand_name','id');
  269. $unit = Db::name('unit')
  270. ->where(['id'=>array_column($list,'good_unit')])
  271. ->column('unit','id');
  272. $platform = Db::name('platform')
  273. ->where(['id'=>array_column($list,'platform_code')])
  274. ->column('platform_name','id');
  275. $userCommon = \app\admin\common\User::getIns();
  276. $names = $userCommon->handle('getCodeAndName',['code'=>array_merge(array_column($list,'companyNo'),array_column($list,'supplierNo'))]);
  277. $data = [];
  278. $tmp_cat = [];
  279. foreach ($list as $value) {
  280. if(!isset($tmp_cat[$value['cat_id']])) $tmp_cat[$value['cat_id']] = made($value['cat_id'], []);
  281. $value['cat_info'] = $tmp_cat[$value['cat_id']];
  282. // $platform = Db::name("platform")->field('id,platform_name')->where(["id" => $value['platform_code']])->find();
  283. $value['platform_name'] = $platform[$value['platform_code']]??'';//isset($platform['platform_name']) ? $platform['platform_name'] : "";
  284. $value['platform_code_en'] = "";
  285. // $supplier = Db::name("supplier")->field('id,name')->where(["code" => $value['supplierNo']])->find();
  286. $value['supplier_name'] = $names['data'][$value['supplierNo']]??'';//isset($supplier['name']) ? $supplier['name'] : "";
  287. // $brand = Db::name("brand")->field('id,brand_name')->where(["id" => $value['brand_id']])->find();
  288. $value["brand_name"] = $brand[$value['brand_id']]??'';//isset($brand['brand_name']) ? $brand['brand_name'] : "";
  289. // $unit = Db::name("unit")->field('id,unit')->where(["id" => $value['good_unit']])->find();
  290. $value['unit'] = $unit[$value['good_unit']]??'';//isset($unit['unit']) ? $unit['unit'] : "";
  291. $value['company'] = $names['data'][$value['companyNo']]??'';//isset($company['company']) ? $company['company'] : "";
  292. $value['stock_total'] = Db::name("good_stock")->where(['spuCode' => $value['spuCode'], "is_del" => 0])->sum("usable_stock");
  293. $value['status'] = $value['exam_status'];
  294. $value['exclusive'] = makeExcluse($value['is_exclusive']);
  295. $value['is_act_url'] =ActGoodurl::where(["act_good_id"=>$value["platform_youzan_id"],"is_del"=>0])->value("act_good_url",'');
  296. $spec = Db::name("good_spec")
  297. ->where(["spuCode" => $value['spuCode'], "is_del" => 0])
  298. ->select()
  299. ->toArray();
  300. $speclist = [];
  301. if (!empty($spec)) {
  302. foreach ($spec as $val) {
  303. $temp = [];
  304. $temp['spec_id'] = $val['spec_id'];
  305. $temp['spec_value_id'] = $val['spec_value_id'];
  306. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  307. $temp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  308. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  309. $temp['spec_value'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  310. $speclist[] = $temp;
  311. }
  312. }
  313. $value['specinfo'] = $speclist;
  314. $value['noble_name'] = isset($value['noble_metal']) && $value['noble_metal'] != 0 ? $this->noble[$value['noble_metal']] : "";
  315. $value['company_name'] = $item[$value['createrid']]??'';
  316. $taxInfo=GoodTax::with(['tax'])->where(['spuCode'=>$value['spuCode']])->findOrEmpty();
  317. $value['tax_id'] = $taxInfo['tax_id']??'';
  318. $value['tax_name'] = $taxInfo['cat_name']??'';
  319. $value['tax_short_name'] =$taxInfo['short_name']??'';
  320. $value['tax_code'] =$taxInfo['merge_code']??'';
  321. $value['tax']=$taxInfo['tax']??'';
  322. $value['inv_good_name']=$taxInfo['inv_good_name']??'';
  323. //是否具有编辑权限
  324. $value['is_allow_update'] = 0;
  325. // if (in_array($this->roleid, [1, 33]) || in_array($value['createrid'], $role[DataGroupModel::$type_可编辑])) $value['is_allow_update'] = 1;
  326. //补充商品详情链接字段
  327. $value['detail_url'] = $detail_url_skuCode[$value['skuCode']]??'';
  328. $data[] = $value;
  329. }
  330. return app_show(0, "获取成功", ['list' => $data, 'count' => $count]);
  331. }
  332. public function info(){
  333. $skucode=isset($this->post['skuCode'])&&$this->post['skuCode']!=""?trim($this->post['skuCode']):"";
  334. if($skucode==""){
  335. return error_show(1005,"参数skuCode不能为空");
  336. }
  337. $good_platform = Db::name("good_platform")->where(['skuCode'=>$skucode,"is_del"=>0])->find();
  338. if($good_platform==false){
  339. return error_show(1004,"未找到商品数据");
  340. }
  341. $data = Db::name("good")->where(["spuCode"=>$good_platform['spuCode'],"is_del"=>0])->find();
  342. if($data==false){
  343. return error_show(1004,"未找到商品数据");
  344. }
  345. $plat =Db::name("platform")->where(["id"=>$good_platform['platform_code']])->find();
  346. $data['skuCode']=$good_platform['skuCode'];
  347. $data['market_url']=$good_platform['market_url'];
  348. $data['is_fixed']=$good_platform['is_fixed'];
  349. $data['platform_id']=$good_platform['platform_code'];
  350. $data['platform_code_en']=isset($plat['platform_code'])?$plat['platform_code']:"";
  351. $data['platform_name']=isset($plat['platform_name'])?$plat['platform_name']:"";
  352. $data['online_reason']=$good_platform['online_reason'];
  353. $data['online_time']=$good_platform['online_time'];
  354. $data['online_remark']=$good_platform['online_remark'];
  355. $data['exam_status']=$good_platform['exam_status'];
  356. $data['is_online']=$good_platform['is_online'];
  357. $data['plat_code']=$good_platform['plat_code'];
  358. $data['createrid']=$good_platform['createrid']??'';
  359. $data['creater']=$good_platform['creater']??'';
  360. $data['exclusive']=makeExcluse($data['is_exclusive']);
  361. $unit =Db::name("unit")->where(["id"=>$data['good_unit']])->find();
  362. $data['unit'] = isset($unit['unit'])?$unit['unit']:'';
  363. $data['cat_info'] = made($data['cat_id'],[]);
  364. $spec = Db::name("good_spec")->where(["spuCode"=>$good_platform['spuCode'],"is_del"=>0])->select()->toArray();
  365. $userCommon = \app\admin\common\User::getIns();
  366. $names = $userCommon->handle('getCodeAndName',['code'=>[$data['supplierNo'],$data['companyNo']]]);
  367. $supplier = $userCommon->handle('sInfo',['code'=>$data['supplierNo']]);
  368. $data['supplierName'] = $names['data'][$data['supplierNo']]??'';//isset($supplier['name'])?$supplier['name']:"";
  369. $data['company'] = $names['data'][$data['companyNo']]??'';//isset($company['company'])?$company['company']:"";
  370. $taxInfo=[];
  371. if($data['open_type']==1){
  372. $taxInfo=GoodTax::with(['tax'])->where(['spuCode'=>$good_platform['spuCode']])->findOrEmpty();
  373. }
  374. $data['tax_id'] = $taxInfo['tax_id']??'';
  375. $data['tax_name'] = $taxInfo['cat_name']??'';
  376. $data['tax_short_name'] =$taxInfo['short_name']??'';
  377. $data['tax_code'] =$taxInfo['merge_code']??'';
  378. $data['tax']=$taxInfo['tax']??'';
  379. $data['inv_good_name']=$taxInfo['inv_good_name']??'';
  380. $data['noble_name']=isset($data['noble_metal'])&&$data['noble_metal']!=0?$this->noble[$data['noble_metal']] :"";
  381. $data['combind_list']=[];
  382. $data['wsm_list']=[];
  383. $data['is_combind_child']=true;
  384. if($data['is_combind']==1){
  385. $data['combind_list'] = (new GoodCombind())->where(['spuCode'=>$good_platform['spuCode'],'is_del'=>0])->select()->toArray();
  386. foreach ($data['combind_list'] as &$item){
  387. $item['stock'] =bcmul($item['child_num'],$data['usable_stock']);
  388. $taxInfo=GoodTax::with(['tax'])->where(['spuCode'=>$item['childCode']])->findOrEmpty();
  389. $item['tax_id'] = $taxInfo['tax_id']??'';
  390. $item['tax_name'] = $taxInfo['cat_name']??'';
  391. $item['tax_short_name'] =$taxInfo['short_name']??'';
  392. $item['tax_code'] =$taxInfo['merge_code']??'';
  393. $item['tax']=$taxInfo['tax']??'';
  394. $item['inv_good_name']=$taxInfo['inv_good_name']??'';
  395. }
  396. $data['wsm_list']=(new GoodStock())->withJoin(['wsminfo'] , 'left')
  397. ->where(['spuCode'=>$good_platform['spuCode'] , 'wsm_type'=>[2 , 5]])
  398. ->column('good_stock.id stock_id,name,good_stock.wsm_code,usable_stock');
  399. }else{
  400. $isCombind= (new GoodCombind())->where(['childCode'=>$good_platform['spuCode'],'is_del'=>0])->findOrEmpty();
  401. $data['is_combind_child']=$isCombind->isEmpty();
  402. }
  403. if($data['brand_id']!=0){
  404. $brand=Db::name("brand")->where(["id"=>$data['brand_id']])->find();
  405. $data["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  406. }else{
  407. $data["brand_name"]="";
  408. $data["brand_id"]="";
  409. }
  410. $data['origin_place_cn']="";
  411. $data['delivery_place_cn']="";
  412. if($data['delivery_place']!==""){
  413. $place = ["provice_code"=>"","city_code"=>"","area_code"=>""];
  414. list($place['provice_code'],$place['city_code'],$place['area_code'])=explode(",",$data['delivery_place']);
  415. $data['delivery_place_cn']=GetAddr(json_encode($place));
  416. }
  417. if($data['origin_place']!==""){
  418. $place = ["provice_code"=>"","city_code"=>"","area_code"=>""];
  419. list($place['provice_code'],$place['city_code'],$place['area_code'])=explode(",",$data['origin_place']);
  420. $data['origin_place_cn']=GetAddr(json_encode($place));
  421. }
  422. $excluse = makeExcluse($data['is_exclusive']);
  423. $data['exclusive']=$excluse;
  424. $data["good_info_img"]=$data['good_info_img']!=""? $data['good_info_img']:[];
  425. $data["good_img"]=$data['good_img']!=""? $data['good_img']:[];
  426. $speclist=[];
  427. if(!empty($spec)){
  428. foreach ($spec as $value){
  429. $temp=[];
  430. $temp['id']=$value['id'];
  431. $temp['spuCode']=$value['spuCode'];
  432. $temp['spec_id']=$value['spec_id'];
  433. $temp['spec_value_id']=$value['spec_value_id'];
  434. $temp['is_del']=$value['is_del'];
  435. $sp = Db::name("specs")->where(["id"=>$value['spec_id']])->find();
  436. $temp['spec_name']=isset($sp["spec_name"]) ? $sp["spec_name"]:"";
  437. $spv = Db::name("spec_value")->where(["id"=>$value['spec_value_id']])->find();
  438. $temp['spec_value']=isset($spv["spec_value"]) ? $spv["spec_value"]:"";
  439. $speclist[]=$temp;
  440. }
  441. }
  442. $data["speclist"]=empty($speclist)?[]:$speclist;
  443. $ladder = Db::name("good_ladder")->where(['skuCode'=>$skucode,"is_del"=>0])->select()->toArray();
  444. $data["ladderlist"]=!empty($ladder)?$ladder:[];
  445. $nakelist = Db::name("good_nake")->where(['spuCode'=>$good_platform['spuCode'],"is_del"=>0])->select()->toArray();
  446. // $catinfo = Db::name("cat")->where(["id"=>$data['cat_id']])->find();
  447. $cat_top_list = $data['cat_info'];
  448. $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
  449. // $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  450. $gold_price=0;
  451. if ($data['is_gold_price']==1 && $cat_top_id==6) {
  452. $gold_price = Db::name("gold_price1")->where(["type" => $data['noble_metal'], "status" => 1, "is_del" => 0])->order("addtime desc")->value('price', 0);
  453. }
  454. $data['gold_price'] =$gold_price;
  455. $nakearry=[];
  456. if(!empty($nakelist)){
  457. //实时金价
  458. foreach ($nakelist as $value){
  459. $value['sale_price'] =$value['nake_total'];
  460. //计算最终售价
  461. if ($data['is_gold_price']==1 && $cat_top_id==6) {
  462. //普通商品:直接用财务提交的售价字段;
  463. //贵金属( 商品重量* 最新金价 + 工艺费(财务定价提交的)* 商品重量+包装费+加标费+证书费+产品裸价+其他费用)=商品库商品直接下单的售价
  464. $value['sale_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']);
  465. }
  466. $nakearry[] = $value;
  467. }
  468. }
  469. $proof =Db::name("good_proof")->where(["spuCode"=>$good_platform['spuCode'],"is_del"=>0])->order("updatetime desc")->field("id,proof_type,proof_url")->find();
  470. $data['proof'] = isset($proof)&&$proof!=false? $proof:[];
  471. $data["nakelist"]=$nakearry;
  472. $data['sale_price'] = 0;
  473. if($data['create_source']==1){
  474. $data['sale_price'] = Db::name('sale')->where(['good_code'=>$good_platform['spuCode'],'order_type'=>3])
  475. ->value('sale_price',0);
  476. }
  477. //补充采购员字段
  478. //成本表里的创建人,也是线上商品的采购人,为了防止混淆,给creater取个别名
  479. $temp_basic_info = Db::name('good_basic')
  480. ->field('id,createrid purchase_id,creater purchase')
  481. ->where(['spuCode' => $data['spuCode'], 'is_del' => 0])
  482. ->find();
  483. $data['good_createrid'] = $data['purchase_id'] = $temp_basic_info['purchase_id'] ?? 0;
  484. $data['good_creater'] = $data['purchase'] = $temp_basic_info['purchase'] ?? '';
  485. $data['cgderid'] = $supplier['data']['personid'] ?? 0;
  486. $data['cgder'] = $supplier['data']['person'] ?? '';
  487. return app_show(0, "获取成功", $data);
  488. }
  489. public function SetWarn(){
  490. $condition=["is_del"=>0];
  491. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code']):"";
  492. if($wsm_code!=""){
  493. $condition["wsm_code"] = $wsm_code;
  494. }else{
  495. return error_show(1004,"参数wsm_code 不能为空");
  496. }
  497. // $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  498. // if($type_code!=""){
  499. // $condition["good_type_code"] = $type_code;
  500. // }else{
  501. // return error_show(1004,"参数type_code 不能为空");
  502. // }
  503. $good= Db::name("good_stock")->where($condition)->find();
  504. if(empty($good)){
  505. return error_show(1005,"未找到数据");
  506. }
  507. $warn_stock = isset($this->post['warn_stock']) &&$this->post['warn_stock'] !=="" ? intval($this->post['warn_stock']):"";
  508. if($warn_stock===""){
  509. return error_show(1005,"参数warn_stock 不能为空");
  510. }
  511. $good['warn_stock'] = $warn_stock;
  512. $good['updatetime'] = date("Y-m-d H:i:s");
  513. $up= Db::name("good_stock")->save($good);
  514. if($up){
  515. //商品变动日志表,good_log_code字段存储仓库编码
  516. $data = ['good_log_code' => $wsm_code, "stock_id" => $good['id'], "type" => 1, 'stock' => $warn_stock, "stock_name" => "warn_stock"];
  517. GoodLog::LogAdd($this->post['token'],$data,'setwarn');
  518. return app_show(0,"预警库存更新成功");
  519. }else{
  520. return error_show(1005,"预警库存更新失败");
  521. }
  522. }
  523. public function SetStatus(){
  524. $id = isset($this->post['id']) &&$this->post['id'] !=="" ? intval($this->post['id']):"";
  525. if($id===""){
  526. return error_show(1005,"参数id 不能为空");
  527. }
  528. $good= Db::name("good_type")->where(["id"=>$id,"is_del"=>0])->find();
  529. if(empty($good)){
  530. return error_show(1005,"未找到数据");
  531. }
  532. $good['status'] = $good['status']==1?0 :1;
  533. $good['updatetime'] = date("Y-m-d H:i:s");
  534. $msg = $good['status']==1?"下架" :"上架";
  535. $up= Db::name("good_type")->save($good);
  536. return $up ? app_show(0,"商品{$msg}成功"): error_show(1005,"商品{$msg}失败");
  537. }
  538. public function GetStock(){
  539. $condition = [["a.is_del","=",0],['a.is_stock','=',1]];
  540. $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  541. if($type_code!==""){
  542. $condition[]=["a.spuCode","=",$type_code];
  543. }
  544. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code'])
  545. :"";
  546. if($wsm_code!==""){
  547. //$condition["a.wsm_code"]=$wsm_code;
  548. $condition[]=["a.wsm_code","=",$wsm_code];
  549. }
  550. $suplierNo = isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo'])
  551. :"";
  552. if($suplierNo!==""){
  553. $wsmcode = Db::name("warehouse_info")->where(['supplierNo'=>$suplierNo,"is_del"=>0])->column("wsm_code");
  554. $condition[]=["a.wsm_code","in",$wsmcode];
  555. }
  556. $list = Db::name("good_stock")
  557. ->alias("a")
  558. ->join("warehouse_info b","a.wsm_code=b.wsm_code","left")
  559. // ->join("supplier c","b.supplierNo=c.code","left")
  560. ->where($condition)
  561. ->field("a.id,b.name as wsm_name,b.supplierNo code,b.supplierName name,a.wait_in_stock,a.wait_out_stock,a.usable_stock,a.intra_stock,(a.wait_out_stock+a.usable_stock) as total_stock,a.status,a.warn_stock")->select();
  562. if(empty($list)){
  563. return error_show(1004,"未找到数据");
  564. }
  565. return app_show(0,"获取成功",$list);
  566. }
  567. //库存统计 区间统计
  568. public function GetStockBet(){
  569. $page = isset($this->post['page']) &&$this->post['page'] !=="" ? intval($this->post['page']):1;
  570. $size = isset($this->post['size']) &&$this->post['size'] !=="" ? intval($this->post['size']):10;
  571. $condition = [["is_del","=",0]];
  572. $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  573. if($type_code!==""){
  574. $condition[]=["spuCode","like","%{$type_code}%"];
  575. }
  576. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code'])
  577. :"";
  578. if($wsm_code!==""){
  579. $condition[]=["wsm_code","=",$wsm_code];
  580. }
  581. $suplierNo = isset($this->post['suplierNo']) &&$this->post['suplierNo'] !=="" ? trim($this->post['suplierNo']):"";
  582. if($suplierNo!==""){
  583. $wsmcode = Db::name("warehouse_info")->where(['supplierNo'=>$suplierNo,"is_del"=>0])->column("wsm_code");
  584. $condition[]=["wsm_code","in",$wsmcode];
  585. }
  586. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  587. if ($companyNo !== "") {
  588. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$companyNo,"is_del"=>0])->column("wsm_code");
  589. $condition[]=["wsm_code","in",$wsmcode];
  590. }
  591. $relaComNo = isset($this->post['relaComNo']) && $this->post['relaComNo']!="" ? trim($this->post['relaComNo']):"";
  592. if($relaComNo!=""){
  593. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$relaComNo,"is_del"=>0])->column("wsm_code");
  594. $condition[]=["wsm_code","in",$wsmcode];
  595. }
  596. $start = isset($this->post['start']) &&$this->post['start'] !=="" ? $this->post['start']:"";
  597. $end = isset($this->post['end']) &&$this->post['end'] !=="" ? $this->post['end']:"";
  598. if($start!=""){
  599. $condition[]=["addtime",">=",$start];
  600. }
  601. if($end!=""){
  602. $condition[]=["addtime","<=",$end];
  603. }
  604. $count = Db::name("good_stock")->where($condition)->count();
  605. $page>=ceil($count/$size) ? $page=ceil($count/$size) :"";
  606. $list = Db::name("good_stock")->where($condition)->page($page,$size)->order("addtime desc")->select();
  607. $data=[];
  608. $userCommon = \app\admin\common\User::getIns();
  609. foreach ($list as $key=>$value){
  610. $temp=[];
  611. if($value['wsm_code']!=""){
  612. $wsm = Db::name("warehouse_info")
  613. ->alias("a")
  614. // ->leftJoin("supplier b","a.supplierNo=b.code")
  615. // ->leftJoin("business bus","a.companyNo=bus.companyNo")
  616. ->where(['a.wsm_code'=>$value['wsm_code'],"a.is_del"=>0])
  617. ->field("a.name as wsm_name,wsm_code,a.supplierNo,a.companyNo")
  618. ->find();
  619. $names = $userCommon->handle('getCodeAndName',['code'=>[$wsm['supplierNo'],$wsm['companyNo']]]);
  620. $wsm['supplierName'] = $names['data'][$wsm['supplierNo']]??'';
  621. $wsm['company'] = $names['data'][$wsm['companyNo']]??'';
  622. }
  623. $temp['wsm_name'] = isset($wsm['wsm_name'])?$wsm['wsm_name']:"";
  624. $temp['wsm_code']=$value['wsm_code'];
  625. $temp['supplier_code']=isset($wsm['supplierNo'])?$wsm['supplierNo']:"";
  626. $temp['supplier_name']=isset($wsm['supplierName'])?$wsm['supplierName']:"";
  627. $temp['company_no']=isset($wsm['companyNo'])?$wsm['companyNo']:"";
  628. $temp['company_name']=isset($wsm['company'])?$wsm['company']:"";
  629. if($value['spuCode']!=""){
  630. $good=Db::name("good_basic")
  631. ->alias('g')
  632. ->field('g.*,b.brand_name,u.unit')
  633. ->where(["g.spuCode"=>$value['spuCode'],"g.is_del"=>0])
  634. ->leftJoin('brand b','b.id=g.brand_id')
  635. ->leftJoin('unit u','u.id=g.good_unit')
  636. ->find();
  637. if (empty($good)) {
  638. $good = Db::name("good_zixun")
  639. ->alias('g')
  640. ->field('g.*,b.brand_name,u.unit')
  641. ->where(["g.spuCode" => $value['spuCode'], "g.is_del" => 0])
  642. ->leftJoin('brand b', 'b.id=g.brand_id')
  643. ->leftJoin('unit u', 'u.id=g.good_unit')
  644. ->find();
  645. $speclist =json_decode($good['specinfo'],true);
  646. }else{
  647. //规格信息
  648. $spec = Db::name("good_spec")->field('id,spec_id,spec_value_id')->where(["spuCode" => $value['spuCode'], "is_del" => 0])->select()->toArray();
  649. $speclist = [];
  650. if (!empty($spec)) {
  651. foreach ($spec as $val) {
  652. $tmp = [];
  653. $tmp['spec_id'] = $val['spec_id'];
  654. $tmp['spec_value_id'] = $val['spec_value_id'];
  655. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  656. $tmp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  657. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  658. $tmp['spec_value_name'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  659. $speclist[] = $tmp;
  660. }
  661. }
  662. }
  663. $temp['specinfo'] = $speclist;
  664. }
  665. $temp['good_code']=isset($good['spuCode'])?$good['spuCode']:"";
  666. // $temp['type_code']=isset($good['type_code'])?$good['type_code']:"";
  667. $temp['good_name']=isset($good['good_name'])?$good['good_name']:"";
  668. $temp['unit']=isset($good['unit'])?$good['unit']:"";
  669. $temp['brand_name']=isset($good['brand_name'])?$good['brand_name']:"";
  670. // $temp['attribute']=isset($good['attribute'])?$good['attribute']:"";
  671. $temp['sort_f']=isset($good['cat_id'])?$good['cat_id']:"";
  672. $temp['cat_info']=isset($good['cat_id'])?made($good['cat_id']):"";
  673. $temp['usable_stock'] = $value['usable_stock'];
  674. $temp['wait_in_stock'] = $value['wait_in_stock'];
  675. $temp['wait_out_stock'] = $value['wait_out_stock'];
  676. $temp['intra_stock'] = $value['intra_stock'];
  677. $temp['total_stock'] = $value['wait_out_stock']+$value['usable_stock'];
  678. $temp['warn_stock'] = $value['warn_stock'];
  679. $temp['id'] = $value['id'];
  680. $temp['out_total'] =0;
  681. $temp['in_total'] = 0;
  682. $temp['addtime'] = $value['addtime'];
  683. $data[]=$temp;
  684. }
  685. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  686. }
  687. //库存统计 仓库维度
  688. public function GetStockWsm(){
  689. $page = isset($this->post['page']) &&$this->post['page'] !=="" ? intval($this->post['page']):1;
  690. $size = isset($this->post['size']) &&$this->post['size'] !=="" ? intval($this->post['size']):10;
  691. $condition = [["gs.is_del","=",0]];
  692. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code']):"";
  693. if($wsm_code!==""){
  694. $condition[]=["gs.wsm_code","=",$wsm_code];
  695. }
  696. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  697. if ($companyNo !== "") {
  698. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$companyNo,"is_del"=>0])->column("wsm_code");
  699. $condition[]=["gs.wsm_code","in",$wsmcode];
  700. }
  701. $relaComNo = isset($this->post['relaComNo']) && $this->post['relaComNo']!="" ? trim($this->post['relaComNo']):"";
  702. if($relaComNo!=""){
  703. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$relaComNo,"is_del"=>0])->column("wsm_code");
  704. $condition[]=["gs.wsm_code","in",$wsmcode];
  705. }
  706. $build= Db::name("good_stock")
  707. ->alias('gs')
  708. ->where($condition)
  709. ->where('whi.wsm_type','<>',2)//2表示虚拟仓,虚拟仓不参加统计
  710. ->leftJoin('warehouse_info whi','whi.wsm_code=gs.wsm_code AND whi.is_del=0')
  711. ->group("gs.wsm_code")
  712. ->field("gs.wsm_code")
  713. ->buildSql();
  714. $count = Db::table($build." a")->count();
  715. $page>=ceil($count/$size) ? $page=ceil($count/$size) :"";
  716. $list = Db::name("good_stock")
  717. ->alias('gs')
  718. ->where($condition)
  719. ->where('whi.wsm_type','<>',2)//2表示虚拟仓,虚拟仓不参加统计
  720. ->page($page,$size)
  721. ->leftJoin('warehouse_info whi','whi.wsm_code=gs.wsm_code AND whi.is_del=0')
  722. ->group("gs.wsm_code")
  723. ->field("gs.wsm_code,whi.wsm_type,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(usable_stock+wait_out_stock) total_stock")
  724. ->select()
  725. ->toArray();
  726. $warehouse_info = Db::name("warehouse_info")
  727. ->alias("a")
  728. ->where(['a.wsm_code'=>array_column($list,'wsm_code'),"a.is_del"=>0])
  729. ->column("a.name as wsm_name,wsm_code,a.supplierNo,a.supplierName,a.companyNo,a.companyName,a
  730. .contactor_name",'a.wsm_code');
  731. // ->find();
  732. $persionArr = get_personid_by_supplierNo(array_unique(array_column($warehouse_info,'supplierNo')),'person');
  733. $data=[];
  734. foreach ($list as $key=>$value){
  735. $temp=[];
  736. $temp['wsm_name'] = isset($warehouse_info[$value['wsm_code']]['wsm_name'])?$warehouse_info[$value['wsm_code']]['wsm_name']:"";
  737. $temp['wsm_code']=$value['wsm_code'];
  738. $temp['supplier_code']=isset($warehouse_info[$value['wsm_code']]['supplierNo'])?$warehouse_info[$value['wsm_code']]['supplierNo']:"";
  739. $temp['supplier_name']=isset($warehouse_info[$value['wsm_code']]['supplierName'])?$warehouse_info[$value['wsm_code']]['supplierName']:"";
  740. $temp['company_no']=isset($warehouse_info[$value['wsm_code']]['companyNo'])?$warehouse_info[$value['wsm_code']]['companyNo']:"";
  741. $temp['company_name']=isset($warehouse_info[$value['wsm_code']]['companyName'])?$warehouse_info[$value['wsm_code']]['companyName']:"";
  742. $temp['contactor_name']=isset($warehouse_info[$value['wsm_code']]['contactor_name'])?$warehouse_info[$value['wsm_code']]['contactor_name']:"";
  743. $temp['person']=$persionArr[$warehouse_info[$value['wsm_code']]['supplierNo']]??"";
  744. $temp['usable_stock'] = $value['usable_stock'];
  745. $temp['wait_in_stock'] = $value['wait_in_stock'];
  746. $temp['wait_out_stock'] = $value['wait_out_stock'];
  747. $temp['intra_stock'] = $value['intra_stock'];
  748. $temp['total_stock'] = $value['usable_stock']+$value['wait_out_stock'] ;
  749. // $temp['child']=isset($good)&&!empty($good) ? $good:[];
  750. $data[]=$temp;
  751. }
  752. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  753. }
  754. //库存统计 仓库维度 明细
  755. public function GetStockWsmChild()
  756. {
  757. $wsm_code = $this->request->post('wsm_code', '', 'trim');
  758. $good = Db::name("good_stock")
  759. ->alias("a")
  760. ->leftJoin("good_basic c", "c.spuCode=a.spuCode")
  761. ->where(["a.wsm_code" => $wsm_code, "a.is_del" => 0, "c.is_del" => 0])
  762. ->select()
  763. ->toArray();
  764. // $names = $userCommon->handle('getCodeAndName', [$wsm['supplierNo'], $wsm['companyNo']]);
  765. // $wsm['supplierName'] = $names['data'][$wsm['supplierNo']] ?? '';
  766. // $wsm['company'] = $names['data'][$wsm['companyNo']] ?? '';
  767. //商品单位和品牌
  768. $good_unit_s = Db::name("unit")
  769. ->whereIn('id', array_column($good, 'good_unit'))
  770. ->where('is_del', 0)
  771. ->column('unit', 'id');
  772. $brands = Db::name("brand")
  773. ->whereIn('id', array_column($good, 'brand_id'))
  774. ->where('is_del', 0)
  775. ->column('brand_name', 'id');
  776. foreach ($good as &$item_good) {
  777. //规格信息
  778. $spec = Db::name("good_spec")->field('id,spec_id,spec_value_id')->where(["spuCode" => $item_good['spuCode'], "is_del" => 0])->select()->toArray();
  779. $speclist = [];
  780. if (!empty($spec)) {
  781. foreach ($spec as $val) {
  782. $tmp = [];
  783. $tmp['spec_id'] = $val['spec_id'];
  784. $tmp['spec_value_id'] = $val['spec_value_id'];
  785. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  786. $tmp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  787. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  788. $tmp['spec_value_name'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  789. $speclist[] = $tmp;
  790. }
  791. }
  792. $item_good['specinfo'] = $speclist;
  793. $item_good['unit'] = $good_unit_s[$item_good['good_unit']] ?? '';
  794. $item_good['brand_name'] = $brands[$item_good['brand_id']] ?? '';
  795. $item_good['can'] = made($item_good['cat_id'], []);
  796. $item_good['total_stock'] = $item_good['usable_stock'] + $item_good['wait_out_stock'];
  797. }
  798. return json_show(0, '获取成功', $good);
  799. }
  800. //库存统计 商品维度
  801. public function GetStockGod(){
  802. $page = isset($this->post['page']) &&$this->post['page'] !=="" ? intval($this->post['page']):1;
  803. $size = isset($this->post['size']) &&$this->post['size'] !=="" ? intval($this->post['size']):10;
  804. $condition = [["b.is_del", "=", 0], ["a.wsm_type", "<>", 2],['b.is_stock','=',1]];//库存为0的也要显示出来
  805. $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  806. if($type_code!==""){
  807. $condition[]=["b.spuCode","like","%{$type_code}%"];
  808. }
  809. $good_name = isset($this->post['good_name']) && $this->post['good_name'] !== "" ? trim($this->post['good_name']) : "";
  810. if ($good_name !== "") {
  811. $condition[] = ["b.good_name", "like", "%{$good_name}%"];
  812. }
  813. $relaComNo = isset($this->post['relaComNo']) && $this->post['relaComNo']!="" ? trim($this->post['relaComNo']):"";
  814. if($relaComNo!="") $condition[]=['b.companyNo','=', $relaComNo];
  815. $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo']!="" ? trim($this->post['supplierNo']):"";
  816. if($supplierNo!=="") $condition[]=['b.supplierNo','=', $supplierNo];
  817. $isZero=isset($this->post['isZero']) && $this->post['isZero']!='' ? intval($this->post['isZero']):0;
  818. if($isZero!==0) $condition[]=['c.wait_in_stock|c.wait_out_stock|c.usable_stock|c.intra_stock','<>',
  819. 0];
  820. $count = Db::name("good_basic")
  821. ->alias("b")
  822. ->join("good_stock c","c.spuCode = b.spuCode","left")
  823. ->leftJoin("warehouse_info a","a.wsm_code=c.wsm_code")
  824. ->where($condition)
  825. ->group("b.spuCode,b.good_name,b.good_unit,b.cat_id,b.craft_desc,b.addtime")
  826. ->count();
  827. $page>=ceil($count/$size) ? $page=ceil($count/$size) :"";
  828. $list = Db::name("good_basic")
  829. ->alias("b")
  830. ->join("good_stock c","c.spuCode = b.spuCode","left")
  831. ->leftJoin("warehouse_info a","a.wsm_code=c.wsm_code")
  832. ->where($condition)
  833. ->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.usable_stock)+sum(c.wait_out_stock)) total_stock")
  834. ->page($page,$size)
  835. ->order("b.addtime desc")
  836. ->group("b.spuCode,b.good_name,b.good_unit,b.brand_id,b.cat_id,b.craft_desc,b.addtime")
  837. ->select()
  838. ->toArray();
  839. $data=[];
  840. if($list) {
  841. //商品单位和品牌
  842. $good_unit_s = Db::name("unit")->whereIn('id', array_column($list, 'good_unit'))->where('is_del', 0)->column('unit', 'id');
  843. $brands = Db::name("brand")->whereIn('id', array_column($list, 'brand_id'))->where('is_del', 0)->column('brand_name', 'id');
  844. $userCommon = \app\admin\common\User::getIns();
  845. foreach ($list as $key => $value) {
  846. $temp = [];
  847. if ($value['spuCode'] != "") {
  848. $child = Db::name("good_stock")
  849. ->alias("a")
  850. ->join("warehouse_info b", "a.wsm_code=b.wsm_code", "left")
  851. ->where(['a.spuCode' => $value['spuCode'], "a.is_del" => 0])
  852. ->where("b.wsm_type","<>",2)
  853. ->field("a.wsm_code,b.wsm_type,b.name wsm_name,a.wait_in_stock,a.wait_out_stock,a.usable_stock,a.intra_stock,(a.wait_out_stock+a.usable_stock) total_stock,a.warn_stock,b.supplierNo,b.companyNo,b.contactor_name")
  854. ->select()
  855. ->toArray();
  856. foreach ($child as &$vvv){
  857. $names = $userCommon->handle('getCodeAndName',['code'=>[$vvv['supplierNo'],$vvv['companyNo']]]);
  858. $person = get_personid_by_supplierNo([$vvv['supplierNo']],'person');
  859. $vvv['person'] =$person[$vvv['supplierNo']]??"";
  860. $vvv['supplierName'] = $names['data'][$vvv['supplierNo']]??'';
  861. $vvv['company'] = $names['data'][$vvv['companyNo']]??'';
  862. }
  863. // echo Db::name("good_stock")->getLastSql();
  864. }
  865. $temp['good_name'] = $value['good_name'];
  866. $temp['good_code'] = $value['spuCode'];
  867. $temp['type_code'] = '';
  868. // $unit = Db::name("unit")->where(['id' => $value['good_unit']])->find();
  869. $temp['unit'] =$good_unit_s[$value['good_unit']]??'';
  870. $temp['brand_name'] =$brands[$value['brand_id']]??'';
  871. $temp['sort_f'] = isset($value['cat_id']) ? made($value['cat_id']) : [];
  872. $temp['sort_f'] = implode('/', array_column($temp['sort_f'], 'name'));//由于这个字段原样在页面显示,所以在这里特意拼接成字符串
  873. $temp['attribute'] = $value['craft_desc'];
  874. $temp['addtime'] = $value['addtime'];
  875. $temp['usable_stock'] = isset($value['usable_stock']) ? $value['usable_stock'] : "";
  876. $temp['wait_in_stock'] = isset($value['wait_in_stock']) ? $value['wait_in_stock'] : "";
  877. $temp['wait_out_stock'] = isset($value['wait_out_stock']) ? $value['wait_out_stock'] : "";
  878. $temp['intra_stock'] = isset($value['intra_stock']) ? $value['intra_stock'] : "";
  879. $temp['total_stock'] = intval($value['wait_out_stock'])+intval($value['usable_stock']);
  880. // $temp['warn_stock'] = isset($value['warn_stock'])? $value['warn_stock']:"";
  881. $temp['child'] = isset($child) && !empty($child) ? $child : [];
  882. //规格信息
  883. $spec = Db::name("good_spec")->field('id,spec_id,spec_value_id')->where(["spuCode" => $value['spuCode'], "is_del" => 0])->select()->toArray();
  884. $speclist = [];
  885. if (!empty($spec)) {
  886. foreach ($spec as $val) {
  887. $tmp = [];
  888. $tmp['spec_id'] = $val['spec_id'];
  889. $tmp['spec_value_id'] = $val['spec_value_id'];
  890. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  891. $tmp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  892. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  893. $tmp['spec_value_name'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  894. $speclist[] = $tmp;
  895. }
  896. }
  897. $temp['specinfo'] = $speclist;
  898. $data[] = $temp;
  899. }
  900. }
  901. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  902. }
  903. /**
  904. * @return \think\response\Json|void
  905. * @throws \think\db\exception\DataNotFoundException
  906. * @throws \think\db\exception\DbException
  907. * @throws \think\db\exception\ModelNotFoundException
  908. */
  909. public function Stat(){
  910. $condition =[["gs.is_del","=",0]];
  911. $wsm_code = isset($this->post['wsm_code']) &&$this->post['wsm_code'] !=="" ? trim($this->post['wsm_code']):"";
  912. if($wsm_code!=""){
  913. //$condition["gs.wsm_code"] = $wsm_code;
  914. $condition[]=["gs.wsm_code","=",$wsm_code];
  915. }
  916. $supplierNo = isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']) :"";
  917. if($supplierNo!=="") $condition[]=["whi.supplierNo","=",$supplierNo];
  918. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  919. if ($companyNo !== "") {
  920. // $where['khNo'] = $khNo;
  921. $wsmcode = Db::name("warehouse_info")->where(['companyNo' => $companyNo, "is_del" => 0])->column("wsm_code");
  922. $condition[] = ["gs.wsm_code", "in", $wsmcode];
  923. }
  924. $relaComNo = isset($this->post['relaComNo']) && $this->post['relaComNo']!="" ? trim($this->post['relaComNo']):"";
  925. if($relaComNo!="") {
  926. $wsmcode = Db::name("warehouse_info")
  927. ->where(['companyNo'=>$relaComNo,"is_del"=>0])
  928. ->column("wsm_code");
  929. $condition[]=["gs.wsm_code","in",$wsmcode];
  930. }
  931. $good_name = trim($this->post['good_name'] ?? '');
  932. if ($good_name !== '') $condition[] = ['c.good_name', 'like', '%' . $good_name . '%'];
  933. $spuCode = trim($this->post['spuCode'] ?? '');
  934. if ($spuCode !== '') $condition[] = ['gs.spuCode', 'like', '%' . $spuCode . '%'];
  935. $is_stock = trim($this->post['is_stock'] ?? '');
  936. if ($is_stock !== '') $condition[] = ['c.is_stock', '=', $is_stock];
  937. // $type_code = isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  938. // if($type_code!=""){
  939. // $condition[] = ["gs.good_type_code","=",$type_code];
  940. // }
  941. $statlist = Db::name("good_stock")
  942. ->alias('gs')
  943. ->where($condition)
  944. ->where('whi.wsm_type','<>',2)//2表示虚拟仓,虚拟仓不参与
  945. ->leftJoin('warehouse_info whi','whi.wsm_code=gs.wsm_code AND whi.is_del=0')
  946. ->leftJoin('good_basic c','c.spuCode=gs.spuCode AND c.is_del=0')
  947. ->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.usable_stock+gs.wait_out_stock) as total_stock,sum(gs.warn_stock) as warn_stock")
  948. ->findOrEmpty();
  949. return app_show(0,"获取成功",$statlist);
  950. }
  951. //废弃接口
  952. public function all(){
  953. $condtion=["a.is_del"=>0,"b.is_del"=>0];
  954. $wsmcode =isset($this->post['wsmcode']) &&$this->post['wsmcode'] !=="" ? trim($this->post['wsmcode']):"";
  955. if($wsmcode!=""){
  956. $typecode= Db::name("good_stock")->where(["wsm_code"=>$wsmcode,'is_del'=>0])->column("good_type_code");
  957. $condtion["b.type_code"] = $typecode;
  958. }
  959. $good_code =isset($this->post['type_code']) &&$this->post['type_code'] !=="" ? trim($this->post['type_code']):"";
  960. if($good_code!=""){
  961. $condtion['b.type_code'] = $good_code;
  962. }
  963. $goodcode =isset($this->post['good_code']) &&$this->post['good_code'] !=="" ? trim($this->post['good_code'])
  964. :"";
  965. if($goodcode!=""){
  966. $condtion['a.good_code'] = $goodcode;
  967. }
  968. $good_name =isset($this->post['good_name']) &&$this->post['good_name'] !=="" ? trim($this->post['good_name'])
  969. :"";
  970. if($good_name!=""){
  971. $condtion['a.good_name'] = Db::raw("like '%{$good_name}%'");
  972. }
  973. $supplierNo =isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']):"";
  974. if($supplierNo!=""){
  975. // $supplier = Db::name("supplier")->where(["code"=>$supplierNo])->find();
  976. // if(empty($supplier)){
  977. // return error_show(1004,"未找到供应商信息");
  978. // }
  979. $condtion["a.gys_code"] = $supplierNo;
  980. }
  981. $list = Db::name("good_type")->alias("b")->join("good a","a.good_code = b.good_code","left")
  982. ->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,
  983. 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")
  984. ->select();
  985. $data=[];
  986. foreach ($list as $key=>$value){
  987. $stock = Db::name("good_stock")->where(["good_type_code"=>$value['type_code'],"is_del"=>0])->sum("usable_stock");
  988. $value['usable_stock']=$stock;
  989. //废弃
  990. $supplier = Db::name("supplier")->where(["code"=>$value['gys_code']])->find();//废弃
  991. $value['supplier_name'] =isset($supplier['name']) ?$supplier['name'] :"";
  992. $data[]=$value;
  993. }
  994. return app_show(0,"获取成功",$data);
  995. }
  996. //库存概况
  997. public function loglist(){
  998. $param = $this->request->filter('trim')->only(['wsm_code'=>'','supplierNo'=>'','companyNo'=>'','is_stock'=>'','good_name'=>'','spuCode'=>'','page'=>1,'size'=>10,'relaComNo'=>''],'post');
  999. $where=[];
  1000. if($param['wsm_code']!="") $where[]=['b.wsm_code',"like","%".$param['wsm_code']."%"];
  1001. // $supplierNo =isset($this->post['supplierNo']) &&$this->post['supplierNo'] !=="" ? trim($this->post['supplierNo']):"";
  1002. if($param['supplierNo']!=""){
  1003. $where[]=['c.supplierNo',"=",$param['supplierNo']];
  1004. }
  1005. // $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  1006. if ($param['companyNo'] !== "") {
  1007. $wsmcode = Db::name("warehouse_info")->where(['companyNo'=>$param['companyNo'],"is_del"=>0])->column("wsm_code");
  1008. $where[]=["b.wsm_code","in",$wsmcode];
  1009. }
  1010. if ($param['relaComNo'] != '') {
  1011. $wsmcode = Db::name("warehouse_info")
  1012. ->where(['companyNo' => $param['relaComNo'], "is_del" => 0])
  1013. ->column("wsm_code");
  1014. $where[] = ["b.wsm_code", "in", $wsmcode];
  1015. }
  1016. if($param['is_stock']!="") $where[]=['c.is_stock','=',$param['is_stock']];
  1017. if($param['good_name']!="") $where[]=['c.good_name','like','%'.$param['good_name'].'%'];
  1018. if($param['spuCode']!="") $where[]=['b.spuCode','like','%'.$param['spuCode'].'%'];
  1019. $count = Db::name("good_log")
  1020. ->alias('a')
  1021. ->leftJoin("good_stock b","b.id=a.stock_id")
  1022. ->leftJoin('good c','c.spuCode=b.spuCode')
  1023. ->where($where)
  1024. ->count();
  1025. $total = ceil($count/$param['size']);
  1026. $page = $total>=$param['page'] ? $param['page'] :$total;
  1027. $list = Db::name("good_log")
  1028. ->alias('a')
  1029. ->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,c.is_stock,c.good_name,c.cat_id,c.companyNo,c.supplierNo")
  1030. ->leftJoin('good_stock b','b.id=a.stock_id')
  1031. ->leftJoin('good c','c.spuCode=b.spuCode')
  1032. ->where($where)
  1033. ->page($page,$param['size'])
  1034. ->order("a.addtime desc")
  1035. ->select()
  1036. ->toArray();
  1037. // $data=[];
  1038. $action_uids = array_column($list, 'action_uid');
  1039. $action_uids = array_unique($action_uids);
  1040. $item = get_company_name_by_uid($action_uids);
  1041. // $item = [];
  1042. // foreach ($action_uids as $action_uid) {
  1043. // $items = Db::name("depart_user")->where('uid', $action_uid)->column("itemid");
  1044. // foreach ($items as $it) {
  1045. // $item[$action_uid][] = implode('/', array_column(GetPart($it), 'name'));
  1046. // }
  1047. // }
  1048. $userCommon = \app\admin\common\User::getIns();
  1049. $wsmcode = Db::name("warehouse_info")
  1050. ->alias("a")
  1051. ->where(['a.wsm_code'=>array_column($list,"wsm_code"),"a.is_del"=>0])
  1052. ->column("a.name as wsm_name","wsm_code");
  1053. $names = $userCommon->handle('getCodeAndName', ['code' =>array_merge(array_column($list,"companyNo"),array_column($list,"supplierNo"))]);
  1054. foreach ($list as &$value){
  1055. $value['supplierName'] = $names['data'][$value['supplierNo']] ?? '';
  1056. $value['company'] = $names['data'][$value['companyNo']] ?? '';
  1057. $int = isset($value['cat_id']) && $value['cat_id'] != 0 ? made($value['cat_id']) : [];
  1058. $value['wsm_name'] =$wsmcode[$value['wsm_code']]??"";
  1059. $value['action_type_cn'] =$this->acton[$value['action_type']];
  1060. $value['item'] = $item[$value['action_uid']] ?? '';
  1061. $value['can'] =$int;
  1062. }
  1063. return app_show(0,"获取成功",['list'=>$list,'count'=>$count]);
  1064. }
  1065. public function goodlist()
  1066. {
  1067. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
  1068. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
  1069. $where = [["a.is_del", "=", 0], ["b.exam_status", "=", 3], ["b.is_del", "=", 0], ["c.is_del", "=", 0], ["c.status", "=", 1]];
  1070. $paltcode = isset($this->post["platform_code"]) && $this->post["platform_code"] != "" ? trim($this->post["platform_code"]) : "";
  1071. if ($paltcode != "") {
  1072. $where[] = ["platform_code", "=", $paltcode];
  1073. }
  1074. $companyNo = isset($this->post["companyNo"]) && $this->post["companyNo"] != "" ? trim($this->post["companyNo"]) : "";
  1075. if ($companyNo != "") {
  1076. $where[] = ["companyNo", "like", "%$companyNo%"];
  1077. }
  1078. $cat_id = isset($this->post["cat_id"]) && $this->post["cat_id"] !== "" ? intval($this->post["cat_id"]) : "";
  1079. if ($cat_id !== "") {
  1080. //获取当前分类及所有子级
  1081. $where[] = ["cat_id", "in", manger([$cat_id])];
  1082. }
  1083. $buy_num = isset($this->post["buy_num"]) && $this->post["buy_num"] !== "" ? intval($this->post["buy_num"]) : "";
  1084. if ($buy_num !== "") {
  1085. $where[] = ["c.min_num", "<=", $buy_num];
  1086. }
  1087. $price = isset($this->post["price"]) && $this->post["price"] !== "" ? floatval($this->post["price"]) : "";
  1088. if ($price !== "") {
  1089. $where[] = ["c.sale_price", "<=", $price];
  1090. }
  1091. $temp = Db::name('good_ladder')
  1092. ->field('skuCode,MAX(min_num) min_num')
  1093. ->where([
  1094. ['min_num', '<=', $buy_num],
  1095. ['sale_price', '<=', $price],
  1096. ['is_del', '=', 0],
  1097. ['status', '=', 1],
  1098. ])->group('skuCode')
  1099. ->order('skuCode', 'desc')->buildSql();
  1100. $count = Db::name('good_ladder')
  1101. ->alias('c')
  1102. ->field('c.id,c.skuCode,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`')
  1103. ->join($temp . ' temp', 'temp.skuCode = c.skuCode AND temp.min_num = c.min_num')
  1104. ->leftJoin('good_platform b', 'b.skuCode=c.skuCode')
  1105. ->leftJoin('good a', 'a.spuCode = b.spuCode AND a.is_del=0')
  1106. ->where($where)
  1107. ->count();
  1108. $total = ceil($count / $size);
  1109. $page = $page >= $total ? $total : $page;
  1110. $list = Db::name('good_ladder')
  1111. ->alias('c')
  1112. ->field('c.id,c.skuCode,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`')
  1113. ->join($temp . ' temp', 'temp.skuCode = c.skuCode AND temp.min_num = c.min_num')
  1114. ->leftJoin('good_platform b', 'b.skuCode=c.skuCode')
  1115. ->leftJoin('good a', 'a.spuCode = b.spuCode AND a.is_del=0')
  1116. ->where($where)
  1117. ->page($page,$size)
  1118. ->select()
  1119. ->toArray();
  1120. // $list = Db::name('good')
  1121. // ->alias("a")
  1122. // ->leftJoin("good_platform b","a.spuCode=b.spuCode")
  1123. // ->leftJoin("good_ladder c","b.skuCode=c.skuCode")
  1124. // ->where($where)->fetchSql()
  1125. // ->where('a.spuCode','SKU2205251851017540')
  1126. // ->page($page,$size)
  1127. // ->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")
  1128. // ->order("b.addtime desc")
  1129. // ->select();halt($list);
  1130. // ->toArray();
  1131. $data = [];
  1132. $platform = Db::name('platform')
  1133. ->whereIn('id',array_column($list,'platform_code'))
  1134. ->column('platform_name,platform_code','id');
  1135. $brand = Db::name('brand')
  1136. ->whereIn('id',array_column($list,'brand_id'))
  1137. ->column('brand_name','id');
  1138. $unit = Db::name('unit')
  1139. ->whereIn('id',array_column($list,'good_unit'))
  1140. ->column('unit','id');
  1141. $userCommon =\app\admin\common\User::getIns();
  1142. $names = $userCommon->handle('getCodeAndName',['code'=>array_merge(array_column($list,'supplierNo'),array_column($list,'companyNo'))]);
  1143. foreach ($list as $value) {
  1144. $value['cat_info'] = made($value['cat_id'], []);
  1145. // $platform = Db::name("platform")->where(["id" => $value['platform_code']])->find();
  1146. $value['platform_name'] = $platform[$value['platform_code']]['platform_name']??'';//isset($platform['platform_name']) ? $platform['platform_name'] : "";
  1147. $value['platform_code_en'] = $platform[$value['platform_code']]['platform_code']??'';//isset($platform['platform_code']) ? $platform['platform_code'] : "";
  1148. // $supplier = Db::name("supplier")->where(["code" => $value['supplierNo']])->find();
  1149. $value['supplier_name'] = $names['data'][$value['supplierNo']]??'';//isset($supplier['name']) ? $supplier['name'] : "";
  1150. // $brand = Db::name("brand")->where(["id" => $value['brand_id']])->find();
  1151. $value["brand_name"] = $brand[$value['brand_id']]??'';//isset($brand['brand_name']) ? $brand['brand_name'] : "";
  1152. // $unit = Db::name("unit")->where(["id" => $value['good_unit']])->find();
  1153. $value['unit'] = $unit[$value['good_unit']]??'';//isset($unit['unit']) ? $unit['unit'] : "";
  1154. // $company = Db::name("business")->where(["companyNo" => $value['companyNo']])->find();
  1155. $value['company'] = $names['data'][$value['companyNo']]??'';//isset($company['company']) ? $company['company'] : "";
  1156. $value['stock_total'] = Db::name("good_stock")->where(['spuCode' => $value['spuCode'], "is_del" => 0])->sum("usable_stock");
  1157. $value['status'] = $value['exam_status'];
  1158. $data[] = $value;
  1159. }
  1160. return app_show(0, "获取成功", ['list' => $data, 'count' => $count]);
  1161. }
  1162. //根据价格区间,筛选符合条件的商品列表
  1163. public function getGoodListByLadder()
  1164. {
  1165. //1.请求参数
  1166. $param = $this->request->only([
  1167. 'good_type' => '',
  1168. // 'start' => '',
  1169. // 'end' => '',
  1170. 'is_stock' => '',
  1171. 'cat_id' => 0,
  1172. 'brand_id' => 0,
  1173. 'min_price' => 0,
  1174. 'max_price' => 0,
  1175. 'moq' => 0,//最低起订量?
  1176. 'good_name' => '',
  1177. 'skucode' => '',
  1178. 'spucode' => '',
  1179. 'companyNo' => '',//业务企业编号
  1180. 'plat_code' => '',//平台商品编号
  1181. 'creater' => '',//创建人
  1182. 'platform_code' => '',
  1183. 'supplierNo' => '',
  1184. 'page' => 1,
  1185. 'size' => 15,
  1186. 'company_name'=>'',
  1187. 'relaComNo'=>'',
  1188. ], 'post', 'trim');
  1189. $where = [["gl.is_del", "=", 0], ['gp.exam_status', '=', 3]];//exam_status==6已上线
  1190. if ($param['good_type']!='') $where[] = ['gb.good_type', '=', $param['good_type']];
  1191. if ($param['is_stock']!='') $where[] = ['gb.is_stock', '=', $param['is_stock']];
  1192. if (!empty($param['cat_id'])) $where[] = ['gb.cat_id', '=', $param['cat_id']];
  1193. if (!empty($param['brand_id'])) $where[] = ['gb.brand_id', '=', $param['brand_id']];
  1194. if ($param['min_price']!='' && $param['max_price']!='') $where[] = ['gl.sale_price', 'between', [$param['min_price'], $param['max_price']]];
  1195. if (!empty($param['moq'])) $where[] = ['gl.min_num', '>=', $param['moq']];
  1196. if (!empty($param['good_name'])) $where[] = ['gb.good_name', 'like', '%' . $param['good_name'] . '%'];
  1197. if (!empty($param['skucode'])) $where[] = ['gl.skuCode', 'like', '%' . $param['skucode'] . '%'];
  1198. if (!empty($param['spucode'])) $where[] = ['gp.spuCode', 'like', '%' . $param['spucode'] . '%'];
  1199. if (!empty($param['companyNo'])) $where[] = ['gb.companyNo', 'like', '%' . $param['companyNo'], '%'];
  1200. if (!empty($param['plat_code'])) $where[] = ['gp.plat_code', 'like', '%' . $param['plat_code'], '%'];
  1201. if (!empty($param['creater'])) $where[] = ['gb.creater', 'like', '%' . $param['creater'], '%'];
  1202. if (!empty($param['platform_code'])) $where[] = ['gp.platform_code', 'like', '%' . $param['platform_code'], '%'];
  1203. if (!empty($param['company_name'])) $where[] = ['gb.createrid', 'in', get_company_item_user_by_name($param['company_name'])];
  1204. if ($param['relaComNo'] != '') $where[] = ['gb.companyNo|gb.supplierNo', '=', $param['relaComNo']];
  1205. //5.获取结果
  1206. $count = Db::name('good_ladder')
  1207. ->alias('gl')
  1208. ->leftJoin('good_platform gp', 'gp.skuCode=gl.skuCode AND gp.is_del=0')
  1209. ->leftJoin('platform p', 'p.id=gp.platform_code AND p.is_del=0')
  1210. ->leftJoin('good gb', 'gb.spuCode=gp.spuCode AND gb.is_del=0')
  1211. ->where($where)
  1212. ->count('gl.id');
  1213. $list = Db::name('good_ladder')
  1214. ->alias('gl')
  1215. ->field('gl.id,gl.skuCode,gp.spuCode,p.platform_name,gb.good_thumb_img,gb.good_name,gb.cat_id,gb.good_type,gb.is_stock,gb.brand_id,gp.plat_code,gl.min_num moq,gl.sale_price,gb.creater ,"" purchase,gb.createrid,gb.companyNo,gb.companyName,gb.supplierNo')
  1216. ->leftJoin('good_platform gp', 'gp.skuCode=gl.skuCode AND gp.is_del=0')
  1217. ->leftJoin('platform p', 'p.id=gp.platform_code AND p.is_del=0')
  1218. ->leftJoin('good_basic gb', 'gb.spuCode=gp.spuCode AND gb.is_del=0')
  1219. ->where($where)
  1220. ->page($param['page'], $param['size'])
  1221. ->order(['gl.skuCode' => 'asc', 'gl.addtime' => 'desc', 'gl.id' => 'desc'])
  1222. ->select()
  1223. ->toArray();
  1224. $all_createrid = array_column($list,'createrid');
  1225. $item = get_company_name_by_uid($all_createrid);
  1226. //6.补充数据,照搬list方法
  1227. $all_brand = Db::name('brand')
  1228. ->where('is_del', 0)
  1229. ->whereIn('id', array_column($list, 'brand_id'))
  1230. ->column('brand_name', 'id');
  1231. $userCommon = \app\admin\common\User::getIns();
  1232. $temp = $userCommon->handle('sGetList',['more_code'=>array_column($list,'supplierNo')]);
  1233. $person = array_column($temp['data']['list'],'person','code');
  1234. // $names = $userCommon->handle('getCodeAndName', ['code' => array_column($list, 'companyNo')]);
  1235. // $all_company = $names['data'];
  1236. // $all_company = Db::name('business')
  1237. // ->where('is_del', 0)
  1238. // ->whereIn('companyNo', array_column($list, 'companyNo'))
  1239. // ->column('company', 'companyNo');
  1240. foreach ($list as &$value) {
  1241. $value['cat_info'] = made($value['cat_id'], []);
  1242. $value['brand_name'] = isset($all_brand[$value['brand_id']]) ? $all_brand[$value['brand_id']] : '';
  1243. // $value['company'] = isset($all_company[$value['companyNo']]) ? $all_company[$value['companyNo']] : '';
  1244. $value['stock_total'] = Db::name("good_stock")
  1245. ->where(['spuCode' => $value['spuCode'], "is_del" => 0])
  1246. ->sum("usable_stock");
  1247. $value['company_name'] = $item[$value['createrid']]??'';
  1248. $value['purchase'] = $person[$value['supplierNo']] ?? '';//供应商负责人
  1249. }
  1250. return app_show(0, "获取成功", ['list' => $list, 'count' => $count]);
  1251. }
  1252. public function getCombind(){
  1253. $param= $this->request->param(['spuCode'=>'',"isZx"=>""],'post','trim');
  1254. $list = (new GoodCombind())->with([$param['isZx']==1?"goodZx":"goodBasic"])->where('spuCode',$param['spuCode'])->select();
  1255. foreach ($list as &$item){
  1256. $taxInfo=GoodTax::with(['tax'])->where(['spuCode'=>$item['childCode']])->findOrEmpty();
  1257. $item['tax_id'] = $taxInfo['tax_id']??'';
  1258. $item['tax_name'] = $taxInfo['cat_name']??'';
  1259. $item['tax_short_name'] =$taxInfo['short_name']??'';
  1260. $item['tax_code'] =$taxInfo['merge_code']??'';
  1261. $item['tax']=$taxInfo['tax']??'';
  1262. $item['inv_good_name']=$taxInfo['inv_good_name']??'';
  1263. }
  1264. $this->success('获取成功',$list);
  1265. }
  1266. }