SplitSale.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <?php
  2. namespace app\command;
  3. use app\admin\common\User;
  4. use think\console\Command;
  5. use think\console\Input;
  6. use think\console\Output;
  7. use think\Exception;
  8. use think\facade\Cache;
  9. use think\facade\Db;
  10. class SplitSale extends Command
  11. {
  12. private $i = 0;//各种编码的自增变量
  13. private $sale_insert = [];//wsm_sale_caixiao的新增数据
  14. private $cgd_insert = [];//wsm_cgd_caixiao的新增数据
  15. private $noble_metal = [1 => '18K', 2 => '24K', 3 => '白银'];//贵金属种类对应文本
  16. private $cgd_key = 0;//新增到wsm_cgd_caixiao的数组下标,从0开始
  17. private $order_source = 8;//支付渠道
  18. protected function configure()
  19. {
  20. $this->setName('split_sale')->setDescription('销售订单拆分');
  21. parent::configure();
  22. }
  23. protected function execute(Input $input, Output $output)
  24. {
  25. try {
  26. $key = 'split_sale_';
  27. $rs = Cache::store('redis')->get($key);
  28. if ($rs) return true;
  29. Cache::store('redis')->set($key, 1, 60 * 15);
  30. Db::startTrans();
  31. try {
  32. $data = Db::name('sale')
  33. ->alias('a')
  34. ->leftJoin('platform b', 'b.id=a.platform_id')
  35. ->leftJoin('good_proof c', 'c.id=a.proof_id')
  36. ->field('a.*,b.platform_name,b.use_type,c.proof_url')
  37. ->where([
  38. ['a.is_del', '=', 0],
  39. ['a.updatetime', '>=', date('Y-m-d H:i:s', time() - 5 * 60)],
  40. ['a.pay_id', '<>', 0]
  41. ])
  42. ->cursor();
  43. // $cgd_insert_tmp_data=[];
  44. $userCommon = User::getIns();
  45. foreach ($data as $sale) {
  46. //补充商品信息
  47. if ($sale['order_type'] == 3) {
  48. //咨询相关
  49. $good = Db::name('consult_bids')
  50. ->field('b.noble_metal,c.brand_name brand,d.unit,a.cost_desc,a.good_weight noble_weight,b.tax,a.delivery_day,0 lead_time')
  51. ->alias('a')
  52. ->rightJoin('good_zixun b', 'b.is_del=0 AND b.spuCode=a.spuCode')
  53. ->leftJoin('brand c', 'c.id=a.brand_id')
  54. ->leftJoin('unit d', 'd.id=a.unit_id')
  55. ->where(['a.is_del' => 0, 'a.spuCode' => $sale['good_code']])
  56. ->findOrEmpty();
  57. } elseif ($sale['order_type'] == 4) {
  58. //报备单
  59. $good = Db::name('filing')
  60. ->field('a.noble_metal,c.brand_name brand,d.unit,a.cost_desc,a.gold_weight noble_weight,b.tax,a.delivery_day,0 lead_time')
  61. ->alias('a')
  62. ->rightJoin('good_zixun b', 'b.is_del=0 AND b.spuCode=a.spuCode')
  63. ->leftJoin('brand c', 'c.id=a.brand_id')
  64. ->leftJoin('unit d', 'd.id=a.unit_id')
  65. ->where(['a.is_del' => 0, 'a.orderCode' => $sale['good_code']])
  66. ->findOrEmpty();
  67. } else {
  68. $good = Db::name('good')
  69. ->field('b.noble_metal,c.brand_name brand,d.unit,b.craft_desc cost_desc,b.noble_weight,b.tax,b.delivery_day,b.lead_time')
  70. ->alias('b')
  71. ->leftJoin('brand c', 'c.id=b.brand_id')
  72. ->leftJoin('unit d', 'd.id=b.good_unit')
  73. ->where(['b.is_del' => 0, 'b.spuCode' => $sale['good_code']])
  74. ->findOrEmpty();
  75. }
  76. $sale['plan_price'] = Db::name("good_nake")->where(["spuCode"=>$sale['good_code'],"is_del"=>0])
  77. ->order("min_num asc")->value("nake_total",0);
  78. $sale['plan_total'] = round($sale['good_num'] * $sale['plan_price'],2);
  79. //贵金属分类转换文本
  80. $good['noble_metal'] = $this->noble_metal[$good['noble_metal'] ?? 0] ?? '';
  81. //相关数据合并
  82. $sale = array_merge($sale, $good);
  83. //支付渠道相关信息
  84. $pay_rates = Db::name('pay_log')
  85. ->where(['is_del' => 0, 'pay_id' => $sale['pay_id'], 'orderCode' => $sale['orderCode']])
  86. ->where( 'companyNo', 'not in',["KH","GYS"])
  87. ->field(true)
  88. ->order(['weight' => 'desc'])
  89. ->select()
  90. ->toArray();
  91. //关联的采购单信息
  92. $cgd = Db::name('order_num')
  93. ->alias('a')
  94. ->field('b.*,c.addtime bktime,c.apply_id bkcreater')
  95. ->leftJoin('purchease_order b', 'b.cgdNo=a.cgdNo')
  96. ->leftJoin('purchease c', 'c.bk_code=b.bkcode')
  97. ->where('a.orderCode', $sale['orderCode'])
  98. ->findOrEmpty();
  99. //采购总金额和销售总金额
  100. $cgd_total = $sale_total = $sale['total_price'];
  101. //客户
  102. $customer = ['No' => $sale['customer_code'], 'name' => $sale['customerName']];
  103. foreach ($pay_rates as $keys=>$pay_rate) {
  104. //生成新的采购单号和销售单号
  105. $cgdNo = makeNo('CG');
  106. $cgdNo = substr($cgdNo, 0, -2) . str_pad($this->i, 2, '0', STR_PAD_LEFT);
  107. $orderCode = makeNo('QR');
  108. $orderCode = substr($orderCode, 0, -2) . str_pad($this->i, 2, '0', STR_PAD_LEFT);
  109. $this->i++;
  110. //计算渠道业务公司采购单单价。
  111. $cgd_total = bcsub($cgd_total, bcmul($sale['total_price'] ?? 0, round($pay_rate['rate'] / 100, 4), 5), 5);
  112. //此次销售单业务公司信息
  113. $supplier = ['No' => $pay_rate['companyNo'], 'name' => $pay_rate['companyName'],"pay_name"=>$pay_rate['pay_name']];
  114. $this->_handle_sale_caixiao($sale, $orderCode, $cgdNo, $sale_total, $customer, $supplier);
  115. $this->_handle_cgd_caixiao($cgd, $sale, $pay_rate, $cgdNo, $orderCode, $cgd_total);
  116. $sale['origin_price'] = $sale['good_num'] > 0 ? bcdiv($cgd_total, $sale['good_num'], 5) : 0;
  117. //下一个渠道公司/原业务公司的 客户信息
  118. $customer= ['No' => $pay_rate['companyNo'], 'name' => $pay_rate['companyName']];
  119. $sale_total =$cgd_total; //下一个渠道公司/原业务公司的 销售价未此次的采购单价
  120. //判断是否是最后一个渠道遍历。最后一次需要额外生成一个销售单给原业务公司;
  121. if($keys == count($pay_rates)-1){
  122. $orderCode = makeNo('QR');
  123. $orderCode = substr($orderCode, 0, -2) . str_pad($this->i, 2, '0', STR_PAD_LEFT);
  124. $supplier = ['No' => $sale['supplierNo'], 'name' => $sale['supplierName'],"pay_name"=>$pay_rate['pay_name']];
  125. $this->_handle_sale_caixiao($sale, $orderCode, $cgd['cgdNo'] ?? '', $sale_total, $customer, $supplier);
  126. }
  127. //把自己覆盖到上一个记录的供应商记录中
  128. if (isset($this->cgd_insert[$this->cgd_key - 1])) {
  129. $temp = $userCommon->handle('hqInfo', ['code' =>$supplier['No']]);
  130. $supplier = $temp['data'] ?? [];
  131. $this->cgd_insert[$this->cgd_key - 1]['supplierNo'] =$supplier['relation_code'];
  132. $this->cgd_insert[$this->cgd_key - 1]['supplier_name'] = $supplier['relation_name'];
  133. $temps = $userCommon->handle('sInfo', ['code' =>$supplier['relation_code']]);
  134. $suppliers = $temps['data'] ?? [];
  135. $this->cgd_insert[$this->cgd_key - 1]['supplier_persion'] = $suppliers['person'] ?? '';
  136. $this->cgd_insert[$this->cgd_key - 1]['supplier_persionid'] = $suppliers['personid'] ?? 0;
  137. }
  138. }
  139. //清空该变量,以防止多个销售单覆盖数据的情况
  140. // $cgd_insert_tmp_data = array_merge($cgd_insert_tmp_data, $this->cgd_insert);
  141. //批量新增改为单次新增
  142. if($this->cgd_insert) Db::name('cgd_caixiao')->insertAll($this->cgd_insert);
  143. $this->cgd_insert = [];
  144. $this->cgd_key = 0;
  145. }
  146. // if ($cgd_insert_tmp_data) Db::name('cgd_caixiao')->insertAll($cgd_insert_tmp_data);
  147. if ($this->sale_insert) Db::name('sale_caixiao')->insertAll($this->sale_insert);
  148. Db::commit();
  149. // $output->writeln('处理完成');
  150. } catch (Exception $e) {
  151. Db::rollback();
  152. $output->writeln('事务回滚:' . $e->getMessage() . '||' . $e->getFile() . '||' . $e->getLine());
  153. }
  154. Cache::store('redis')->set($key, 0);
  155. } catch (Exception $exception) {
  156. $output->writeln('脚本执行出错,' . $exception->getMessage() . '||' . $exception->getFile() . '||' . $exception->getLine());
  157. }
  158. }
  159. //构建销售单
  160. private function _handle_sale_caixiao(array $sale = [], string $orderCode = '', string $cgdNo = '', float $sale_total = 0.00, array $customer = [], array $supplier = [])
  161. {
  162. $sale_price = $sale['good_num'] > 0 ? bcdiv($sale_total, $sale['good_num'], 5) : 0;
  163. $tmp_sale = [
  164. 'origin_price' =>round( $sale['origin_price'] ?? 0, 2),
  165. 'origin_plan_price' =>round( $sale['plan_price'] ?? 0, 2),
  166. 'total_origin_price' => round($sale['origin_price']*$sale['good_num'],2),
  167. 'total_origin_price_plan' => $sale['plan_total'],
  168. 'pay_source' => $supplier['pay_name'],
  169. 'sale_price' => round($sale_price, 2),
  170. 'total_price' => $sale_total,
  171. 'post_fee' => $sale['post_fee'] ?? 0,
  172. 'is_diff' => $sale['is_diff'] ?? 0,
  173. 'send_num' => $sale['send_num'] ?? 0,
  174. 'wsend_num' => $sale['wsend_num'] ?? 0,
  175. 'th_num' => $sale['th_num'] ?? 0,
  176. 'send_type' => $sale['send_type'] ?? 0,
  177. 'gold_price' => $sale['gold_price'] ?? 0,
  178. 'cost_price' => $sale['cost_price'] ?? 0,
  179. 'status' => $sale['status'] ?? 0,
  180. 'updatetime' => $sale['updatetime'],
  181. 'delivery_day' => $sale['delivery_day'] ?? 0,
  182. 'th_fee' => round(bcmul($sale_price, $sale['th_num'] ?? 0, 3), 2),
  183. 'cost_fee' => $sale['cost_price'] ?? 0,
  184. 'diff_fee' => $sale['diff_fee'] ?? 0,
  185. 'diff_weight' => $sale['diff_weight'] ?? 0,
  186. 'send_status' => $sale['send_status'] ?? 0,
  187. ];
  188. $tmp = Db::name('sale_caixiao')
  189. ->field('id')
  190. ->where(['oldCode' => $sale['orderCode'], 'customer_code' => $customer['No']])
  191. ->findOrEmpty();
  192. if (!empty($tmp)) {
  193. Db::name('sale_caixiao')
  194. ->where('id', $tmp['id'])
  195. ->update($tmp_sale);
  196. } else {
  197. $this->sale_insert[] = array_merge($tmp_sale, [
  198. 'orderCode' => $orderCode,
  199. 'apply_id' => $sale['apply_id'] ?? 0,
  200. 'apply_name' => $sale['apply_name'] ?? '',
  201. 'order_type' => $sale['order_type'] ?? 0,
  202. 'order_source' => $this->order_source,
  203. 'platform_id' => $sale['platform_name'] ?? '',
  204. 'platform_type' => $sale['use_type'] ?? '',
  205. 'good_code' => $sale['good_code'] ?? '',
  206. 'cat_id' => $sale['cat_id'] ?? 0,
  207. 'cat_name' => json_encode($this->_get_cat_list($sale['cat_id']), JSON_UNESCAPED_UNICODE),
  208. 'good_name' => $sale['good_name'] ?? '',
  209. 'good_num' => $sale['good_num'] ?? 0,
  210. 'good_type' => $sale['good_type'] ?? 0,
  211. 'is_activity' => $sale['is_activity'] ?? 0,
  212. 'is_stock' => $sale['is_stock'] ?? 0,
  213. 'arrive_time' => $sale['arrive_timefvc'] ?? '',
  214. 'customer_code' => $customer['No'] ?? '',
  215. 'customer_name' => $customer['name'] ?? '',
  216. 'supplierNo' => $supplier['No'] ?? '',
  217. 'supplier_name' => $supplier['name'] ?? '',
  218. 'zxNo' => $sale['zxNo'] ?? '',
  219. 'proof_id' => $sale['proof_id'] ?? 0,
  220. 'proof_url' => $sale['proof_url'] ?? '',
  221. 'other_orderNo' => $sale['other_orderNo'],
  222. 'paytime' => $sale['paytime'] ?? '',
  223. 'workNo' => $sale['workNo'] ?? '',
  224. 'poNo' => $sale['platform_order'] ?? '',
  225. 'use_order' => $sale['use_order'],
  226. 'good_weight' => $sale['good_weight'] ?? 0,
  227. 'addtime' => $sale['addtime'],
  228. 'noble_metal' => $sale['noble_metal'] ?? '',
  229. 'brand' => $sale['brand'] ?? '',
  230. 'unit' => $sale['unit'] ?? '',
  231. 'cost_desc' => $sale['cost_desc'] ?? '',
  232. 'noble_weight' => $sale['noble_weight'] ?? 0,
  233. 'tax' => $sale['tax'] ?? '',
  234. 'lead_time' => $sale['lead_time'] ?? 0,
  235. 'depart' => isset($sale['apply_id']) ? get_company_name_by_uid($sale['apply_id']) : '',
  236. 'cgdNo' => $cgdNo,
  237. 'total_origin_price' => round($sale['origin_price']*$sale['good_num'],2),
  238. 'total_origin_price_plan' => $sale['plan_total'],
  239. 'pay_id' => $sale['pay_id'],
  240. 'pay_source' => $supplier['pay_name'],
  241. 'oldCode' => $sale['orderCode'],
  242. ]);
  243. }
  244. }
  245. //构建采购单
  246. private function _handle_cgd_caixiao(array $cgd = [], array $sale = [], array $pay_rate = [], string $cgdNo = '', string $orderCode = '', float $cgd_total = 0.00)
  247. {
  248. $good_price = $sale['good_num'] > 0 ? bcdiv($cgd_total, $sale['good_num'], 5) : 0;
  249. $tmp_cgd = [
  250. 'good_price' => round($good_price, 2),
  251. 'total_fee' => $cgd_total,
  252. 'pakage_fee' => $cgd['pakge_fee'] ?? 0,
  253. 'open_fee' => $cgd['open_fee'] ?? 0,
  254. 'cert_fee' => $cgd['cert_fee'] ?? 0,
  255. 'delivery_fee' => $cgd['delivery_fee'] ?? 0,
  256. 'mark_fee' => $cgd['mark_fee'] ?? 0,
  257. 'teach_fee' => $cgd['teach_fee'] ?? 0,
  258. 'nake_fee' => $cgd['nake_fee'] ?? 0,
  259. 'demo_fee' => $cgd['demo_fee'] ?? 0,
  260. 'weight' => $cgd['weight'] ?? 0,
  261. 'diff_weight' => $sale['diff_weight'] ?? 0,
  262. 'diff_fee' => $sale['diff_fee'] ?? 0,
  263. 'gold_price' => $sale['gold_price'] ?? 0,
  264. 'send_num' => $sale['send_num'] ?? 0,
  265. 'wsend_num' => $sale['wsend_num'] ?? 0,
  266. 'status' => $cgd['status'] ?? '',
  267. 'order_type' => $sale['order_type'],
  268. 'order_source' => $this->order_source,
  269. 'good_type' => $sale['good_type'] ?? '',
  270. 'last_time' => $cgd['last_time'] ?? '',
  271. 'send_type' => $sale['send_type'] ?? '',
  272. 'send_status' => $sale['send_status'] ?? '',
  273. 'th_num' => $sale['th_num'] ?? 0,
  274. 'th_fee' => round(bcmul($good_price, $sale['th_num'] ?? 0, 3), 2),
  275. 'updatetime' => $sale['updatetime'],
  276. ];
  277. $tmp = Db::name('cgd_caixiao')
  278. ->field('id')
  279. ->where(['oldCode' => $sale['orderCode'], 'companyNo' => $pay_rate['companyNo']])
  280. ->findOrEmpty();
  281. if (!empty($tmp)) {
  282. Db::name('cgd_caixiao')
  283. ->where('id', $tmp['id'])
  284. ->update($tmp_cgd);
  285. } else {
  286. $this->cgd_insert[$this->cgd_key] = array_merge($tmp_cgd, [
  287. 'cgdNo' => $cgdNo,
  288. 'bkcode' => $cgd['bkcode'] ?? '',
  289. 'wsm_code' => $cgd['wsm_code'] ?? '',
  290. 'cgder' => $sale['cgder'] ?? '',
  291. 'cgder_id' => $sale['cgderid'] ?? 0,
  292. 'depart' => isset($cgd['cgder_id']) ? get_company_name_by_uid($cgd['cgder_id']) : '',
  293. 'qrdNo' => $orderCode,
  294. 'spuCode' => $cgd['spuCode'] ?? $sale['good_code'],
  295. 'good_name' => $sale['good_name'],
  296. 'skuCode' => $cgd['skuCode'] ?? '',
  297. 'good_num' => $sale['good_num'] ?? 0,
  298. 'cat_name' => json_encode($this->_get_cat_list($sale['cat_id']), JSON_UNESCAPED_UNICODE),
  299. 'companyNo' => $pay_rate['companyNo'],
  300. 'companyName' => $pay_rate['companyName'],
  301. 'supplierNo' => $sale['supplierNo'],
  302. 'supplier_name' => $sale['supplierName'],
  303. 'bktime' => $cgd['bktime'] ?? '',
  304. 'bkcreater' => $cgd['bkcreater'] ?? '',
  305. 'noble_metal' => $sale['noble_metal'] ?? '',
  306. 'brand' => $sale['brand'] ?? '',
  307. 'unit' => $sale['unit'] ?? '',
  308. 'cost_desc' => $sale['cost_desc'] ?? '',
  309. 'noble_weight' => $sale['noble_weight'] ?? '',
  310. 'tax' => $sale['tax'] ?? '',
  311. 'is_stock' => $sale['is_stock'],
  312. 'delivery_day' => $sale['delivery_day'] ?? 0,
  313. 'lead_time' => $sale['lead_time'] ?? 0,
  314. 'is_diff' => $sale['is_diff'],
  315. 'addtime' => $sale['addtime'],
  316. 'supplier_persion' => '',
  317. 'supplier_persionid' => '',
  318. 'pay_id' => $sale['pay_id'],
  319. 'oldCode' => $sale['orderCode']
  320. ]);
  321. $this->cgd_key++;
  322. }
  323. }
  324. //获取分类层级信息,id、cat_name(分类名称)和fund_code(财务核算码)
  325. private function _get_cat_list($var, $data = [])
  326. {
  327. $str = Db::name('cat')
  328. ->field('id,cat_name,fund_code,pid')
  329. ->where(['id' => $var])
  330. ->findOrEmpty();
  331. if ($str == false) return [];
  332. $vmn = [];
  333. $vmn['id'] = $str['id'];
  334. $vmn['cat_name'] = $str['cat_name'];
  335. $vmn['fund_code'] = $str['fund_code'];
  336. array_unshift($data, $vmn);
  337. if ($str['pid'] == 0) return $data;
  338. else return $this->_get_cat_list($str['pid'], $data);
  339. }
  340. }