Filing.php 54 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193
  1. <?php
  2. namespace app\admin\controller;
  3. use think\Exception;
  4. use think\facade\Db;
  5. use think\facade\Validate;
  6. //报备单
  7. class Filing extends Base
  8. {
  9. //列表
  10. public function getList()
  11. {
  12. $data = $this->request->only(['page' => 1, 'size' => 10, 'cat_id' => '', 'start_date' => '', 'end_date' => '', 'filingCode' => '', 'status' => '', 'good_name' => '', 'companyName' => '', 'companyCode' => '', 'orderCode' => '', 'supplierNo' => ''], 'post');
  13. $where = [['is_del', '=', '0']];
  14. if ($data['cat_id'] != '') $where[] = ['cat_id', '=', $data['cat_id']];
  15. if ($data['start_date'] != '' && $data['end_date'] != '') $where[] = ['addtime', 'between', [$data['start_date'] . ' 00:00:00', $data['end_date'] . ' 23:59:59']];
  16. if ($data['filingCode'] != '') $where[] = ['filingCode', 'like', '%' . $data['filingCode'] . '%'];
  17. if ($data['status'] != '') $where[] = ['status', '=', $data['status']];
  18. if ($data['good_name'] != '') $where[] = ['good_name', 'like', '%' . $data['good_name'] . '%'];
  19. if ($data['companyName'] != '') $where[] = ['companyName', 'like', '%' . $data['companyName'] . '%'];
  20. if ($data['companyCode'] != '') $where[] = ['companyCode', 'like', '%' . $data['companyCode'] . '%'];
  21. if ($data['orderCode'] != '') $where[] = ['orderCode', 'like', '%' . $data['orderCode'] . '%'];
  22. if ($data['supplierNo'] != '') $where[] = ['supplierNo', '=', $data['supplierNo']];
  23. $count = Db::name('filing')
  24. ->where($where)
  25. ->count('id');
  26. $list = Db::name('filing')
  27. ->field('id,filingCode,cat_id,good_name,num,wait_num,transfer_num,good_img,price,expect_service,companyName,companyCode,status,addtime,"" catinfo,orderCode,cgd_charge')
  28. ->where($where)
  29. ->page($data['page'], $data['size'])
  30. ->order('id', 'desc')
  31. ->withAttr('good_img', function ($val) {
  32. return explode(',', $val);
  33. })
  34. ->select()
  35. ->toArray();
  36. $all_cat = [];
  37. foreach ($list as &$value) {
  38. if (!isset($all_cat[$value['cat_id']])) $all_cat[$value['cat_id']] = implode('/', array_column(made($value['cat_id']), 'name'));
  39. $value['catinfo'] = $all_cat[$value['cat_id']];
  40. }
  41. return json_show(0, '获取报备单列表成功', ['count' => $count, 'list' => $list]);
  42. }
  43. //添加
  44. public function add()
  45. {
  46. $param = $this->request->filter(["trim",'strip_tags'])->only([
  47. 'customerCode',
  48. 'supplierNo',
  49. 'companyName',
  50. 'num',
  51. 'is_determine_price',
  52. 'price' => 0,
  53. 'expect_service_proportion',
  54. 'expect_service',
  55. 'cgd_charge' => 0,
  56. 'brand_id',
  57. 'preservation_day',
  58. 'delivery_day',
  59. 'make_day',
  60. 'tax',
  61. 'unit_id',
  62. 'cat_id',
  63. 'spec_list' => [], '
  64. good_name',
  65. 'origin_place',
  66. 'delivery_place',
  67. 'weight',
  68. 'supply_area',
  69. 'pay_way',
  70. 'gold_weight',
  71. 'noble_metal',
  72. 'config',
  73. 'other_config',
  74. 'remark',
  75. 'cost_desc',
  76. 'good_img'], 'post');
  77. $val = Validate::rule([
  78. 'customerCode|业务公司' => 'require|max:255',
  79. 'supplierNo|供应商' => 'require|max:255',
  80. 'companyName|客户名称' => 'require|max:255',
  81. 'num|销售数量' => 'require|number|gt:0|lt:999999999',
  82. 'is_determine_price|是否确定售价' => 'require|number|in:1,0',
  83. 'price|销售价' => 'requireIf:is_determine_price,1|float|max:99999999.99',
  84. 'expect_service_proportion|期望服务费比例' => 'require|float|between:0,100',
  85. 'expect_service|期望服务费' => 'require|float|max:99999999.99',
  86. 'cgd_charge|采购价' => 'requireIf:is_determine_price,0|float|max:99999999.99',
  87. 'brand_id|品牌' => 'require|number|gt:0',
  88. 'preservation_day|有效期' => 'require|number|max:999999999',
  89. 'delivery_day|物流时间' => 'require|number|max:999999999',
  90. 'make_day|生产工期' => 'require|number|max:999999999',
  91. 'tax|税点' => 'require|number|between:0,100',
  92. 'unit_id|单位' => 'require|number|gt:0',
  93. 'cat_id|分类' => 'require|number|gt:0',
  94. 'spec_list|规格类型' => 'array|max:100',
  95. 'good_name|商品名称' => 'require|max:255',
  96. 'origin_place|产地' => 'require|array|length:3',
  97. 'delivery_place|发货地' => 'require|array|length:3',
  98. 'weight|总重量' => 'require|float|max:99999999.99',
  99. 'supply_area|供货区域' => 'require|number|in:1,2',
  100. 'pay_way|付款方式' => 'require|number|in:0,1,2',
  101. 'remark|采购备注' => 'require|max:255',
  102. 'cost_desc|工艺说明' => 'max:255',
  103. 'good_img|商品图片' => 'require|array|max:10',
  104. ]);
  105. if (!$val->check($param)) return json_show(1004, $val->getError());
  106. //如果是贵金属的话,额外判断
  107. $cat = made($param['cat_id']);
  108. if (isset($cat[0]['id']) && $cat[0]['id'] == 6) {
  109. $val_gold = Validate::rule([
  110. 'gold_weight|贵金属重量' => 'require|float|max:99999999.99',
  111. 'noble_metal|贵金属类型' => 'require|number|in:1,2,3',
  112. 'config|配置要求' => 'require|max:255',
  113. 'other_config|其他配置要求' => 'require|max:255',
  114. ]);
  115. if (!$val_gold->check($param)) return json_show(1004, $val_gold->getError());
  116. }
  117. $val2 = Validate::rule([
  118. 'spec_id|规格id' => 'require|number|gt:0',
  119. 'spec_value_id|规格值id' => 'require|number|gt:0',
  120. ]);
  121. $all_spec = Db::name('specs')
  122. ->whereIn('id', array_column($param['spec_list'], 'spec_id'))
  123. ->column('spec_name', 'id');
  124. $all_spec_value = Db::name('spec_value')
  125. ->whereIn('id', array_column($param['spec_list'], 'spec_value_id'))
  126. ->column('spec_value', 'id');
  127. foreach ($param['spec_list'] as &$spec_list) {
  128. if (!$val2->check($spec_list)) return json_show(1004, $val2->getError());
  129. $spec_list['spec_name'] = $all_spec[$spec_list['spec_id']] ?? '';
  130. $spec_list['spec_value_name'] = $all_spec_value[$spec_list['spec_value_id']] ?? '';
  131. }
  132. if ($param['is_determine_price'] == 1) $param['cgd_charge'] = round(bcsub($param['price'], $param['expect_service'], 3), 2);//确定售价时,采购价=售价-服务费
  133. else $param['price'] = round(bcadd($param['cgd_charge'], $param['expect_service'], 3), 2);//不确定售价时,售价=采购价+服务费
  134. $userCommon = \app\admin\common\User::getIns();
  135. $names = $userCommon->handle('getCodeAndName', ['code' => [$param['customerCode'], $param['supplierNo']]]);
  136. if (!isset($names['data'][$param['customerCode']]) || $names['data'][$param['customerCode']] == '') return json_show(1004, '该业务公司不存在');
  137. if (!isset($names['data'][$param['supplierNo']]) || $names['data'][$param['supplierNo']] == '') return json_show(1004, '该供应商不存在');
  138. $rs = Db::name('filing')
  139. ->strict(false)
  140. ->insert(array_merge($param, [
  141. 'customerName' => $names['data'][$param['customerCode']],
  142. 'supplierName' => $names['data'][$param['supplierNo']],
  143. 'filingCode' => makeNo('BM'),
  144. 'service_proportion' => $param['expect_service_proportion'],//服务费比例与期望服务费比例一致
  145. 'service_charge' => $param['expect_service'],//服务费与期望服务费一致
  146. 'specinfo' => json_encode($param['spec_list']),
  147. "wait_num"=>$param["num"],
  148. 'send_way' => 2,
  149. 'cert_fee' => 0,
  150. 'pakge_fee' => 0,
  151. 'cost_fee' => 0,
  152. 'mark_fee' => 0,
  153. 'demo_fee' => 0,
  154. 'open_fee' => 0,
  155. 'delivery_fee' => 0,
  156. 'is_gold_price' => 0,
  157. 'is_diff' => 0,
  158. 'apply_id' => $this->uid,
  159. 'apply_name' => $this->uname,
  160. 'status' => 0,
  161. 'is_del' => 0,
  162. 'addtime' => date('Y-m-d H:i:s'),
  163. 'updaterid' => $this->uid,
  164. 'updater' => $this->uname,
  165. 'updatetime' => date('Y-m-d H:i:s'),
  166. 'gold_weight' => $param['gold_weight'] ?? 0,
  167. 'noble_metal' => $param['noble_metal'] ?? 0,
  168. 'config' => $param['config'] ?? '',
  169. 'other_config' => $param['other_config'] ?? '',
  170. 'good_img' => implode(',', $param['good_img']),
  171. 'origin_place' => implode(',', $param['origin_place']),
  172. 'delivery_place' => implode(',', $param['delivery_place']),
  173. ]));
  174. return $rs ? json_show(0, '创建报备单成功') : json_show(1004, '创建报备单失败');
  175. }
  176. //添加
  177. public function save()
  178. {
  179. $param = $this->request->filter(['trim','strip_tags'])->only(["id",
  180. 'customerCode',
  181. 'supplierNo',
  182. 'companyName',
  183. 'num',
  184. 'is_determine_price',
  185. 'price' => 0,
  186. 'expect_service_proportion',
  187. 'expect_service',
  188. 'cgd_charge' => 0,
  189. 'brand_id',
  190. 'preservation_day',
  191. 'delivery_day',
  192. 'make_day',
  193. 'tax',
  194. 'unit_id',
  195. 'cat_id',
  196. 'spec_list' => [], '
  197. good_name',
  198. 'origin_place',
  199. 'delivery_place',
  200. 'weight',
  201. 'supply_area',
  202. 'pay_way',
  203. 'gold_weight',
  204. 'noble_metal',
  205. 'config',
  206. 'other_config',
  207. 'remark',
  208. 'cost_desc',
  209. 'good_img'], 'post');
  210. $val = Validate::rule([
  211. 'id|报备单主键id' => 'require',
  212. 'customerCode|业务公司' => 'require|max:255',
  213. 'supplierNo|供应商' => 'require|max:255',
  214. 'companyName|客户名称' => 'require|max:255',
  215. 'num|销售数量' => 'require|number|gt:0|lt:999999999',
  216. 'is_determine_price|是否确定售价' => 'require|number|in:1,0',
  217. 'price|销售价' => 'requireIf:is_determine_price,1|float|max:99999999.99',
  218. 'expect_service_proportion|期望服务费比例' => 'require|float|between:0,100',
  219. 'expect_service|期望服务费' => 'require|float|max:99999999.99',
  220. 'cgd_charge|采购价' => 'requireIf:is_determine_price,0|float|max:99999999.99',
  221. 'brand_id|品牌' => 'require|number|gt:0',
  222. 'preservation_day|有效期' => 'require|number|max:999999999',
  223. 'delivery_day|物流时间' => 'require|number|max:999999999',
  224. 'make_day|生产工期' => 'require|number|max:999999999',
  225. 'tax|税点' => 'require|number|between:0,100',
  226. 'unit_id|单位' => 'require|number|gt:0',
  227. 'cat_id|分类' => 'require|number|gt:0',
  228. 'spec_list|规格类型' => 'array|max:100',
  229. 'good_name|商品名称' => 'require|max:255',
  230. 'origin_place|产地' => 'require|array|length:3',
  231. 'delivery_place|发货地' => 'require|array|length:3',
  232. 'weight|总重量' => 'require|float|max:99999999.99',
  233. 'supply_area|供货区域' => 'require|number|in:1,2',
  234. 'pay_way|付款方式' => 'require|number|in:0,1,2',
  235. 'remark|采购备注' => 'require|max:255',
  236. 'cost_desc|工艺说明' => 'max:255',
  237. 'good_img|商品图片' => 'require|array|max:10',
  238. ]);
  239. if (!$val->check($param)) return json_show(1004, $val->getError());
  240. //如果是贵金属的话,额外判断
  241. $cat = made($param['cat_id']);
  242. if (isset($cat[0]['id']) && $cat[0]['id'] == 6) {
  243. $val_gold = Validate::rule([
  244. 'gold_weight|贵金属重量' => 'require|float|max:99999999.99',
  245. 'noble_metal|贵金属类型' => 'require|number|in:1,2,3',
  246. 'config|配置要求' => 'require|max:255',
  247. 'other_config|其他配置要求' => 'require|max:255',
  248. ]);
  249. if (!$val_gold->check($param)) return json_show(1004, $val_gold->getError());
  250. }
  251. $val2 = Validate::rule([
  252. 'spec_id|规格id' => 'require|number|gt:0',
  253. 'spec_value_id|规格值id' => 'require|number|gt:0',
  254. ]);
  255. $all_spec = Db::name('specs')
  256. ->whereIn('id', array_column($param['spec_list'], 'spec_id'))
  257. ->column('spec_name', 'id');
  258. $all_spec_value = Db::name('spec_value')
  259. ->whereIn('id', array_column($param['spec_list'], 'spec_value_id'))
  260. ->column('spec_value', 'id');
  261. foreach ($param['spec_list'] as &$spec_list) {
  262. if (!$val2->check($spec_list)) return json_show(1004, $val2->getError());
  263. $spec_list['spec_name'] = $all_spec[$spec_list['spec_id']] ?? '';
  264. $spec_list['spec_value_name'] = $all_spec_value[$spec_list['spec_value_id']] ?? '';
  265. }
  266. if ($param['is_determine_price'] == 1) $param['cgd_charge'] = round(bcsub($param['price'], $param['expect_service'], 3), 2);//确定售价时,采购价=售价-服务费
  267. else $param['price'] = round(bcadd($param['cgd_charge'], $param['expect_service'], 3), 2);//不确定售价时,售价=采购价+服务费
  268. $userCommon = \app\admin\common\User::getIns();
  269. $names = $userCommon->handle('getCodeAndName', ['code' => [$param['customerCode'], $param['supplierNo']]]);
  270. if (!isset($names['data'][$param['customerCode']]) || $names['data'][$param['customerCode']] == '') return json_show(1004, '该业务公司不存在');
  271. if (!isset($names['data'][$param['supplierNo']]) || $names['data'][$param['supplierNo']] == '') return json_show(1004, '该供应商不存在');
  272. $rs = Db::name('filing')
  273. ->save(array_merge($param, [
  274. 'customerName' => $names['data'][$param['customerCode']],
  275. 'supplierName' => $names['data'][$param['supplierNo']],
  276. 'service_proportion' => $param['expect_service_proportion'],//服务费比例与期望服务费比例一致
  277. 'service_charge' => $param['expect_service'],//服务费与期望服务费一致
  278. 'specinfo' => json_encode($param['spec_list']),
  279. 'wait_num'=>$param['num'],
  280. 'send_way' => 2,
  281. "staus"=>0,
  282. "is_check"=>0,
  283. 'apply_id' => $this->uid,
  284. 'apply_name' => $this->uname,
  285. 'updaterid' => $this->uid,
  286. 'updater' => $this->uname,
  287. 'updatetime' => date('Y-m-d H:i:s'),
  288. 'gold_weight' => $param['gold_weight'] ?? 0,
  289. 'noble_metal' => $param['noble_metal'] ?? 0,
  290. 'config' => $param['config'] ?? '',
  291. 'other_config' => $param['other_config'] ?? '',
  292. 'good_img' => implode(',', $param['good_img']),
  293. 'origin_place' => implode(',', $param['origin_place']),
  294. 'delivery_place' => implode(',', $param['delivery_place']),
  295. ]));
  296. return $rs ? json_show(0, '报备单更新成功') : json_show(1004, '报备单更新失败');
  297. }
  298. //详情
  299. public function detail()
  300. {
  301. $param = $this->request->only(['id' => 0], 'post', 'trim');
  302. $rs = Db::name('filing')
  303. ->alias('a')
  304. ->field('a.*,b.brand_name,d.unit unit_name,p.platform_name,"" cat_info')
  305. ->leftJoin('brand b', 'b.id=a.brand_id')
  306. ->leftJoin('unit d', 'd.id=a.unit_id')
  307. ->leftJoin('platform p', 'p.id=a.platform_id')
  308. ->where(['a.is_del' => 0, 'a.id' => $param['id']])
  309. ->withAttr('specinfo', function ($val) {
  310. return json_decode($val);
  311. })
  312. ->withAttr('good_img', function ($val) {
  313. return explode(',', $val);
  314. })->withAttr('origin_place', function ($val) {
  315. return explode(',', $val);
  316. })->withAttr('delivery_place', function ($val) {
  317. return explode(',', $val);
  318. })->withAttr('cat_info', function ($val, $da) {
  319. return made($da['cat_id']);
  320. })
  321. ->findOrEmpty();
  322. return json_show(0, '获取报备单详情成功', $rs);
  323. // return FilingLogic::detail($param);
  324. }
  325. //0 待审核 1 待修改 不合规 2 合规可转单 3 部分 4 转单成功 5取消转单
  326. public function status()
  327. {
  328. if ($this->level != 2) return json_show(1004, '业务公司账号不能审核');
  329. $param = $this->request->only(['id', 'companyCode', 'plat_code' => '','platform_id',"remark"=>""], 'post');
  330. $val = Validate::rule([
  331. 'id' => 'require|number|gt:0',
  332. 'companyCode|客户' => 'requireIf:is_check,1|length:18',
  333. 'platform_id|平台id' => 'requireIf:is_check,1|number|gt:0',
  334. 'plat_code|平台商品编号' => 'requireIf:is_check,1|max:255',
  335. "is_check|是否合规"=> 'require|number|in:1,2',
  336. "remark|备注"=> 'requireIf:is_check,2|number|in:1,2',
  337. ]);
  338. if (!$val->check($param)) return json_show(1004, $val->getError());
  339. $rs = Db::name('filing')
  340. ->field('id,status,is_determine_price,price,cgd_charge,platform_id,customerCode,customerName')
  341. ->where(['is_del' => 0, 'id' => $param['id'],"status"=>0])
  342. ->findOrEmpty();
  343. if (empty($rs)) return json_show(1005, '该报备单不存在或不允许审核');
  344. $userCommon = \app\admin\common\User::getIns();
  345. $company = $userCommon->handle('cInfo', ['companyNo' => $param['companyCode']]);
  346. if (!isset($company['data'])) return json_show(1005, '该客户不存在');
  347. $tmp = Db::name('platform')
  348. ->where(['is_del' => 0, 'id' => $param['platform_id']])
  349. ->field('id,is_select_pay_rate,status')
  350. ->findOrEmpty();
  351. if (empty($tmp)) return json_show(1005, '该平台不存在');
  352. if ($tmp['status'] != 1) return error_show(1004, "平台信息已禁用");
  353. if($tmp['is_select_pay_rate']==1 && channel_is_company($param['platform_id'],$rs['customerCode']))return
  354. error_show(1004, "平台渠道包含当前业务公司 {$rs['customerName']}");
  355. //校验支付渠道中的业务公司是否与报备单业务公司重复
  356. $update = array_merge($param, [
  357. 'companyName' => $company['data']['companyName'],
  358. "status"=>$param["is_check"],
  359. 'updaterid' => $this->uid,
  360. 'updater' => $this->uname,
  361. 'updatetime' => date('Y-m-d H:i:s'),
  362. ]);
  363. //
  364. // if ($rs['is_determine_price'] == 1) $update['cgd_charge'] = round(bcsub($rs['price'], $param['service_charge'], 3), 2);//确定售价时,采购价=售价-服务费
  365. // else $update['price'] = round(bcadd($rs['cgd_charge'], $param['service_charge'], 3), 2);//不确定售价时,售价=采购价+服务费
  366. $res = Db::name('filing')
  367. ->where(['is_del' => 0, 'id' => $param['id']])
  368. ->whereIn('status', [0, 2])
  369. ->update($update);
  370. return $res ? json_show(0, '操作成功') : json_show(1004, '操作失败');
  371. // return FilingLogic::status($param);
  372. }
  373. //取消转单
  374. public function cancel()
  375. {
  376. if ($this->level == 1) return json_show(1004, '超管不允许操作');
  377. $param = $this->request->only(['id'], 'post');
  378. $where = [
  379. ['is_del', '=', 0],
  380. ['id', '=', $param['id']],
  381. ['status', 'in', [0, 1, 2, 4]]
  382. ];
  383. $rs = Db::name('filing')
  384. ->field('id,status,supplierNo')
  385. ->where($where)
  386. ->findOrEmpty();
  387. if (empty($rs)) return json_show(1005, '该报备单不存在或不允许取消');
  388. if ($this->level == 2) {
  389. $supp = get_personid_by_supplierNo([$rs['supplierNo']]);
  390. if ($this->uid != $supp[$rs['supplierNo']]) return json_show(1004, '只有供应商负责人才能操作');
  391. }
  392. $res = Db::name('filing')
  393. ->where($where)
  394. ->update(['status' => 5, 'updatetime' => date('Y-m-d H:i:s'), 'updaterid' => $this->uid, 'updater' => $this->uname,]);
  395. return $res ? json_show(0, '操作成功') : json_show(1004, '操作失败');
  396. }
  397. //转单
  398. public function transfer()
  399. {
  400. if ($this->level == 1) return json_show(1004, '超管不允许操作');
  401. $param = $this->request->only([
  402. 'id',
  403. 'addr_list'=>[],
  404. "customerCode"=>""], 'post');
  405. $val = Validate::rule([
  406. 'id|报备的主键id' => 'require|number|gt:0',
  407. "customerCode|客户编号"=>"require|max:255",
  408. 'addr_list|收货地址' => 'require|array|max:100',
  409. ]);
  410. if (!$val->check($param)) return json_show(1004, $val->getError());
  411. $val2 = Validate::rule([
  412. 'receipt_quantity|收货数量' => 'require|number|gt:0|max:999999999',
  413. 'contactor|联系人' => 'require|max:255',
  414. 'mobile|联系电话' => 'require|mobile',
  415. 'addr_code|收货省市区编码' => 'require|array|length:3',
  416. 'addr|详细地址' => 'require|max:255',
  417. ]);
  418. foreach ($param['addr_list'] as $addr_list) {
  419. if (!$val2->check($addr_list)) return json_show(1004, $val2->getError());
  420. }
  421. $filing = Db::name('filing')
  422. ->field(true)
  423. ->where(['is_del' => 0, 'id' => $param['id'], 'status' => 2])
  424. ->findOrEmpty();
  425. if (empty($filing)) return json_show(1005, '该报备单不存在或不允许转单');
  426. $send_num = array_sum(array_column($param['addr_list'], 'receipt_quantity'));
  427. $wait_num = $filing['wait_num'] - $send_num ;
  428. if ($wait_num<0) return json_show(1004, '收货地址的收货总数超过报备单可转单数量');
  429. $userCommon = \app\admin\common\User::getIns();
  430. $supplier = $userCommon->handle('sInfo', ['code' => $filing['supplierNo']]);
  431. $names = $userCommon->handle('getCodeAndName', ['code' => [ $param['customerCode']]]);
  432. if (!isset($names['data'])) return json_show(1005, '该客户不存在');
  433. //level3账号都可以操作
  434. //level2账号的话,只有供应商负责人能操作
  435. if (($this->level == 2) && ($this->uid != $supplier['data']['personid'])) return json_show(1004, '只有供应商负责人才能操作');
  436. $date = date('Y-m-d H:i:s');
  437. Db::startTrans();
  438. try {
  439. $order_type = 4;//报备商品
  440. $order_source = 7;//报备转单
  441. $spuCode = makeNo('SKU');
  442. //商品表
  443. $goodIn= Db::name('good_zixun')
  444. ->insert([
  445. 'spuCode' => $spuCode,
  446. 'good_name' => $filing['good_name'],
  447. 'brand_id' => $filing['brand_id'],
  448. 'cat_id' => $filing['cat_id'],
  449. 'good_unit' => $filing['unit_id'],
  450. 'good_type' => 0,
  451. 'moq' => 1,
  452. 'customized' => $filing['make_day'],
  453. 'tax' => $filing['tax'],
  454. 'platform_id' => $filing['platform_id'],
  455. 'supplierNo' => $filing['supplierNo'],
  456. 'supplierName' => $supplier['data']['name'],
  457. 'is_auth' => 0,
  458. 'craft_desc' => $filing['good_name'],
  459. 'good_remark' => '',
  460. 'good_img' => $filing['good_img'],
  461. 'good_thumb_img' => '',
  462. 'good_info_img' => '',
  463. 'status' => 1,
  464. 'createrid' => $filing['updaterid'],
  465. 'creater' => $filing['updater'],
  466. 'is_del' => 0,
  467. 'addtime' => $date,
  468. 'updatetime' => $date,
  469. 'specinfo' => $filing['specinfo'],
  470. 'work_day' => $filing['make_day'],
  471. 'noble_metal' => $filing['noble_metal'],
  472. 'is_gold_price' => $filing['is_gold_price'],
  473. 'good_weight' => $filing['gold_weight'],
  474. 'config' => $filing['config'],
  475. 'other_config' => $filing['other_config'],
  476. 'weight' => $filing['weight'],
  477. 'supply_area' => $filing['supply_area'],
  478. 'is_diff' => $filing['is_diff'],
  479. 'pay_way' => $filing['pay_way'],
  480. 'send_way' => $filing['send_way'],
  481. 'companyNo' => $filing['customerCode'],
  482. 'companyName' => $filing['customerName'],
  483. 'proof_type' => '',
  484. 'proof_url' => '',
  485. 'order_type' => $order_type
  486. ]);
  487. if($goodIn==false) throw new \Exception("商品录入商品库失败");
  488. $orderCode = makeNo('QR');
  489. //订单表
  490. //sale
  491. $sale_id = Db::name('sale')->insertGetId([
  492. 'orderCode' => $orderCode,
  493. 'apply_id' => $filing['updaterid'],
  494. 'apply_name' => $filing['updater'],
  495. 'order_type' => $order_type,//报备商品
  496. 'order_source' => $order_source,//报备转单
  497. 'platform_id' => $filing['platform_id'],
  498. 'good_code' => $spuCode,
  499. 'skuCode' => '',
  500. 'cat_id' => $filing['cat_id'],
  501. 'good_name' => $filing['good_name'],
  502. 'good_num' => $filing['num'],
  503. 'good_type' => 1,
  504. 'origin_price' => $filing['cgd_charge'],
  505. 'sale_price' => $filing['price'],
  506. 'total_price' => round(bcmul($filing['price'], $filing['num'], 3), 2),
  507. 'post_fee' => 0,
  508. 'is_diff' => $filing['is_diff'],
  509. 'is_activity' => 0,
  510. 'activity_code' => '',
  511. 'is_stock' => 0,
  512. 'customer_code' => $param['customerCode'],
  513. 'customerName' => $names['data'][$param['customerCode']]??"",
  514. 'supplierNo' => $filing['customerCode'],
  515. 'supplierName' => $filing['customerName'],
  516. 'supNo' => $filing['supplierNo'],
  517. 'supName' => $filing['supplierName'],
  518. 'zxNo' => '',
  519. 'platform_order' =>$filing['filingCode'],
  520. 'send_num' => 0,
  521. 'wsend_num' => $filing['num'],
  522. 'th_num' => 0,
  523. 'th_fee' => 0,
  524. 'send_status' => 1,
  525. 'send_type' => 1,//直接发货
  526. 'remark' => '',
  527. 'status' => 0,
  528. 'is_del' => 0,
  529. 'proof_id' => 0,
  530. 'other_orderNo' => '',
  531. 'workNo' => '',
  532. 'poNo' => '',
  533. 'use_order' => 0,
  534. 'good_weight' => 0,
  535. 'gold_price' => 0,
  536. 'cost_price' => $filing['cost_fee'],
  537. 'diff_weight' => 0,
  538. 'diff_fee' => 0,
  539. 'returnCode' => '',
  540. 'addtime' => $date,
  541. 'updatetime' => $date,
  542. 'cgderid' => $supplier['data']['personid'],
  543. 'cgder' => $supplier['data']['person'],
  544. 'good_createrid' => $filing['updaterid'],
  545. 'good_creater' => $filing['updater'],
  546. ]);
  547. if($sale_id==false) throw new \Exception('订单生成失败');
  548. //仓库
  549. $wsm = Db::name('warehouse_info')
  550. ->field('id,wsm_code')
  551. ->where(['supplierNo' => $filing['supplierNo'], 'companyNo' => $filing['customerCode'], 'is_del' => 0])
  552. ->findOrEmpty();
  553. if (empty($wsm)) {
  554. $wsm_code = makeNo('WSM');
  555. $ws= Db::name('warehouse_info')->insert([
  556. 'wsm_code' => $wsm_code,
  557. 'name' => $supplier['data']['name'],
  558. 'wsm_type' => 2,
  559. 'supplierNo' => $supplier['data']['code'],
  560. 'addr' => '',
  561. 'addrs_code' => '',
  562. 'contactor' => 0,
  563. 'contactor_name' => 0,
  564. 'mobile' => '',
  565. 'position' => '',
  566. 'companyNo' => $filing['supplierNo'],
  567. 'status' => 1,
  568. 'is_del' => 0,
  569. 'addtime' => $date,
  570. 'updatetime' => $date,
  571. ]);
  572. if($ws==false)throw new \Exception('仓库生成失败');
  573. } else $wsm_code = $wsm['wsm_code'];
  574. //采购单
  575. $cgdCode = makeNo('CG');
  576. $cg= Db::name('purchease_order')->insert([
  577. 'cgdNo' => $cgdCode,
  578. 'bkcode' => '',
  579. 'wsm_code' => $wsm_code,
  580. 'cgder' => $supplier['data']['person'],
  581. 'cgder_id' => $supplier['data']['personid'],
  582. 'spuCode' => $spuCode,
  583. 'good_name' => $filing['good_name'],
  584. 'good_num' => $filing['num'],
  585. 'good_price' => $filing['cgd_charge'],
  586. 'total_fee' => round(bcmul($filing['cgd_charge'], $filing['num']), 2),
  587. 'pakge_fee' => $filing['pakge_fee'],
  588. 'cert_fee' => $filing['cert_fee'],
  589. 'open_fee' => $filing['open_fee'],
  590. 'delivery_fee' => $filing['delivery_fee'],
  591. 'mark_fee' => $filing['mark_fee'],
  592. 'demo_fee' => $filing['demo_fee'],
  593. 'diff_weight' => '0',
  594. 'diff_fee' => '0',
  595. 'gold_price' => '0',
  596. 'supplierNo' => $filing['supplierNo'],
  597. 'supplier_name' => $filing['supplierName'],
  598. 'companyNo' => $filing['customerCode'],
  599. 'companyName' => $filing['customerName'],
  600. 'send_status' => 1,
  601. 'send_num' => '0',
  602. 'wsend_num' => $filing['num'],
  603. 'remark' => '',
  604. 'status' => 0,
  605. 'lasttime' => $date,
  606. 'is_del' => 0,
  607. 'order_type' => $order_type,
  608. 'order_source' => $order_source,
  609. 'good_type' => 1,
  610. 'addtime' => $date,
  611. 'updatetime' => $date,
  612. 'good_createrid' => $filing['updaterid'],
  613. 'good_creater' => $filing['updater'],
  614. ]);
  615. if($cg==false)throw new \Exception('采购单生成失败');
  616. //台账
  617. $standing_bood_data = [
  618. 'standBookNo' => makeNo('IO'),
  619. 'orderCode' => $orderCode,
  620. 'sale_id' => $sale_id,
  621. 'customer_code' => $filing['companyCode'],
  622. 'supplierNo' => $filing['supplierNo'],
  623. 'order_type' => $order_type,
  624. 'order_source' => $order_source,
  625. 'spuCode' => $spuCode,
  626. 'addtime' => $date,
  627. 'updatetime' => $date,
  628. 'cgdNo' => $cgdCode,
  629. ];
  630. $i = 0;
  631. $order_send_insert = [];
  632. foreach ($param['addr_list'] as $addr) {
  633. //地址addr
  634. $addrid = Db::name('order_addr')->insertGetId([
  635. 'orderCode' => $orderCode,
  636. 'addr' => $addr['addr'],
  637. 'addr_code' => implode(',', $addr['addr_code']),
  638. 'contactor' => $addr['contactor'],
  639. 'mobile' => $addr['mobile'],
  640. 'customer_code' => $param['customerCode'],
  641. 'post_fee' => 0,
  642. 'receipt_quantity' => $addr['receipt_quantity'],
  643. 'is_del' => 0,
  644. 'addtime' => $date,
  645. 'updatetime' => $date,
  646. ]);
  647. if($addrid==false)throw new \Exception('地址生成失败');
  648. //发货单
  649. $outCode = makeNo('DF');
  650. //改变编码规则,将原来的编码后两位换成序列号
  651. //str_pad字符串填充
  652. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  653. $send= Db::name('order_out')->insert([
  654. 'orderCode' => $orderCode,
  655. 'outCode' => $outCode,
  656. 'apply_id' => $filing['updaterid'],
  657. 'apply_name' => $filing['updater'],
  658. 'addrid' => $addrid,
  659. 'post_name' => '',
  660. 'post_code' => '',
  661. 'post_fee' => 0,
  662. 'sendtime' => $date,
  663. 'send_num' => $addr['receipt_quantity'],
  664. 'check_num' => 0,
  665. 'error_num' => 0,
  666. 'wsm_code' => $wsm_code,
  667. 'order_type' => $order_type,
  668. 'status' => 0,
  669. 'addtime' => $date,
  670. 'updatetime' => $date,
  671. ]);
  672. if($send==false) throw new \Exception('发货单生成失败');
  673. $standing_bood_data['outCode'][] = $outCode;
  674. $order_send_insert[] = [
  675. 'cgdNo' => $cgdCode,
  676. 'outCode' => $outCode,
  677. 'send_num' => $addr['receipt_quantity'],
  678. 'bnCode' => '',
  679. 'status' => 1,
  680. 'addtime' => $date,
  681. 'updatetime' => $date,
  682. ];
  683. $i++;
  684. }
  685. //更新报备单
  686. $fillup= Db::name('filing')
  687. ->where(['is_del' => 0, 'id' => $param['id'], 'status' => 2])
  688. ->update([
  689. 'status' =>$wait_num>0?3:4,
  690. 'wait_num' =>$wait_num,
  691. 'transfer_num' =>$filing['transfer_num']+$send_num,
  692. 'updatetime' => $date,
  693. 'spuCode' => $spuCode,
  694. 'orderCode' =>$filing["orderCode"].$orderCode.",",
  695. 'reason' => '',
  696. 'updaterid' => $this->uid,
  697. 'updater' => $this->uname]);
  698. if($fillup==false)throw new \Exception('报备单更新失败');
  699. //待办已办先不处理
  700. //关联表
  701. $gu= Db::name('order_num')
  702. ->insert([
  703. 'orderCode' => $orderCode,
  704. 'cgdNo' => $cgdCode,
  705. 'spuCode' => $spuCode,
  706. 'companyNo' => $filing['customerCode'],
  707. 'good_num' => $filing['num'],
  708. 'wsend_num' => $filing['num'],
  709. 'send_num' => 0,
  710. 'wait_num' => $filing['num'],
  711. ]);
  712. if($gu==false) throw new \Exception('关联表新建失败');
  713. if ($order_send_insert) Db::name('order_send')->insertAll($order_send_insert);
  714. //处理台账
  715. if (isset($standing_bood_data['outCode']) && is_array($standing_bood_data['outCode'])) $standing_bood_data['outCode'] = implode(',', $standing_bood_data['outCode']);
  716. Db::name('standing_book')->insert($standing_bood_data);
  717. Db::commit();
  718. return json_show(0, '转单成功');
  719. } catch (Exception $exception) {
  720. Db::rollback();
  721. return json_show(1005, '转单失败,' . $exception->getMessage());
  722. }
  723. }
  724. //订单录入
  725. public function orderAdd()
  726. {
  727. $param = $this->request->param([
  728. "companyNo" => '',
  729. "poCode" => "",
  730. "workCode" => "",
  731. "khNo" => "",
  732. "qrdType" => 3,
  733. "goodName" => "",
  734. "tax" => "",
  735. "goodNum" => "",
  736. "goodPrice" => "",
  737. "sale_total" => "",
  738. "goodUnit" => "",
  739. "mobile" => "",
  740. "addr" => "",
  741. "addr_code" => "",
  742. "contactor" => "",
  743. "sendtime" => "",
  744. "cat_id" => '',
  745. "supplierNo" => "",
  746. "cgdPrice" => "",
  747. "cgd_total" => "",
  748. "platform_id" => "0",
  749. ], "post", "trim");
  750. $valid = Validate::rule([
  751. "companyNo|业务公司编号" => "require|max:255|min:1",
  752. "supplierNo|业务公司编号" => "require|max:255|min:1",
  753. "poCode|PO编号" => "require|max:255|min:1",
  754. "khNo|客户公司编号" => "require|max:255|min:1",
  755. "qrdType|订单类型" => "require|number|in:1,2,3",
  756. "goodName|商品名称" => "require|max:255|min:1",
  757. "goodUnit|商品单位" => "require|number|gt:0",
  758. "tax|税率" => "require|number|gt:0",
  759. "goodNum|商品数量" => "require|number|gt:0",
  760. "sale_total|销售总额" => "require|float|gt:0",
  761. "cgd_total|采购总额" => "require|float|gt:0",
  762. // "goodPrice|商品单价" => "require|float|gt:0",
  763. "mobile|联系人电话" => "require|number|mobile",
  764. "contactor|联系人" => "require|max:255|min:1",
  765. "addr|收货地址" => "require|max:255|min:1",
  766. "sendtime|发货时间" => "require|date",
  767. "cat_id|商品分类id" => "require|number|gt:0",
  768. // "cgdPrice|采购单价" => "require|float|gt:0",
  769. "platform_id|平台" => "require|number"
  770. ]);
  771. if ($valid->check($param) == false) return error_show(1004, $valid->getError());
  772. $qrdcode = makeNo("QR");
  773. $cgddcode = makeNo("CG");
  774. $goodCode = makeNo("SKU");
  775. $userCommon = \app\admin\common\User::getIns();
  776. $tmp = $userCommon->handle('getCodeAndName',['code'=>[$param['khNo'],$param['supplierNo'],$param['companyNo']]]);
  777. if(!isset($tmp['code']) || $tmp['code']!=0) return json_show($tmp['code'],$tmp['message'],$tmp['data']);
  778. if(!isset($tmp['data'][$param['khNo']])) return json_show(1004, "未找到客户数据");
  779. if(!isset($tmp['data'][$param['supplierNo']])) return json_show(1004, "未找到平台供应商数据");
  780. if(!isset($tmp['data'][$param['companyNo']])) return json_show(1004, "未找到平台业务公司数据");
  781. $payinfo = Db::name("platform")->where(["id"=> $param['platform_id'],"is_del"=>0])->findOrEmpty();
  782. if (empty($payinfo)) return error_show(1004, "平台信息未找到");
  783. if ($payinfo['status'] != 1) return error_show(1004, "平台信息已禁用");
  784. if($payinfo['is_select_pay_rate']==1 && channel_is_company($param['platform_id'],$param['companyNo']))return error_show(1004, "平台渠道包含当前业务公司 {$tmp['data'][$param['companyNo']]}");
  785. $supplierinfo = $userCommon->handle("hqInfo",["code"=>$param['supplierNo']]);
  786. if(!isset($supplierinfo['data'])|| empty($supplierinfo['data'])) return json_show(1004, "未找到供应商公司数据");
  787. $person =$supplierinfo['data']['child']??["person"=>'',"person_id"=>0];
  788. if($param['companyNo']== $supplierinfo['data']['relation_code']) return json_show(1004,'供应商和业务公司不能为同一家公司');
  789. $cgdprice = round($param['cgd_total']/$param['goodNum'],2);
  790. $saleprice = round($param['sale_total']/$param['goodNum'],2);
  791. $qrddata = [
  792. "orderCode" => $qrdcode,
  793. "apply_id" => $this->uid,
  794. "apply_name" => $this->uname,
  795. "order_type" => $param['qrdType'],
  796. "order_source" => 9,
  797. "platform_id" => $param['platform_id'],
  798. "good_code" => $goodCode,
  799. "skuCode" => '',
  800. "cat_id" => $param['cat_id'],
  801. "good_name" => $param['goodName'],
  802. "good_num" => $param['goodNum'],
  803. "good_type" => 1,
  804. "origin_price" => $cgdprice,
  805. "sale_price" => $saleprice,
  806. "total_price" =>$param['sale_total'],
  807. "post_fee" => 0,
  808. "is_diff" => 0,
  809. "is_activity" => 0,
  810. "activity_code" => '',
  811. "is_stock" => 0,
  812. "arrive_time" => $param['sendtime'],
  813. "customer_code" => $param['khNo'],
  814. "customerName" => $tmp['data'][$param['khNo']],
  815. "supplierNo" => $param['companyNo'],
  816. "supplierName" =>$tmp['data'][$param['companyNo']],
  817. "supName" => $tmp['data'][$param['supplierNo']],
  818. "supNo" => $param['supplierNo'],
  819. "platform_order" => $param['poCode'],
  820. "send_num" => $param['goodNum'],
  821. "wsend_num" => 0,
  822. "send_status" => 3,
  823. "send_type" => 1,
  824. "status" => 2,
  825. "is_del" => 0,
  826. "pay_id" => 0,
  827. "workNo" => $param['workCode'],
  828. "addtime" => date("Y-m-d H:i:s"),
  829. "updatetime" => date("Y-m-d H:i:s"),
  830. "cgderid" => $person['personid'],
  831. "cgder" => $person['person'],
  832. "good_createrid" => $this->uid,
  833. "good_creater" => $this->uname
  834. ];
  835. $orderCgd = [
  836. "orderCode" => $qrdcode,
  837. "cgdNo" => $cgddcode,
  838. "spuCode" => $goodCode,
  839. "good_num" => $param['goodNum'],
  840. "wsend_num" => 0,
  841. "send_num" => $param['goodNum'],
  842. "wait_num" => 0
  843. ];
  844. $cgddata = [
  845. "cgdNo" => $cgddcode,
  846. "bkcode" => '',
  847. "wsm_code" => "",
  848. "cgder_id" => $person['personid'],
  849. 'cgder' => $person['person'],
  850. "spuCode" => $goodCode,
  851. "good_name" => $param['goodName'],
  852. "good_num" => $param['goodNum'],
  853. "good_price" => $cgdprice,
  854. "total_fee" => $param['cgd_total'],
  855. "supplierNo" => $param['supplierNo'],
  856. "supplier_name" =>$tmp['data'][$param['supplierNo']],
  857. "companyNo" => $param['companyNo'],
  858. "companyName" => $tmp['data'][$param['companyNo']],
  859. "send_status" => 3,
  860. "send_num" => $param['goodNum'],
  861. "wsend_num" => 0,
  862. "status" => 3,
  863. "lasttime" => date("Y-m-d H:i:s"),
  864. "order_type" => $param['qrdType'],
  865. "order_source" => 9,
  866. "addtime" => date("Y-m-d H:i:s"),
  867. "updatetime" => date("Y-m-d H:i:s"),
  868. "good_createrid" => $this->uid,
  869. "good_creater" => $this->uname,
  870. ];
  871. $goodinfo = [
  872. "spuCode" => $goodCode,
  873. "good_name" => $param['goodName'],
  874. "brand_id" => 0,
  875. "cat_id" => $param['cat_id'],
  876. "good_unit" => $param['goodUnit'],
  877. "good_type" => 1,
  878. "moq" => 1,
  879. "customized" => 0,
  880. "platform_id" => $param['platform_id'],
  881. "tax" => $param['tax'],
  882. "supplierNo" => $param['supplierNo'],
  883. "supplierName" =>$tmp['data'][$param['supplierNo']],
  884. "is_auth" => 1,
  885. "craft_desc" => '',
  886. "good_remark" => '',
  887. "good_img" => '',
  888. "good_thumb_img" => '',
  889. "good_info_img" => '',
  890. "createrid" => $this->uid,
  891. "creater" => $this->uname,
  892. "specinfo" => '',
  893. "work_day" => 0,
  894. "noble_metal" => 0,
  895. "good_weight" => 0,
  896. "config" => "",
  897. "weight" => 0,
  898. "supply_area" => 0,
  899. "is_diff" => 0,
  900. "pay_way" => 0,
  901. "send_way" => 0,
  902. "companyNo" => $param['companyNo'],
  903. "companyName" => $tmp['data'][$param['companyNo']],
  904. "addtime" => date("Y-m-d H:i:s"),
  905. "updatetime" => date("Y-m-d H:i:s"),
  906. ];
  907. $orderAddr = [
  908. "orderCode" => $qrdcode,
  909. "addr" => $param['addr'],
  910. "addr_code" => $param['addr_code'],
  911. "contactor" => $param['contactor'],
  912. "mobile" => $param['mobile'],
  913. "arrive_time" => $param['sendtime'],
  914. "customer_code" => $param['khNo'],
  915. "receipt_quantity" => $param['goodNum'],
  916. "addtime" => date("Y-m-d H:i:s"),
  917. "updatetime" => date("Y-m-d H:i:s"),
  918. ];
  919. Db::startTrans();
  920. try {
  921. $qrd = Db::name("sale")->insert($qrddata);
  922. if ($qrd == false) throw new Exception("销售单生成失败");
  923. $qrd = Db::name("order_num")->insert($orderCgd);
  924. if ($qrd == false) throw new Exception("销售单采购管联生成失败");
  925. $qrd = Db::name("purchease_order")->insert($cgddata);
  926. if ($qrd == false) throw new Exception("采购单生成失败");
  927. $qrd = Db::name("good_zixun")->insert($goodinfo);
  928. if ($qrd == false) throw new Exception("商品信息录入生成失败");
  929. $qrd = Db::name("order_addr")->insert($orderAddr);
  930. if ($qrd == false) throw new Exception("销售单地址生成失败");
  931. Db::commit();
  932. return app_show(0, '订单生成成功');
  933. } catch (\Exception $exception) {
  934. Db::rollback();
  935. return error_show(1004, $exception->getMessage());
  936. }
  937. }
  938. public function orderInfo()
  939. {
  940. $param = $this->request->param(["orderCode"], "post", "trim");
  941. if ($param['orderCode'] == '') return error_show(1004, "订单编号不能为空");
  942. $saleinfo = Db::name("sale")->where(["orderCode" => $param['orderCode']])->findOrEmpty();
  943. if (empty($saleinfo)) return error_show(1004, "销售单不存在");
  944. if ($saleinfo['order_source'] != 9) return error_show(1004, "销售单来源不是网络录入");
  945. $cgd = Db::name("purchease_order")->alias("a")
  946. ->leftJoin("order_num b", "a.cgdNo=b.cgdNo")
  947. ->where(["b.orderCode" => $param['orderCode']])
  948. ->field("a.*")
  949. ->findOrEmpty();
  950. if (empty($cgd)) return error_show(1004, "采购单不存在");
  951. $goodinfo = Db::name("good_zixun")->where(["spuCode" => $saleinfo['good_code']])->findOrEmpty();
  952. if (empty($goodinfo)) return error_show(1004, "商品信息不存在");
  953. $addr = Db::name("order_addr")->where(["orderCode" => $param['orderCode']])->findOrEmpty();
  954. if (empty($addr)) return error_show(1004, "地址信息不存在");
  955. $addinfo = $addr['addr_code'] != '' ? json_decode($addr['addr_code'], true) ?? $addr['addr_code'] : '';
  956. if (is_string($addinfo) && $addinfo != '') {
  957. $addinfo = ["provice_code" => '', "city_code" => '', "area_code" => ''];
  958. list($addinfo['provice_code'], $addinfo['city_code'], $addinfo['area_code']) = explode(",", $addr['addr_code']);
  959. }
  960. $platform = Db::name("platform")->where(["id" => $saleinfo['platform_id']])->field("platform_name,pay_title")
  961. ->findOrEmpty();
  962. $userCommon =\app\admin\common\User::getIns();
  963. $names = $userCommon->handle('getCodeAndName', ['code' => [$saleinfo['supplierNo'], $saleinfo['customer_code']]]);
  964. $data = [
  965. "orderCode" => $saleinfo['orderCode'],
  966. "companyNo" => $saleinfo['supplierNo'],
  967. "companyName" => $names['data'][$saleinfo['supplierNo']] ?? '',//Db::name("supplier")->where(["code" => $saleinfo['supplierNo']])->value("name", ''),
  968. "poCode" => $saleinfo['platform_order'],
  969. "workCode" => $saleinfo['workNo'],
  970. "platform_id" => $saleinfo['platform_id'],
  971. "platform_name" =>$platform['platform_name']??"",
  972. "khNo" => $saleinfo['customer_code'],
  973. "khName" => $names['data'][$saleinfo['customer_code']] ?? '',//Db::name("customer_info")->where(["companyNo" => $saleinfo['customer_code']])->value("companyName", ''),
  974. "qrdType" => $saleinfo['order_type'],
  975. "goodName" => $saleinfo['good_name'],
  976. "tax" => $goodinfo['tax'],
  977. "goodUnit" => $goodinfo['good_unit'],
  978. "unitName" => Db::name("unit")->where(["id" => $goodinfo['good_unit']])->value("unit", ""),
  979. "goodNum" => $saleinfo['good_num'],
  980. "goodPrice" => $saleinfo['sale_price'],
  981. "sale_total" => $saleinfo['total_price'],
  982. "mobile" => $addr['mobile'],
  983. "addr" => $addr['addr'],
  984. "addr_cn" => GetAddr(json_encode($addinfo)),
  985. "addr_code" => $addr['addr_code'],
  986. "contactor" => $addr['contactor'],
  987. "buyerid" => $saleinfo['cgderid'],
  988. "buyer_name" => $saleinfo['cgder'],
  989. "sendtime" => $saleinfo['arrive_time'],
  990. "cat_id" => made($saleinfo['cat_id']),
  991. "cat_name" => Db::name("cat")->where(["id" => $saleinfo['cat_id']])->value("cat_name", ''),
  992. "supplierNo" => $cgd['supplierNo'],
  993. "supplierNanme" => $cgd['supplier_name'],
  994. "cgd_tax" => round((1 - $cgd['total_fee']/ $saleinfo['total_price']), 4) * 100,
  995. "cgdPrice" => $saleinfo['origin_price'],
  996. "cgd_total" => $cgd['total_fee'],
  997. "pay_id" => $saleinfo['pay_id'],
  998. "pay_name" =>$platform['pay_title']??"",
  999. ];
  1000. return app_show(0, "获取成功", $data);
  1001. }
  1002. public function orderEdit()
  1003. {
  1004. $param = $this->request->param([
  1005. "orderCode" => "",
  1006. "poCode" => "",
  1007. "workCode" => "",
  1008. "tax" => "",
  1009. "goodUnit" => "",
  1010. "mobile" => "",
  1011. "addr" => "",
  1012. "addr_code" => "",
  1013. "contactor" => "",
  1014. "sendtime" => "",
  1015. "supplierNo" => "",
  1016. "cgd_total" => "",
  1017. // "sale_total" => "",
  1018. ], "post", "trim");
  1019. $valid = Validate::rule([
  1020. "orderCode|销售单号" => "require|max:255",
  1021. "supplierNo|供应商公司编号" => "require|max:255|min:1",
  1022. "poCode|PO编号" => "require|max:255|min:1",
  1023. "mobile|联系人电话" => "require|number|mobile",
  1024. "goodUnit|商品单位" => "require|number|gt:0",
  1025. "contactor|联系人" => "require|max:255|min:1",
  1026. "addr|收货地址" => "require|max:255|min:1",
  1027. "sendtime|发货时间" => "require|date",
  1028. "tax|商品利率" => "require|number",
  1029. "cgd_total|采购总额" => "require|float|gt:0",
  1030. // "sale_total|销售总额" => "require|float|gt:0",
  1031. ]);
  1032. if ($valid->check($param) == false) return error_show(1004, $valid->getError());
  1033. $saleinfo = Db::name("sale")->where(["orderCode" => $param['orderCode']])->findOrEmpty();
  1034. if (empty($saleinfo)) return error_show(1004, "销售单不存在");
  1035. if ($saleinfo['order_source'] != 9) return error_show(1004, "销售单来源不是网络录入");
  1036. $cgd = Db::name("purchease_order")->alias("a")
  1037. ->leftJoin("order_num b", "a.cgdNo=b.cgdNo")
  1038. ->where(["b.orderCode" => $param['orderCode']])
  1039. ->field("a.*")
  1040. ->findOrEmpty();
  1041. if (empty($cgd)) return error_show(1004, "采购单不存在");
  1042. $userCommon = \app\admin\common\User::getIns();
  1043. $good = Db::name("good_zixun")->where(["spuCode" => $saleinfo['good_code']])->findOrEmpty();
  1044. if (empty($good)) return error_show(1004, "商品信息不存在");
  1045. $addr = Db::name("order_addr")->where(["orderCode" => $param['orderCode']])->findOrEmpty();
  1046. if (empty($addr)) return error_show(1004, "地址信息不存在");
  1047. $cgdPrice = round($param['cgd_total']/$saleinfo['good_num'],2);
  1048. // $salePrice = round($param['sale_total']/$saleinfo['good_num'],2);
  1049. $supplierinfo = $userCommon->handle("hqInfo",["code"=>$param['supplierNo']]);
  1050. if(!isset($supplierinfo['data'])|| empty($supplierinfo['data'])) return json_show(1004, "未找到供应商公司数据");
  1051. $person =$supplierinfo['data']['child']??["person"=>'',"person_id"=>0];
  1052. if($cgd['companyNo']== $supplierinfo['data']['relation_code']) return json_show(1004,'供应商和业务公司不能为同一家公司');
  1053. $qrddata = [
  1054. "origin_price" => $cgdPrice,
  1055. "arrive_time" => $param['sendtime'],
  1056. "platform_order" => $param['poCode'],
  1057. "workNo" => $param['workCode'],
  1058. "updatetime" => date("Y-m-d H:i:s"),
  1059. "cgderid" => $person['personid'],
  1060. "cgder" => $person['person']
  1061. ];
  1062. $cgddata = [
  1063. "cgder_id" => $person['personid'],
  1064. 'cgder' => $person['person'],
  1065. "good_price" => $cgdPrice,
  1066. "total_fee" => $param['cgd_total'],
  1067. "supplierNo" => $param['supplierNo'],
  1068. "supplier_name" => $supplierinfo['data']['name'],
  1069. // "companyNo"=>$param['companyNo'],
  1070. "updatetime" => date("Y-m-d H:i:s"),
  1071. ];
  1072. $goodinfo = [
  1073. "good_unit" => $param['goodUnit'],
  1074. "tax" => $param['tax'],
  1075. "supplierNo" => $param['supplierNo'],
  1076. // "companyNo" => $param['companyNo'],
  1077. "updatetime" => date("Y-m-d H:i:s"),
  1078. ];
  1079. $orderAddr = [
  1080. "addr" => $param['addr'],
  1081. "addr_code" => $param['addr_code'],
  1082. "contactor" => $param['contactor'],
  1083. "mobile" => $param['mobile'],
  1084. "arrive_time" => $param['sendtime'],
  1085. // "customer_code" => $param['khNo'],
  1086. "updatetime" => date("Y-m-d H:i:s"),
  1087. ];
  1088. Db::startTrans();
  1089. try {
  1090. $qrd = Db::name("sale")->where($saleinfo)->update($qrddata);
  1091. if ($qrd == false) throw new Exception("销售单更新失败");
  1092. $qrd = Db::name("purchease_order")->where($cgd)->update($cgddata);
  1093. if ($qrd == false) throw new Exception("采购单更新失败");
  1094. $qrd = Db::name("good_zixun")->where($good)->update($goodinfo);
  1095. if ($qrd == false) throw new Exception("商品信息更新失败");
  1096. $qrd = Db::name("order_addr")->where($addr)->update($orderAddr);
  1097. if ($qrd == false) throw new Exception("销售单地址更新失败");
  1098. Db::commit();
  1099. return app_show(0, '订单更新成功');
  1100. } catch (\Exception $exception) {
  1101. Db::rollback();
  1102. return error_show(1004, $exception->getMessage());
  1103. }
  1104. }
  1105. }