Reorder.php 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  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. // $customer_code = trim($this->post['customer_code']??'');
  465. // $where[]=['b.customer_code', "like", "%{$customer_code}%"];
  466. $count = Db::name("sale_return")
  467. ->alias('sr')
  468. ->leftJoin("sale b", "b.orderCode=sr.orderCode AND b.is_del=0")
  469. ->leftJoin('result_info c', 'c.result_code=sr.error_code')
  470. ->leftJoin('platform p', 'p.id=b.platform_id AND p.is_del=0')
  471. ->where($where)
  472. // ->where(function ($query) use ($condition) {
  473. // $query->whereOr($condition);
  474. // })
  475. ->count('sr.id');
  476. $total = ceil($count / $size);
  477. $page = $total >= $page ? $page : $total;
  478. $list = Db::name("sale_return")
  479. ->alias('sr')
  480. ->field('sr.*,b.skuCode,b.sale_price,b.good_num total_num,b.order_source,c.result error_msg,p.use_type')
  481. ->leftJoin("sale b", "b.orderCode=sr.orderCode AND b.is_del=0")
  482. ->leftJoin('result_info c', 'c.result_code=sr.error_code')
  483. ->leftJoin('platform p', 'p.id=b.platform_id AND p.is_del=0')
  484. ->where($where)
  485. // ->where(function ($query) use ($condition) {
  486. // $query->whereOr($condition);
  487. // })
  488. ->order("sr.addtime desc")
  489. ->page($page, $size)
  490. ->select()
  491. ->toArray();
  492. // echo Db::name("sale_return")->getLastSql();
  493. $all_createrid = array_column($list, 'apply_id');
  494. $item = get_company_name_by_uid($all_createrid);
  495. // $userCommon = \app\admin\common\User::getIns();
  496. // $names = $userCommon->handle('getCodeAndName',['code'=>array_merge(array_column($list,'supplierNo'),array_column($list,'customer_code'))]);
  497. //校验是否开通了供应商账号
  498. $supp_account = checkHasAccountBySupplierNos(array_unique(array_column($list, 'supplierNo')));
  499. $data = [];
  500. foreach ($list as $value) {
  501. // $value['error_msg']='';
  502. // if($value['error_code']!=''){
  503. // $error = Db::name("result_info")->where(["result_code"=>$value['error_code']])->find();
  504. // $value['error_msg']= isset($error['result'])?$error['result']:"";
  505. // }
  506. // $order =Db::name("sale")->where(["orderCode"=>$value['orderCode'],"is_del"=>0])->find();
  507. // $value['sale_price'] = isset($order['sale_price']) ?$order['sale_price']:0;
  508. $value['return_total'] = $value['sale_price'] * $value['num'];
  509. // $value['total_num'] =$order['good_num'] ;
  510. $value['company_name'] = $item[$value['apply_id']] ?? '';
  511. // $value['supplierName'] = $names['data'][$value['supplierNo']] ?? '';//isset($wsm['company']) ? $wsm['company'] : "";
  512. // $value['customerName'] = $names['data'][$value['customer_code']] ?? '';//isset($wsm['company']) ? $wsm['company'] : "";
  513. //是否具有编辑权限
  514. // $value['is_allow_update'] = 0;
  515. // if (in_array($this->roleid, [1, 33]) || in_array($value['apply_id'], $role[DataGroupModel::$type_可编辑])) $value['is_allow_update'] = 1;
  516. $value['has_account'] = (int)isset($supp_account[$value['supplierNo']]);
  517. $data[] = $value;
  518. }
  519. return json_show(0, "获取成功", ["count" => $count, 'list' => $data]);
  520. }
  521. public function info()
  522. {
  523. $code = isset($this->post['returnCode']) && $this->post['returnCode'] !== "" ? trim($this->post['returnCode']) : "";
  524. if ($code == "") {
  525. return json_show(1004, "参数returnCode不能为空");
  526. }
  527. $info = Db::name("sale_return")->where(["returnCode" => $code, "is_del" => 0])->find();
  528. if (empty($info)) {
  529. return json_show(1004, "未找到退货数据");
  530. }
  531. $orderinfo = Db::name("sale")->where(["orderCode" => $info["orderCode"]])->find();
  532. if ($orderinfo['order_type'] == 3 || $orderinfo['order_type'] == 4) {
  533. $goon = Db::name("good_zixun")
  534. ->field('cat_id,0 is_stock')
  535. ->where(["spuCode" => $orderinfo['good_code'], "is_del" => 0])
  536. ->findOrEmpty();
  537. } else {
  538. $goon = Db::name('good_platform')
  539. ->field('b.cat_id,b.is_stock')
  540. ->alias('a')
  541. ->leftJoin('good b', 'b.spuCode=a.spuCode')
  542. ->where(['a.skuCode' => $orderinfo['skuCode']])
  543. ->findOrEmpty();
  544. }
  545. if ($goon == false) {
  546. return json_show(1003, "未找到商品数据");
  547. }
  548. $int = isset($goon['cat_id']) && $goon['cat_id'] != 0 ? made($goon['cat_id']) : [];
  549. $info['is_stock'] = isset($goon['is_stock']) ? $goon['is_stock'] : '0';
  550. $info['good_code'] = isset($orderinfo['good_code']) ? $orderinfo['good_code'] : '';
  551. $info['send_type'] = isset($orderinfo['send_type']) ? $orderinfo['send_type'] : '';
  552. $info['skuCode'] = isset($orderinfo['skuCode']) ? $orderinfo['skuCode'] : '';
  553. $info['good_name'] = isset($orderinfo['good_name']) ? $orderinfo['good_name'] : '';
  554. $info['good_num'] = isset($orderinfo['good_num']) ? $orderinfo['good_num'] : '';
  555. $info['sale_price'] = isset($orderinfo['sale_price']) ? $orderinfo['sale_price'] : '0';
  556. $info['origin_price'] = isset($orderinfo['origin_price']) ? $orderinfo['origin_price'] : '0';
  557. $info['return_total'] = $info['sale_price'] * $info['num'];
  558. $info['send_num'] = isset($orderinfo['send_num']) ? $orderinfo['send_num'] : '0';
  559. $info['wsend_num'] = isset($orderinfo['wsend_num']) ? $orderinfo['wsend_num'] : '0';
  560. $info['send_status'] = isset($orderinfo['send_status']) ? $orderinfo['send_status'] : '';
  561. $info['total_price'] = isset($orderinfo['total_price']) ? $orderinfo['total_price'] : '0';
  562. $info['post_fee'] = isset($orderinfo['post_fee']) ? $orderinfo['post_fee'] : '0';
  563. // $info['customer_code'] = isset($orderinfo['customer_code'])?$orderinfo['customer_code']:'';
  564. // $userCommon = \app\admin\common\User::getIns();
  565. if ($info['return_wsm'] != "") {
  566. $wsmcode = Db::name("warehouse_info")
  567. ->alias("a")
  568. // ->leftJoin("supplier b","a.supplierNo=b.code")
  569. ->where(["a.wsm_code" => $info['return_wsm']])
  570. ->field("a.name as wsm_name,a.supplierNo,a.supplierName")
  571. ->findOrEmpty();
  572. // $tmp = $userCommon->handle('getCodeAndName', ['code' => [
  573. // $orderinfo['supplierNo'],
  574. // $orderinfo['customer_code'],
  575. // $wsmcode['supplierNo']??'',
  576. // ]]);
  577. $info['wsm_name'] = isset($wsmcode['wsm_name']) ? $wsmcode['wsm_name'] : "";
  578. $info['wsm_supplier'] = $wsmcode['supplierName'];//isset($wsmcode['name']) ? $wsmcode['name']:"";
  579. $info['wsm_supplierNo'] = $wsmcode['supplierNo'] ?? '';//isset($wsmcode['code']) ? $wsmcode['code']:"";
  580. }
  581. // if(!empty($wsmcode['supplierNo'])){
  582. // $info['wsm_supplier'] =$tmp['data'][$wsmcode['supplierNo']]??'';//isset($wsmcode['name']) ? $wsmcode['name']:"";
  583. // $info['wsm_supplierNo'] =$wsmcode['supplierNo']??'';//isset($wsmcode['code']) ? $wsmcode['code']:"";
  584. // }
  585. // $info['customer_name']='';
  586. // if(isset($orderinfo['customer_code'])&&$orderinfo['customer_code']!=''){
  587. // $customerinfo = Db::name("customer_info")->where(['companyNo'=>$orderinfo['customer_code']])->find();
  588. // $info['customer_name'] = $tmp['data'][$orderinfo['customer_code']]??'';//isset($customerinfo['companyName']) ? $customerinfo['companyName']:"";
  589. // }
  590. // $info['supplierNo'] = isset($orderinfo['supplierNo'])?$orderinfo['supplierNo']:'';
  591. // $info['supplier_name']='';
  592. // if(isset($orderinfo['supplierNo'])&&$orderinfo['supplierNo']!=''){
  593. //// $customerinfo = Db::name("business")->where(['companyNo'=>$orderinfo['supplierNo']])->find();
  594. //// $info['supplier_name'] = isset($customerinfo['company']) ? $customerinfo['company']:"";
  595. // $info['supplier_name'] = $tmp['data'][$orderinfo['supplierNo']] ?? '';
  596. //
  597. // }
  598. $info['platform_name'] = '';
  599. $info['platform_id'] = $orderinfo['platform_id'];
  600. if ($orderinfo['platform_id'] != 0) {
  601. $plat = Db::name("platform")->field('platform_name')->where(['id' => $orderinfo['platform_id']])->find();
  602. $info['platform_name'] = isset($plat['platform_name']) ? $plat['platform_name'] : "";
  603. }
  604. $info['cgd_wsend'] = "";
  605. $info['cgd_send'] = "";
  606. $info['cgd_total'] = "";
  607. if ($orderinfo['order_type'] == 2) {
  608. $cgd = Db::name("purchease_order")->where(["bkcode" => $info["orderCode"], "order_type" => 2])->find();
  609. $info['cgd_wsend'] = isset($cgd['wsend_num']) ? $cgd['wsend_num'] : 0;
  610. $info['cgd_send'] = isset($cgd['send_num']) ? $cgd['send_num'] : 0;
  611. $info['cgd_total'] = isset($cgd['good_num']) ? $cgd['good_num'] : 0;
  612. }
  613. $info['error_msg'] = '';
  614. if ($info['error_code'] != '') {
  615. $error = Db::name("result_info")->where(["result_code" => $info['error_code']])->find();
  616. $info['error_msg'] = isset($error['result']) ? $error['result'] : "";
  617. }
  618. $wsm_return = Db::name("sale_returninfo")->where(["returnCode" => $info["returnCode"], "is_del" => 0])->select()->toArray();
  619. $all_wsm_code = array_column($wsm_return, 'wsm_code');
  620. $all_wsmcode_info = Db::name("warehouse_info")
  621. ->where(["wsm_code" => $all_wsm_code])
  622. ->column("name,supplierNo,supplierName", 'wsm_code');
  623. // $userCommon = \app\admin\common\User::getIns();
  624. // $all_supplier_name = $userCommon->handle('getCodeAndName', ['code' => array_unique(array_column($all_wsmcode_info, 'supplierNo'))]);
  625. $wsm = [];
  626. if (!empty($wsm_return)) {
  627. foreach ($wsm_return as $value) {
  628. $value['wsm_name'] = "";
  629. $value['wsm_supplier'] = "";
  630. $value['wsm_supplierNo'] = "";
  631. if ($value['wsm_code'] != "") {
  632. // $wsmcode = Db::name("warehouse_info")
  633. // ->alias("a")
  634. //// ->leftJoin("supplier b","a.supplierNo=b.code")
  635. // ->where(["a.wsm_code"=>$value['wsm_code']])
  636. // ->field("a.name as wsm_name,b.name,b.code")
  637. // ->find();
  638. $value['wsm_name'] = $all_wsmcode_info[$value['wsm_code']]['name'] ?? '';//isset($wsmcode['wsm_name']) ? $wsmcode['wsm_name']:"";
  639. $value['wsm_supplier'] = $all_wsmcode_info[$value['wsm_code']]['supplierName'] ?? '';//isset($wsmcode['name']) ? $wsmcode['name']:"";
  640. $value['wsm_supplierNo'] = $all_wsmcode_info[$value['wsm_code']]['supplierNo'] ?? '';//isset($wsmcode['code']) ? $wsmcode['code']:"";
  641. }
  642. $orderwsm = Db::name("sale_info")->where(["orderCode" => $info["orderCode"], "wsm_code" => $value["wsm_code"]])->find();
  643. $value["wsm_total"] = isset($orderwsm["num"]) ? $orderwsm["num"] : 0;
  644. $send = Db::name("order_out")->where(["wsm_code" => $value['wsm_code'], 'orderCode' => $info['orderCode']])->sum("send_num");
  645. $value['wsm_send'] = $send ?? 0;
  646. $value['wsm_wsend'] = $value['wsm_total'] - $value['wsm_send'];
  647. $wsm[] = $value;
  648. }
  649. }
  650. $info['wsminfo'] = $wsm;
  651. $addr = Db::name("sale_returnaddr")
  652. ->alias('a')
  653. ->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')
  654. ->leftJoin('order_addr b', 'b.id=a.addrid')
  655. ->where(["a.returnCode" => $info["returnCode"], "a.is_del" => 0])
  656. ->select()
  657. ->toArray();
  658. $addrinfo = [];
  659. if (!empty($addr)) {
  660. $userCommon = \app\admin\common\User::getIns();
  661. $customer_name = $userCommon->handle('getCodeAndName', ['code' => array_unique(array_column($addr, 'customer_code'))]);
  662. foreach ($addr as $value) {
  663. // $addrlist = Db::name("order_addr")->where(["id"=>$value["addrid"]])->find();
  664. $value['addr'] = isset($value['addr']) ? $value['addr'] : "";
  665. $value['addr_code'] = isset($value['addr_code']) ? $value['addr_code'] : "";
  666. $value['contactor'] = isset($value['contactor']) ? $value['contactor'] : "";
  667. $value['mobile'] = isset($value['mobile']) ? $value['mobile'] : "";
  668. $value['post_fee'] = isset($value['post_fee']) ? $value['post_fee'] : "";
  669. $value['addive_time'] = isset($value['addive_time']) ? $value['addive_time'] : "";
  670. $value['customer_code'] = isset($value['customer_code']) ? $value['customer_code'] : "";
  671. $value['receipt_quantity'] = isset($value['receipt_quantity']) ? $value['receipt_quantity'] : "";
  672. $send = Db::name("order_out")->where(['addrid' => $value['addrid'], 'orderCode' => $value['orderCode'], "is_del" => 0])->where("status", ">=", 2)->sum("send_num");
  673. $value['addr_send'] = $send ?? 0;
  674. $value['addr_wsend'] = $value['receipt_quantity'] - $value['addr_send'];
  675. // $customer = Db::name("customer_info")->where(['companyNo'=>$addrlist['customer_code']])->find();
  676. $value['customer_name'] = $customer_name['data'][$value['customer_code']] ?? '';//isset($customer['companyName']) ? $customer['companyName']:"";
  677. $addrinfo[] = $value;
  678. }
  679. }
  680. $info['addrinfo'] = $addrinfo;
  681. $info['can'] = $int;
  682. //校验是否开通了供应商账号
  683. $supp_account = checkHasAccountBySupplierNos([$info['supplierNo']]);
  684. $info['has_account'] = (int)isset($supp_account[$info['supplierNo']]);
  685. return json_show(0, "获取成功", $info);
  686. }
  687. /**
  688. * @return \think\response\Json|void
  689. * @throws \think\db\exception\DataNotFoundException
  690. * @throws \think\db\exception\DbException
  691. * @throws \think\db\exception\ModelNotFoundException
  692. */
  693. public function delete()
  694. {
  695. $code = isset($this->post['returnCode']) && $this->post['returnCode'] !== "" ? trim($this->post['returnCode']) : "";
  696. if ($code == "") {
  697. return json_show(1004, "参数returnCode不能为空");
  698. }
  699. $info = Db::name("sale_return")->where(["returnCode" => $code, "is_del" => 0])->find();
  700. if (empty($info)) {
  701. return json_show(1004, "未找到退货数据");
  702. }
  703. $info["is_del"] = 1;
  704. $info["updatetime"] = date("Y-m-d H:i:s");
  705. $del = Db::name("sale_return")->save($info);
  706. if ($del) {
  707. $ste = ["order_code" => $code, "status" => 0, "action_remark" => '', "action_type" => "delete"];
  708. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "XSTHD", 0, $ste);
  709. $process = ["order_code" => $code, "order_id" => $info['id'], "order_status" => 0, "order_type" => "XSTHD"];
  710. ProcessOrder::workdel($process);
  711. return json_show(0, "删除成功");
  712. } else {
  713. return json_show(1004, "删除失败");
  714. }
  715. }
  716. /**审核
  717. * 1待业务审批
  718. * 2待专员审批(该节点废除)
  719. * 3待主管审批(该节点废除)
  720. * 4退货完成
  721. * 5业务驳回
  722. * 6采购驳回(该节点废除)
  723. * 7专员审批不通过(该节点废除)
  724. * 9待供应商审核
  725. * 8供应商已驳回待采购审核
  726. * 10业务公司修改待供应商确认
  727. * 11待设置退货工单
  728. * 12待库管发货
  729. * 13取消
  730. */
  731. public function exam()
  732. {
  733. $param = $this->request->only(['returnCode', 'status', 'remark' => '', 'return_wsm' => ''], 'post', 'trim');
  734. $val = Validate::rule([
  735. 'returnCode|退货单编号' => 'require',
  736. 'status|状态' => 'require|in:5,9,8,10,4,11',
  737. 'remark|备注' => 'requireIf:status,5|requireIf:status,8|requireIf:status,10',
  738. ]);
  739. if ($val->check($param) == false) return json_show(1004, $val->getError());
  740. $code = $param['returnCode'];
  741. $status = $param['status'];
  742. $remark = $param['remark'];
  743. // $code = isset($this->post['returnCode']) && $this->post['returnCode'] !=="" ? trim($this->post['returnCode']):"";
  744. // if($code==""){
  745. // return json_show(1004,"参数returnCode不能为空");
  746. // }
  747. $info = Db::name("sale_return")->where(["returnCode" => $code, "is_del" => 0])->findOrEmpty();
  748. if (empty($info)) return json_show(1004, "未找到退货数据");
  749. switch ($info['status']) {
  750. case 1:
  751. if (in_array($param['status'], [5, 9]) == false) return json_show(1004, '选项错误');
  752. break;
  753. case 9:
  754. if (in_array($param['status'], [4, 8]) == false) return json_show(1004, '选项错误');
  755. break;
  756. case 8:
  757. if (in_array($param['status'], [11, 10]) == false) return json_show(1004, '选项错误');
  758. // if ($param['status'] == 4) {
  759. // if ($param['return_wsm'] == '') return json_show(1004, '仓库编码不能为空');
  760. // $tmp = Db::name("warehouse_info")
  761. // ->field('id')
  762. // ->where(['wsm_code' => $param['return_wsm']])
  763. // ->findOrEmpty();
  764. // if (empty($tmp)) return json_show(1004, '未找到仓库数据');
  765. // else $info['return_wsm'] = $param['return_wsm'];
  766. //
  767. // }
  768. break;
  769. case 10:
  770. if (in_array($param['status'], [4, 8]) == false) return json_show(1004, '选项错误');
  771. break;
  772. }
  773. //获取最新的供应商负责人
  774. $s_info = \app\admin\common\User::getIns()->handle('sInfo', ['code' => $info['supplierNo']]);
  775. $info['person_id'] = $s_info['data']['personid'];
  776. $info['person'] = $s_info['data']['person'];
  777. //当处于以下节点时,level2账号必须是供应商负责人操作,level3账号不做限制
  778. if (in_array($info['status'], [9, 10]) && ($this->level == 2) && ($this->uid != $info['person_id'])) return json_show(1004, '您不是供应商负责人,此时无权操作');
  779. if ($param['status'] == 10) $info['loop_total'] += 1;//只要走到节点10(业务公司修改,待供应商确认),就增加次数
  780. // $status = isset($this->post['status']) && $this->post['status'] !=="" ? intval($this->post['status']):"";
  781. // if($status===""){
  782. // return json_show(1004,"参数status不能为空");
  783. // }
  784. // $remark = isset($this->post['remark']) && $this->post['remark'] !="" ? trim($this->post['remark']) :"";
  785. $var = $info['status'];
  786. $orderinfo = Db::name("sale")->where(["orderCode" => $info["orderCode"]])->findOrEmpty();
  787. if (empty($orderinfo)) return json_show(1004, "未找到订单数据");
  788. if ($status == 4) {
  789. if ($info['is_addr'] == 1) {
  790. $addr = Db::name("sale_returnaddr")
  791. ->where(['returnCode' => $info['returnCode'], "is_del" => 0])
  792. ->select()
  793. ->toArray();
  794. if (empty($addr)) return json_show(1004, "未找到发货单地址数据");
  795. }
  796. }
  797. // if($status==3){
  798. // $is_th =isset($this->post['is_th'])&&$this->post['is_th']!=="" ? intval($this->post['is_th']):"";
  799. // if($is_th===""){
  800. // return json_show(1004,"参数is_th不能为空");
  801. // }
  802. // $return_wsm =isset($this->post['return_wsm'])&&$this->post['return_wsm']!=="" ? trim($this->post['return_wsm']):"";
  803. // if($is_th==0){
  804. // if($return_wsm===""){
  805. // return json_show(1004,"参数return_wsm 不能为空");
  806. // }
  807. // $wsmcode = Db::name("warehouse_info")->where(['wsm_code'=>$return_wsm])->find();
  808. // if($wsmcode==false){
  809. // return json_show(1004,"为找到仓库数据");
  810. // }
  811. // }
  812. // $info['return_wsm'] =$return_wsm ;
  813. // $info['is_th'] =$is_th ;
  814. // }
  815. if (in_array($info['status'], [9, 10]) && $param['status'] == 4) $info['is_th'] = 1;//除了8-11-12-4之外,其余9-4和10-4都属于供应商同意退货
  816. $fininfo =GetFin("admin/orderischeck",["token"=>$this->post['token'],"orderCode"=>$info["orderCode"],
  817. "isCgd"=>$info['is_th']]);
  818. if(!isset($fininfo['code'])||$fininfo['code']!=0 ){
  819. return json_show(1005, $fininfo['message']??"结算校验失败");
  820. }
  821. Db::startTrans();
  822. try {
  823. $date = date("Y-m-d H:i:s");
  824. $userCommon = \app\admin\common\User::getIns();
  825. $temp = $info['status'];
  826. $info['status'] = $status;
  827. $remark != "" ? $info['remark'] = $remark : "";
  828. $info["updatetime"] = $date;
  829. $up = Db::name("sale_return")->save($info);
  830. if ($up) {
  831. //如果是节点2(待专员审核),要将待办数据推给供应商负责人
  832. 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']];
  833. else $process = ["order_code" => $code, "order_id" => $info['id'], "order_status" => $status, "order_type" => "XSTHD", 'before_status' => $temp, 'holder_id' => $info['apply_id']];
  834. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $process);
  835. $ste = ["order_code" => $code, "status" => $temp, "action_remark" => '', "action_type" => "status"];
  836. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "XSTHD", $status, $info);
  837. if ($status == 4) {
  838. if ($info['is_addr'] == 1) {
  839. if (isset($addr) && !empty($addr)) {
  840. foreach ($addr as $value) {
  841. $addrinfo = Db::name("order_addr")
  842. ->where(['id' => $value['addrid'], "is_del" => 0])
  843. ->findOrEmpty();
  844. if (empty($addrinfo)) throw new Exception("地址数据未找到");
  845. if ($addrinfo['receipt_quantity'] < $value['return_num']) throw new Exception("地址发货数量不足");
  846. $addrinfo['receipt_quantity'] -= $value['return_num'];
  847. $addrinfo['is_del'] = $addrinfo['receipt_quantity'] <= 0 ? 1 : 0;
  848. $addrinfo['updatetime'] = $date;
  849. $addrup = Db::name("order_addr")->save($addrinfo);
  850. if ($addrup == false) throw new Exception('地址发货数量更新失败');
  851. if ($value['outCode'] != "") {
  852. $out = Db::name("order_out")->where(["outCode" => $value['outCode']])->findOrEmpty();
  853. if (empty($out)) throw new Exception('地址发货单数据未找到');
  854. if ($out['status'] >= 2) throw new Exception('地址发货单已发货');
  855. if ($out['send_num'] < $value['return_num']) throw new Exception('地址发货单发货数量不足');
  856. $out['send_num'] -= $value['return_num'];
  857. $out['is_del'] = $out['send_num'] <= 0 ? 1 : 0;
  858. $out['updatetime'] = $date;
  859. $outup = Db::name("order_out")->save($out);
  860. if ($outup == false) throw new Exception('地址发货单更新失败');
  861. $tmp = Db::name('order_out_child')
  862. ->where(['is_del' => 0, 'outCode' => $value['outCode']])
  863. ->findOrEmpty();
  864. if(!empty($tmp)){
  865. $tmp['num'] -= $value['return_num'];
  866. if ($tmp['num'] <= 0) {
  867. $tmp['status'] = 4;
  868. $tmp['is_del'] = 1;
  869. }
  870. //维护发货工单的数量
  871. $childup= Db::name('order_out_child')
  872. ->where(['id' => $tmp['id']])
  873. ->update($tmp);
  874. if($childup==false)throw new Exception('地址发货单工单更新失败');
  875. $stockinfo =Db::name("good_stock")->where(["spuCode"=>$tmp['spuCode'],"wsm_code"=>$tmp['wsm_code']])->findOrEmpty();
  876. if(empty($stockinfo))throw new Exception('未找到库存信息');
  877. $stockup =[
  878. "usable_stock"=>$stockinfo['usable_stock']+$value['return_num'],
  879. "wait_out_stock"=>$stockinfo['"wait_out_stock']-$value['return_num'],
  880. "updatetime" => $date
  881. ] ;
  882. $ysup =Db::name("good_stock")->where($stockinfo)->update($stockup);
  883. if($ysup==false)throw new Exception('库存信息更新失败');
  884. GoodStockInfo::ChildReturnBn($tmp['outChildCode'],$stockinfo['id'],$value['return_num']);//处理bn数据
  885. }
  886. }
  887. }
  888. }
  889. }
  890. if ($orderinfo['wsend_num'] < $info['num']) throw new Exception('销售单未发货数量不足退货');
  891. $lor = $orderinfo['status'];
  892. $orderinfo['wsend_num'] -= $info['num'];
  893. $orderinfo['send_num'] += $info['num'];
  894. $orderinfo['status'] = $orderinfo['wsend_num'] == 0 ? 2 : ($orderinfo['send_num'] == 0 ? 0 : 1);
  895. $orderinfo['send_status'] = $orderinfo['wsend_num'] == 0 ? 3 : ($orderinfo['send_num'] == 0 ? 1 : 2);
  896. if ($orderinfo['is_stock'] == 1) {
  897. $orderinfo['th_num'] += $info['num'];
  898. if ($orderinfo['th_num'] == $orderinfo['send_num'] && $orderinfo['wsend_num'] == 0) {
  899. $orderinfo['status'] = 3;
  900. }
  901. $orderinfo['th_fee'] += round($info['num'] * $orderinfo['sale_price'], 2);
  902. $orderinfo['updatetime'] = $date;
  903. $uap = Db::name("sale")->save($orderinfo);
  904. if ($uap == false) throw new Exception('销售单订单更新失败');
  905. $good =Db::name("good")->where(["spuCode"=>$orderinfo['good_code']])->findOrEmpty();
  906. if(empty($good))throw new Exception('未找到商品信息');
  907. $stock=Db::name("good")->where($good)->update(["usable_stock"=>$good['usable_stock']+$info['num'],"updatetime"=>date("Y-m-d H:i:s")]);
  908. if ($stock == false) throw new Exception('商品库存更新失败');
  909. } else {
  910. if ($info['is_th'] == 1) {
  911. $orderinfo['th_num'] += $info['num'];
  912. if ($orderinfo['th_num'] == $orderinfo['send_num'] && $orderinfo['wsend_num'] == 0) {
  913. $orderinfo['status'] = 3;
  914. }
  915. $orderinfo['th_fee'] += round($info['num'] * $orderinfo['sale_price'], 2);
  916. $orderinfo['updatetime'] = $date;
  917. $uap = Db::name("sale")->save($orderinfo);
  918. if ($uap == false) throw new Exception('销售单订单更新失败');
  919. $ordernum = Db::name("order_num")
  920. ->where(['orderCode' => $orderinfo['orderCode']])
  921. ->findOrEmpty();
  922. if (empty($ordernum)) throw new Exception('未找到关联采购单');
  923. $ordernum['send_num'] -= $info['num'];
  924. $orderup = Db::name("order_num")->save($ordernum);
  925. if ($orderup == false) throw new Exception('关联数据更新失败');
  926. $cgd = Db::name("purchease_order")
  927. ->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])
  928. ->findOrEmpty();
  929. if ($cgd == false) throw new Exception('未找到采购单数据');
  930. if ($info['is_all'] == 1 && $cgd['send_status'] != 1) throw new Exception('采购单已入库无法全部退货');
  931. $lor = $cgd['status'];
  932. if ($cgd['wsend_num'] < $info['num']) {
  933. $cgd['send_num'] += $cgd['wsend_num'] == 0 ? 0 : ($info['num'] - $cgd['wsend_num']);
  934. $cgd['wsend_num'] = 0;
  935. } else {
  936. $cgd['wsend_num'] -= $info['num'];
  937. $cgd['send_num'] += $info['num'];
  938. }
  939. $cgd['status'] = $cgd['wsend_num'] == 0 ? 2 : ($cgd['send_num'] == 0 ? 0 : 1);
  940. $cgd['send_status'] = $cgd['wsend_num'] == 0 ? 3 : ($cgd['send_num'] == 0 ? 1 : 2);
  941. $cgd['th_num'] += $info['num'];
  942. if ($cgd['th_num'] == $cgd['send_num'] && $cgd['wsend_num'] == 0) {
  943. $cgd['status'] = 4;
  944. }
  945. $cgd['th_fee'] += round($info['num'] * $cgd['good_price'], 2);
  946. $cgd['updatetime'] = $date;
  947. $cgdup = Db::name("purchease_order")->save($cgd);
  948. if ($cgdup == false) throw new Exception('采购单数据更新失败');
  949. $stock = Db::name("good_stock")
  950. ->where(['is_del' => 0, "spuCode" => $info['good_code'], 'wsm_code' => $cgd['wsm_code']])
  951. ->findOrEmpty();
  952. if (empty($stock)) throw new Exception('商品仓库未找到');
  953. if ($stock['wait_in_stock'] < $info['num']) {
  954. $stock['wait_in_stock'] = 0;
  955. if ($stock['usable_stock'] > $info['num'] - $stock['wait_in_stock']) {
  956. $stock['usable_stock'] -= $info['num'] - $stock['wait_in_stock'];
  957. } else {
  958. $stock['usable_stock'] = 0;
  959. $stock['wait_out_stock'] -= $info['num'] - $stock['wait_in_stock'] - $stock['usable_stock'];
  960. }
  961. $stock['total_stock'] = $stock['usable_stock'] + $stock['wait_out_stock'];
  962. } else {
  963. $stock['wait_in_stock'] -= $info['num'];
  964. }
  965. $stock['updatetime'] = $date;
  966. $st_up = Db::name("good_stock")->save($stock);
  967. if ($st_up == false) throw new Exception('可售商品入库失败');
  968. } else {
  969. $orderinfo['th_num'] += $info['num'];
  970. if ($orderinfo['th_num'] == $orderinfo['send_num'] && $orderinfo['wsend_num'] == 0) {
  971. $orderinfo['status'] = 3;
  972. }
  973. $orderinfo['th_fee'] += round($info['num'] * $orderinfo['sale_price'], 2);
  974. $orderinfo['updatetime'] = $date;
  975. $uap = Db::name("sale")->save($orderinfo);
  976. if ($uap == false) throw new Exception('销售单订单更新失败');
  977. $ordernum = Db::name("order_num")
  978. ->where(['orderCode' => $orderinfo['orderCode']])
  979. ->findOrEmpty();
  980. if (empty($ordernum)) throw new Exception('未找到关联采购单');
  981. $ordernum['send_num'] -= $info['num'];
  982. $ordernum['wsend_num'] = $info['num'];
  983. $orderup = Db::name("order_num")->save($ordernum);
  984. if ($orderup == false) throw new Exception('关联数据更新失败');
  985. $cgd = Db::name("purchease_order")
  986. ->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])
  987. ->findOrEmpty();
  988. if (empty($cgd)) throw new Exception('未找到采购单数据');
  989. $stock = Db::name("good_stock")
  990. ->where(['is_del' => 0, "spuCode" => $orderinfo['good_code'], 'wsm_code' => $cgd['wsm_code']])
  991. ->findOrEmpty();
  992. if (empty($stock)) throw new Exception('商品仓库未找到');
  993. if ($info['is_all'] == 1) {
  994. if ($stock['wait_in_stock'] < $info['num']) throw new Exception('商品可用库存不足退回数量');
  995. else $stock['wait_in_stock'] -= $info['num'];
  996. } else {
  997. if ($stock['usable_stock'] + $stock['wait_out_stock'] < $info['num']) throw new Exception('商品可用库存不足退回数量');
  998. else {
  999. if ($stock['usable_stock'] > $info['num']) {
  1000. $stock['usable_stock'] -= $info['num'];
  1001. } else {
  1002. $stock['usable_stock'] = 0;
  1003. $stock['wait_out_stock'] -= $info['num'] - $stock['usable_stock'];
  1004. }
  1005. $stock['total_stock'] = $stock['usable_stock'] + $stock['wait_out_stock'];
  1006. }
  1007. }
  1008. $stock['updatetime'] = $date;
  1009. $st_up = Db::name("good_stock")->save($stock);
  1010. if ($st_up == false) throw new Exception('可售商品入库失败');
  1011. }
  1012. }
  1013. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], [
  1014. "order_code" => $orderinfo["orderCode"],//出库单号
  1015. "status" => $lor,//这里的status是之前的值
  1016. "action_remark" => '',//备注
  1017. "action_type" => "status"//新建create,编辑edit,更改状态status
  1018. ], "XSQRD", $orderinfo['status'], $orderinfo);
  1019. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  1020. "order_type" => 'XSQRD',
  1021. "order_code" => $orderinfo["orderCode"],//出库单号
  1022. "order_id" => $orderinfo["id"],
  1023. "order_status" => $orderinfo['status'], "before_status" => $lor
  1024. ]);
  1025. //对应采购单也要处理
  1026. // $holder_id = Db::name('supplier')->where(['code' => $cgd['supplierNo'], 'is_del' => 0])->value('personid', 0);
  1027. $holder = $userCommon->handle('sInfo', ['code' => $cgd['supplierNo']]);
  1028. if (!isset($holder['code']) || $holder['code'] != 0) throw new Exception($holder['message']);
  1029. $holder_id = $holder['data']['personid'];
  1030. if (in_array($cgd['status'], [4])) {
  1031. if ($orderinfo['is_stock'] == 1) {
  1032. //库存品,推给31库管人员、41库管-张凯旋
  1033. $uid = Db::name('user_role')
  1034. ->where([
  1035. ['is_del', '=', 0],
  1036. ['roleid', 'in', [31, 41]],
  1037. ['status', '=', 1]
  1038. ])->column('uid');
  1039. // if(!in_array($this->uid,$uid)) throw new Exception('库存品订单只能由库管人员操作');
  1040. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  1041. "order_type" => 'CGD',
  1042. "order_code" => $cgd['cgdNo'],
  1043. "order_id" => $cgd["id"],
  1044. "order_status" => $cgd['status'],
  1045. "before_status" => $lor,
  1046. 'holder_id' => $holder_id,
  1047. 'handle_user_list' => implode(',', $uid),
  1048. ]);
  1049. } else {
  1050. // if($this->uid != $holder_id)throw new Exception('非库存品和采返商品只能由供应商负责人操作');
  1051. //非库存品和采返商品,推给供应商负责人
  1052. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  1053. "order_type" => 'CGD',
  1054. "order_code" => $cgd['cgdNo'],
  1055. "order_id" => $cgd["id"],
  1056. "order_status" => $cgd['status'],
  1057. "before_status" => $lor,
  1058. 'holder_id' => $holder_id,
  1059. 'handle_user_list' => $orderinfo['cgderid'],
  1060. ]);
  1061. }
  1062. }
  1063. // ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  1064. // "order_type" => 'CGD',
  1065. // "order_code" => $cgd['cgdNo'],
  1066. // "order_id" => $cgd["id"],
  1067. // "order_status" => $cgd['status'],
  1068. // "before_status" => $lor,
  1069. // 'holder_id' => $holder_id
  1070. // ]);
  1071. //以下判断是当供应商不同意要退回到业务公司的时候触发的,在3.0系统中不需要了2023-02-09@by武
  1072. // if ($orderinfo['is_stock'] == 1 || $info['is_th'] == 0) {
  1073. //
  1074. // if ($orderinfo['order_type'] != 1) {
  1075. // if ($orderinfo['order_type'] == 3) {
  1076. // $goon = Db::name("good_zixun")
  1077. // ->where(["spuCode" => $orderinfo['good_code'], "is_del" => 0])
  1078. // ->findOrEmpty();
  1079. // $isZx = 1;
  1080. // } else {
  1081. // $goon = Db::name('good_basic')
  1082. // ->where(['spuCode' => $orderinfo['good_code']])
  1083. // ->findOrEmpty();
  1084. // $isZx = 2;
  1085. // }
  1086. // $spuCode = $this->CheckGoodZx($goon, $isZx, $code);
  1087. // $wsmcode = $info['return_wsm'];
  1088. // if ($wsmcode == "") throw new Exception('未找到退货仓库');
  1089. //
  1090. // $stock = Db::name("good_stock")
  1091. // ->where(['is_del' => 0, "spuCode" => $spuCode, 'wsm_code' => $wsmcode])
  1092. // ->findOrEmpty();
  1093. // if (empty($stock)) {
  1094. // $stock = [
  1095. // "spuCode" => $spuCode,
  1096. // "wsm_code" => $wsmcode,
  1097. // "usable_stock" => 0,
  1098. // "wait_out_stock" => 0,
  1099. // "wait_in_stock" => 0,
  1100. // "total_stock" => 0,
  1101. // "addtime" => $date,
  1102. // "updatetime" => $date,
  1103. // ];
  1104. // }
  1105. // $stock['usable_stock'] += $info['num'];
  1106. // $stock['updatetime'] = $date;
  1107. // $st_up = Db::name("good_stock")->save($stock);
  1108. // if ($st_up == false) throw new Exception('可售商品入库失败');
  1109. //
  1110. // $stockid = isset($stock['id']) ? $stock['id'] : Db::name("good_stock")->getLastInsID();
  1111. // $sabebn = Db::name("sale_info")
  1112. // ->where(["orderCode" => $orderinfo["orderCode"]])
  1113. // ->select()
  1114. // ->toArray();
  1115. // if (!empty($sabebn)) {
  1116. // $total_num = $info['num'];
  1117. // foreach ($sabebn as $ve) {
  1118. // $tempnum = 0;
  1119. // if ($total_num == 0) break;
  1120. // if ($total_num >= $ve['num']) {
  1121. // $tempnum = $ve['num'];
  1122. // $total_num -= $ve['num'];
  1123. // $ve['th_num'] += $ve['num'];
  1124. // $ve['num'] = 0;
  1125. // } else {
  1126. // $tempnum = $total_num;
  1127. // $ve['num'] -= $total_num;
  1128. // $ve['th_num'] += $total_num;
  1129. // $total_num = 0;
  1130. // }
  1131. // $bnin = GoodStockInfo::AddBn($stockid, $ve['bnCode'], $tempnum, $ve['origin_price']);
  1132. // if ($bnin == false) throw new Exception('可售商品Bn库存数入库失败');
  1133. //
  1134. // $ve['updatetime'] = $date;
  1135. // $up = Db::name("sale_info")->save($ve);
  1136. // if ($up == false) throw new Exception('可售商品Bn库存数入库失败');
  1137. //
  1138. // $bnin = GoodStockInfo::ReturnBn($info['returnCode'], $ve['id'], $tempnum);
  1139. // if ($bnin == false) throw new Exception('可售商品Bn库存数入库失败');
  1140. //
  1141. // }
  1142. // } else {
  1143. // $bn = makeNo("BN");
  1144. // $bnin = GoodStockInfo::AddBn($stockid, $bn, $info['num'], $cgd['good_price'] ?? 0);
  1145. // if ($bnin == false) throw new Exception('可售商品Bn库存数入库失败');
  1146. //
  1147. // }
  1148. // $good_data = ['good_log_code' => $info['returnCode'], "stock_id" => $stockid, "type" => 1, 'stock' => $info['num'], "stock_name" => "usable_stock"];
  1149. // GoodLog::LogAdd(['id' => $this->uid, 'nickname' => $this->uname], $good_data, 'XSTHD');
  1150. // } else {
  1151. // $sabebn = Db::name("sale_info")
  1152. // ->where(["orderCode" => $orderinfo["orderCode"]])
  1153. // ->select()
  1154. // ->toArray();
  1155. // if (!empty($sabebn)) {
  1156. // $total_num = $info['num'];
  1157. // foreach ($sabebn as $ve) {
  1158. // $stock = Db::name("good_stock")
  1159. // ->where(['is_del' => 0, "spuCode" => $orderinfo['good_code'], 'id' => $ve['stockid']])
  1160. // ->findOrEmpty();
  1161. // if ($stock == false) throw new Exception('商品库存数据未找到');
  1162. //
  1163. // $tempnum = 0;
  1164. // if ($total_num == 0) break;
  1165. // if ($total_num >= $ve['num']) {
  1166. // $tempnum = $ve['num'];
  1167. // $total_num -= $ve['num'];
  1168. // $ve['th_num'] += $ve['num'];
  1169. // $ve['num'] = 0;
  1170. // } else {
  1171. // $tempnum = $total_num;
  1172. // $ve['num'] -= $total_num;
  1173. // $ve['th_num'] += $total_num;
  1174. // $total_num = 0;
  1175. // }
  1176. // $stock['usable_stock'] += $tempnum;
  1177. // $stock['wait_out_stock'] -= $tempnum;
  1178. // $stock['updatetime'] = $date;
  1179. // $st_up = Db::name("good_stock")->save($stock);
  1180. // if ($st_up == false) throw new Exception('可售商品入库失败');
  1181. //
  1182. //
  1183. // $bnin = GoodStockInfo::AddBn($ve['stock_id'], $ve['bnCode'], $tempnum, $ve['origin_price']);
  1184. // if ($bnin == false) throw new Exception('可售商品Bn库存数入库失败');
  1185. //
  1186. // $ve['updatetime'] = $date;
  1187. // $up = Db::name("sale_info")->save($ve);
  1188. // if ($up == false) throw new Exception('可售商品Bn库存数入库失败');
  1189. //
  1190. // $bnin = GoodStockInfo::ReturnBn($info['returnCode'], $ve['id'], $tempnum);
  1191. // if ($bnin == false) throw new Exception('可售商品Bn库存数入库失败');
  1192. //
  1193. // }
  1194. // } else {
  1195. //
  1196. // $ordernum = Db::name("order_num")->where(['orderCode' => $orderinfo["orderCode"]])->findOrEmpty();
  1197. // if ($ordernum == false) throw new Exception('未找到关联采购单');
  1198. //
  1199. // $cgd = Db::name("purchease_order")
  1200. // ->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])
  1201. // ->findOrEmpty();
  1202. // if ($cgd == false) throw new Exception('未找到采购单数据');
  1203. //
  1204. // $bn = makeNo("BN");
  1205. // $stock = Db::name("good_stock")
  1206. // ->where(["spuCode" => $orderinfo['good_code'], 'wsm_code' => $cgd['wsm_code'], "is_del" => 0, "status" => 1])
  1207. // ->findOrEmpty();
  1208. // if ($stock == false) throw new Exception('商品库存数据未找到');
  1209. //
  1210. // $stock['usable_stock'] += $info['num'];
  1211. // $stock['wait_out_stock'] -= $info['num'];
  1212. // $stock['updatetime'] = $date;
  1213. // $st_up = Db::name("good_stock")->save($stock);
  1214. // if ($st_up == false) throw new Exception('可售商品入库失败');
  1215. //
  1216. // $yp = GoodStockInfo::AddBn($stock['id'], $bn, $info['num'], $cgd['good_price']);
  1217. // if ($yp == false) throw new Exception('商品批次退货入库失败');
  1218. //
  1219. // }
  1220. // }
  1221. // }
  1222. // $data = [
  1223. // "orderCode" => $info['orderCode'],
  1224. // "th_type" => 1,
  1225. // "th_num" => $info['num'],
  1226. // "th_fee" => round($info['num'] * $orderinfo['sale_price'], 2),
  1227. // "thCode" => $info['returnCode'],
  1228. // "spuCode" => $orderinfo['good_code'],
  1229. // "good_name" => $orderinfo['good_name'],
  1230. // "cat_id" => $orderinfo['cat_id'],
  1231. // "apply_id" => $info['apply_id'],
  1232. // "apply_name" => $info['apply_name'],
  1233. // "addtime" => $date,
  1234. // "status" => 1,
  1235. // "is_del" => 0
  1236. // ];
  1237. // $inse = Db::name("th_data")->insert($data);
  1238. // if ($inse == false) throw new Exception('退货单更新失败');
  1239. }
  1240. }
  1241. Db::commit();
  1242. return json_show(0, "更新成功");
  1243. } catch (Exception $e) {
  1244. Db::rollback();
  1245. return json_show(1004, $e->getMessage() . '|' . $e->getFile() . ':' . $e->getLine());
  1246. }
  1247. }
  1248. public function zxcreate()
  1249. {
  1250. $ordeCode = isset($this->post['orderCode']) && $this->post['orderCode'] != '' ? trim($this->post['orderCode']) : "";
  1251. if ($ordeCode == '') {
  1252. return json_show(1004, "参数orderCode 不能为空");
  1253. }
  1254. $order = Db::name("sale")->where(["orderCode" => $ordeCode, "is_del" => 0])->find();
  1255. if (empty($order)) {
  1256. return json_show(1005, "未找到订单数据");
  1257. }
  1258. $errorCode = isset($this->post['errorCode']) && $this->post['errorCode'] != '' ? trim($this->post['errorCode']) : "";
  1259. if ($errorCode == '') {
  1260. return json_show(1004, "参数errorCode 不能为空");
  1261. }
  1262. $error = Db::name('result_info')->where(["result_code" => $errorCode, "is_del" => 0])->find();
  1263. if (empty($error)) {
  1264. return json_show(1005, "未找到退货原因数据");
  1265. }
  1266. $remark = isset($this->post['remark']) && $this->post['remark'] != '' ? trim($this->post['remark']) : "";
  1267. // $token = isset($this->post['token'])&&$this->post['token']!='' ? trim($this->post['token']):"";
  1268. // if($token==''){
  1269. // return json_show(105,"参数token不能为空");
  1270. // }
  1271. // $user =GetUserInfo($token);
  1272. // if(empty($user)||$user['code']!=0){
  1273. // return json_show(1002,"申请人数据不存在");
  1274. // }
  1275. $rm = $this->uid;//isset($user["data"]['id']) ? $user["data"]['id'] : "";
  1276. $ri = $this->uname;//isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  1277. $num = isset($this->post['num']) && $this->post['num'] != '' ? intval($this->post['num']) : "";
  1278. if ($num == '') {
  1279. return json_show(1005, "参数num不能为空");
  1280. }
  1281. if ($order['wsend_num'] < $num) {
  1282. return json_show(1002, "仓库未发货数量不足退货");
  1283. }
  1284. 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();
  1285. else $goon = Db::name('good_basic')
  1286. ->where(['spuCode' => $order['good_code']])->findOrEmpty();
  1287. if (empty($goon)) return json_show(1004, '该商品不存在');
  1288. $userCommon = \app\admin\common\User::getIns();
  1289. $names = $userCommon->handle('getCodeAndName', ['code' => [$order['supplierNo'], $order['customer_code'], $goon['supplierNo']]]);
  1290. $returnCode = makeNo("RS");
  1291. Db::startTrans();
  1292. try {
  1293. $in = [
  1294. "returnCode" => $returnCode,
  1295. "orderCode" => $ordeCode,
  1296. "good_code" => $order['good_code'],
  1297. "good_name" => $order['good_name'],
  1298. "apply_id" => $rm,
  1299. "apply_name" => $ri,
  1300. "error_code" => $errorCode,
  1301. "num" => $num,
  1302. "remark" => $remark,
  1303. "order_type" => 2,
  1304. "status" => 0,
  1305. "is_del" => 0,
  1306. "addtime" => date("Y-m-d H:i:s"),
  1307. "updatetime" => date("Y-m-d H:i:s"),
  1308. 'supplierNo' => $goon['supplierNo'],
  1309. 'supplierName' => $names['data'][$goon['supplierNo']] ?? '',
  1310. 'companyNo' => $order['supplierNo'],
  1311. 'companyName' => $names['data'][$order['supplierNo']] ?? '',
  1312. 'customer_code' => $order['customer_code'],
  1313. 'customer_name' => $names['data'][$order['customer_code']] ?? '',
  1314. ];
  1315. $create = Db::name("sale_return")->insert($in, true);
  1316. if ($create > 0) {
  1317. $process = ["order_code" => $returnCode, "order_id" => $create, "order_status" => 0, "order_type" => 'XSTHD', "before_status" => 0, 'holder_id' => $in['apply_id']];
  1318. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $process);
  1319. $ste = ["order_code" => $returnCode, "status" => 0, "action_remark" => '',
  1320. "action_type" => "create"];
  1321. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "XSTHD", 3, $in);
  1322. //维护台账记录
  1323. // Db::name('standing_book')
  1324. // ->where('ordeCode', $ordeCode)
  1325. // ->update([
  1326. // 'returnGoodCode' => $returnCode,
  1327. // 'updatetime' => date("Y-m-d H:i:s")
  1328. // ]);
  1329. Db::execute("UPDATE `wsm_standing_book` SET `returnGoodCode`=CONCAT(IFNULL(`returnGoodCode`,''),',{$returnCode}'),`updatetime`='" . date('Y-m-d H:i:s') . "' WHERE `orderCode`='{$ordeCode}'");
  1330. if ($order['send_type'] == 1) {
  1331. $wsend = Db::name("order_out")->where(['orderCode' => $ordeCode, "status" => 1, "order_type" => 2])->select();
  1332. // ->save(["status" => 0, "updatetime" => date("Y-m-d H:i:s")]);
  1333. if (!empty($wsend)) {
  1334. foreach ($wsend as $value) {
  1335. $tt = $value['status'];
  1336. $value['status'] = 0;
  1337. $value['updatetime'] = date("Y-m-d H:i:s");
  1338. $up = Db::name("order_out")->save($value);
  1339. if ($up) {
  1340. $process = ["order_code" => $value['outCode'], "order_id" => $value['id'], "order_status" => 0, "order_type" => 'CKD', "before_status" => $tt, 'holder_id' => $value['apply_id']];
  1341. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $process);
  1342. $ste = ["order_code" => $value['outCode'], "status" => $tt, "action_remark" => '', "action_type" => "status"];
  1343. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $ste, "CKD", 0, $value);
  1344. } else {
  1345. Db::rollback();
  1346. return json_show(1005, "退货单新建失败");
  1347. }
  1348. }
  1349. }
  1350. }
  1351. Db::commit();
  1352. return json_show(0, "退货单新建成功");
  1353. }
  1354. Db::rollback();
  1355. return json_show(1005, "退货单新建失败");
  1356. } catch (\Exception $e) {
  1357. Db::rollback();
  1358. return json_show(1005, $e->getMessage());
  1359. }
  1360. }
  1361. //全部退货
  1362. public function allReturn()
  1363. {
  1364. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] != '' ? trim($this->post['orderCode']) : "";
  1365. if ($orderCode == '') {
  1366. return json_show(1004, "参数orderCode 不能为空");
  1367. }
  1368. $fininfo =GetFin("admin/orderischeck",["token"=>$this->post['token'],"orderCode"=>$orderCode]);
  1369. if(!isset($fininfo['code'])||$fininfo['code']!=0 ){
  1370. return json_show(1005, $fininfo['message']??"结算校验失败");
  1371. }
  1372. $order = Db::name("sale")->where(["orderCode" => $orderCode, "is_del" => 0])->find();
  1373. if (empty($order)) {
  1374. return json_show(1005, "未找到订单数据");
  1375. }
  1376. if ($order['wsend_num'] != $order['good_num']) {
  1377. return json_show(1005, "订单未发货数量与总数不等,无法全退");
  1378. }
  1379. $retrun = Db::name("sale_return")->where(["orderCode" => $orderCode, "is_del" => 0, "status" => [1, 9, 8, 10, 11, 12]])->count('id');
  1380. if ($retrun > 0) {
  1381. return json_show(1005, "存在退货订单数据");
  1382. }
  1383. if ($order['order_type'] == 3 || $order['order_type'] == 4) {
  1384. $goon = Db::name("good_zixun")
  1385. ->where(["spuCode" => $order['good_code'], "is_del" => 0])
  1386. ->findOrEmpty();
  1387. } else {
  1388. $goon = Db::name('good_platform')
  1389. ->alias('a')
  1390. ->join('good b', 'b.spuCode=a.spuCode', 'left')
  1391. ->where(['a.skuCode' => $order['skuCode']])
  1392. ->field("b.spuCode,b.usable_stock,b.creater,b.createrid,b.supplierNo")
  1393. ->findOrEmpty();
  1394. }
  1395. if (empty($goon)) {
  1396. return json_show(1005, "未找到商品数据");
  1397. }
  1398. // $supplier =Db::name("supplier")->where(["code"=>$goon['supplierNo']])->find();
  1399. // if($supplier==false){
  1400. // return json_show(1005,"未找到商品供应商数据");
  1401. // }
  1402. $userCommon = \app\admin\common\User::getIns();
  1403. $tmp = $userCommon->handle('sInfo', ['code' => $goon['supplierNo']]);
  1404. $supplier = $tmp['data'];
  1405. if (empty($supplier)) return json_show(1005, "未找到商品供应商数据");
  1406. $errorCode = isset($this->post['errorCode']) && $this->post['errorCode'] != '' ? trim($this->post['errorCode']) : "";
  1407. if ($errorCode == '') return json_show(1004, "参数errorCode 不能为空");
  1408. $error = Db::name('result_info')->where(["result_code" => $errorCode, "is_del" => 0])->find();
  1409. if (empty($error)) return json_show(1005, "未找到退货原因数据");
  1410. $remark = isset($this->post['remark']) && $this->post['remark'] != '' ? trim($this->post['remark']) : "";
  1411. $addr = Db::name("order_addr")->where([["orderCode", "=", $orderCode], ["is_del", "=", 0]])->select()->toArray();
  1412. if ($order['is_stock'] == 0) {
  1413. $ordernum = Db::name("order_num")->where(['orderCode' => $orderCode])->findOrEmpty();
  1414. if (empty($ordernum)) return json_show(1005, '未找到关联采购单');
  1415. $cgd = Db::name("purchease_order")->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])->findOrEmpty();
  1416. if (empty($cgd)) return json_show(1005, '未找到采购单数据');
  1417. }
  1418. if ($order['is_stock'] == 0 && $cgd['send_status'] != 1) return json_show(1005, '采购单已发起入库');
  1419. // $userCommon = \app\admin\common\User::getIns();
  1420. // $names = $userCommon->handle('getCodeAndName',['code'=>[$order['supplierNo'],$order['customer_code']]]);
  1421. $returnCode = makeNo("RN");
  1422. Db::startTrans();
  1423. try {
  1424. $in = [
  1425. "returnCode" => $returnCode,
  1426. "orderCode" => $orderCode,
  1427. "good_code" => $order['good_code'],
  1428. "good_name" => $order['good_name'],
  1429. "apply_id" => $this->uid,
  1430. "apply_name" => $this->uname,
  1431. "cgderid" => $goon['createrid'],
  1432. "cgder" => $goon['creater'],
  1433. "person" => $supplier['person'] ?? '',
  1434. "person_id" => $supplier['personid'] ?? 0,
  1435. "error_code" => $errorCode,
  1436. "num" => $order['wsend_num'],
  1437. "total_fee" => round($order['sale_price'] * $order['wsend_num'], 2),
  1438. "good_price" => $order['sale_price'],
  1439. "platform_id" => $order['platform_id'],
  1440. "remark" => $remark,
  1441. "order_type" => $order['order_type'],
  1442. "is_addr" => count($addr) > 0 ? 1 : 0,
  1443. // "status"=>$order['is_stock']==1?4:1,
  1444. "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,
  1445. "is_all" => 1,
  1446. "addtime" => date("Y-m-d H:i:s"),
  1447. "updatetime" => date("Y-m-d H:i:s"),
  1448. 'supplierNo' => $supplier['code'],
  1449. 'supplierName' => $supplier['name'],
  1450. 'companyNo' => $order['supplierNo'],
  1451. 'companyName' => $order['supplierName'],
  1452. 'customer_code' => $order['customer_code'],
  1453. 'customer_name' => $order['customerName']
  1454. ];
  1455. $create = Db::name("sale_return")->insert($in, true);
  1456. if ($create > 0) {
  1457. $stn = ["order_code" => $returnCode, "status" => 0, "action_remark" => '', "action_type" => "create"];
  1458. ActionLog::logAdd(["id" => $this->uid, "nickname" => $this->uname], $stn, "XSTHD", $in['status'], $in);
  1459. $process = ["order_code" => $returnCode, "order_id" => $create, "order_status" => $in['status'], "order_type" => 'XSTHD', "before_status" => 0, 'holder_id' => $in['apply_id']];
  1460. ProcessOrder::AddProcess(["id" => $this->uid, "nickname" => $this->uname], $process);
  1461. //维护台账信息
  1462. Db::execute("UPDATE `wsm_standing_book` SET `returnGoodCode`=CONCAT(IFNULL(`returnGoodCode`,''),',{$returnCode}'),`updatetime`='" . date('Y-m-d H:i:s') . "' WHERE `orderCode`='{$orderCode}'");
  1463. // if (count($addr) != 0) {
  1464. // $inf = [];
  1465. // foreach ($addr as $val) {
  1466. // if ($val['receipt_quantity'] == 0) continue;//当退货数量为0时,跳过
  1467. //
  1468. // $temp = [];
  1469. // $send = Db::name('order_out')->where([["addrid", "=", $val['id']]])->find();
  1470. // if ($send == false) throw new Exception("地址发货单未找到");
  1471. //
  1472. // if ($send['status'] >= 2) throw new Exception("地址已发货");
  1473. //
  1474. //
  1475. // if ($order['is_stock'] == 1) {
  1476. //
  1477. // $val['is_del'] = 1;
  1478. // $val['updatetime'] = date("Y-m-d H:i:s");
  1479. // $addrup = Db::name("order_addr")->save($val);
  1480. // if ($addrup == false) throw new Exception("地址更新失败");
  1481. //
  1482. //
  1483. // $send['is_del'] = 1;
  1484. // $send['remark'] = '全退';
  1485. // $send['updatetime'] = date("Y-m-d H:i:s");
  1486. // $outup = Db::name("order_out")->save($send);
  1487. // if ($outup == false) throw new Exception("地址发货单更新失败");
  1488. //
  1489. //
  1490. // //处理发货申请单流程
  1491. // ProcessOrder::AddProcess(["id" => $this->uid, "nickname" => $this->uname], [
  1492. // "order_type" => 'CKD',
  1493. // "order_code" => $send["outCode"],//出库单号
  1494. // "order_id" => $send["id"],
  1495. // "order_status" => 4,//全部退货
  1496. // "before_status" => $send['status'],
  1497. // 'holder_id=' => $send['apply_id']
  1498. // ]);
  1499. //// $ordersend = Db::name("order_send")->where(["outCode" => $send['outCode']])->find();
  1500. //// if($ordersend==false){
  1501. //// Db::rollback();
  1502. //// return json_show(1004, "发货单关联数据未找到");
  1503. //// }
  1504. //// $ordersend['status'] = 0;
  1505. //// $ordersend['updatetime'] = date("Y-m-d H:i:s");
  1506. //// $sendip = Db::name("order_send")->save($ordersend);
  1507. //// if ($sendip == false) {
  1508. //// Db::rollback();
  1509. //// return json_show(1004, "发货单更新失败");
  1510. //// }
  1511. // }
  1512. // $temp['returnCode'] = $returnCode;
  1513. // $temp['orderCode'] = $orderCode;
  1514. // $temp['outCode'] = isset($send['outCode']) ? $send['outCode'] : "";
  1515. // $temp['addrid'] = $val['id'];
  1516. // $temp['send_num'] = $val['receipt_quantity'];
  1517. // $temp['return_num'] = $val['receipt_quantity'];
  1518. // $temp['is_del'] = 0;
  1519. // $temp['addtime'] = date("Y-m-d H:i:s");
  1520. // $temp['updatetime'] = date("Y-m-d H:i:s");
  1521. // $inf[] = $temp;
  1522. // }
  1523. // $inadd = Db::name("sale_returnaddr")->insertAll($inf);
  1524. // if ($inadd == 0) throw new Exception("退货单新建失败");
  1525. //
  1526. // }
  1527. if ($in['status'] == 4 && $order['is_stock'] == 1) {
  1528. $lor = $order['status'];
  1529. $thnum = $order['wsend_num'];
  1530. $order['send_num'] += $thnum;
  1531. $order['th_num'] += $thnum;
  1532. $order['wsend_num'] = 0;
  1533. $order['status'] = 3;
  1534. $order['send_status'] = 3;
  1535. $order['th_fee'] += round($thnum * $order['sale_price'], 2);
  1536. $order['updatetime'] = date("Y-m-d H:i:s");
  1537. $uap = Db::name("sale")->save($order);
  1538. if ($uap == false) throw new Exception('销售单订单更新失败');
  1539. $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")]);
  1540. if ($stock == false) throw new Exception('商品库存更新失败');
  1541. ActionLog::logAdd(["id" => $this->uid, "nickname" => $this->uname], [
  1542. "order_code" => $order["orderCode"],//出库单号
  1543. "status" => $lor,//这里的status是之前的值
  1544. "action_remark" => '',//备注
  1545. "action_type" => "status"//新建create,编辑edit,更改状态status
  1546. ], "XSQRD", $order['status'], $order);
  1547. ProcessOrder::AddProcess(["id" => $this->uid, "nickname" => $this->uname], [
  1548. "order_type" => 'XSQRD',
  1549. "order_code" => $order["orderCode"],//出库单号
  1550. "order_id" => $order["id"],
  1551. "order_status" => $order['status'],
  1552. "before_status" => $lor,
  1553. 'holder_id=' => $order['apply_id']
  1554. ]);
  1555. // $saleinfo = Db::name("sale_info")->where([["orderCode", "=", $orderCode], ["num", ">", 0]])->select()->toArray();
  1556. // if (empty($saleinfo)) {
  1557. // $ordernum = Db::name("order_num")->where(['orderCode' => $orderCode])->findOrEmpty();
  1558. // if (empty($ordernum)) throw new Exception('未找到关联采购单');
  1559. //
  1560. // $cgd = Db::name("purchease_order")->where(["cgdNo" => $ordernum['cgdNo'], "is_del" => 0])->findOrEmpty();
  1561. // if (empty($cgd)) throw new Exception('未找到采购单数据');
  1562. //
  1563. // $bn = makeNo("BN");
  1564. // $stock = Db::name("good_stock")->where(["spuCode" => $order['good_code'], 'wsm_code' => $cgd['wsm_code'], "is_del" => 0, "status" => 1])->find();
  1565. // if ($stock == false) throw new Exception('商品库存数据未找到');
  1566. //
  1567. // $stock['usable_stock'] += $thnum;
  1568. // $stock['wait_out_stock'] -= $thnum;
  1569. // $stock['updatetime'] = date("Y-m-d H:i:s");
  1570. // $st_up = Db::name("good_stock")->save($stock);
  1571. // if ($st_up == false) throw new Exception('可售商品入库失败');
  1572. //
  1573. // $yp = GoodStockInfo::AddBn($stock['id'], $bn, $thnum, $cgd['good_price']);
  1574. // if ($yp == false) throw new Exception('商品批次退货入库失败');
  1575. //
  1576. //
  1577. // } else {
  1578. // $tempnum = $thnum;
  1579. // foreach ($saleinfo as $va) {
  1580. // if ($tempnum == 0) break;
  1581. // $stock = Db::name("good_stock")->where(["spuCode" => $order['good_code'], 'id' => $va['stockid']])->findOrEmpty();
  1582. // if ($stock == false) throw new Exception('商品库存数据未找到');
  1583. //
  1584. // if ($va['num'] >= $tempnum) {
  1585. // $tnm = $tempnum;
  1586. // $va['num'] -= $tempnum;
  1587. // $va['th_num'] += $tempnum;
  1588. // $tempnum = 0;
  1589. // } else {
  1590. // $tnm = $va['num'];
  1591. // $tempnum -= $va['num'];
  1592. // $va['th_num'] += $va['num'];
  1593. // $va['num'] = 0;
  1594. // }
  1595. // $stock['usable_stock'] += $tnm;
  1596. // $stock['wait_out_stock'] -= $tnm;
  1597. // $stock['updatetime'] = date("Y-m-d H:i:s");
  1598. // $st_up = Db::name("good_stock")->save($stock);
  1599. // if ($st_up == false) throw new Exception('可售商品入库失败');
  1600. //
  1601. // $ps = GoodStockInfo::AddBn($va['stockid'], $va['bnCode'], $tnm);
  1602. // if ($ps == false) throw new Exception('商品批次退货入库失败');
  1603. //
  1604. // $ret = GoodStockInfo::ReturnBn($returnCode, $va['id'], $tnm);
  1605. // if ($ret == false) throw new Exception('商品批次退货入库失败');
  1606. //
  1607. // $va['updatetime'] = date("Y-m-d H:i:s");
  1608. // $sal = Db::name("sale_info")->save($va);
  1609. // if ($sal == false) throw new Exception('商品批次退货入库失败');
  1610. //
  1611. // $good_data[] = ['good_log_code' => $returnCode, "stock_id" => $va['stockid'], "type" => 1, 'stock' => $tnm, "stock_name" => "usable_stock"];
  1612. // $good_data[] = ['good_log_code' => $returnCode, "stock_id" => $va['stockid'], "type" => 2, 'stock' => $tnm, "stock_name" => "wait_out_stock"];
  1613. // GoodLog::LogAdd(['id' => $this->uid, 'nickname' => $this->uname], $good_data, 'XSTHD');
  1614. // }
  1615. // }
  1616. // $data=[
  1617. // "orderCode"=>$orderCode,
  1618. // "th_type"=>1,
  1619. // "th_num"=>$thnum,
  1620. // "th_fee"=>round($order['sale_price']*$thnum,2),
  1621. // "thCode"=>$returnCode,
  1622. // "spuCode"=>$order['good_code'],
  1623. // "good_name"=>$order['good_name'],
  1624. // "cat_id"=>$order['cat_id'],
  1625. // "apply_id"=>$this->uid,
  1626. // "apply_name"=>$this->uname,
  1627. // "addtime"=>date("Y-m-d H:i:s"),
  1628. // "status"=>1,
  1629. // "is_del"=>0
  1630. // ];
  1631. // $inse=Db::name("th_data")->insert($data);
  1632. // if($inse==false) throw new Exception("退货单更新失败");
  1633. }
  1634. Db::commit();
  1635. return json_show(0, "退货单新建成功", ["returnCode" => $returnCode]);
  1636. }
  1637. Db::rollback();
  1638. return json_show(1005, "退货单新建失败");
  1639. } catch (\Exception $e) {
  1640. Db::rollback();
  1641. return json_show(1005, $e->getMessage());
  1642. }
  1643. }
  1644. //导出
  1645. public function export()
  1646. {
  1647. $param = $this->request->only([
  1648. 'returnCode' => '',
  1649. 'status' => '',
  1650. 'orderCode' => '',
  1651. 'apply_name' => '',
  1652. 'start' => '',
  1653. 'end' => '',
  1654. 'good_code' => '',
  1655. 'skuCode' => '',
  1656. 'relaComNo' => '',
  1657. 'order_source' => '',
  1658. 'supplierNo' => '',
  1659. 'customer_code' => '',
  1660. 'companyNo' => '',
  1661. 'company_name' => '',//部门名称
  1662. ], 'post', 'trim');
  1663. $where = [['sr.is_del', "=", 0]];
  1664. if (!empty($param['returnCode'])) $where[] = ['sr.returnCode', "in", $param['returnCode']];
  1665. if ($param['status'] !== "") $where[] = ['sr.status', "=", $param['status']];
  1666. if ($param['orderCode'] != "") $where[] = ['sr.orderCode', "like", "%{$param['orderCode']}%"];
  1667. if ($param['apply_name'] != "") $where[] = ['sr.apply_name', "like", "%{$param['apply_name']}%"];
  1668. if ($param['start'] !== "") $where[] = ['sr.addtime', ">=", $param['start'] . ' 00:00:00'];
  1669. if ($param['end'] !== "") $where[] = ['sr.addtime', "<=", $param['end'] . ' 23:59:59'];
  1670. if ($param['good_code'] != "") $where[] = ['sr.good_code', "like", "%{$param['good_code']}%"]; //商品成本编码搜索
  1671. if ($param['skuCode'] != "") $where[] = ['b.skuCode', "like", "%{$param['skuCode']}%"];//商品上线编码搜索
  1672. if ($param['relaComNo'] != "") $where[] = ['a.supplierNo', '=', $param['relaComNo']];
  1673. if ($param['company_name'] !== "") $where[] = ["sr.apply_id", 'in', get_company_item_user_by_name($param['company_name'])];
  1674. if ($param['order_source'] !== "") $where[] = ["b.order_source", '=', $param['order_source']];
  1675. if ($param['supplierNo'] != "") $where[] = ['a.supplierNo', 'like', '%' . $param['supplierNo'] . '%'];
  1676. if ($param['customer_code'] != "") $where[] = ['a.customer_code', "like", '%' . $param['customer_code'] . '%'];//商品上线编码搜索
  1677. if ($param['companyNo'] != "") $where[] = ['a.companyNo', "like", '%' . $param['companyNo'] . '%'];//商品上线编码搜索
  1678. $condition = [];
  1679. //只有level2的账号过滤数据权限
  1680. if ($this->level == 2) {
  1681. $role = $this->checkDataShare();
  1682. $hand = resign_hand_user($this->uid, 0);
  1683. if (!empty($role[DataGroupModel::$type_全部])) {
  1684. $arr = array_unique(array_merge($hand, $role[DataGroupModel::$type_全部]));
  1685. $condition[] = ["sr.apply_id", "in", $arr];
  1686. $condition[] = ["sr.cgderid", "in", $hand];
  1687. $condition[] = ["sr.person_id", "in", $hand];
  1688. $code = Db::connect('mysql_sys')
  1689. ->name('supplier')
  1690. ->where(['is_del' => 0, 'personid' => $this->uid])
  1691. ->column('code');
  1692. if($code) $condition[]=['sr.supplierNo','in',$code];
  1693. }
  1694. }
  1695. //供应商账号不允许看到库存品数据
  1696. if ($this->level == 3) $where[] = ['b.is_stock', '<>', 1];
  1697. if (in_array($this->roleid, config('app.wsm_cgder_role'))) $where[] = ["b.order_type", "=", 1];
  1698. $list = Db::name("sale_return")
  1699. ->alias('sr')
  1700. ->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 循环次数')
  1701. ->leftJoin("sale b", "b.orderCode=sr.orderCode AND b.is_del=0")
  1702. ->leftJoin("result_info c", "c.result_code=sr.error_code")
  1703. ->leftJoin("platform d", "d.id=sr.platform_id")
  1704. ->leftJoin("order_addr e", "e.id=sr.is_addr")
  1705. ->where($where)
  1706. ->where(function ($query) use ($condition) {
  1707. $query->whereOr($condition);
  1708. })
  1709. ->order("sr.addtime desc")
  1710. ->select()
  1711. ->toArray();
  1712. $all_createrid = array_column($list, 'apply_id');
  1713. $item = get_company_name_by_uid($all_createrid);
  1714. $order_type = [1 => '直接下单', 2 => '咨询', 3 => '项目', 4 => '平台', 5 => '有赞', 6 => '售后补换货', 7 => '报备转单', 8 => '支付渠道'];
  1715. $bool = [0 => '否', 1 => '是'];
  1716. $status = [1 => '待业务审批', 4 => '退货完成', 5 => '业务驳回', 9 => '待供应商审核', 8 => '供应商已驳回待采购审核', 10 => '业务公司修改待供应商确认', 11 => '待设置退货工单', 12 => '待库管发货'];
  1717. foreach ($list as &$value) {
  1718. // $value['退货金额'] = round($value['sale_price'] * $value['退货数量'],2);
  1719. $value['申请人部门'] = $item[$value['apply_id']] ?? '';
  1720. $value['是否全退货'] = $bool[$value['是否全退货']] ?? '';
  1721. $value['供应商是否同意退货'] = $bool[$value['供应商是否同意退货']] ?? '';
  1722. $value['退货单类型'] = $order_type[$value['退货单类型']] ?? '';
  1723. $value['状态'] = $status[$value['状态']] ?? '';
  1724. if ($value['is_addr'] == 0) $value['发货地址'] = '无地址';
  1725. else $value['发货地址'] = GetAddr($value['addr_code']) . $value['发货地址'];
  1726. unset($value['apply_id']);
  1727. unset($value['good_price']);
  1728. unset($value['addr_code']);
  1729. unset($value['is_addr']);
  1730. }
  1731. if (empty($list)) $list[] = ['没有相关可导出的数据'];
  1732. excelSave('退货单' . date('YmdHis'), array_keys($list[0]), $list);
  1733. }
  1734. //获取退货单对应的发货单列表
  1735. public function getOrderOutList()
  1736. {
  1737. $param = $this->request->only(['returnCode', 'page' => 1, 'size' => 10], 'post', 'trim');
  1738. $val = Validate::rule([
  1739. 'returnCode|售前退货单号' => 'require',
  1740. 'page|页码' => 'require|number|gt:0',
  1741. 'size|每页数量' => 'require|number|gt:0|max:200',
  1742. ]);
  1743. if ($val->check($param) == false) return json_show(1004, $val->getError());
  1744. // $sale_return = Db::name('sale_return')
  1745. // ->field('id,orderCode')
  1746. // ->where(['is_del' => 0, 'returnCode' => $param['returnCode']])
  1747. // ->findOrEmpty();
  1748. // if (empty($sale_return)) return json_show(1004, '该售后申请单不存在');
  1749. $where = ['a.is_del' => 0, 'a.returnCode' => $param['returnCode']];
  1750. $count = Db::name('sale_returnaddr')
  1751. ->alias('a')
  1752. ->leftJoin('order_addr b', 'b.id=a.addrid and b.is_del=0')
  1753. ->where($where)
  1754. ->count('a.id');
  1755. $list = Db::name('sale_returnaddr')
  1756. ->alias('a')
  1757. ->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')
  1758. ->leftJoin('order_addr b', 'b.id=a.addrid and b.is_del=0')
  1759. ->where($where)
  1760. ->order(['a.is_sale_return_child' => 'asc', 'a.addtime' => 'desc', 'a.id' => 'desc'])
  1761. ->page($param['page'], $param['size'])
  1762. ->select()
  1763. ->toArray();
  1764. $is_sale_return_child_count = Db::name('sale_returnaddr')
  1765. ->alias('a')
  1766. ->where($where)
  1767. ->where('is_sale_return_child', 1)
  1768. ->count('a.id');
  1769. foreach ($list as &$value) {
  1770. if ($value['addr_code'] != '') {
  1771. $value['addr_code_cn'] = GetAddr($value['addr_code']);
  1772. }
  1773. }
  1774. return json_show(0, '获取列表成功', ['count' => $count, 'list' => $list, 'is_sale_return_child_count' => $is_sale_return_child_count]);
  1775. }
  1776. //取消
  1777. public function cancel()
  1778. {
  1779. $param = $this->request->only(['returnCode'], 'post', 'trim');
  1780. $val = Validate::rule([
  1781. 'returnCode|售前退货申请单号' => 'require|array|max:100',
  1782. ]);
  1783. if ($val->check($param) == false) return json_show(1004, $val->getError());
  1784. $temp = Db::name('sale_return')
  1785. ->field('returnCode')
  1786. ->where(['is_del' => 0, 'returnCode' => $param['returnCode'], 'status' => [11, 12, 4, 5, 13]])
  1787. ->findOrEmpty();
  1788. if (!empty($temp)) return json_show(1004, $temp['returnCode'] . '状态有误,不允许取消');
  1789. $rs = Db::name('sale_return')
  1790. ->where(['is_del' => 0, 'returnCode' => $param['returnCode'], 'status' => [1, 8, 9, 10]])
  1791. ->update([
  1792. 'status' => 13,
  1793. 'updatetime' => date('Y-m-d H:i:s')
  1794. ]);
  1795. return $rs ? json_show(0, '售前退货申请单取消成功') : json_show(1004, '售前退货申请单取消失败');
  1796. }
  1797. }