Filing.php 54 KB

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