Filing.php 57 KB

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