截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FaceSheetOrderLogic.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\logic\express_assistant;
  20. use app\api\controller\Team;
  21. use app\common\basics\Logic;
  22. use app\common\enum\NoticeEnum;
  23. use app\common\enum\OrderEnum;
  24. use app\common\enum\OrderLogEnum;
  25. use app\common\enum\PayEnum;
  26. use app\common\enum\TeamEnum;
  27. use app\common\logic\OrderLogLogic;
  28. use app\common\model\Delivery;
  29. use app\common\model\goods\GoodsItem;
  30. use app\common\model\order\Order;
  31. use app\common\model\face_sheet\FaceSheetSender;
  32. use app\common\model\face_sheet\FaceSheetTemplate;
  33. use app\common\model\Express;
  34. use app\common\model\order\OrderGoods;
  35. use app\common\model\team\TeamJoin;
  36. use app\common\model\user\User;
  37. use app\common\server\AreaServer;
  38. use app\common\server\printing\Kuaidi100;
  39. use app\common\server\UrlServer;
  40. use think\facade\Db;
  41. /**
  42. * 电子面单订单打印
  43. * Class FaceSheetOrderLogic
  44. * @package app\shop\logic\express_assistant
  45. */
  46. class FaceSheetOrderLogic extends Logic
  47. {
  48. /**
  49. * @notes 获取待发货订单列表
  50. * @param $get
  51. * @param $shop_id
  52. * @return array
  53. * @throws \think\db\exception\DataNotFoundException
  54. * @throws \think\db\exception\DbException
  55. * @throws \think\db\exception\ModelNotFoundException
  56. * @author 段誉
  57. * @date 2023/2/13 17:32
  58. */
  59. public static function lists($get, $shop_id)
  60. {
  61. $where = [
  62. ['O.order_status', '=', OrderEnum::ORDER_STATUS_DELIVERY],
  63. ['O.pay_status', '=', PayEnum::ISPAID],
  64. ['O.delivery_type', '=', OrderEnum::DELIVERY_TYPE_EXPRESS],
  65. ['O.shop_id', '=', $shop_id],
  66. ];
  67. if (!empty($get['keyword_type']) and !empty($get['keyword'])) {
  68. switch ($get['keyword_type']) {
  69. case 'order_sn':
  70. $where[] = ['O.order_sn', '=', $get['keyword']];
  71. break;
  72. case 'user_sn':
  73. $where[] = ['U.sn', 'like', '%' . $get['keyword'] . '%'];
  74. break;
  75. case 'nickname':
  76. $where[] = ['U.nickname', 'like', '%' . $get['keyword'] . '%'];
  77. break;
  78. case 'consignee':
  79. $where[] = ['O.consignee', 'like', '%' . $get['keyword'] . '%'];
  80. break;
  81. case 'consignee_mobile':
  82. $where[] = ['O.mobile', '=', $get['keyword']];
  83. break;
  84. }
  85. }
  86. if (!empty($get['goods_name']) and $get['goods_name']) {
  87. $where[] = ['OG.goods_name', 'like', '%' . $get['goods_name'] . '%'];
  88. }
  89. if (!empty($get['start_time']) and $get['start_time']) {
  90. $where[] = ['O.create_time', '>=', strtotime($get['start_time'])];
  91. }
  92. if (!empty($get['end_time']) and $get['end_time']) {
  93. $where[] = ['O.create_time', '<=', strtotime($get['end_time'])];
  94. }
  95. // 排除未拼团成功订单
  96. $exclude = TeamJoin::where('status', '<>', TeamEnum::TEAM_STATUS_SUCCESS)->column('order_id');
  97. $exclude = array_unique($exclude);
  98. $count = Order::where($where)->alias('O')
  99. ->join('user U', 'U.id = O.user_id')
  100. ->join('orderGoods OG', 'OG.order_id = O.id')
  101. ->leftJoin('team_join TJ', "TJ.order_id = O.id and TJ.status = " . TeamEnum::TEAM_STATUS_SUCCESS)
  102. ->whereNotIn('O.id', $exclude)
  103. ->count('O.id');
  104. $lists = Order::alias('O')
  105. ->field(
  106. 'O.id,O.user_id,O.order_type,O.order_sn,O.order_status,O.total_num,
  107. O.order_amount,O.delivery_type,O.consignee,O.mobile,O.province,O.city,O.district,
  108. O.address,O.create_time,TJ.status as team_join_status'
  109. )
  110. ->where($where)
  111. ->whereNotIn('O.id', $exclude)
  112. ->join('user U', 'U.id = O.user_id')
  113. ->join('orderGoods OG', 'OG.order_id = O.id')
  114. ->leftJoin('team_join TJ', "TJ.order_id = O.id and TJ.status = " . TeamEnum::TEAM_STATUS_SUCCESS)
  115. ->order(['O.id' => 'desc'])
  116. ->page($get['page'], $get['limit'])
  117. ->select();
  118. foreach ($lists as &$item) {
  119. $user = User::field('nickname,sn')->where(['id' => $item['user_id']])->find();
  120. $item['user'] = $user['nickname'];
  121. $item['order_type'] = Order::getOrderType($item['order_type']);
  122. $item['order_status'] = Order::getOrderStatus($item['order_status']);
  123. $item['delivery_type'] = Order::getDeliveryType($item['delivery_type']);
  124. $item['address'] = AreaServer::getAddress([$item['province'], $item['city'], $item['district']], $item['address']);
  125. $orderGoods = OrderGoods::where(['order_id' => $item['id']])->select();
  126. $orderGoodsData = [];
  127. foreach ($orderGoods as $og) {
  128. $orderGoodsData[] = [
  129. 'id' => $og['id'],
  130. 'goods_price' => $og['goods_price'],
  131. 'goods_num' => $og['goods_num'],
  132. 'goods_name' => $og['goods_name'],
  133. 'spec_value_str' => $og['spec_value'],
  134. 'image' => UrlServer::getFileUrl($og['image']),
  135. ];
  136. }
  137. $item['orderGoods'] = $orderGoodsData;
  138. }
  139. return ['count' => $count, 'lists' => $lists];
  140. }
  141. /**
  142. * @notes 打印
  143. * @param $params
  144. * @return bool
  145. * @throws \think\db\exception\DataNotFoundException
  146. * @throws \think\db\exception\DbException
  147. * @throws \think\db\exception\ModelNotFoundException
  148. * @author 段誉
  149. * @date 2023/2/13 18:46
  150. */
  151. public static function print($params)
  152. {
  153. $template = FaceSheetTemplate::findOrEmpty($params['template_id'])->toArray();
  154. $sender = FaceSheetSender::findOrEmpty($params['sender_id'])->toArray();
  155. $express = Express::findOrEmpty($template['express_id'])->toArray();
  156. $order = Order::with('orderGoods')
  157. ->where('shop_id', $params['shop_id'])
  158. ->where('id', $params['order_id'])
  159. ->findOrEmpty()
  160. ->toArray();
  161. $result = self::singlePrint($order, $template, $sender, $express, $params['admin_id'], $params['shop_id']);
  162. if ($result !== true) {
  163. // 打印电子面单出错,中断打印
  164. self::$error = '订单' . $order['order_sn'] . '打印出错:' . $result;
  165. return false;
  166. }
  167. return true;
  168. }
  169. /**
  170. * @notes 打印
  171. * @param $order
  172. * @param $template
  173. * @param $sender
  174. * @param $express
  175. * @param $admin_id
  176. * @return bool|string
  177. * @author 段誉
  178. * @date 2023/2/13 18:46
  179. */
  180. public static function singlePrint($order, $template, $sender, $express, $admin_id, $shop_id)
  181. {
  182. Db::startTrans();
  183. try {
  184. $goodsName = '';
  185. $totalWeight = 0;
  186. foreach($order['orderGoods'] as $item) {
  187. if (empty($item['weight'])) {
  188. $item['weight'] = GoodsItem::where('id', $item['item_id'])->value('weight');
  189. }
  190. $totalWeight += $item['weight'];
  191. $goodsName .= $item['goods_name'] . ' (' . $item['spec_value'] . $item['goods_num'] . '件)\n';
  192. }
  193. // 打印电子面单
  194. $result = (new Kuaidi100($shop_id))->print([
  195. 'order' => $order,
  196. 'template' => $template,
  197. 'sender' => $sender,
  198. 'express' => $express,
  199. 'total_weight' => round($totalWeight, 2),
  200. 'remark' => $goodsName,
  201. ]);
  202. // 添加发货记录
  203. self::orderDelivery($result, $order, $express, $admin_id);
  204. Db::commit();
  205. return true;
  206. } catch (\Exception $e) {
  207. Db::rollback();
  208. return $e->getMessage();
  209. }
  210. }
  211. /**
  212. * @notes 发货
  213. * @param $print
  214. * @param $order
  215. * @param $express
  216. * @param $admin_id
  217. * @author 段誉
  218. * @date 2023/2/13 18:44
  219. */
  220. public static function orderDelivery($print, $order, $express, $admin_id)
  221. {
  222. //添加发货单
  223. $delivery_id = (new Delivery())->insertGetId([
  224. 'order_id' => $order['id'],
  225. 'order_sn' => $order['order_sn'],
  226. 'user_id' => $order['user_id'],
  227. 'admin_id' => $admin_id,
  228. 'consignee' => $order['consignee'],
  229. 'mobile' => $order['mobile'],
  230. 'province' => $order['province'],
  231. 'city' => $order['city'],
  232. 'district' => $order['district'],
  233. 'address' => $order['address'],
  234. 'invoice_no' => $print['data']['kuaidinum'],
  235. 'send_type' => 1,
  236. 'shipping_id' => $express['id'],
  237. 'shipping_name' => $express['name'],
  238. 'shipping_status' => 1,
  239. 'create_time' => time(),
  240. ]);
  241. //更新订单下商品的发货状态
  242. Order::where('id', $order['id'])->update([
  243. 'order_status' => Order::STATUS_WAIT_RECEIVE,
  244. 'delivery_id' => $delivery_id,
  245. 'shipping_status' => 1,
  246. 'update_time' => time(),
  247. 'shipping_time' => time(),
  248. ]);
  249. //订单日志
  250. OrderLogLogic::record(
  251. OrderLogEnum::TYPE_SHOP,
  252. OrderLogEnum::SHOP_DELIVERY_ORDER,
  253. $order['id'],
  254. $admin_id,
  255. OrderLogEnum::SHOP_DELIVERY_ORDER
  256. );
  257. //通知用户发货
  258. if (!empty($order['mobile'])) {
  259. event('Notice', [
  260. 'scene' => NoticeEnum::ORDER_DELIVERY_NOTICE,
  261. 'mobile' => $order['mobile'],
  262. 'params' => [
  263. 'order_id' => $order['id'],
  264. 'user_id' => $order['user_id'],
  265. 'shipping_name' => $express['name'],
  266. 'invoice_no' => $print['data']['kuaidinum'],
  267. ]
  268. ]);
  269. }
  270. }
  271. }