Reorder.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\ProcessOrder;
  4. use think\facade\Db;
  5. use think\App;
  6. use app\admin\model\ActionLog;
  7. class Reorder extends \app\BaseController
  8. {
  9. public $post=[];
  10. public function __construct(App $app)
  11. {
  12. parent::__construct($app);
  13. $this->post =$this->request->post();
  14. }
  15. public function create(){
  16. $ordeCode = isset($this->post['orderCode']) &&$this->post['orderCode']!=''?trim($this->post['orderCode']) :"";
  17. if($ordeCode==''){
  18. return error_show(1004,"参数orderCode 不能为空");
  19. }
  20. $order= Db::name("sale")->where(["orderCode"=>$ordeCode,"is_del"=>0])->find();
  21. if(empty($order)){
  22. return error_show(1005,"未找到订单数据");
  23. }
  24. $errorCode = isset($this->post['errorCode']) &&$this->post['errorCode']!=''?trim($this->post['errorCode']) :"";
  25. if($errorCode==''){
  26. return error_show(1004,"参数errorCode 不能为空");
  27. }
  28. $error =Db::name('result_info')->where(["result_code"=>$errorCode,"is_del"=>0])->find();
  29. if(empty($error)){
  30. return error_show(1005,"未找到退货原因数据");
  31. }
  32. $remark =isset($this->post['remark']) &&$this->post['remark']!=''?trim($this->post['remark']) :"";
  33. $thnum =isset($this->post['thnum']) &&$this->post['thnum']!=''?intval($this->post['thnum']) :"";
  34. $token = isset($this->post['token'])&&$this->post['token']!='' ? trim($this->post['token']):"";
  35. if($token==''){
  36. return error_show(105,"参数token不能为空");
  37. }
  38. $user =GetUserInfo($token);
  39. if(empty($user)||$user['code']!=0){
  40. return error_show(1002,"申请人数据不存在");
  41. }
  42. $rm= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  43. $ri= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  44. $returnadr =isset($this->post['returnAddr'])&&$this->post['returnAddr']!="" ? $this->post['returnAddr']:"";
  45. if($returnadr!=''){
  46. $thnum=array_sum(array_column($returnadr,"return_num"));
  47. }
  48. $returnCode=makeNo("RXS");
  49. Db::startTrans();
  50. try{
  51. $in = [
  52. "returnCode"=>$returnCode,
  53. "orderCode"=>$ordeCode,
  54. "good_code"=>$order['good_code'],
  55. "good_name"=>$order['good_name'],
  56. "apply_id"=>$rm,
  57. "apply_name"=>$ri,
  58. "error_code"=>$errorCode,
  59. "num"=>$thnum,
  60. "remark"=>$remark,
  61. "order_type"=>$order['order_type'],
  62. "status"=>0,
  63. "is_del"=>0,
  64. "addtime"=>date("Y-m-d H:i:s"),
  65. "updatetime"=>date("Y-m-d H:i:s")
  66. ];
  67. $create = Db::name("sale_return")->insert($in,true);
  68. if($create>0){
  69. $stn = ["order_code"=>$returnCode,"status"=>0,"action_remark"=>'',"action_type"=>"create"];
  70. ActionLog::logAdd($this->post['token'],$stn,"QRTHD",0,$stn);
  71. $process=["order_code"=>$returnCode,"order_id"=>$create,"order_status"=>0,"order_type"=>'QRTHD'];
  72. ProcessOrder::AddProcess($this->post['token'],$process);
  73. if($returnadr!=""){
  74. $inf=[];
  75. foreach ($returnadr as $val){
  76. $temp=[];
  77. $addrinfo =Db::name("order_addr")->where(['id'=>$val['id'],"orderCode"=>$ordeCode])->find();
  78. if($addrinfo==false){
  79. Db::rollback();
  80. return error_show(1005,"地址信息未找到");
  81. }
  82. $send =Db::name('order_out')->where([["addrid","=",$val['id']],["status",">=",2]])->sum('send_num');
  83. if($send!=0 && $addrinfo['receipt_quantity']<$send+$val['return_num']){
  84. Db::rollback();
  85. return error_show(1005,"地址已发货");
  86. }
  87. $temp['returnCode']=$returnCode;
  88. $temp['orderCode']=$ordeCode;
  89. $temp['addrid']=$val['id'];
  90. $temp['send_num']=$addrinfo['receipt_quantity'];
  91. $temp['return_num']=$val['return_num'];
  92. $temp['is_del']=0;
  93. $temp['addtime']=date("Y-m-d H:i:s");
  94. $temp['updatetime']=date("Y-m-d H:i:s");
  95. $inf[]=$temp;
  96. }
  97. $inadd=Db::name("sale_returnaddr")->insertAll($inf);
  98. if($inadd==0){
  99. Db::rollback();
  100. return error_show(1005,"退货单新建失败");
  101. }
  102. }
  103. Db::commit();
  104. return app_show(0,"退货单新建成功",["returnCode"=>$returnCode]);
  105. }
  106. Db::rollback();
  107. return error_show(1005,"退货单新建失败");
  108. }catch (\Exception $e){
  109. Db::rollback();
  110. return error_show(1005,$e->getMessage());
  111. }
  112. }
  113. public function list(){
  114. $page = isset($this->post['page']) && $this->post['page'] !=="" ? intval($this->post['page']):"1";
  115. $size = isset($this->post['size']) && $this->post['size'] !=="" ? intval($this->post['size']):"10";
  116. $where =[['is_del',"=",0]];
  117. $bkcode = isset($this->post['returnCode']) && $this->post['returnCode']!="" ? trim($this->post['returnCode']):"";
  118. if($bkcode!=""){
  119. $where[]=['returnCode',"like", "%{$bkcode}%"];
  120. }
  121. $status = isset($this->post['status']) && $this->post['status']!=="" ? intval($this->post['status']):"";
  122. if($status!==""){
  123. $where[]=['status',"=", $status];
  124. }
  125. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode']!="" ? trim($this->post['orderCode'])
  126. :"";
  127. if($orderCode!=""){
  128. $where[]=['orderCode',"like", "%{$orderCode}%"];
  129. }
  130. $apply_name = isset($this->post['apply_name']) && $this->post['apply_name']!="" ? trim($this->post['apply_name'])
  131. :"";
  132. if($apply_name!=""){
  133. $where[]=['apply_name',"like", "%{$apply_name}%"];
  134. }
  135. $start =isset($this->post['start'])&&$this->post['start']!='' ? $this->post['start']:"";
  136. if($start!==""){
  137. $where[]=['addtime',">=", $start];
  138. }
  139. $end =isset($this->post['end'])&&$this->post['end']!='' ? $this->post['end']:"";
  140. if($end!==""){
  141. $where[]=['addtime',"<=", $end];
  142. }
  143. $count=Db::name("sale_return")->where($where)->count();
  144. $total = ceil($count/$size);
  145. $page = $total>=$page ? $page :$total;
  146. $list = Db::name("sale_return")->where($where)->order("addtime desc")->page($page,$size)->select();
  147. // echo Db::name("sale_return")->getLastSql();
  148. $data=[];
  149. foreach ($list as $value){
  150. $value['error_msg']='';
  151. if($value['error_code']!=''){
  152. $error = Db::name("result_info")->where(["result_code"=>$value['error_code']])->find();
  153. $value['error_msg']= isset($error['result'])?$error['result']:"";
  154. }
  155. $order =Db::name("sale")->where(["orderCode"=>$value['orderCode'],"is_del"=>0])->find();
  156. $value['sale_price'] = isset($order['sale_price']) ?$order['sale_price']:0;
  157. $value['return_total'] =$value['sale_price']*$value['num'] ;
  158. $value['total_num'] =$order['good_num'] ;
  159. $data[]=$value ;
  160. }
  161. return app_show(0,"获取成功",['list'=>$data,"count"=>$count]);
  162. }
  163. public function info(){
  164. $code = isset($this->post['returnCode']) && $this->post['returnCode'] !=="" ? trim($this->post['returnCode'])
  165. :"";
  166. if($code==""){
  167. return error_show(1004,"参数returnCode不能为空");
  168. }
  169. $info = Db::name("sale_return")->where(["returnCode"=>$code,"is_del"=>0])->find();
  170. if(empty($info)){
  171. return error_show(1004,"未找到退货数据");
  172. }
  173. $orderinfo = Db::name("sale")->where(["orderCode"=>$info["orderCode"]])->find();
  174. if($orderinfo['order_type']==3|| $orderinfo['order_type']==4){
  175. $goon = Db::name("good_zixun")->where(["spuCode"=>$orderinfo['good_code'],"is_del"=>0])->find();
  176. }else {
  177. $goon = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
  178. ->where(['a.skuCode' => $orderinfo['skuCode']])->find();
  179. }
  180. if ($goon==false) {
  181. return error_show(1003, "未找到商品数据");
  182. }
  183. $int = isset($goon['cat_id']) && $goon['cat_id'] != 0 ? made($goon['cat_id']) : [];
  184. $info['is_stock']=isset($goon['is_stock'])?$goon['is_stock']:'0';
  185. $info['good_code'] = isset($orderinfo['good_code'])?$orderinfo['good_code']:'';
  186. $info['good_name'] = isset($orderinfo['good_name'])?$orderinfo['good_name']:'';
  187. $info['good_num'] = isset($orderinfo['good_num'])?$orderinfo['good_num']:'';
  188. $info['sale_price'] = isset($orderinfo['sale_price'])?$orderinfo['sale_price']:'0';
  189. $info['origin_price'] = isset($orderinfo['origin_price'])?$orderinfo['origin_price']:'0';
  190. $info['return_total'] = $info['sale_price']*$info['num'] ;
  191. $info['send_num'] = isset($orderinfo['send_num'])?$orderinfo['send_num']:'0';
  192. $info['wsend_num'] = isset($orderinfo['wsend_num'])?$orderinfo['wsend_num']:'0';
  193. $info['send_status'] = isset($orderinfo['send_status'])?$orderinfo['send_status']:'';
  194. $info['total_price'] = isset($orderinfo['total_price'])?$orderinfo['total_price']:'0';
  195. $info['post_fee'] = isset($orderinfo['post_fee'])?$orderinfo['post_fee']:'0';
  196. $info['customer_code'] = isset($orderinfo['customer_code'])?$orderinfo['customer_code']:'';
  197. $info['customer_name']='';
  198. if(isset($orderinfo['customer_code'])&&$orderinfo['customer_code']!=''){
  199. $customerinfo = Db::name("customer_info")->where(['companyNo'=>$orderinfo['customer_code']])->find();
  200. $info['customer_name'] = isset($customerinfo['companyName']) ? $customerinfo['companyName']:"";
  201. }
  202. $info['supplierNo'] = isset($orderinfo['supplierNo'])?$orderinfo['supplierNo']:'';
  203. $info['supplier_name']='';
  204. if(isset($orderinfo['supplierNo'])&&$orderinfo['supplierNo']!=''){
  205. $customerinfo = Db::name("business")->where(['companyNo'=>$orderinfo['supplierNo']])->find();
  206. $info['supplier_name'] = isset($customerinfo['company']) ? $customerinfo['company']:"";
  207. }
  208. $info['platform_name']='';
  209. if($info['platform_id']!=0){
  210. $plat=Db::name("platform")->where(['id'=>$info['platform_id']])->find();
  211. $info['platform_name']=isset($plat['platform_name'])?$plat['platform_name']:"";
  212. }
  213. $info['cgd_wsend']="";
  214. $info['cgd_send']="";
  215. $info['cgd_total']="";
  216. if($orderinfo['order_type']==2){
  217. $cgd = Db::name("purchease_order")->where(["bkcode"=>$info["orderCode"],"order_type"=>2])->find();
  218. $info['cgd_wsend'] = isset($cgd['wsend_num']) ? $cgd['wsend_num']:0;
  219. $info['cgd_send'] = isset($cgd['send_num']) ? $cgd['send_num']:0;
  220. $info['cgd_total'] = isset($cgd['good_num']) ? $cgd['good_num']:0;
  221. }
  222. $info['error_msg']='';
  223. if($info['error_code']!=''){
  224. $error = Db::name("result_info")->where(["result_code"=>$info['error_code']])->find();
  225. $info['error_msg']= isset($error['result'])?$error['result']:"";
  226. }
  227. $wsm_return = Db::name("sale_returninfo")->where(["returnCode"=>$info["returnCode"],"is_del"=>0])->select()->toArray();
  228. $wsm=[];
  229. if(!empty($wsm_return)){
  230. foreach ($wsm_return as $value){
  231. $value['wsm_name']="";
  232. $value['wsm_supplier']="";
  233. $value['wsm_supplierNo']="";
  234. if($value['wsm_code']!=""){
  235. $wsmcode = Db::name("warehouse_info")->alias("a")->leftJoin("supplier b","a.supplierNo=b.code")
  236. ->where(["a.wsm_code"=>$value['wsm_code']])->field("a.name as wsm_name,b.name,b.code")->find();
  237. $value['wsm_name'] =isset($wsmcode['wsm_name']) ? $wsmcode['wsm_name']:"";
  238. $value['wsm_supplier'] =isset($wsmcode['name']) ? $wsmcode['name']:"";
  239. $value['wsm_supplierNo'] =isset($wsmcode['code']) ? $wsmcode['code']:"";
  240. }
  241. $orderwsm = Db::name("sale_info")->where(["orderCode"=>$info["orderCode"],"wsm_code"=>$value["wsm_code"]])->find();
  242. $value["wsm_total"] = isset($orderwsm["num"]) ? $orderwsm["num"]:0;
  243. $send = Db::name("order_out")->where(["wsm_code" => $value['wsm_code'], 'orderCode' => $info['orderCode']])->sum("send_num");
  244. $value['wsm_send'] = $send ?? 0;
  245. $value['wsm_wsend'] = $value['wsm_total'] - $value['wsm_send'];
  246. $wsm[]=$value;
  247. }
  248. }
  249. $info['wsminfo']=$wsm;
  250. $addr =Db::name("sale_returnaddr")->where(["returnCode"=>$info["returnCode"],"is_del"=>0])->select()->toArray();
  251. $addrinfo=[];
  252. if(!empty($addr)){
  253. foreach ( $addr as $value){
  254. $addrlist = Db::name("order_addr")->where(["id"=>$value["addrid"]])->find();
  255. $value['addr']=isset($addrlist['addr'])?$addrlist['addr']:"";
  256. $value['addr_code']=isset($addrlist['addr_code'])?$addrlist['addr_code']:"";
  257. $value['contactor']=isset($addrlist['contactor'])?$addrlist['contactor']:"";
  258. $value['mobile']=isset($addrlist['mobile'])?$addrlist['mobile']:"";
  259. $value['post_fee']=isset($addrlist['post_fee'])?$addrlist['post_fee']:"";
  260. $value['addive_time']=isset($addrlist['addive_time'])?$addrlist['addive_time']:"";
  261. $value['customer_code']=isset($addrlist['customer_code']) ?$addrlist['customer_code']:"" ;
  262. $value['receipt_quantity']=isset($addrlist['receipt_quantity']) ?$addrlist['receipt_quantity']:"" ;
  263. $send = Db::name("order_out")->where(['addrid' => $addrlist['id'], 'orderCode' => $addrlist['orderCode']])->sum("send_num");
  264. $value['addr_send'] = $send ?? 0;
  265. $value['addr_wsend'] = $value['receipt_quantity'] - $value['addr_send'];
  266. $customer = Db::name("customer_info")->where(['companyNo'=>$addrlist['customer_code']])->find();
  267. $value['customer_name'] = isset($customer['companyName']) ? $customer['companyName']:"";
  268. $addrinfo[]=$value;
  269. }
  270. }
  271. $info['addrinfo']=$addrinfo;
  272. $info['can']=$int;
  273. return app_show(0,"获取成功",$info);
  274. }
  275. /**
  276. * @return \think\response\Json|void
  277. * @throws \think\db\exception\DataNotFoundException
  278. * @throws \think\db\exception\DbException
  279. * @throws \think\db\exception\ModelNotFoundException
  280. */
  281. public function delete(){
  282. $code = isset($this->post['returnCode']) && $this->post['returnCode'] !=="" ? trim($this->post['returnCode'])
  283. :"";
  284. if($code==""){
  285. return error_show(1004,"参数returnCode不能为空");
  286. }
  287. $info = Db::name("sale_return")->where(["returnCode"=>$code,"is_del"=>0])->find();
  288. if(empty($info)){
  289. return error_show(1004,"未找到退货数据");
  290. }
  291. $info["is_del"]=1;
  292. $info["updatetime"]=date("Y-m-d H:i:s");
  293. $del = Db::name("sale_return")->save($info);
  294. if($del){
  295. $ste = ["order_code"=>$code,"status"=>0,"action_remark"=>'',"action_type"=>"delete"];
  296. ActionLog::logAdd($this->post['token'],$ste,$info['order_type'] == 2?"ZXTHD":"QRTHD",0,$ste);
  297. $process=["order_code"=>$code,"order_id"=>$info['id'],"order_status"=>0,"order_type"=>$info['order_type'] == 2?"ZXTHD":"QRTHD"];
  298. ProcessOrder::workdel($process);
  299. return app_show(0,"删除成功");
  300. }else{
  301. return error_show(1004,"删除失败");
  302. }
  303. }
  304. /**审核
  305. * @return \think\response\Json|void
  306. * @throws \think\db\exception\DataNotFoundException
  307. * @throws \think\db\exception\DbException
  308. * @throws \think\db\exception\ModelNotFoundException
  309. */
  310. public function exam(){
  311. $code = isset($this->post['returnCode']) && $this->post['returnCode'] !=="" ? trim($this->post['returnCode'])
  312. :"";
  313. if($code==""){
  314. return error_show(1004,"参数returnCode不能为空");
  315. }
  316. $info = Db::name("sale_return")->where(["returnCode"=>$code,"is_del"=>0])->find();
  317. if(empty($info)){
  318. return error_show(1004,"未找到退货数据");
  319. }
  320. $status = isset($this->post['status']) && $this->post['status'] !=="" ? intval($this->post['status'])
  321. :"";
  322. if($status===""){
  323. return error_show(1004,"参数status不能为空");
  324. }
  325. $remark = isset($this->post['remark']) && $this->post['remark'] !="" ? trim($this->post['remark']) :"";
  326. $var = $info['status'];
  327. $token = isset($this->post['token']) && $this->post['token'] !=="" ?trim($this->post['token']):"";
  328. $apply_id =GetUserInfo($token);
  329. if(empty($apply_id)||$apply_id['code']!=0){
  330. return error_show(1002,"申请人数据不存在");
  331. }
  332. $rid= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  333. $rname= isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  334. $orderinfo = Db::name("sale")->where(["orderCode"=>$info["orderCode"]])->find();
  335. if($orderinfo==false){
  336. return error_show(1004,"未找到订单数据");
  337. }
  338. if($status==4){
  339. $cgd=Db::name("order_num")->where(['orderCode'=>$info["orderCode"]])->order("send_num asc")->column('cgdNo');
  340. if(empty($cgd)){
  341. return error_show(1004,"未找到商品库存数据");
  342. }
  343. $wsm =Db::name("purchease_order")->where(["cgdNo"=>$cgd])->column("wsm_code");
  344. if(empty($wsm)){
  345. return error_show(1004,"未找到商品仓库库存数据");
  346. }
  347. $good_stock = Db::name("good_stock")->where(["spuCode"=>$orderinfo['good_code'],"wsm_code"=>$wsm,"is_del"=>0])
  348. ->select()->toArray();
  349. if(empty($good_stock)){
  350. return error_show(1004,"未找到商品库存数据");
  351. }
  352. }
  353. if($status==3){
  354. $is_th =isset($this->post['is_th'])&&$this->post['is_th']!=="" ? intval($this->post['is_th']):"";
  355. if($is_th===""){
  356. return error_show(1004,"参数is_th不能为空");
  357. }
  358. $return_wsm =isset($this->post['return_wsm'])&&$this->post['return_wsm']!=="" ? intval($this->post['return_wsm']):"";
  359. if($return_wsm===""){
  360. return error_show(1004,"参数return_wsm 不能为空");
  361. }
  362. }
  363. Db::startTrans();
  364. try{
  365. $temp= $info['status'];
  366. $info['status'] =$status;
  367. $remark!=""? $info['remark'] =$remark:"";
  368. $info["updatetime"]=date("Y-m-d H:i:s");
  369. $up = Db::name("sale_return")->save($info);
  370. if($up){
  371. $process=["order_code"=>$code,"order_id"=>$info['id'],"order_status"=>$status,"order_type"=>$info['order_type'] == 2?"ZXTHD":"QRTHD"];
  372. ProcessOrder::AddProcess($this->post['token'],$process);
  373. $ste = ["order_code"=>$code,"status"=>$temp,"action_remark"=>'',"action_type"=>"status"];
  374. ActionLog::logAdd($this->post['token'],$ste,$info['order_type'] == 2?"ZXTHD":"QRTHD",$status,$info);
  375. if($status==4){
  376. $orderinfo['wsend_num']-=$info['num'];
  377. $orderinfo['th_num']+=$info['num'];
  378. $orderinfo['send_status'] = $orderinfo['send_num'] == 0 ? 1 : $orderinfo['wsend_num'] == 0 ? 3 : 2;
  379. $orderinfo['status'] = $orderinfo['send_num'] == 0 ? 3 : $orderinfo['wsend_num'] == 0 ? 5 : 4;
  380. $orderinfo['updatetime']=date("Y-m-d H:i:s");
  381. $return = Db::name("sale")->save($orderinfo);
  382. if($return==false){
  383. Db::rollback();
  384. return error_show(1004,"更新失败");
  385. }
  386. foreach ($good_stock as $value){
  387. if($value['wait_out_stock']>=$info['num']){
  388. $value['usable_stock']+=$info['num'];
  389. $value['wait_out_stock']-=$info['num'];
  390. $value['updatetime']=date("Y-m-d H:i:s");
  391. $info["num"]=0;
  392. }else{
  393. $value['usable_stock']+=$value['wait_out_stock'];
  394. $value['wait_out_stock']=0;
  395. $value['updatetime']=date("Y-m-d H:i:s");
  396. $info["num"]-=$value['wait_out_stock'];
  397. }
  398. $stock = Db::name("good_stock")->save($value);
  399. if($stock==false){
  400. Db::rollback();
  401. return error_show(1004,"更新失败");
  402. }
  403. if($info['num']==0){
  404. break;
  405. }
  406. }
  407. }
  408. Db::commit();
  409. return app_show(0,"更新成功");
  410. }
  411. Db::rollback();
  412. return error_show(1004,"更新失败");
  413. }catch (\Exception $e){
  414. Db::rollback();
  415. return error_show(1004,"更新失败");
  416. }
  417. }
  418. public function zxcreate(){
  419. $ordeCode = isset($this->post['orderCode']) &&$this->post['orderCode']!=''?trim($this->post['orderCode']) :"";
  420. if($ordeCode==''){
  421. return error_show(1004,"参数orderCode 不能为空");
  422. }
  423. $order= Db::name("sale")->where(["orderCode"=>$ordeCode,"is_del"=>0])->find();
  424. if(empty($order)){
  425. return error_show(1005,"未找到订单数据");
  426. }
  427. $errorCode = isset($this->post['errorCode']) &&$this->post['errorCode']!=''?trim($this->post['errorCode']) :"";
  428. if($errorCode==''){
  429. return error_show(1004,"参数errorCode 不能为空");
  430. }
  431. $error =Db::name('result_info')->where(["result_code"=>$errorCode,"is_del"=>0])->find();
  432. if(empty($error)){
  433. return error_show(1005,"未找到退货原因数据");
  434. }
  435. $remark =isset($this->post['remark']) &&$this->post['remark']!=''?trim($this->post['remark']) :"";
  436. $token = isset($this->post['token'])&&$this->post['token']!='' ? trim($this->post['token']):"";
  437. if($token==''){
  438. return error_show(105,"参数token不能为空");
  439. }
  440. $user =GetUserInfo($token);
  441. if(empty($user)||$user['code']!=0){
  442. return error_show(1002,"申请人数据不存在");
  443. }
  444. $rm= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  445. $ri= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  446. $num = isset($this->post['num'])&&$this->post['num']!='' ? intval($this->post['num']):"";
  447. if($num==''){
  448. return error_show(1005,"参数num不能为空");
  449. }
  450. if($order['wsend_num']<$num){
  451. return error_show(1002,"仓库未发货数量不足退货");
  452. }
  453. $returnCode=makeNo("RXS");
  454. Db::startTrans();
  455. try{
  456. $in = [
  457. "returnCode"=>$returnCode,
  458. "orderCode"=>$ordeCode,
  459. "good_code"=>$order['good_code'],
  460. "good_name"=>$order['good_name'],
  461. "apply_id"=>$rm,
  462. "apply_name"=>$ri,
  463. "error_code"=>$errorCode,
  464. "num"=>$num,
  465. "remark"=>$remark,
  466. "order_type"=>2,
  467. "status"=>0,
  468. "is_del"=>0,
  469. "addtime"=>date("Y-m-d H:i:s"),
  470. "updatetime"=>date("Y-m-d H:i:s")
  471. ];
  472. $create = Db::name("sale_return")->insert($in,true);
  473. if($create>0) {
  474. $process=["order_code"=>$returnCode,"order_id"=>$create,"order_status"=>0,"order_type"=>'ZXTHD'];
  475. ProcessOrder::AddProcess($this->post['token'],$process);
  476. $ste = ["order_code"=>$returnCode,"status"=>0,"action_remark"=>'',
  477. "action_type"=>"create"];
  478. ActionLog::logAdd($this->post['token'],$ste,"ZXTHD",3,$in);
  479. if ($order['send_type'] == 1) {
  480. $wsend = Db::name("order_out")->where(['orderCode' => $ordeCode, "status" => 1, "order_type"
  481. =>2])->select();
  482. // ->save(["status" => 0, "updatetime" => date("Y-m-d H:i:s")]);
  483. if(!empty($wsend)){
  484. foreach ($wsend as $value){
  485. $tt = $value['status'];
  486. $value['status']=0;
  487. $value['updatetime']=date("Y-m-d H:i:s");
  488. $up =Db::name("order_out")->save($value);
  489. if($up){
  490. $process=["order_code"=> $value['outCode'],"order_id"=>$value['id'],"order_status"=>0,"order_type"=>'CKD'];
  491. ProcessOrder::AddProcess($this->post['token'],$process);
  492. $ste = ["order_code"=>$value['outCode'],"status"=>$tt,"action_remark"=>'',"action_type"=>"status"];
  493. ActionLog::logAdd($this->post['token'],$ste,"CKD",0,$value);
  494. }else{
  495. Db::rollback();
  496. return error_show(1005,"退货单新建失败");
  497. }
  498. }
  499. }
  500. }
  501. Db::commit();
  502. return error_show(0,"退货单新建成功");
  503. }
  504. Db::rollback();
  505. return error_show(1005,"退货单新建失败");
  506. }catch (\Exception $e){
  507. Db::rollback();
  508. return error_show(1005,$e->getMessage());
  509. }
  510. }
  511. }