Reorder.php 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\DataGroup as DataGroupModel;
  4. use app\admin\model\GoodStockInfo;
  5. use app\admin\model\ProcessOrder;
  6. use think\Exception;
  7. use think\facade\Db;
  8. use think\App;
  9. use app\admin\model\ActionLog;
  10. use think\facade\Validate;
  11. //销售单退货(售前退货)
  12. class Reorder extends Base
  13. {
  14. public function __construct(App $app)
  15. {
  16. parent::__construct($app);
  17. }
  18. //创建退货单(售前退货单)
  19. public function create()
  20. {
  21. $ordeCode = isset($this->post['orderCode']) && $this->post['orderCode'] != '' ? trim($this->post['orderCode']) : "";
  22. if ($ordeCode == '') return json_show(1004, "参数orderCode 不能为空");
  23. $order = Db::name("sale")->where(["orderCode" => $ordeCode, "is_del" => 0])->findOrEmpty();
  24. if (empty($order)) return json_show(1005, "未找到订单数据");
  25. $retrun = Db::name("sale_return")
  26. ->where(["orderCode" => $ordeCode, "is_del" => 0, "status" => [1, 9, 8, 10, 11, 12]])
  27. ->count('id');
  28. if ($retrun > 0) return json_show(1005, "存在未完成退货订单数据");
  29. if ($order['order_type'] == 3 || $order['order_type'] == 4) {
  30. $goon = Db::name("good_zixun")
  31. ->where(["spuCode" => $order['good_code'], "is_del" => 0])
  32. ->findOrEmpty();
  33. } else {
  34. $goon = Db::name('good_platform')
  35. ->alias('a')
  36. ->join('good b', 'b.spuCode=a.spuCode', 'left')
  37. ->where(['a.skuCode' => $order['skuCode']])
  38. ->field("b.creater,b.createrid,b.supplierNo")
  39. ->findOrEmpty();
  40. }
  41. if (empty($goon)) return json_show(1005, "未找到商品数据");
  42. $userCommon = \app\admin\common\User::getIns();
  43. $tmp = $userCommon->handle('sInfo', ['code' => $goon['supplierNo']]);
  44. if (!isset($tmp['code']) || $tmp['code'] != 0) return json_show($tmp['code'], $tmp['message'], $tmp['data']);
  45. $supplier = $tmp['data'];
  46. if (empty($supplier)) return json_show(1005, "未找到商品供应商数据");
  47. $fininfo =GetFin("admin/orderischeck",["token"=>$this->post['token'],"orderCode"=>$ordeCode]);
  48. if(!isset($fininfo['code'])||$fininfo['code']!=0 ){
  49. return json_show(1005, $fininfo['message']??"结算校验失败");
  50. }
  51. $errorCode = isset($this->post['errorCode']) && $this->post['errorCode'] != '' ? trim($this->post['errorCode']) : "";
  52. if ($errorCode == '') return json_show(1004, "参数errorCode 不能为空");
  53. $error = Db::name('result_info')
  54. ->field('id')
  55. ->where(["result_code" => $errorCode, "is_del" => 0])
  56. ->findOrEmpty();
  57. if (empty($error)) return json_show(1005, "未找到退货原因数据");
  58. $remark = isset($this->post['remark']) && $this->post['remark'] != '' ? trim($this->post['remark']) : "";
  59. $thnum = isset($this->post['thnum']) && $this->post['thnum'] != '' ? intval($this->post['thnum']) : "";
  60. // $token = isset($this->post['token'])&&$this->post['token']!='' ? trim($this->post['token']):"";
  61. // if($token==''){
  62. // return json_show(105,"参数token不能为空");
  63. // }
  64. // $user =GetUserInfo($token);
  65. // if(empty($user)||$user['code']!=0){
  66. // return json_show(1002,"申请人数据不存在");
  67. // }
  68. $is_addr = 0;
  69. $rm = $this->uid;//isset($user["data"]['id']) ? $user["data"]['id'] : "";
  70. $ri = $this->uname;//isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  71. $returnadr = isset($this->post['returnAddr']) && !empty($this->post['returnAddr']) ? $this->post['returnAddr'] : "";
  72. if ($returnadr != '') {
  73. $thnum = array_sum(array_column($returnadr, "return_num"));
  74. $is_addr = 1;
  75. }
  76. //如果全退,且没有成功的售后申请单 提示使用'订单撤销功能'
  77. if ($order['good_num'] == $thnum) {
  78. $temp = Db::name("sale_return")
  79. ->where(["orderCode" => $ordeCode, "is_del" => 0, "status" => 4])
  80. ->count('id');
  81. if ($temp == 0) return json_show(1004, '全部退货,请直接使用订单撤销功能');
  82. }
  83. $returnCode = makeNo("RN");
  84. Db::startTrans();
  85. try {
  86. $date = date('Y-m-d H:i:s');
  87. $in = [
  88. "returnCode" => $returnCode,
  89. "orderCode" => $ordeCode,
  90. "good_code" => $order['good_code'],
  91. "good_name" => $order['good_name'],
  92. "apply_id" => $rm,
  93. "apply_name" => $ri,
  94. "cgderid" => $goon['createrid'],
  95. "cgder" => $goon['creater'],
  96. "person" => $supplier['person'] ?? '',
  97. "person_id" => $supplier['personid'] ?? 0,
  98. "error_code" => $errorCode,
  99. "num" => $thnum,
  100. "total_fee" => round($order['sale_price'] * $thnum, 2),
  101. "good_price" => $order['sale_price'],
  102. "platform_id" => $order['platform_id'],
  103. "remark" => $remark,
  104. "order_type" => $order['order_type'],
  105. "is_addr" => $is_addr,
  106. // "status" => $order['is_stock'] == 1 ? (Db::name('order_out_child')->where(['is_del' => 0, 'orderCode' => $ordeCode])->value('id', 0) ? 11 : 4) : 1,//库存品未分仓选4,分仓选11,非库存品选1
  107. "status" => $order['is_stock'] == 1 ? ($is_addr==1? 11 : 4) : 1,//库存品 无地址选4,分仓选11,非库存品选1
  108. "is_del" => 0,
  109. "addtime" => $date,
  110. "updatetime" => $date,
  111. 'supplierNo' => $goon['supplierNo'],
  112. 'supplierName' => $supplier['name'],
  113. 'companyNo' => $order['supplierNo'],
  114. 'companyName' => $order['supplierName'],//$names['data'][$order['supplierNo']] ?? '',
  115. 'customer_code' => $order['customer_code'],
  116. 'customer_name' => $order['customerName'],//$names['data'][$order['customer_code']] ?? '',
  117. ];
  118. $create = Db::name("sale_return")->insertGetId($in);
  119. if ($create > 0) {
  120. $stn = ["order_code" => $returnCode, "status" => 0, "action_remark" => '', "action_type" => "create"];
  121. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $stn, "XSTHD", $in['status'], $in);
  122. $process = ["order_code" => $returnCode, "order_id" => $create, "order_status" => $in['status'], "order_type" => 'XSTHD', "before_status" => 0, 'holder_id' => $in['apply_id']];
  123. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $process);
  124. //维护台账信息
  125. Db::execute("UPDATE `wsm_standing_book` SET `returnGoodCode`=CONCAT(IFNULL(`returnGoodCode`,''),',{$returnCode}'),`updatetime`='" . $date . "' WHERE `orderCode`='{$ordeCode}'");
  126. //如果有退货地址,那么可能有发货单,可能有发货工单
  127. if ($returnadr != "") {
  128. $inf = [];
  129. foreach ($returnadr as $val) {
  130. if ($val['return_num'] == 0) continue;//当退货数量为0时,跳过
  131. $temp = [];
  132. $addrinfo = Db::name("order_addr")->where(['id' => $val['id'], "orderCode" => $ordeCode])->findOrEmpty();
  133. if ($addrinfo == false) throw new Exception("地址信息未找到");
  134. $send = Db::name('order_out')->where([["addrid", "=", $val['id']]])->findOrEmpty();
  135. if ($send['status'] >= 2) throw new Exception("地址已发货");
  136. if ($order['is_stock'] == 1) {
  137. // if ($addrinfo['receipt_quantity'] < $val['return_num']) throw new Exception("地址发货数量不足");
  138. //
  139. // $addrinfo['receipt_quantity'] -= $val['return_num'];
  140. // $addrinfo['is_del'] = $addrinfo['receipt_quantity'] <= 0 ? 1 : 0;
  141. // $addrinfo['updatetime'] = $date;
  142. // $addrup = Db::name("order_addr")->save($addrinfo);
  143. // if ($addrup == false) throw new Exception("地址发货数量更新失败");
  144. //
  145. // $out = Db::name("order_out")->where(["addrid" => $val['id']])->findOrEmpty();
  146. // if ($out == false) throw new Exception("地址发货单数据未找到");
  147. //
  148. //// if ($send!=false) {
  149. // if ($out['status'] >= 2) throw new Exception("地址发货单已发货");
  150. //
  151. // if ($out['send_num'] < $val['return_num']) throw new Exception("地址发货单发货数量不足");
  152. //
  153. // $out['send_num'] -= $val['return_num'];
  154. // $out['is_del'] = $out['send_num'] == 0 ? 1 : 0;
  155. // $out['updatetime'] = $date;
  156. // $outup = Db::name("order_out")->save($out);
  157. // if ($outup == false) throw new Exception("地址发货单更新失败");
  158. // $ordersend = Db::name("order_send")->where(["outCode" => $out['outCode']])->find();
  159. // if ($ordersend['send_num'] < $val['return_num']) {
  160. // Db::rollback();
  161. // return json_show(1004, "发货单发货数量不足");
  162. // }
  163. // $ordersend['send_num'] -= $val['return_num'];
  164. // $ordersend['status'] = $ordersend['send_num'] <= 0 ? 0 : 1;
  165. // $ordersend['updatetime'] = $date;
  166. // $sendip = Db::name("order_send")->save($ordersend);
  167. // if ($sendip == false) {
  168. // Db::rollback();
  169. // return json_show(1004, "发货单更新失败");
  170. // }
  171. // }
  172. }
  173. $temp['returnCode'] = $returnCode;
  174. $temp['orderCode'] = $ordeCode;
  175. $temp['outCode'] = isset($send['outCode']) ? $send['outCode'] : "";
  176. $temp['addrid'] = $val['id'];
  177. $temp['send_num'] = $addrinfo['receipt_quantity'];
  178. $temp['return_num'] = $val['return_num'];
  179. $temp['is_del'] = 0;
  180. $temp['addtime'] = $date;
  181. $temp['updatetime'] = $date;
  182. $inf[] = $temp;
  183. }
  184. $inadd = Db::name("sale_returnaddr")->insertAll($inf);
  185. if ($inadd == 0) throw new Exception("退货单新建失败");
  186. }
  187. if ($in['status'] == 4 && $order['is_stock'] == 1) {
  188. //未发货数量要减去发货单上的发货数量
  189. $out_send_num = Db::name('order_out')
  190. ->where(['is_del' => 0, 'orderCode' => $ordeCode, 'status' => [0, 1]])
  191. ->sum('send_num');
  192. $order['wsend_num'] -= $out_send_num;
  193. if ($order['wsend_num'] < $thnum) throw new Exception("销售单未发货数量不足退货");
  194. $lor = $order['status'];
  195. $order['wsend_num'] -= $thnum;
  196. $order['send_num'] += $thnum;
  197. $order['status'] = $order['wsend_num'] == 0 ? 2 : ($order['send_num'] == 0 ? 0 : 1);
  198. $order['send_status'] = $order['wsend_num'] == 0 ? 3 : ($order['send_num'] == 0 ? 1 : 2);
  199. $order['th_num'] += $thnum;
  200. if ($order['th_num'] == $order['send_num'] && $order['wsend_num'] == 0) {
  201. $order['status'] = 3;
  202. }
  203. $order['th_fee'] += round($thnum * $order['sale_price'], 2);
  204. $order['updatetime'] = $date;
  205. $uap = Db::name("sale")->save($order);
  206. if ($uap == false) throw new Exception('销售单订单更新失败');
  207. $good =Db::name("good")->where(["spuCode"=>$order['good_code']])->findOrEmpty();
  208. if(empty($good))throw new Exception('未找到商品信息');
  209. $stock=Db::name("good")->where($good)->update(["usable_stock"=>$good['usable_stock']+$thnum,"updatetime"=>date("Y-m-d H:i:s")]);
  210. if ($stock == false) throw new Exception('商品库存更新失败');
  211. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], [
  212. "order_code" => $order["orderCode"],//出库单号
  213. "status" => $lor,//这里的status是之前的值
  214. "action_remark" => '',//备注
  215. "action_type" => "status"//新建create,编辑edit,更改状态status
  216. ], "XSQRD", $order['status'], $order);
  217. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  218. "order_type" => 'XSQRD',
  219. "order_code" => $order["orderCode"],//出库单号
  220. "order_id" => $order["id"],
  221. "order_status" => $order['status'], "before_status" => $lor
  222. ]);
  223. // $ordernum = Db::name("order_num")->where(['orderCode' => $ordeCode])->find();
  224. // if ($ordernum == false) {
  225. // Db::rollback();
  226. // return json_show(1005, '未找到关联采购单');
  227. // }
  228. // $ordernum['send_num'] -= $thnum;
  229. // $orderup = Db::name("order_num")->save($ordernum);
  230. // if ($orderup == false) {
  231. // Db::rollback();
  232. // return json_show(1005, '关联数据更新失败');
  233. // }
  234. // $cgd = Db::name("purchease_order")->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])->find();
  235. // if ($cgd == false) {
  236. // Db::rollback();
  237. // return json_show(1005, '未找到采购单数据');
  238. // }
  239. // $cgd['th_fee'] += round($cgd['good_price'] * $thnum, 2);
  240. // $cgd['th_num'] += $thnum;
  241. // $cgd['updatetime'] = date("Y-m-d H:i:s");
  242. // $cgdup = Db::name("purchease_order")->save($cgd);
  243. // if ($cgdup == false) {
  244. // Db::rollback();
  245. // return json_show(1005, '采购单数据更新失败');
  246. // }
  247. // if ($cgd['bkcode'] != "") {
  248. // $bk = Db::name("purchease_order")->where(["bkcode" => $cgd['bkcode'], "order_type" => 1, "order_source" =>0, "is_del" => 0])
  249. // ->find();
  250. // if ($bk == false) {
  251. // Db::rollback();
  252. // return json_show(1005, '未找到备库单数据');
  253. // }
  254. // $orderbk = Db::name("order_bk")->where(['cgdNo' => $bk['cgdNo'], "is_del" => 0])->find();
  255. // if ($orderbk == false) {
  256. // Db::rollback();
  257. // return json_show(1005, '备库单未完全入库');
  258. // }
  259. // $merge_num = Db::name("purchease_order")->where(["bkcode" => $bk['bkcode'], "order_type" =>
  260. // 1, "is_del" => 0])->where("order_source","<>",0)->field("sum(send_num)-sum(th_num) as num")
  261. // ->find();
  262. //
  263. // $orderbk['balance_num'] = $orderbk['total_num'] - $merge_num['num'];
  264. // $orderbk['merge_num'] = $merge_num['num'];
  265. // $orderbk['updatetime'] = date("Y-m-d H:i:s");
  266. // $orderbkup = Db::name("order_bk")->save($orderbk);
  267. // if ($orderbkup == false) {
  268. // Db::rollback();
  269. // return json_show(1005, '备库单库存数据释放失败');
  270. // }
  271. // }
  272. // $saleinfo = Db::name("sale_info")
  273. // ->where([["orderCode", "=", $ordeCode], ["num", ">", 0]])
  274. // ->select()
  275. // ->toArray();
  276. // if (empty($saleinfo)) {
  277. // $ordernum = Db::name("order_num")->where(['orderCode' => $ordeCode])->findOrEmpty();
  278. // if (empty($ordernum)) throw new Exception('未找到关联采购单');
  279. //
  280. // $cgd = Db::name("purchease_order")->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])->findOrEmpty();
  281. // if (empty($cgd)) throw new Exception('未找到采购单数据');
  282. //
  283. // $bn = makeNo("BN");
  284. // $stock = Db::name("good_stock")
  285. // ->where(["spuCode" => $order['good_code'], 'wsm_code' => $cgd['wsm_code'], "is_del" => 0, "status" => 1])
  286. // ->findOrEmpty();
  287. // if ($stock == false) throw new Exception('商品库存数据未找到');
  288. //
  289. // $stock['usable_stock'] += $thnum;
  290. // $stock['wait_out_stock'] -= $thnum;
  291. // $stock['updatetime'] = $date;
  292. // $st_up = Db::name("good_stock")->save($stock);
  293. // if ($st_up == false) throw new Exception('可售商品入库失败');
  294. //
  295. // $yp = GoodStockInfo::AddBn($stock['id'], $bn, $thnum, $cgd['good_price']);
  296. // if ($yp == false) throw new Exception('商品批次退货入库失败');
  297. //
  298. // } else {
  299. // $tempnum = $thnum;
  300. // foreach ($saleinfo as $va) {
  301. // if ($tempnum == 0) break;
  302. // $stock = Db::name("good_stock")->where(["spuCode" => $order['good_code'], 'id' => $va['stockid']])
  303. // ->findOrEmpty();
  304. // if ($stock == false) throw new Exception('商品库存数据未找到');
  305. //
  306. // if ($va['num'] >= $tempnum) {
  307. // $tnm = $tempnum;
  308. // $va['num'] -= $tempnum;
  309. // $va['th_num'] += $tempnum;
  310. // $tempnum = 0;
  311. // } else {
  312. // $tnm = $va['num'];
  313. // $tempnum -= $va['num'];
  314. // $va['th_num'] += $va['num'];
  315. // $va['num'] = 0;
  316. // }
  317. // $stock['usable_stock'] += $tnm;
  318. // $stock['wait_out_stock'] -= $tnm;
  319. // $stock['updatetime'] = $date;
  320. // $st_up = Db::name("good_stock")->save($stock);
  321. // if ($st_up == false) throw new Exception('可售商品入库失败');
  322. //
  323. // $ps = GoodStockInfo::AddBn($va['stockid'], $va['bnCode'], $tnm);
  324. // if ($ps == false) throw new Exception('商品批次退货入库失败');
  325. //
  326. // $ret = GoodStockInfo::ReturnBn($returnCode, $va['id'], $tnm);
  327. // if ($ret == false) throw new Exception('商品批次退货入库失败');
  328. //
  329. // $va['updatetime'] = $date;
  330. // $sal = Db::name("sale_info")->save($va);
  331. // if ($sal == false) throw new Exception('商品批次退货入库失败');
  332. //
  333. // $good_data[] = ['good_log_code' => $returnCode, "stock_id" => $va['stockid'], "type" => 1, 'stock' => $thnum, "stock_name" => "usable_stock"];
  334. // $good_data[] = ['good_log_code' => $returnCode, "stock_id" => $va['stockid'], "type" => 2, 'stock' => $thnum, "stock_name" => "wait_out_stock"];
  335. // GoodLog::LogAdd(['id' => $this->uid, 'nickname' => $this->uname], $good_data, 'XSTHD');
  336. // }
  337. // }
  338. $data=[
  339. "orderCode"=>$ordeCode,
  340. "th_type"=>1,
  341. "th_num"=>$thnum,
  342. "th_fee"=>round($order['sale_price']*$thnum,2),
  343. "thCode"=>$returnCode,
  344. "spuCode"=>$order['good_code'],
  345. "good_name"=>$order['good_name'],
  346. "cat_id"=>$order['cat_id'],
  347. "apply_id"=>$rm,
  348. "apply_name"=>$ri,
  349. "addtime"=>$date,
  350. "status"=>1,
  351. "is_del"=>0
  352. ];
  353. $inse=Db::name("th_data")->insert($data);
  354. if($inse==false){
  355. Db::rollback();
  356. return json_show(1004,"退货单更新失败");
  357. }
  358. }
  359. Db::commit();
  360. return json_show(0, "退货单新建成功", ["returnCode" => $returnCode]);
  361. }
  362. Db::rollback();
  363. return json_show(1005, "退货单新建失败");
  364. } catch (\Exception $e) {
  365. Db::rollback();
  366. return json_show(1005, $e->getMessage());
  367. }
  368. }
  369. //退货单列表
  370. public function list()
  371. {
  372. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
  373. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
  374. $where = [['sr.is_del', "=", 0]];
  375. $bkcode = isset($this->post['returnCode']) && $this->post['returnCode'] != "" ? trim($this->post['returnCode']) : "";
  376. if ($bkcode != "") {
  377. $where[] = ['sr.returnCode', "like", "%{$bkcode}%"];
  378. }
  379. $status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "";
  380. if ($status !== "") {
  381. $where[] = ['sr.status', "=", $status];
  382. }
  383. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] != "" ? trim($this->post['orderCode']) : "";
  384. if ($orderCode != "") {
  385. $where[] = ['sr.orderCode', "like", "%{$orderCode}%"];
  386. }
  387. $apply_name = isset($this->post['apply_name']) && $this->post['apply_name'] != "" ? trim($this->post['apply_name']) : "";
  388. if ($apply_name != "") {
  389. $where[] = ['sr.apply_name', "like", "%{$apply_name}%"];
  390. }
  391. $start = isset($this->post['start']) && $this->post['start'] != '' ? $this->post['start'] : "";
  392. if ($start !== "") {
  393. $where[] = ['sr.addtime', ">=", $start . ' 00:00:00'];
  394. }
  395. $end = isset($this->post['end']) && $this->post['end'] != '' ? $this->post['end'] : "";
  396. if ($end !== "") {
  397. $where[] = ['sr.addtime', "<=", $end . ' 23:59:59'];
  398. }
  399. //商品成本编码搜索
  400. $good_code = isset($this->post['good_code']) && $this->post['good_code'] != "" ? trim($this->post['good_code']) : "";
  401. if ($good_code != "") {
  402. $where[] = ['sr.good_code', "like", "%{$good_code}%"];
  403. }
  404. //商品上线编码搜索
  405. $skuCode = isset($this->post['skuCode']) && $this->post['skuCode'] != "" ? trim($this->post['skuCode']) : "";
  406. if ($skuCode != "") {
  407. $where[] = ['b.skuCode', "like", "%{$skuCode}%"];
  408. }
  409. $relaComNo = isset($this->post['relaComNo']) && $this->post['relaComNo'] != "" ? trim($this->post['relaComNo']) : "";
  410. if ($relaComNo != "") $where[] = ['sr.companyNo', '=', $relaComNo];
  411. $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] != "" ? trim($this->post['supplierNo']) : "";
  412. if ($supplierNo !== "") $where[] = ['sr.supplierNo', "like", '%' . $supplierNo . '%'];
  413. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] != "" ? trim($this->post['companyNo']) : "";
  414. if ($companyNo !== "") $where[] = ['sr.companyNo', "like", '%' . $companyNo . '%'];
  415. $customer_code = isset($this->post['customer_code']) && $this->post['customer_code'] != "" ? trim($this->post['customer_code']) : "";
  416. if ($customer_code !== "") $where[] = ['sr.customer_code', "like", '%' . $customer_code . '%'];
  417. $order_source = $order_source = isset($this->post['order_source']) && $this->post['order_source'] != "" ? trim($this->post['order_source']) : "";
  418. if ($order_source !== "") $where[] = ['b.order_source', "=", $order_source];
  419. $condition = [];
  420. // $role=$this->checkRole();
  421. // if(!empty($role['write']) && $this->uid!=""){
  422. // // $where[]=["sr.apply_id","in",$role['write']];
  423. // $condition .="sr.cgderid = {$this->uid} or sr.apply_id in (".implode(',',$role['write']).")";
  424. // }
  425. //接口数据权限:
  426. //1.超管,查看全部;
  427. //2.业务公司账号-申请人,初始状态只查看自己创建的;
  428. //3.业务公司账号-供应商负责人,只查看自己负责人的供应商的;
  429. //4,业务公司账号-数据共享接受人,共享给自己的数据;
  430. if ($this->level == 2) {
  431. $code = Db::connect('mysql_sys')
  432. ->name('supplier')
  433. ->where(['is_del' => 0, 'personid' => $this->uid])
  434. ->column('code');
  435. if (empty($code)) {
  436. //考虑数据权限
  437. $role = $this->checkDataShare();
  438. $hand = resign_hand_user($this->uid, 0);
  439. $where[] = ['sr.apply_id', 'in', array_unique(array_merge($role[DataGroupModel::$type_全部], $hand))];
  440. } else $where[] = ['sr.supplierNo', 'in', $code];
  441. // $role = $this->checkDataShare();
  442. // $hand = resign_hand_user($this->uid, 0);
  443. // if (!empty($role[DataGroupModel::$type_全部])) {
  444. // $arr = array_unique(array_merge($hand, $role[DataGroupModel::$type_全部]));
  445. // $uidim =implode(",",$hand);
  446. // $condition .= "sr.cgderid in ($uidim) or sr.person_id in ($uidim) or sr.apply_id in (" . implode(',',$arr) .
  447. // ")";
  448. // $condition[] = ["sr.apply_id", "in", $arr];
  449. // $condition[] = ["sr.cgderid", "in", $hand];
  450. // $condition[] = ["sr.person_id", "in", $hand];
  451. // }
  452. }
  453. //供应商账号不允许看到库存品数据
  454. // if ($this->level == 3) $where[] = ['b.is_stock', '<>', 1];
  455. // $role = $this->checkDataShare();
  456. // if (!empty($role[DataGroupModel::$type_全部])) $condition .= "sr.cgderid = {$this->uid} or sr.person_id = {$this->uid} or sr.apply_id in (" . implode(',', $role[DataGroupModel::$type_全部]) . ")";
  457. // if (in_array($this->roleid, config('app.wsm_cgder_role'))) {
  458. // $where[] = ["b.order_type", "=", 1];
  459. // }
  460. $company_name = isset($this->post['company_name']) && $this->post['company_name'] !== "" ? trim($this->post['company_name']) : "";
  461. if ($company_name !== "") $where[] = ["sr.apply_id", 'in', get_company_item_user_by_name($company_name)];
  462. $use_type = $this->post['use_type']??'';
  463. if($use_type!=='') $where[]=['p.use_type','=',$use_type];
  464. $order_type = $this->post['order_type']??'';
  465. if($order_type!=='') $where[]=['sr.order_type','=',$order_type];
  466. // $customer_code = trim($this->post['customer_code']??'');
  467. // $where[]=['b.customer_code', "like", "%{$customer_code}%"];
  468. $count = Db::name("sale_return")
  469. ->alias('sr')
  470. ->leftJoin("sale b", "b.orderCode=sr.orderCode AND b.is_del=0")
  471. ->leftJoin('result_info c', 'c.result_code=sr.error_code')
  472. ->leftJoin('platform p', 'p.id=b.platform_id AND p.is_del=0')
  473. ->where($where)
  474. // ->where(function ($query) use ($condition) {
  475. // $query->whereOr($condition);
  476. // })
  477. ->count('sr.id');
  478. $total = ceil($count / $size);
  479. $page = $total >= $page ? $page : $total;
  480. $list = Db::name("sale_return")
  481. ->alias('sr')
  482. ->field('sr.*,b.skuCode,b.sale_price,b.good_num total_num,b.order_source,c.result error_msg,p.use_type')
  483. ->leftJoin("sale b", "b.orderCode=sr.orderCode AND b.is_del=0")
  484. ->leftJoin('result_info c', 'c.result_code=sr.error_code')
  485. ->leftJoin('platform p', 'p.id=b.platform_id AND p.is_del=0')
  486. ->where($where)
  487. // ->where(function ($query) use ($condition) {
  488. // $query->whereOr($condition);
  489. // })
  490. ->order("sr.addtime desc")
  491. ->page($page, $size)
  492. ->select()
  493. ->toArray();
  494. // echo Db::name("sale_return")->getLastSql();
  495. $all_createrid = array_column($list, 'apply_id');
  496. $item = get_company_name_by_uid($all_createrid);
  497. // $userCommon = \app\admin\common\User::getIns();
  498. // $names = $userCommon->handle('getCodeAndName',['code'=>array_merge(array_column($list,'supplierNo'),array_column($list,'customer_code'))]);
  499. //校验是否开通了供应商账号
  500. $supp_account = checkHasAccountBySupplierNos(array_unique(array_column($list, 'supplierNo')));
  501. $data = [];
  502. foreach ($list as $value) {
  503. // $value['error_msg']='';
  504. // if($value['error_code']!=''){
  505. // $error = Db::name("result_info")->where(["result_code"=>$value['error_code']])->find();
  506. // $value['error_msg']= isset($error['result'])?$error['result']:"";
  507. // }
  508. // $order =Db::name("sale")->where(["orderCode"=>$value['orderCode'],"is_del"=>0])->find();
  509. // $value['sale_price'] = isset($order['sale_price']) ?$order['sale_price']:0;
  510. $value['return_total'] = $value['sale_price'] * $value['num'];
  511. // $value['total_num'] =$order['good_num'] ;
  512. $value['company_name'] = $item[$value['apply_id']] ?? '';
  513. // $value['supplierName'] = $names['data'][$value['supplierNo']] ?? '';//isset($wsm['company']) ? $wsm['company'] : "";
  514. // $value['customerName'] = $names['data'][$value['customer_code']] ?? '';//isset($wsm['company']) ? $wsm['company'] : "";
  515. //是否具有编辑权限
  516. // $value['is_allow_update'] = 0;
  517. // if (in_array($this->roleid, [1, 33]) || in_array($value['apply_id'], $role[DataGroupModel::$type_可编辑])) $value['is_allow_update'] = 1;
  518. $value['has_account'] = (int)isset($supp_account[$value['supplierNo']]);
  519. $data[] = $value;
  520. }
  521. return json_show(0, "获取成功", ["count" => $count, 'list' => $data]);
  522. }
  523. public function info()
  524. {
  525. $code = isset($this->post['returnCode']) && $this->post['returnCode'] !== "" ? trim($this->post['returnCode']) : "";
  526. if ($code == "") {
  527. return json_show(1004, "参数returnCode不能为空");
  528. }
  529. $info = Db::name("sale_return")->where(["returnCode" => $code, "is_del" => 0])->find();
  530. if (empty($info)) {
  531. return json_show(1004, "未找到退货数据");
  532. }
  533. $orderinfo = Db::name("sale")->where(["orderCode" => $info["orderCode"]])->find();
  534. if ($orderinfo['order_type'] == 3 || $orderinfo['order_type'] == 4) {
  535. $goon = Db::name("good_zixun")
  536. ->field('cat_id,0 is_stock')
  537. ->where(["spuCode" => $orderinfo['good_code'], "is_del" => 0])
  538. ->findOrEmpty();
  539. } else {
  540. $goon = Db::name('good_platform')
  541. ->field('b.cat_id,b.is_stock')
  542. ->alias('a')
  543. ->leftJoin('good b', 'b.spuCode=a.spuCode')
  544. ->where(['a.skuCode' => $orderinfo['skuCode']])
  545. ->findOrEmpty();
  546. }
  547. if ($goon == false) {
  548. return json_show(1003, "未找到商品数据");
  549. }
  550. $int = isset($goon['cat_id']) && $goon['cat_id'] != 0 ? made($goon['cat_id']) : [];
  551. $info['is_stock'] = isset($goon['is_stock']) ? $goon['is_stock'] : '0';
  552. $info['good_code'] = isset($orderinfo['good_code']) ? $orderinfo['good_code'] : '';
  553. $info['send_type'] = isset($orderinfo['send_type']) ? $orderinfo['send_type'] : '';
  554. $info['skuCode'] = isset($orderinfo['skuCode']) ? $orderinfo['skuCode'] : '';
  555. $info['good_name'] = isset($orderinfo['good_name']) ? $orderinfo['good_name'] : '';
  556. $info['good_num'] = isset($orderinfo['good_num']) ? $orderinfo['good_num'] : '';
  557. $info['sale_price'] = isset($orderinfo['sale_price']) ? $orderinfo['sale_price'] : '0';
  558. $info['origin_price'] = isset($orderinfo['origin_price']) ? $orderinfo['origin_price'] : '0';
  559. $info['return_total'] = $info['sale_price'] * $info['num'];
  560. $info['send_num'] = isset($orderinfo['send_num']) ? $orderinfo['send_num'] : '0';
  561. $info['wsend_num'] = isset($orderinfo['wsend_num']) ? $orderinfo['wsend_num'] : '0';
  562. $info['send_status'] = isset($orderinfo['send_status']) ? $orderinfo['send_status'] : '';
  563. $info['total_price'] = isset($orderinfo['total_price']) ? $orderinfo['total_price'] : '0';
  564. $info['post_fee'] = isset($orderinfo['post_fee']) ? $orderinfo['post_fee'] : '0';
  565. // $info['customer_code'] = isset($orderinfo['customer_code'])?$orderinfo['customer_code']:'';
  566. // $userCommon = \app\admin\common\User::getIns();
  567. if ($info['return_wsm'] != "") {
  568. $wsmcode = Db::name("warehouse_info")
  569. ->alias("a")
  570. // ->leftJoin("supplier b","a.supplierNo=b.code")
  571. ->where(["a.wsm_code" => $info['return_wsm']])
  572. ->field("a.name as wsm_name,a.supplierNo,a.supplierName")
  573. ->findOrEmpty();
  574. // $tmp = $userCommon->handle('getCodeAndName', ['code' => [
  575. // $orderinfo['supplierNo'],
  576. // $orderinfo['customer_code'],
  577. // $wsmcode['supplierNo']??'',
  578. // ]]);
  579. $info['wsm_name'] = isset($wsmcode['wsm_name']) ? $wsmcode['wsm_name'] : "";
  580. $info['wsm_supplier'] = $wsmcode['supplierName'];//isset($wsmcode['name']) ? $wsmcode['name']:"";
  581. $info['wsm_supplierNo'] = $wsmcode['supplierNo'] ?? '';//isset($wsmcode['code']) ? $wsmcode['code']:"";
  582. }
  583. // if(!empty($wsmcode['supplierNo'])){
  584. // $info['wsm_supplier'] =$tmp['data'][$wsmcode['supplierNo']]??'';//isset($wsmcode['name']) ? $wsmcode['name']:"";
  585. // $info['wsm_supplierNo'] =$wsmcode['supplierNo']??'';//isset($wsmcode['code']) ? $wsmcode['code']:"";
  586. // }
  587. // $info['customer_name']='';
  588. // if(isset($orderinfo['customer_code'])&&$orderinfo['customer_code']!=''){
  589. // $customerinfo = Db::name("customer_info")->where(['companyNo'=>$orderinfo['customer_code']])->find();
  590. // $info['customer_name'] = $tmp['data'][$orderinfo['customer_code']]??'';//isset($customerinfo['companyName']) ? $customerinfo['companyName']:"";
  591. // }
  592. // $info['supplierNo'] = isset($orderinfo['supplierNo'])?$orderinfo['supplierNo']:'';
  593. // $info['supplier_name']='';
  594. // if(isset($orderinfo['supplierNo'])&&$orderinfo['supplierNo']!=''){
  595. //// $customerinfo = Db::name("business")->where(['companyNo'=>$orderinfo['supplierNo']])->find();
  596. //// $info['supplier_name'] = isset($customerinfo['company']) ? $customerinfo['company']:"";
  597. // $info['supplier_name'] = $tmp['data'][$orderinfo['supplierNo']] ?? '';
  598. //
  599. // }
  600. $info['platform_name'] = '';
  601. $info['platform_id'] = $orderinfo['platform_id'];
  602. if ($orderinfo['platform_id'] != 0) {
  603. $plat = Db::name("platform")->field('platform_name')->where(['id' => $orderinfo['platform_id']])->find();
  604. $info['platform_name'] = isset($plat['platform_name']) ? $plat['platform_name'] : "";
  605. }
  606. $info['cgd_wsend'] = "";
  607. $info['cgd_send'] = "";
  608. $info['cgd_total'] = "";
  609. if ($orderinfo['order_type'] == 2) {
  610. $cgd = Db::name("purchease_order")->where(["bkcode" => $info["orderCode"], "order_type" => 2])->find();
  611. $info['cgd_wsend'] = isset($cgd['wsend_num']) ? $cgd['wsend_num'] : 0;
  612. $info['cgd_send'] = isset($cgd['send_num']) ? $cgd['send_num'] : 0;
  613. $info['cgd_total'] = isset($cgd['good_num']) ? $cgd['good_num'] : 0;
  614. }
  615. $info['error_msg'] = '';
  616. if ($info['error_code'] != '') {
  617. $error = Db::name("result_info")->where(["result_code" => $info['error_code']])->find();
  618. $info['error_msg'] = isset($error['result']) ? $error['result'] : "";
  619. }
  620. $wsm_return = Db::name("sale_returninfo")->where(["returnCode" => $info["returnCode"], "is_del" => 0])->select()->toArray();
  621. $all_wsm_code = array_column($wsm_return, 'wsm_code');
  622. $all_wsmcode_info = Db::name("warehouse_info")
  623. ->where(["wsm_code" => $all_wsm_code])
  624. ->column("name,supplierNo,supplierName", 'wsm_code');
  625. // $userCommon = \app\admin\common\User::getIns();
  626. // $all_supplier_name = $userCommon->handle('getCodeAndName', ['code' => array_unique(array_column($all_wsmcode_info, 'supplierNo'))]);
  627. $wsm = [];
  628. if (!empty($wsm_return)) {
  629. foreach ($wsm_return as $value) {
  630. $value['wsm_name'] = "";
  631. $value['wsm_supplier'] = "";
  632. $value['wsm_supplierNo'] = "";
  633. if ($value['wsm_code'] != "") {
  634. // $wsmcode = Db::name("warehouse_info")
  635. // ->alias("a")
  636. //// ->leftJoin("supplier b","a.supplierNo=b.code")
  637. // ->where(["a.wsm_code"=>$value['wsm_code']])
  638. // ->field("a.name as wsm_name,b.name,b.code")
  639. // ->find();
  640. $value['wsm_name'] = $all_wsmcode_info[$value['wsm_code']]['name'] ?? '';//isset($wsmcode['wsm_name']) ? $wsmcode['wsm_name']:"";
  641. $value['wsm_supplier'] = $all_wsmcode_info[$value['wsm_code']]['supplierName'] ?? '';//isset($wsmcode['name']) ? $wsmcode['name']:"";
  642. $value['wsm_supplierNo'] = $all_wsmcode_info[$value['wsm_code']]['supplierNo'] ?? '';//isset($wsmcode['code']) ? $wsmcode['code']:"";
  643. }
  644. $orderwsm = Db::name("sale_info")->where(["orderCode" => $info["orderCode"], "wsm_code" => $value["wsm_code"]])->find();
  645. $value["wsm_total"] = isset($orderwsm["num"]) ? $orderwsm["num"] : 0;
  646. $send = Db::name("order_out")->where(["wsm_code" => $value['wsm_code'], 'orderCode' => $info['orderCode']])->sum("send_num");
  647. $value['wsm_send'] = $send ?? 0;
  648. $value['wsm_wsend'] = $value['wsm_total'] - $value['wsm_send'];
  649. $wsm[] = $value;
  650. }
  651. }
  652. $info['wsminfo'] = $wsm;
  653. $addr = Db::name("sale_returnaddr")
  654. ->alias('a')
  655. ->field('a.*,b.addr,b.addr_code,b.contactor,b.mobile,b.post_fee,b.arrive_time,b.customer_code,b.receipt_quantity,b.orderCode')
  656. ->leftJoin('order_addr b', 'b.id=a.addrid')
  657. ->where(["a.returnCode" => $info["returnCode"], "a.is_del" => 0])
  658. ->select()
  659. ->toArray();
  660. $addrinfo = [];
  661. if (!empty($addr)) {
  662. $userCommon = \app\admin\common\User::getIns();
  663. $customer_name = $userCommon->handle('getCodeAndName', ['code' => array_unique(array_column($addr, 'customer_code'))]);
  664. foreach ($addr as $value) {
  665. // $addrlist = Db::name("order_addr")->where(["id"=>$value["addrid"]])->find();
  666. $value['addr'] = isset($value['addr']) ? $value['addr'] : "";
  667. $value['addr_code'] = isset($value['addr_code']) ? $value['addr_code'] : "";
  668. $value['contactor'] = isset($value['contactor']) ? $value['contactor'] : "";
  669. $value['mobile'] = isset($value['mobile']) ? $value['mobile'] : "";
  670. $value['post_fee'] = isset($value['post_fee']) ? $value['post_fee'] : "";
  671. $value['addive_time'] = isset($value['addive_time']) ? $value['addive_time'] : "";
  672. $value['customer_code'] = isset($value['customer_code']) ? $value['customer_code'] : "";
  673. $value['receipt_quantity'] = isset($value['receipt_quantity']) ? $value['receipt_quantity'] : "";
  674. $send = Db::name("order_out")->where(['addrid' => $value['addrid'], 'orderCode' => $value['orderCode'], "is_del" => 0])->where("status", ">=", 2)->sum("send_num");
  675. $value['addr_send'] = $send ?? 0;
  676. $value['addr_wsend'] = $value['receipt_quantity'] - $value['addr_send'];
  677. // $customer = Db::name("customer_info")->where(['companyNo'=>$addrlist['customer_code']])->find();
  678. $value['customer_name'] = $customer_name['data'][$value['customer_code']] ?? '';//isset($customer['companyName']) ? $customer['companyName']:"";
  679. $addrinfo[] = $value;
  680. }
  681. }
  682. $info['addrinfo'] = $addrinfo;
  683. $info['can'] = $int;
  684. //校验是否开通了供应商账号
  685. $supp_account = checkHasAccountBySupplierNos([$info['supplierNo']]);
  686. $info['has_account'] = (int)isset($supp_account[$info['supplierNo']]);
  687. return json_show(0, "获取成功", $info);
  688. }
  689. /**
  690. * @return \think\response\Json|void
  691. * @throws \think\db\exception\DataNotFoundException
  692. * @throws \think\db\exception\DbException
  693. * @throws \think\db\exception\ModelNotFoundException
  694. */
  695. public function delete()
  696. {
  697. $code = isset($this->post['returnCode']) && $this->post['returnCode'] !== "" ? trim($this->post['returnCode']) : "";
  698. if ($code == "") {
  699. return json_show(1004, "参数returnCode不能为空");
  700. }
  701. $info = Db::name("sale_return")->where(["returnCode" => $code, "is_del" => 0])->find();
  702. if (empty($info)) {
  703. return json_show(1004, "未找到退货数据");
  704. }
  705. $info["is_del"] = 1;
  706. $info["updatetime"] = date("Y-m-d H:i:s");
  707. $del = Db::name("sale_return")->save($info);
  708. if ($del) {
  709. $ste = ["order_code" => $code, "status" => 0, "action_remark" => '', "action_type" => "delete"];
  710. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "XSTHD", 0, $ste);
  711. $process = ["order_code" => $code, "order_id" => $info['id'], "order_status" => 0, "order_type" => "XSTHD"];
  712. ProcessOrder::workdel($process);
  713. return json_show(0, "删除成功");
  714. } else {
  715. return json_show(1004, "删除失败");
  716. }
  717. }
  718. /**审核
  719. * 1待业务审批
  720. * 2待专员审批(该节点废除)
  721. * 3待主管审批(该节点废除)
  722. * 4退货完成
  723. * 5业务驳回
  724. * 6采购驳回(该节点废除)
  725. * 7专员审批不通过(该节点废除)
  726. * 9待供应商审核
  727. * 8供应商已驳回待采购审核
  728. * 10业务公司修改待供应商确认
  729. * 11待设置退货工单
  730. * 12待库管发货
  731. * 13取消
  732. */
  733. public function exam()
  734. {
  735. $param = $this->request->only(['returnCode', 'status', 'remark' => '', 'return_wsm' => ''], 'post', 'trim');
  736. $val = Validate::rule([
  737. 'returnCode|退货单编号' => 'require',
  738. 'status|状态' => 'require|in:5,9,8,10,4,11',
  739. 'remark|备注' => 'requireIf:status,5|requireIf:status,8|requireIf:status,10',
  740. ]);
  741. if ($val->check($param) == false) return json_show(1004, $val->getError());
  742. $code = $param['returnCode'];
  743. $status = $param['status'];
  744. $remark = $param['remark'];
  745. $info = Db::name("sale_return")->where(["returnCode" => $code, "is_del" => 0])->findOrEmpty();
  746. if (empty($info)) return json_show(1004, "未找到退货数据");
  747. switch ($info['status']) {
  748. case 1:
  749. if (in_array($param['status'], [5, 9]) == false) return json_show(1004, '选项错误');
  750. break;
  751. case 9:
  752. if (in_array($param['status'], [4, 8]) == false) return json_show(1004, '选项错误');
  753. break;
  754. case 8:
  755. if (in_array($param['status'], [11, 10]) == false) return json_show(1004, '选项错误');
  756. break;
  757. case 10:
  758. if (in_array($param['status'], [4, 8]) == false) return json_show(1004, '选项错误');
  759. break;
  760. }
  761. //获取最新的供应商负责人
  762. $s_info = \app\admin\common\User::getIns()->handle('sInfo', ['code' => $info['supplierNo']]);
  763. $info['person_id'] = $s_info['data']['personid'];
  764. $info['person'] = $s_info['data']['person'];
  765. //当处于以下节点时,level2账号必须是供应商负责人操作,level3账号不做限制
  766. if (in_array($info['status'], [9, 10]) && ($this->level == 2) && ($this->uid != $info['person_id'])) return json_show(1004, '您不是供应商负责人,此时无权操作');
  767. if ($param['status'] == 10) $info['loop_total'] += 1;//只要走到节点10(业务公司修改,待供应商确认),就增加次数
  768. $var = $info['status'];
  769. $orderinfo = Db::name("sale")->where(["orderCode" => $info["orderCode"]])->findOrEmpty();
  770. if (empty($orderinfo)) return json_show(1004, "未找到订单数据");
  771. if ($status == 4) {
  772. if ($info['is_addr'] == 1) {
  773. $addr = Db::name("sale_returnaddr")
  774. ->where(['returnCode' => $info['returnCode'], "is_del" => 0])
  775. ->select()
  776. ->toArray();
  777. if (empty($addr)) return json_show(1004, "未找到发货单地址数据");
  778. }
  779. }
  780. if (in_array($info['status'], [9, 10]) && $param['status'] == 4) $info['is_th'] = 1;//除了8-11-12-4之外,其余9-4和10-4都属于供应商同意退货
  781. $fininfo =GetFin("admin/orderischeck",["token"=>$this->post['token'],"orderCode"=>$info["orderCode"],"isCgd"=>$info['is_th']]);
  782. if(!isset($fininfo['code'])||$fininfo['code']!=0 ){
  783. return json_show(1005, $fininfo['message']??"结算校验失败");
  784. }
  785. Db::startTrans();
  786. try {
  787. $date = date("Y-m-d H:i:s");
  788. $userCommon = \app\admin\common\User::getIns();
  789. $temp = $info['status'];
  790. $info['status'] = $status;
  791. $remark != "" ? $info['remark'] = $remark : "";
  792. $info["updatetime"] = $date;
  793. $up = Db::name("sale_return")->save($info);
  794. if ($up) {
  795. //如果是节点2(待专员审核),要将待办数据推给供应商负责人
  796. if ($info['status'] == 2) $process = ["order_code" => $code, "order_id" => $info['id'], "order_status" => $status, "order_type" => "XSTHD", 'before_status' => $temp, 'wait_id' => $info['person_id'], 'wait_name' => $info['person']];
  797. else $process = ["order_code" => $code, "order_id" => $info['id'], "order_status" => $status, "order_type" => "XSTHD", 'before_status' => $temp, 'holder_id' => $info['apply_id']];
  798. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $process);
  799. $ste = ["order_code" => $code, "status" => $temp, "action_remark" => '', "action_type" => "status"];
  800. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "XSTHD", $status, $info);
  801. if ($status == 4) {
  802. if ($info['is_addr'] == 1) {
  803. if (isset($addr) && !empty($addr)) {
  804. foreach ($addr as $value) {
  805. $addrinfo = Db::name("order_addr")
  806. ->where(['id' => $value['addrid'], "is_del" => 0])
  807. ->findOrEmpty();
  808. if (empty($addrinfo)) throw new Exception("地址数据未找到");
  809. if ($addrinfo['receipt_quantity'] < $value['return_num']) throw new Exception("地址发货数量不足");
  810. $addrinfo['receipt_quantity'] -= $value['return_num'];
  811. $addrinfo['is_del'] = $addrinfo['receipt_quantity'] <= 0 ? 1 : 0;
  812. $addrinfo['updatetime'] = $date;
  813. $addrup = Db::name("order_addr")->save($addrinfo);
  814. if ($addrup == false) throw new Exception('地址发货数量更新失败');
  815. if ($value['outCode'] != "") {
  816. $out = Db::name("order_out")->where(["outCode" => $value['outCode']])->findOrEmpty();
  817. if (empty($out)) throw new Exception('地址发货单数据未找到');
  818. if ($out['status'] >= 2) throw new Exception('地址发货单已发货');
  819. if ($out['send_num'] < $value['return_num']) throw new Exception('地址发货单发货数量不足');
  820. $out['send_num'] -= $value['return_num'];
  821. $out['is_del'] = $out['send_num'] <= 0 ? 1 : 0;
  822. $out['updatetime'] = $date;
  823. $outup = Db::name("order_out")->save($out);
  824. if ($outup == false) throw new Exception('地址发货单更新失败');
  825. $tmp = Db::name('order_out_child')
  826. ->where(['is_del' => 0, 'outCode' => $value['outCode']])
  827. ->findOrEmpty();
  828. if(!empty($tmp)){
  829. $tmp['num'] -= $value['return_num'];
  830. if ($tmp['num'] <= 0) {
  831. $tmp['status'] = 4;
  832. $tmp['is_del'] = 1;
  833. }
  834. //维护发货工单的数量
  835. $childup= Db::name('order_out_child')
  836. ->where(['id' => $tmp['id']])
  837. ->update($tmp);
  838. if($childup==false)throw new Exception('地址发货单工单更新失败');
  839. $stockinfo =Db::name("good_stock")->where(["spuCode"=>$tmp['spuCode'],"wsm_code"=>$tmp['wsm_code']])->findOrEmpty();
  840. if(empty($stockinfo))throw new Exception('未找到库存信息');
  841. $stockup =[
  842. "usable_stock"=>$stockinfo['usable_stock']+$value['return_num'],
  843. "wait_out_stock"=>$stockinfo['wait_out_stock']-$value['return_num'],
  844. "updatetime" => $date
  845. ] ;
  846. $ysup =Db::name("good_stock")->where($stockinfo)->update($stockup);
  847. if($ysup==false)throw new Exception('库存信息更新失败');
  848. GoodStockInfo::ChildReturnBn($tmp['outChildCode'],$stockinfo['id'],$value['return_num']);//处理bn数据
  849. }
  850. }
  851. }
  852. }
  853. }
  854. if ($orderinfo['wsend_num'] < $info['num']) throw new Exception('销售单未发货数量不足退货');
  855. $lor = $orderinfo['status'];
  856. $orderinfo['wsend_num'] -= $info['num'];
  857. $orderinfo['send_num'] += $info['num'];
  858. $orderinfo['status'] = $orderinfo['wsend_num'] == 0 ? 2 : ($orderinfo['send_num'] == 0 ? 0 : 1);
  859. $orderinfo['send_status'] = $orderinfo['wsend_num'] == 0 ? 3 : ($orderinfo['send_num'] == 0 ? 1 : 2);
  860. if ($orderinfo['is_stock'] == 1) {
  861. $orderinfo['th_num'] += $info['num'];
  862. if ($orderinfo['th_num'] == $orderinfo['send_num'] && $orderinfo['wsend_num'] == 0) {
  863. $orderinfo['status'] = 3;
  864. }
  865. $orderinfo['th_fee'] += round($info['num'] * $orderinfo['sale_price'], 2);
  866. $orderinfo['updatetime'] = $date;
  867. $uap = Db::name("sale")->save($orderinfo);
  868. if ($uap == false) throw new Exception('销售单订单更新失败');
  869. $good =Db::name("good")->where(["spuCode"=>$orderinfo['good_code']])->findOrEmpty();
  870. if(empty($good))throw new Exception('未找到商品信息');
  871. $stock=Db::name("good")->where($good)->update(["usable_stock"=>$good['usable_stock']+$info['num'],"updatetime"=>date("Y-m-d H:i:s")]);
  872. if ($stock == false) throw new Exception('商品库存更新失败');
  873. }
  874. else {
  875. if ($info['is_th'] == 1) {
  876. $orderinfo['th_num'] += $info['num'];
  877. if ($orderinfo['th_num'] == $orderinfo['send_num'] && $orderinfo['wsend_num'] == 0) {
  878. $orderinfo['status'] = 3;
  879. }
  880. $orderinfo['th_fee'] += round($info['num'] * $orderinfo['sale_price'], 2);
  881. $orderinfo['updatetime'] = $date;
  882. $uap = Db::name("sale")->save($orderinfo);
  883. if ($uap == false) throw new Exception('销售单订单更新失败');
  884. $ordernum = Db::name("order_num")
  885. ->where(['orderCode' => $orderinfo['orderCode']])
  886. ->findOrEmpty();
  887. if (empty($ordernum)) throw new Exception('未找到关联采购单');
  888. $ordernum['send_num'] -= $info['num'];
  889. $orderup = Db::name("order_num")->save($ordernum);
  890. if ($orderup == false) throw new Exception('关联数据更新失败');
  891. $cgd = Db::name("purchease_order")
  892. ->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])
  893. ->findOrEmpty();
  894. if ($cgd == false) throw new Exception('未找到采购单数据');
  895. if ($info['is_all'] == 1 && $cgd['send_status'] != 1) throw new Exception('采购单已入库无法全部退货');
  896. $lor = $cgd['status'];
  897. if ($cgd['wsend_num'] < $info['num']) {
  898. $cgd['send_num'] += $cgd['wsend_num'] == 0 ? 0 : ($info['num'] - $cgd['wsend_num']);
  899. $cgd['wsend_num'] = 0;
  900. } else {
  901. $cgd['wsend_num'] -= $info['num'];
  902. $cgd['send_num'] += $info['num'];
  903. }
  904. $cgd['status'] = $cgd['wsend_num'] == 0 ? 2 : ($cgd['send_num'] == 0 ? 0 : 1);
  905. $cgd['send_status'] = $cgd['wsend_num'] == 0 ? 3 : ($cgd['send_num'] == 0 ? 1 : 2);
  906. $cgd['th_num'] += $info['num'];
  907. if ($cgd['th_num'] == $cgd['send_num'] && $cgd['wsend_num'] == 0) {
  908. $cgd['status'] = 4;
  909. }
  910. $cgd['th_fee'] += round($info['num'] * $cgd['good_price'], 2);
  911. $cgd['updatetime'] = $date;
  912. $cgdup = Db::name("purchease_order")->save($cgd);
  913. if ($cgdup == false) throw new Exception('采购单数据更新失败');
  914. $stock = Db::name("good_stock")
  915. ->where(['is_del' => 0, "spuCode" => $info['good_code'], 'wsm_code' => $cgd['wsm_code']])
  916. ->findOrEmpty();
  917. if (empty($stock)) throw new Exception('商品仓库未找到');
  918. if ($stock['wait_in_stock'] < $info['num']) {
  919. $stock['wait_in_stock'] = 0;
  920. if ($stock['usable_stock'] > $info['num'] - $stock['wait_in_stock']) {
  921. $stock['usable_stock'] -= $info['num'] - $stock['wait_in_stock'];
  922. } else {
  923. $stock['usable_stock'] = 0;
  924. $stock['wait_out_stock'] -= $info['num'] - $stock['wait_in_stock'] - $stock['usable_stock'];
  925. }
  926. $stock['total_stock'] = $stock['usable_stock'] + $stock['wait_out_stock'];
  927. } else {
  928. $stock['wait_in_stock'] -= $info['num'];
  929. }
  930. $stock['updatetime'] = $date;
  931. $st_up = Db::name("good_stock")->save($stock);
  932. if ($st_up == false) throw new Exception('可售商品入库失败');
  933. } else {
  934. $orderinfo['th_num'] += $info['num'];
  935. if ($orderinfo['th_num'] == $orderinfo['send_num'] && $orderinfo['wsend_num'] == 0) {
  936. $orderinfo['status'] = 3;
  937. }
  938. $orderinfo['th_fee'] += round($info['num'] * $orderinfo['sale_price'], 2);
  939. $orderinfo['updatetime'] = $date;
  940. $uap = Db::name("sale")->save($orderinfo);
  941. if ($uap == false) throw new Exception('销售单订单更新失败');
  942. $ordernum = Db::name("order_num")
  943. ->where(['orderCode' => $orderinfo['orderCode']])
  944. ->findOrEmpty();
  945. if (empty($ordernum)) throw new Exception('未找到关联采购单');
  946. $ordernum['send_num'] -= $info['num'];
  947. $ordernum['wsend_num'] = $info['num'];
  948. $orderup = Db::name("order_num")->save($ordernum);
  949. if ($orderup == false) throw new Exception('关联数据更新失败');
  950. $cgd = Db::name("purchease_order")
  951. ->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])
  952. ->findOrEmpty();
  953. if (empty($cgd)) throw new Exception('未找到采购单数据');
  954. $stock = Db::name("good_stock")
  955. ->where(['is_del' => 0, "spuCode" => $orderinfo['good_code'], 'wsm_code' => $cgd['wsm_code']])
  956. ->findOrEmpty();
  957. if (empty($stock)) throw new Exception('商品仓库未找到');
  958. if ($info['is_all'] == 1) {
  959. if ($stock['wait_in_stock'] < $info['num']) throw new Exception('商品可用库存不足退回数量');
  960. else $stock['wait_in_stock'] -= $info['num'];
  961. } else {
  962. if ($stock['usable_stock'] + $stock['wait_out_stock'] < $info['num']) throw new Exception('商品可用库存不足退回数量');
  963. else {
  964. if ($stock['usable_stock'] > $info['num']) {
  965. $stock['usable_stock'] -= $info['num'];
  966. } else {
  967. $stock['usable_stock'] = 0;
  968. $stock['wait_out_stock'] -= $info['num'] - $stock['usable_stock'];
  969. }
  970. $stock['total_stock'] = $stock['usable_stock'] + $stock['wait_out_stock'];
  971. }
  972. }
  973. $stock['updatetime'] = $date;
  974. $st_up = Db::name("good_stock")->save($stock);
  975. if ($st_up == false) throw new Exception('可售商品入库失败');
  976. }
  977. }
  978. ActionLog::logAdd(['id' => $info['apply_id'], 'nickname' => $info['apply_name']], [
  979. "order_code" => $orderinfo["orderCode"],//出库单号
  980. "status" => $lor,//这里的status是之前的值
  981. "action_remark" => '',//备注
  982. "action_type" => "status"//新建create,编辑edit,更改状态status
  983. ], "XSQRD", $orderinfo['status'], $orderinfo);
  984. ProcessOrder::AddProcess(['id' => $info['apply_id'], 'nickname' => $info['apply_name']], [
  985. "order_type" => 'XSQRD',
  986. "order_code" => $orderinfo["orderCode"],//出库单号
  987. "order_id" => $orderinfo["id"],
  988. "order_status" => $orderinfo['status'], "before_status" => $lor
  989. ]);
  990. //对应采购单也要处理
  991. // $holder_id = Db::name('supplier')->where(['code' => $cgd['supplierNo'], 'is_del' => 0])->value('personid', 0);
  992. $holder = $userCommon->handle('sInfo', ['code' => $cgd['supplierNo']]);
  993. if (!isset($holder['code']) || $holder['code'] != 0) throw new Exception($holder['message']);
  994. $holder_id = $holder['data']['personid'];
  995. if (in_array($cgd['status'], [4])) {
  996. if ($orderinfo['is_stock'] == 1) {
  997. //库存品,推给31库管人员、41库管-张凯旋
  998. $uid = Db::name('user_role')
  999. ->where([
  1000. ['is_del', '=', 0],
  1001. ['roleid', 'in', [31, 41]],
  1002. ['status', '=', 1]
  1003. ])->column('uid');
  1004. // if(!in_array($this->uid,$uid)) throw new Exception('库存品订单只能由库管人员操作');
  1005. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  1006. "order_type" => 'CGD',
  1007. "order_code" => $cgd['cgdNo'],
  1008. "order_id" => $cgd["id"],
  1009. "order_status" => $cgd['status'],
  1010. "before_status" => $lor,
  1011. 'holder_id' => $holder_id,
  1012. 'handle_user_list' => implode(',', $uid),
  1013. ]);
  1014. } else {
  1015. // if($this->uid != $holder_id)throw new Exception('非库存品和采返商品只能由供应商负责人操作');
  1016. //非库存品和采返商品,推给供应商负责人
  1017. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  1018. "order_type" => 'CGD',
  1019. "order_code" => $cgd['cgdNo'],
  1020. "order_id" => $cgd["id"],
  1021. "order_status" => $cgd['status'],
  1022. "before_status" => $lor,
  1023. 'holder_id' => $holder_id,
  1024. 'handle_user_list' => $orderinfo['cgderid'],
  1025. ]);
  1026. }
  1027. }
  1028. $data = [
  1029. "orderCode" => $info['orderCode'],
  1030. "th_type" => 1,
  1031. "th_num" => $info['num'],
  1032. "th_fee" => round($info['num'] * $orderinfo['sale_price'], 2),
  1033. "thCode" => $info['returnCode'],
  1034. "spuCode" => $orderinfo['good_code'],
  1035. "good_name" => $orderinfo['good_name'],
  1036. "cat_id" => $orderinfo['cat_id'],
  1037. "apply_id" => $info['apply_id'],
  1038. "apply_name" => $info['apply_name'],
  1039. "addtime" => $date,
  1040. "status" => 1,
  1041. "is_del" => 0
  1042. ];
  1043. $inse = Db::name("th_data")->insert($data);
  1044. if ($inse == false) throw new Exception('退货单更新失败');
  1045. }
  1046. }
  1047. Db::commit();
  1048. return json_show(0, "更新成功");
  1049. } catch (Exception $e) {
  1050. Db::rollback();
  1051. return json_show(1004, $e->getMessage() . '|' . $e->getFile() . ':' . $e->getLine());
  1052. }
  1053. }
  1054. public function zxcreate()
  1055. {
  1056. $ordeCode = isset($this->post['orderCode']) && $this->post['orderCode'] != '' ? trim($this->post['orderCode']) : "";
  1057. if ($ordeCode == '') {
  1058. return json_show(1004, "参数orderCode 不能为空");
  1059. }
  1060. $order = Db::name("sale")->where(["orderCode" => $ordeCode, "is_del" => 0])->find();
  1061. if (empty($order)) {
  1062. return json_show(1005, "未找到订单数据");
  1063. }
  1064. $errorCode = isset($this->post['errorCode']) && $this->post['errorCode'] != '' ? trim($this->post['errorCode']) : "";
  1065. if ($errorCode == '') {
  1066. return json_show(1004, "参数errorCode 不能为空");
  1067. }
  1068. $error = Db::name('result_info')->where(["result_code" => $errorCode, "is_del" => 0])->find();
  1069. if (empty($error)) {
  1070. return json_show(1005, "未找到退货原因数据");
  1071. }
  1072. $remark = isset($this->post['remark']) && $this->post['remark'] != '' ? trim($this->post['remark']) : "";
  1073. // $token = isset($this->post['token'])&&$this->post['token']!='' ? trim($this->post['token']):"";
  1074. // if($token==''){
  1075. // return json_show(105,"参数token不能为空");
  1076. // }
  1077. // $user =GetUserInfo($token);
  1078. // if(empty($user)||$user['code']!=0){
  1079. // return json_show(1002,"申请人数据不存在");
  1080. // }
  1081. $rm = $this->uid;//isset($user["data"]['id']) ? $user["data"]['id'] : "";
  1082. $ri = $this->uname;//isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  1083. $num = isset($this->post['num']) && $this->post['num'] != '' ? intval($this->post['num']) : "";
  1084. if ($num == '') {
  1085. return json_show(1005, "参数num不能为空");
  1086. }
  1087. if ($order['wsend_num'] < $num) {
  1088. return json_show(1002, "仓库未发货数量不足退货");
  1089. }
  1090. if ($order['order_type'] == 3 || $order['order_type'] == 4) $goon = Db::name("good_zixun")->field('supplierNo')->where(["spuCode" => $order['good_code'], "is_del" => 0])->findOrEmpty();
  1091. else $goon = Db::name('good_basic')
  1092. ->where(['spuCode' => $order['good_code']])->findOrEmpty();
  1093. if (empty($goon)) return json_show(1004, '该商品不存在');
  1094. $userCommon = \app\admin\common\User::getIns();
  1095. $names = $userCommon->handle('getCodeAndName', ['code' => [$order['supplierNo'], $order['customer_code'], $goon['supplierNo']]]);
  1096. $returnCode = makeNo("RS");
  1097. Db::startTrans();
  1098. try {
  1099. $in = [
  1100. "returnCode" => $returnCode,
  1101. "orderCode" => $ordeCode,
  1102. "good_code" => $order['good_code'],
  1103. "good_name" => $order['good_name'],
  1104. "apply_id" => $rm,
  1105. "apply_name" => $ri,
  1106. "error_code" => $errorCode,
  1107. "num" => $num,
  1108. "remark" => $remark,
  1109. "order_type" => 2,
  1110. "status" => 0,
  1111. "is_del" => 0,
  1112. "addtime" => date("Y-m-d H:i:s"),
  1113. "updatetime" => date("Y-m-d H:i:s"),
  1114. 'supplierNo' => $goon['supplierNo'],
  1115. 'supplierName' => $names['data'][$goon['supplierNo']] ?? '',
  1116. 'companyNo' => $order['supplierNo'],
  1117. 'companyName' => $names['data'][$order['supplierNo']] ?? '',
  1118. 'customer_code' => $order['customer_code'],
  1119. 'customer_name' => $names['data'][$order['customer_code']] ?? '',
  1120. ];
  1121. $create = Db::name("sale_return")->insert($in, true);
  1122. if ($create > 0) {
  1123. $process = ["order_code" => $returnCode, "order_id" => $create, "order_status" => 0, "order_type" => 'XSTHD', "before_status" => 0, 'holder_id' => $in['apply_id']];
  1124. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $process);
  1125. $ste = ["order_code" => $returnCode, "status" => 0, "action_remark" => '',
  1126. "action_type" => "create"];
  1127. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "XSTHD", 3, $in);
  1128. //维护台账记录
  1129. // Db::name('standing_book')
  1130. // ->where('ordeCode', $ordeCode)
  1131. // ->update([
  1132. // 'returnGoodCode' => $returnCode,
  1133. // 'updatetime' => date("Y-m-d H:i:s")
  1134. // ]);
  1135. Db::execute("UPDATE `wsm_standing_book` SET `returnGoodCode`=CONCAT(IFNULL(`returnGoodCode`,''),',{$returnCode}'),`updatetime`='" . date('Y-m-d H:i:s') . "' WHERE `orderCode`='{$ordeCode}'");
  1136. if ($order['send_type'] == 1) {
  1137. $wsend = Db::name("order_out")->where(['orderCode' => $ordeCode, "status" => 1, "order_type" => 2])->select();
  1138. // ->save(["status" => 0, "updatetime" => date("Y-m-d H:i:s")]);
  1139. if (!empty($wsend)) {
  1140. foreach ($wsend as $value) {
  1141. $tt = $value['status'];
  1142. $value['status'] = 0;
  1143. $value['updatetime'] = date("Y-m-d H:i:s");
  1144. $up = Db::name("order_out")->save($value);
  1145. if ($up) {
  1146. $process = ["order_code" => $value['outCode'], "order_id" => $value['id'], "order_status" => 0, "order_type" => 'CKD', "before_status" => $tt, 'holder_id' => $value['apply_id']];
  1147. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $process);
  1148. $ste = ["order_code" => $value['outCode'], "status" => $tt, "action_remark" => '', "action_type" => "status"];
  1149. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "CKD", 0, $value);
  1150. } else {
  1151. Db::rollback();
  1152. return json_show(1005, "退货单新建失败");
  1153. }
  1154. }
  1155. }
  1156. }
  1157. Db::commit();
  1158. return json_show(0, "退货单新建成功");
  1159. }
  1160. Db::rollback();
  1161. return json_show(1005, "退货单新建失败");
  1162. } catch (\Exception $e) {
  1163. Db::rollback();
  1164. return json_show(1005, $e->getMessage());
  1165. }
  1166. }
  1167. //全部退货
  1168. public function allReturn()
  1169. {
  1170. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] != '' ? trim($this->post['orderCode']) : "";
  1171. if ($orderCode == '') {
  1172. return json_show(1004, "参数orderCode 不能为空");
  1173. }
  1174. $fininfo =GetFin("admin/orderischeck",["token"=>$this->post['token'],"orderCode"=>$orderCode]);
  1175. if(!isset($fininfo['code'])||$fininfo['code']!=0 ){
  1176. return json_show(1005, $fininfo['message']??"结算校验失败");
  1177. }
  1178. $order = Db::name("sale")->where(["orderCode" => $orderCode, "is_del" => 0])->find();
  1179. if (empty($order)) {
  1180. return json_show(1005, "未找到订单数据");
  1181. }
  1182. if ($order['wsend_num'] != $order['good_num']) {
  1183. return json_show(1005, "订单未发货数量与总数不等,无法全退");
  1184. }
  1185. $retrun = Db::name("sale_return")->where(["orderCode" => $orderCode, "is_del" => 0, "status" => [1, 2, 7,9,
  1186. 10,8,11,12]])->count('id');
  1187. if ($retrun > 0) {
  1188. return json_show(1005, "存在退货订单数据");
  1189. }
  1190. if ($order['order_type'] == 3 || $order['order_type'] == 4) {
  1191. $goon = Db::name("good_zixun")
  1192. ->where(["spuCode" => $order['good_code'], "is_del" => 0])
  1193. ->findOrEmpty();
  1194. } else {
  1195. $goon = Db::name('good_platform')
  1196. ->alias('a')
  1197. ->join('good b', 'b.spuCode=a.spuCode', 'left')
  1198. ->where(['a.skuCode' => $order['skuCode']])
  1199. ->field("b.spuCode,b.usable_stock,b.creater,b.createrid,b.supplierNo")
  1200. ->findOrEmpty();
  1201. }
  1202. if (empty($goon)) {
  1203. return json_show(1005, "未找到商品数据");
  1204. }
  1205. // $supplier =Db::name("supplier")->where(["code"=>$goon['supplierNo']])->find();
  1206. // if($supplier==false){
  1207. // return json_show(1005,"未找到商品供应商数据");
  1208. // }
  1209. $userCommon = \app\admin\common\User::getIns();
  1210. $tmp = $userCommon->handle('sInfo', ['code' => $goon['supplierNo']]);
  1211. $supplier = $tmp['data'];
  1212. if (empty($supplier)) return json_show(1005, "未找到商品供应商数据");
  1213. $errorCode = isset($this->post['errorCode']) && $this->post['errorCode'] != '' ? trim($this->post['errorCode']) : "";
  1214. if ($errorCode == '') return json_show(1004, "参数errorCode 不能为空");
  1215. $error = Db::name('result_info')->where(["result_code" => $errorCode, "is_del" => 0])->find();
  1216. if (empty($error)) return json_show(1005, "未找到退货原因数据");
  1217. $remark = isset($this->post['remark']) && $this->post['remark'] != '' ? trim($this->post['remark']) : "";
  1218. $addr = Db::name("order_addr")->where([["orderCode", "=", $orderCode], ["is_del", "=", 0]])->select()->toArray();
  1219. if ($order['is_stock'] == 0) {
  1220. $ordernum = Db::name("order_num")->where(['orderCode' => $orderCode])->findOrEmpty();
  1221. if (empty($ordernum)) return json_show(1005, '未找到关联采购单');
  1222. $cgd = Db::name("purchease_order")->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])->findOrEmpty();
  1223. if (empty($cgd)) return json_show(1005, '未找到采购单数据');
  1224. }
  1225. if ($order['is_stock'] == 0 && $cgd['send_status'] != 1) return json_show(1005, '采购单已发起入库');
  1226. // $userCommon = \app\admin\common\User::getIns();
  1227. // $names = $userCommon->handle('getCodeAndName',['code'=>[$order['supplierNo'],$order['customer_code']]]);
  1228. $returnCode = makeNo("RN");
  1229. Db::startTrans();
  1230. try {
  1231. $in = [
  1232. "returnCode" => $returnCode,
  1233. "orderCode" => $orderCode,
  1234. "good_code" => $order['good_code'],
  1235. "good_name" => $order['good_name'],
  1236. "apply_id" => $this->uid,
  1237. "apply_name" => $this->uname,
  1238. "cgderid" => $goon['createrid'],
  1239. "cgder" => $goon['creater'],
  1240. "person" => $supplier['person'] ?? '',
  1241. "person_id" => $supplier['personid'] ?? 0,
  1242. "error_code" => $errorCode,
  1243. "num" => $order['wsend_num'],
  1244. "total_fee" => round($order['sale_price'] * $order['wsend_num'], 2),
  1245. "good_price" => $order['sale_price'],
  1246. "platform_id" => $order['platform_id'],
  1247. "remark" => $remark,
  1248. "order_type" => $order['order_type'],
  1249. "is_addr" => count($addr) > 0 ? 1 : 0,
  1250. // "status"=>$order['is_stock']==1?4:1,
  1251. "status" => $order['is_stock'] == 1 ? (Db::name('order_out_child')->where(['is_del' => 0, 'orderCode' => $orderCode])->value('id', 0) ? 11 : 4) : 1,//库存品未分仓选4,分仓选11,非库存品选1"is_del"=>0,
  1252. "is_all" => 1,
  1253. "addtime" => date("Y-m-d H:i:s"),
  1254. "updatetime" => date("Y-m-d H:i:s"),
  1255. 'supplierNo' => $supplier['code'],
  1256. 'supplierName' => $supplier['name'],
  1257. 'companyNo' => $order['supplierNo'],
  1258. 'companyName' => $order['supplierName'],
  1259. 'customer_code' => $order['customer_code'],
  1260. 'customer_name' => $order['customerName']
  1261. ];
  1262. $create = Db::name("sale_return")->insert($in, true);
  1263. if ($create > 0) {
  1264. $stn = ["order_code" => $returnCode, "status" => 0, "action_remark" => '', "action_type" => "create"];
  1265. ActionLog::logAdd(["id" => $this->uid, "nickname" => $this->uname], $stn, "XSTHD", $in['status'], $in);
  1266. $process = ["order_code" => $returnCode, "order_id" => $create, "order_status" => $in['status'], "order_type" => 'XSTHD', "before_status" => 0, 'holder_id' => $in['apply_id']];
  1267. ProcessOrder::AddProcess(["id" => $this->uid, "nickname" => $this->uname], $process);
  1268. //维护台账信息
  1269. Db::execute("UPDATE `wsm_standing_book` SET `returnGoodCode`=CONCAT(IFNULL(`returnGoodCode`,''),',{$returnCode}'),`updatetime`='" . date('Y-m-d H:i:s') . "' WHERE `orderCode`='{$orderCode}'");
  1270. // if (count($addr) != 0) {
  1271. // $inf = [];
  1272. // foreach ($addr as $val) {
  1273. // if ($val['receipt_quantity'] == 0) continue;//当退货数量为0时,跳过
  1274. //
  1275. // $temp = [];
  1276. // $send = Db::name('order_out')->where([["addrid", "=", $val['id']]])->find();
  1277. // if ($send == false) throw new Exception("地址发货单未找到");
  1278. //
  1279. // if ($send['status'] >= 2) throw new Exception("地址已发货");
  1280. //
  1281. //
  1282. // if ($order['is_stock'] == 1) {
  1283. //
  1284. // $val['is_del'] = 1;
  1285. // $val['updatetime'] = date("Y-m-d H:i:s");
  1286. // $addrup = Db::name("order_addr")->save($val);
  1287. // if ($addrup == false) throw new Exception("地址更新失败");
  1288. //
  1289. //
  1290. // $send['is_del'] = 1;
  1291. // $send['remark'] = '全退';
  1292. // $send['updatetime'] = date("Y-m-d H:i:s");
  1293. // $outup = Db::name("order_out")->save($send);
  1294. // if ($outup == false) throw new Exception("地址发货单更新失败");
  1295. //
  1296. //
  1297. // //处理发货申请单流程
  1298. // ProcessOrder::AddProcess(["id" => $this->uid, "nickname" => $this->uname], [
  1299. // "order_type" => 'CKD',
  1300. // "order_code" => $send["outCode"],//出库单号
  1301. // "order_id" => $send["id"],
  1302. // "order_status" => 4,//全部退货
  1303. // "before_status" => $send['status'],
  1304. // 'holder_id=' => $send['apply_id']
  1305. // ]);
  1306. //// $ordersend = Db::name("order_send")->where(["outCode" => $send['outCode']])->find();
  1307. //// if($ordersend==false){
  1308. //// Db::rollback();
  1309. //// return json_show(1004, "发货单关联数据未找到");
  1310. //// }
  1311. //// $ordersend['status'] = 0;
  1312. //// $ordersend['updatetime'] = date("Y-m-d H:i:s");
  1313. //// $sendip = Db::name("order_send")->save($ordersend);
  1314. //// if ($sendip == false) {
  1315. //// Db::rollback();
  1316. //// return json_show(1004, "发货单更新失败");
  1317. //// }
  1318. // }
  1319. // $temp['returnCode'] = $returnCode;
  1320. // $temp['orderCode'] = $orderCode;
  1321. // $temp['outCode'] = isset($send['outCode']) ? $send['outCode'] : "";
  1322. // $temp['addrid'] = $val['id'];
  1323. // $temp['send_num'] = $val['receipt_quantity'];
  1324. // $temp['return_num'] = $val['receipt_quantity'];
  1325. // $temp['is_del'] = 0;
  1326. // $temp['addtime'] = date("Y-m-d H:i:s");
  1327. // $temp['updatetime'] = date("Y-m-d H:i:s");
  1328. // $inf[] = $temp;
  1329. // }
  1330. // $inadd = Db::name("sale_returnaddr")->insertAll($inf);
  1331. // if ($inadd == 0) throw new Exception("退货单新建失败");
  1332. //
  1333. // }
  1334. if ($in['status'] == 4 && $order['is_stock'] == 1) {
  1335. $lor = $order['status'];
  1336. $thnum = $order['wsend_num'];
  1337. $order['send_num'] += $thnum;
  1338. $order['th_num'] += $thnum;
  1339. $order['wsend_num'] = 0;
  1340. $order['status'] = 3;
  1341. $order['send_status'] = 3;
  1342. $order['th_fee'] += round($thnum * $order['sale_price'], 2);
  1343. $order['updatetime'] = date("Y-m-d H:i:s");
  1344. $uap = Db::name("sale")->save($order);
  1345. if ($uap == false) throw new Exception('销售单订单更新失败');
  1346. $stock=Db::name("good")->where(['spuCode'=>$goon['spuCode'],"usbale_stock"=>$goon['usable_stock']])->update(["usable_stock"=>$goon['usable_stock']+$thnum,"updatetime"=>date("Y-m-d H:i:s")]);
  1347. if ($stock == false) throw new Exception('商品库存更新失败');
  1348. ActionLog::logAdd(["id" => $this->uid, "nickname" => $this->uname], [
  1349. "order_code" => $order["orderCode"],//出库单号
  1350. "status" => $lor,//这里的status是之前的值
  1351. "action_remark" => '',//备注
  1352. "action_type" => "status"//新建create,编辑edit,更改状态status
  1353. ], "XSQRD", $order['status'], $order);
  1354. ProcessOrder::AddProcess(["id" => $this->uid, "nickname" => $this->uname], [
  1355. "order_type" => 'XSQRD',
  1356. "order_code" => $order["orderCode"],//出库单号
  1357. "order_id" => $order["id"],
  1358. "order_status" => $order['status'],
  1359. "before_status" => $lor,
  1360. 'holder_id=' => $order['apply_id']
  1361. ]);
  1362. // $saleinfo = Db::name("sale_info")->where([["orderCode", "=", $orderCode], ["num", ">", 0]])->select()->toArray();
  1363. // if (empty($saleinfo)) {
  1364. // $ordernum = Db::name("order_num")->where(['orderCode' => $orderCode])->findOrEmpty();
  1365. // if (empty($ordernum)) throw new Exception('未找到关联采购单');
  1366. //
  1367. // $cgd = Db::name("purchease_order")->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])->findOrEmpty();
  1368. // if (empty($cgd)) throw new Exception('未找到采购单数据');
  1369. //
  1370. // $bn = makeNo("BN");
  1371. // $stock = Db::name("good_stock")->where(["spuCode" => $order['good_code'], 'wsm_code' => $cgd['wsm_code'], "is_del" => 0, "status" => 1])->find();
  1372. // if ($stock == false) throw new Exception('商品库存数据未找到');
  1373. //
  1374. // $stock['usable_stock'] += $thnum;
  1375. // $stock['wait_out_stock'] -= $thnum;
  1376. // $stock['updatetime'] = date("Y-m-d H:i:s");
  1377. // $st_up = Db::name("good_stock")->save($stock);
  1378. // if ($st_up == false) throw new Exception('可售商品入库失败');
  1379. //
  1380. // $yp = GoodStockInfo::AddBn($stock['id'], $bn, $thnum, $cgd['good_price']);
  1381. // if ($yp == false) throw new Exception('商品批次退货入库失败');
  1382. //
  1383. //
  1384. // } else {
  1385. // $tempnum = $thnum;
  1386. // foreach ($saleinfo as $va) {
  1387. // if ($tempnum == 0) break;
  1388. // $stock = Db::name("good_stock")->where(["spuCode" => $order['good_code'], 'id' => $va['stockid']])->findOrEmpty();
  1389. // if ($stock == false) throw new Exception('商品库存数据未找到');
  1390. //
  1391. // if ($va['num'] >= $tempnum) {
  1392. // $tnm = $tempnum;
  1393. // $va['num'] -= $tempnum;
  1394. // $va['th_num'] += $tempnum;
  1395. // $tempnum = 0;
  1396. // } else {
  1397. // $tnm = $va['num'];
  1398. // $tempnum -= $va['num'];
  1399. // $va['th_num'] += $va['num'];
  1400. // $va['num'] = 0;
  1401. // }
  1402. // $stock['usable_stock'] += $tnm;
  1403. // $stock['wait_out_stock'] -= $tnm;
  1404. // $stock['updatetime'] = date("Y-m-d H:i:s");
  1405. // $st_up = Db::name("good_stock")->save($stock);
  1406. // if ($st_up == false) throw new Exception('可售商品入库失败');
  1407. //
  1408. // $ps = GoodStockInfo::AddBn($va['stockid'], $va['bnCode'], $tnm);
  1409. // if ($ps == false) throw new Exception('商品批次退货入库失败');
  1410. //
  1411. // $ret = GoodStockInfo::ReturnBn($returnCode, $va['id'], $tnm);
  1412. // if ($ret == false) throw new Exception('商品批次退货入库失败');
  1413. //
  1414. // $va['updatetime'] = date("Y-m-d H:i:s");
  1415. // $sal = Db::name("sale_info")->save($va);
  1416. // if ($sal == false) throw new Exception('商品批次退货入库失败');
  1417. //
  1418. // $good_data[] = ['good_log_code' => $returnCode, "stock_id" => $va['stockid'], "type" => 1, 'stock' => $tnm, "stock_name" => "usable_stock"];
  1419. // $good_data[] = ['good_log_code' => $returnCode, "stock_id" => $va['stockid'], "type" => 2, 'stock' => $tnm, "stock_name" => "wait_out_stock"];
  1420. // GoodLog::LogAdd(['id' => $this->uid, 'nickname' => $this->uname], $good_data, 'XSTHD');
  1421. // }
  1422. // }
  1423. $data=[
  1424. "orderCode"=>$orderCode,
  1425. "th_type"=>1,
  1426. "th_num"=>$thnum,
  1427. "th_fee"=>round($order['sale_price']*$thnum,2),
  1428. "thCode"=>$returnCode,
  1429. "spuCode"=>$order['good_code'],
  1430. "good_name"=>$order['good_name'],
  1431. "cat_id"=>$order['cat_id'],
  1432. "apply_id"=>$this->uid,
  1433. "apply_name"=>$this->uname,
  1434. "addtime"=>date("Y-m-d H:i:s"),
  1435. "status"=>1,
  1436. "is_del"=>0
  1437. ];
  1438. $inse=Db::name("th_data")->insert($data);
  1439. if($inse==false) throw new Exception("退货单更新失败");
  1440. }
  1441. Db::commit();
  1442. return json_show(0, "退货单新建成功", ["returnCode" => $returnCode]);
  1443. }
  1444. Db::rollback();
  1445. return json_show(1005, "退货单新建失败");
  1446. } catch (\Exception $e) {
  1447. Db::rollback();
  1448. return json_show(1005, $e->getMessage());
  1449. }
  1450. }
  1451. //导出
  1452. public function export()
  1453. {
  1454. $param = $this->request->only([
  1455. 'returnCode' => '',
  1456. 'status' => '',
  1457. 'orderCode' => '',
  1458. 'apply_name' => '',
  1459. 'start' => '',
  1460. 'end' => '',
  1461. 'good_code' => '',
  1462. 'skuCode' => '',
  1463. 'relaComNo' => '',
  1464. 'order_source' => '',
  1465. 'supplierNo' => '',
  1466. 'customer_code' => '',
  1467. 'companyNo' => '',
  1468. 'company_name' => '',//部门名称
  1469. ], 'post', 'trim');
  1470. $where = [['sr.is_del', "=", 0]];
  1471. if (!empty($param['returnCode'])) $where[] = ['sr.returnCode', "in", $param['returnCode']];
  1472. if ($param['status'] !== "") $where[] = ['sr.status', "=", $param['status']];
  1473. if ($param['orderCode'] != "") $where[] = ['sr.orderCode', "like", "%{$param['orderCode']}%"];
  1474. if ($param['apply_name'] != "") $where[] = ['sr.apply_name', "like", "%{$param['apply_name']}%"];
  1475. if ($param['start'] !== "") $where[] = ['sr.addtime', ">=", $param['start'] . ' 00:00:00'];
  1476. if ($param['end'] !== "") $where[] = ['sr.addtime', "<=", $param['end'] . ' 23:59:59'];
  1477. if ($param['good_code'] != "") $where[] = ['sr.good_code', "like", "%{$param['good_code']}%"]; //商品成本编码搜索
  1478. if ($param['skuCode'] != "") $where[] = ['b.skuCode', "like", "%{$param['skuCode']}%"];//商品上线编码搜索
  1479. if ($param['relaComNo'] != "") $where[] = ['a.supplierNo', '=', $param['relaComNo']];
  1480. if ($param['company_name'] !== "") $where[] = ["sr.apply_id", 'in', get_company_item_user_by_name($param['company_name'])];
  1481. if ($param['order_source'] !== "") $where[] = ["b.order_source", '=', $param['order_source']];
  1482. if ($param['supplierNo'] != "") $where[] = ['a.supplierNo', 'like', '%' . $param['supplierNo'] . '%'];
  1483. if ($param['customer_code'] != "") $where[] = ['a.customer_code', "like", '%' . $param['customer_code'] . '%'];//商品上线编码搜索
  1484. if ($param['companyNo'] != "") $where[] = ['a.companyNo', "like", '%' . $param['companyNo'] . '%'];//商品上线编码搜索
  1485. $condition = [];
  1486. //只有level2的账号过滤数据权限
  1487. if ($this->level == 2) {
  1488. $role = $this->checkDataShare();
  1489. $hand = resign_hand_user($this->uid, 0);
  1490. if (!empty($role[DataGroupModel::$type_全部])) {
  1491. $arr = array_unique(array_merge($hand, $role[DataGroupModel::$type_全部]));
  1492. $condition[] = ["sr.apply_id", "in", $arr];
  1493. $condition[] = ["sr.cgderid", "in", $hand];
  1494. $condition[] = ["sr.person_id", "in", $hand];
  1495. $code = Db::connect('mysql_sys')
  1496. ->name('supplier')
  1497. ->where(['is_del' => 0, 'personid' => $this->uid])
  1498. ->column('code');
  1499. if($code) $condition[]=['sr.supplierNo','in',$code];
  1500. }
  1501. }
  1502. //供应商账号不允许看到库存品数据
  1503. if ($this->level == 3) $where[] = ['b.is_stock', '<>', 1];
  1504. if (in_array($this->roleid, config('app.wsm_cgder_role'))) $where[] = ["b.order_type", "=", 1];
  1505. $list = Db::name("sale_return")
  1506. ->alias('sr')
  1507. ->field('sr.returnCode 退货单编号,sr.orderCode 销售订单编号,sr.apply_id,sr.apply_name 申请人,"" 申请人部门,sr.cgder 采购员,sr.person 供应商负责人,c.result 错误原因,sr.good_code 商品成本编码,b.skuCode 上线商品编码,sr.good_name 商品名称,sr.good_price 单价,sr.num 退货数量,sr.total_fee 退货金额,d.platform_name 平台,sr.remark 备注,sr.order_type 退货单类型,sr.status 状态,sr.is_all 是否全退货,sr.is_th 供应商是否同意退货,sr.is_addr,e.addr_code,e.addr 发货地址,sr.return_wsm 退货仓库,sr.loop_total 循环次数')
  1508. ->leftJoin("sale b", "b.orderCode=sr.orderCode AND b.is_del=0")
  1509. ->leftJoin("result_info c", "c.result_code=sr.error_code")
  1510. ->leftJoin("platform d", "d.id=sr.platform_id")
  1511. ->leftJoin("order_addr e", "e.id=sr.is_addr")
  1512. ->where($where)
  1513. ->where(function ($query) use ($condition) {
  1514. $query->whereOr($condition);
  1515. })
  1516. ->order("sr.addtime desc")
  1517. ->select()
  1518. ->toArray();
  1519. $all_createrid = array_column($list, 'apply_id');
  1520. $item = get_company_name_by_uid($all_createrid);
  1521. $order_type = [1 => '直接下单', 2 => '咨询', 3 => '项目', 4 => '平台', 5 => '有赞', 6 => '售后补换货', 7 => '报备转单', 8 => '支付渠道'];
  1522. $bool = [0 => '否', 1 => '是'];
  1523. $status = [1 => '待业务审批', 4 => '退货完成', 5 => '业务驳回', 9 => '待供应商审核', 8 => '供应商已驳回待采购审核', 10 => '业务公司修改待供应商确认', 11 => '待设置退货工单', 12 => '待库管发货'];
  1524. foreach ($list as &$value) {
  1525. // $value['退货金额'] = round($value['sale_price'] * $value['退货数量'],2);
  1526. $value['申请人部门'] = $item[$value['apply_id']] ?? '';
  1527. $value['是否全退货'] = $bool[$value['是否全退货']] ?? '';
  1528. $value['供应商是否同意退货'] = $bool[$value['供应商是否同意退货']] ?? '';
  1529. $value['退货单类型'] = $order_type[$value['退货单类型']] ?? '';
  1530. $value['状态'] = $status[$value['状态']] ?? '';
  1531. if ($value['is_addr'] == 0) $value['发货地址'] = '无地址';
  1532. else $value['发货地址'] = GetAddr($value['addr_code']) . $value['发货地址'];
  1533. unset($value['apply_id']);
  1534. unset($value['good_price']);
  1535. unset($value['addr_code']);
  1536. unset($value['is_addr']);
  1537. }
  1538. if (empty($list)) $list[] = ['没有相关可导出的数据'];
  1539. excelSave('退货单' . date('YmdHis'), array_keys($list[0]), $list);
  1540. }
  1541. //获取退货单对应的发货单列表
  1542. public function getOrderOutList()
  1543. {
  1544. $param = $this->request->only(['returnCode', 'page' => 1, 'size' => 10], 'post', 'trim');
  1545. $val = Validate::rule([
  1546. 'returnCode|售前退货单号' => 'require',
  1547. 'page|页码' => 'require|number|gt:0',
  1548. 'size|每页数量' => 'require|number|gt:0|max:200',
  1549. ]);
  1550. if ($val->check($param) == false) return json_show(1004, $val->getError());
  1551. // $sale_return = Db::name('sale_return')
  1552. // ->field('id,orderCode')
  1553. // ->where(['is_del' => 0, 'returnCode' => $param['returnCode']])
  1554. // ->findOrEmpty();
  1555. // if (empty($sale_return)) return json_show(1004, '该售后申请单不存在');
  1556. $where = ['a.is_del' => 0, 'a.returnCode' => $param['returnCode']];
  1557. $count = Db::name('sale_returnaddr')
  1558. ->alias('a')
  1559. ->leftJoin('order_addr b', 'b.id=a.addrid and b.is_del=0')
  1560. ->where($where)
  1561. ->count('a.id');
  1562. $list = Db::name('sale_returnaddr')
  1563. ->alias('a')
  1564. ->field('a.id,a.outCode,a.send_num,a.return_num,a.is_sale_return_child,b.contactor,b.mobile,b.addr_code,b.addr,"" addr_code_cn')
  1565. ->leftJoin('order_addr b', 'b.id=a.addrid and b.is_del=0')
  1566. ->where($where)
  1567. ->order(['a.is_sale_return_child' => 'asc', 'a.addtime' => 'desc', 'a.id' => 'desc'])
  1568. ->page($param['page'], $param['size'])
  1569. ->select()
  1570. ->toArray();
  1571. $is_sale_return_child_count = Db::name('sale_returnaddr')
  1572. ->alias('a')
  1573. ->where($where)
  1574. ->where('is_sale_return_child', 1)
  1575. ->count('a.id');
  1576. foreach ($list as &$value) {
  1577. if ($value['addr_code'] != '') {
  1578. $value['addr_code_cn'] = GetAddr($value['addr_code']);
  1579. }
  1580. $child =Db::name("order_out_child")->where(["outCode"=>$value["outCode"],"status"=>[1,2,3],"is_del"=>0])->findOrEmpty();
  1581. $value["is_has_child"] = empty($child);
  1582. }
  1583. return json_show(0, '获取列表成功', ['count' => $count, 'list' => $list, 'is_sale_return_child_count' => $is_sale_return_child_count]);
  1584. }
  1585. //取消
  1586. public function cancel()
  1587. {
  1588. $param = $this->request->only(['returnCode'], 'post', 'trim');
  1589. $val = Validate::rule([
  1590. 'returnCode|售前退货申请单号' => 'require|array|max:100',
  1591. ]);
  1592. if ($val->check($param) == false) return json_show(1004, $val->getError());
  1593. $temp = Db::name('sale_return')
  1594. ->field('returnCode')
  1595. ->where(['is_del' => 0, 'returnCode' => $param['returnCode'], 'status' => [11, 12, 4, 5, 13]])
  1596. ->findOrEmpty();
  1597. if (!empty($temp)) return json_show(1004, $temp['returnCode'] . '状态有误,不允许取消');
  1598. $rs = Db::name('sale_return')
  1599. ->where(['is_del' => 0, 'returnCode' => $param['returnCode'], 'status' => [1, 8, 9, 10]])
  1600. ->update([
  1601. 'status' => 13,
  1602. 'updatetime' => date('Y-m-d H:i:s')
  1603. ]);
  1604. return $rs ? json_show(0, '售前退货申请单取消成功') : json_show(1004, '售前退货申请单取消失败');
  1605. }
  1606. }