截流自动化的商城平台
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shopapi\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\NoticeEnum;
  22. use app\common\enum\OrderEnum;
  23. use app\common\enum\OrderLogEnum;
  24. use app\common\enum\PayEnum;
  25. use app\common\enum\TeamEnum;
  26. use app\common\logic\GoodsVirtualLogic;
  27. use app\common\logic\OrderLogLogic;
  28. use app\common\logic\OrderRefundLogic;
  29. use app\common\logic\PayNotifyLogic;
  30. use app\common\model\Delivery;
  31. use app\common\model\DevRegion;
  32. use app\common\model\distribution\DistributionOrderGoods;
  33. use app\common\model\Express;
  34. use app\common\model\order\Order;
  35. use app\common\model\team\TeamFound;
  36. use app\common\model\team\TeamJoin;
  37. use think\facade\Db;
  38. /**
  39. * 商家移动端订单管理逻辑层
  40. * Class OrderLogic
  41. * @package app\shopapi\logic
  42. */
  43. class OrderLogic extends Logic
  44. {
  45. /**
  46. * @notes 订单列表
  47. * @param $get
  48. * @param $page_no
  49. * @param $page_size
  50. * @param $shop_id
  51. * @return array
  52. * @author ljj
  53. * @date 2021/11/10 3:13 下午
  54. */
  55. public static function lists($get, $page_no, $page_size, $shop_id)
  56. {
  57. $get['type'] = $get['type'] ?? 'all';
  58. $where[] = ['o.shop_id', '=', $shop_id];
  59. $where[] = ['o.del', '=', 0];
  60. $where[] = ['o.delete', '=', 0];
  61. //订单状态
  62. if (isset($get['type']) && !empty($get['type'])) {
  63. switch ($get['type']) {
  64. case 'pay':
  65. $where[] = ['o.order_status', '=', 0];
  66. break;
  67. case 'delivery':
  68. $where[] = ['o.order_status', '=', 1];
  69. break;
  70. case 'receiving':
  71. $where[] = ['o.order_status', '=', 2];
  72. break;
  73. case 'finish':
  74. $where[] = ['o.order_status', '=', 3];
  75. break;
  76. case 'close':
  77. $where[] = ['o.order_status', '=', 4];
  78. break;
  79. }
  80. }
  81. //订单商品名称
  82. if (isset($get['goods_name']) && !empty($get['goods_name'])) {
  83. $where[] = ['og.goods_name', 'like', '%'.$get['goods_name'].'%'];
  84. }
  85. $count = Order::alias('o')
  86. ->join('order_goods og', 'og.order_id = o.id')
  87. ->where($where)
  88. ->group('o.id')
  89. ->count();
  90. $lists = Order::alias('o')
  91. ->join('order_goods og', 'og.order_id = o.id')
  92. ->where($where)
  93. ->with(['order_goods'])
  94. ->field('o.id,o.order_type,o.order_sn,o.order_status,o.pay_status,o.shipping_status,o.order_amount,o.create_time,o.delivery_type, o.verification_status,o.pay_way')
  95. ->append(['is_team_success','shop_cancel_btn','edit_address_btn','to_ship_btn','take_btn','delivery_btn','del_btn','content_btn', 'to_verification_btn'])
  96. ->page($page_no, $page_size)
  97. ->order('o.id desc')
  98. ->group('o.id')
  99. ->select()
  100. ->toArray();
  101. foreach ($lists as &$item) {
  102. // 订单状态描述
  103. if ($item['order_status'] == OrderEnum::ORDER_STATUS_DELIVERY
  104. && $item['delivery_type'] == OrderEnum::DELIVERY_TYPE_SELF
  105. && $item['pay_status'] == PayEnum::ISPAID) {
  106. $item['order_status_text'] = '待取货';
  107. } else {
  108. $item['order_status_text'] = OrderEnum::getOrderStatus($item['order_status']);
  109. }
  110. }
  111. return [
  112. 'list' => $lists,
  113. 'page' => $page_no,
  114. 'size' => $page_size,
  115. 'count' => $count,
  116. 'more' => is_more($count, $page_no, $page_size)
  117. ];
  118. }
  119. /**
  120. * @notes 订单详情
  121. * @param $id
  122. * @return array
  123. * @throws \think\db\exception\DataNotFoundException
  124. * @throws \think\db\exception\DbException
  125. * @throws \think\db\exception\ModelNotFoundException
  126. * @author ljj
  127. * @date 2021/11/10 4:15 下午
  128. */
  129. public static function detail($id)
  130. {
  131. $result = Order::where('id',$id)
  132. ->field('id,user_id,order_sn,order_type,order_source,order_status,pay_status,pay_time,shipping_status,pay_way,order_amount,goods_price,shipping_price,discount_amount,member_amount,create_time,consignee,mobile,province,city,district,address,user_remark,delivery_type,delivery_content,pay_way')
  133. ->with(['order_goods','user', 'invoice'])
  134. ->append(['is_team_success','shop_cancel_btn','edit_address_btn','to_ship_btn','take_btn','delivery_btn','del_btn','order_status_text','pay_way_text','delivery_address','order_type_text','order_source_text','pay_status_text'])
  135. ->find()
  136. ->toArray();
  137. $result['pay_time'] = $result['pay_time'] ? date('Y-m-d H:i:s', $result['pay_time']) : '-';
  138. // 虚拟商品 发货内容
  139. if ($result['delivery_type'] != OrderEnum::DELIVERY_TYPE_VIRTUAL || $result['shipping_status'] != OrderEnum::SHIPPING_FINISH) {
  140. $result['delivery_content'] = '';
  141. }
  142. return $result;
  143. }
  144. /**
  145. * @notes 取消订单
  146. * @param $id
  147. * @param $admin_id
  148. * @return bool|string
  149. * @throws \think\db\exception\DataNotFoundException
  150. * @throws \think\db\exception\DbException
  151. * @throws \think\db\exception\ModelNotFoundException
  152. * @author ljj
  153. * @date 2021/11/10 5:06 下午
  154. */
  155. public static function cancel($id,$admin_id)
  156. {
  157. $order = Order::where(['id' => $id], ['orderGoods'])->find()->toArray();
  158. Db::startTrans();
  159. try {
  160. // 如果是拼团订单
  161. if ($order['order_type'] == OrderEnum::TEAM_ORDER) {
  162. $time = time();
  163. $team_id = (new TeamJoin())->where(['order_id' => $order['id']])->value('team_id');
  164. $teamJoin = (new TeamJoin())->alias('TJ')
  165. ->field(['TJ.*,O.order_sn,O.order_status,O.pay_status,O.refund_status,O.order_amount'])
  166. ->where(['team_id' => $team_id])
  167. ->join('order O', 'O.id=TJ.order_id')
  168. ->select()->toArray();
  169. TeamFound::update(['status' => TeamEnum::TEAM_STATUS_FAIL, 'team_end_time' => $time], ['id' => $team_id]);
  170. foreach ($teamJoin as $item) {
  171. TeamJoin::update(['status' => TeamEnum::TEAM_STATUS_FAIL, 'update_time' => $time], ['id' => $item['id']]);
  172. OrderRefundLogic::cancelOrder($item['order_id'], OrderLogEnum::TYPE_USER); //取消订单
  173. if ($item['pay_status'] == PayEnum::ISPAID) {
  174. $order = (new Order())->findOrEmpty($item['order_id'])->toArray();
  175. OrderRefundLogic::cancelOrderRefundUpdate($order); //更新订单状态
  176. OrderRefundLogic::refund($order, $order['order_amount'], $order['order_amount']); //订单退款
  177. }
  178. }
  179. } else {
  180. //取消订单
  181. OrderRefundLogic::cancelOrder($id, OrderLogEnum::TYPE_SHOP, $admin_id);
  182. //已支付的订单,取消,退款
  183. if ($order['pay_status'] == PayEnum::ISPAID) {
  184. //更新订单状态
  185. OrderRefundLogic::cancelOrderRefundUpdate($order);
  186. //订单退款
  187. OrderRefundLogic::refund($order, $order['order_amount'], $order['order_amount']);
  188. }
  189. }
  190. // 查找对应的分销订单置为失效状态
  191. if ($order['pay_status'] == PayEnum::ISPAID) {
  192. DistributionOrderGoods::where('order_id', $id)->update(['status' => 3]);
  193. }
  194. Db::commit();
  195. return true;
  196. } catch (\Exception $e) {
  197. Db::rollback();
  198. //增加退款失败记录
  199. if ($order['pay_status'] == PayEnum::ISPAID) {
  200. OrderRefundLogic::addErrorRefund($order, $e->getMessage());
  201. }
  202. return $e->getMessage();
  203. }
  204. }
  205. /**
  206. * @notes 删除订单
  207. * @param $id
  208. * @param $admin_id
  209. * @author ljj
  210. * @date 2021/11/10 5:37 下午
  211. */
  212. public static function del($id,$admin_id)
  213. {
  214. Order::update(['delete'=>1,'update_time'=>time()], ['id'=>$id]);
  215. //订单日志
  216. OrderLogLogic::record(
  217. OrderLogEnum::TYPE_SHOP,
  218. OrderLogEnum::SHOP_DEL_ORDER,
  219. $id,
  220. $admin_id,
  221. OrderLogEnum::SHOP_DEL_ORDER
  222. );
  223. }
  224. /**
  225. * @notes 修改地址
  226. * @param $post
  227. * @return bool
  228. * @author ljj
  229. * @date 2021/11/10 6:35 下午
  230. */
  231. public static function editAddress($post)
  232. {
  233. Order::update(
  234. [
  235. 'consignee'=>$post['consignee'],
  236. 'province'=>$post['province'],
  237. 'city'=>$post['city'],
  238. 'district'=>$post['district'],
  239. 'address'=>$post['address'],
  240. 'mobile'=>$post['mobile'],
  241. 'update_time' => time(),
  242. ], ['id'=>$post['id']]);
  243. return true;
  244. }
  245. /**
  246. * @notes 获取地址详情
  247. * @param $id
  248. * @return array
  249. * @throws \think\db\exception\DataNotFoundException
  250. * @throws \think\db\exception\DbException
  251. * @throws \think\db\exception\ModelNotFoundException
  252. * @author ljj
  253. * @date 2021/11/13 11:41 上午
  254. */
  255. public static function getAddress($id)
  256. {
  257. $result = Order::where('id',$id)
  258. ->field('consignee,province,city,district,address,mobile')
  259. ->find()
  260. ->toArray();
  261. $result['region'] = DevRegion::where('id', 'in', $result['province'].','.$result['city'].','.$result['district'])->order('id','asc')->column('name');
  262. return $result;
  263. }
  264. /**
  265. * @notes 发货
  266. * @param $post
  267. * @param $admin_id
  268. * @return bool|string
  269. * @author ljj
  270. * @date 2021/11/11 10:27 上午
  271. */
  272. public static function delivery($post, $admin_id)
  273. {
  274. Db::startTrans();
  275. try {
  276. $order = Order::where(['id' => $post['id']], ['order_goods'])->find();
  277. if ($order['shipping_status'] == 1) {
  278. return true;
  279. }
  280. //添加发货单
  281. $delivery_data = [
  282. 'order_id' => $post['id'],
  283. 'order_sn' => $order['order_sn'],
  284. 'user_id' => $order['user_id'],
  285. 'admin_id' => $admin_id,
  286. 'consignee' => $order['consignee'],
  287. 'mobile' => $order['mobile'],
  288. 'province' => $order['province'],
  289. 'city' => $order['city'],
  290. 'district' => $order['district'],
  291. 'address' => $order['address'],
  292. 'invoice_no' => $post['invoice_no'] ?? '',
  293. 'send_type' => $post['send_type'],
  294. 'create_time' => time(),
  295. ];
  296. //配送方式->快递配送
  297. if ($post['send_type'] == 1) {
  298. $shipping = Express::where('id', $post['shipping_id'])->find();
  299. $delivery_data['shipping_id'] = $post['shipping_id'];
  300. $delivery_data['shipping_name'] = $shipping['name'];
  301. $delivery_data['shipping_status'] = 1;
  302. }
  303. $delivery = Delivery::create($delivery_data);
  304. //更新订单下商品的发货状态
  305. $order->update_time = time();
  306. $order->shipping_time = time();
  307. $order->shipping_status = 1;
  308. $order->order_status = Order::STATUS_WAIT_RECEIVE;
  309. $order->delivery_id = $delivery->id;
  310. $order->save();
  311. //订单日志
  312. OrderLogLogic::record(
  313. OrderLogEnum::TYPE_SHOP,
  314. OrderLogEnum::SHOP_DELIVERY_ORDER,
  315. $post['id'],
  316. $admin_id,
  317. OrderLogEnum::SHOP_DELIVERY_ORDER
  318. );
  319. //通知用户发货
  320. if (!empty($order['mobile'])) {
  321. event('Notice', [
  322. 'scene' => NoticeEnum::ORDER_DELIVERY_NOTICE,
  323. 'mobile' => $order['mobile'],
  324. 'params' => [
  325. 'order_id' => $order['id'],
  326. 'user_id' => $order['user_id'],
  327. 'shipping_name' => $delivery_data['shipping_name'] ?? '无需快递',
  328. 'invoice_no' => $post['invoice_no'] ?? '',
  329. ]
  330. ]);
  331. }
  332. Db::commit();
  333. return true;
  334. } catch (\Exception $e) {
  335. Db::rollback();
  336. return $e->getMessage();
  337. }
  338. }
  339. /**
  340. * @notes 获取物流公司列表
  341. * @return array
  342. * @throws \think\db\exception\DataNotFoundException
  343. * @throws \think\db\exception\DbException
  344. * @throws \think\db\exception\ModelNotFoundException
  345. * @author ljj
  346. * @date 2021/11/13 11:46 上午
  347. */
  348. public static function getExpress()
  349. {
  350. return Express::where('del',0)->field('id,name')->select()->toArray();
  351. }
  352. /**
  353. * @notes 确认收货
  354. * @param $id
  355. * @param $admin_id
  356. * @author ljj
  357. * @date 2021/11/11 10:55 上午
  358. */
  359. public static function confirm($id, $admin_id)
  360. {
  361. Order::update(
  362. [
  363. 'order_status' => Order::STATUS_FINISH,
  364. 'confirm_take_time' => time(),
  365. 'update_time' => time(),
  366. ], ['id'=>$id]);
  367. //订单日志
  368. OrderLogLogic::record(
  369. OrderLogEnum::TYPE_SHOP,
  370. OrderLogEnum::SHOP_CONFIRM_ORDER,
  371. $id,
  372. $admin_id,
  373. OrderLogEnum::SHOP_CONFIRM_ORDER
  374. );
  375. }
  376. /**
  377. * @notes 查看物流
  378. * @param $id
  379. * @return array
  380. * @throws \think\db\exception\DataNotFoundException
  381. * @throws \think\db\exception\DbException
  382. * @throws \think\db\exception\ModelNotFoundException
  383. * @author ljj
  384. * @date 2021/11/11 11:34 上午
  385. */
  386. public static function logistics($id)
  387. {
  388. return Delivery::where('order_id',$id)
  389. ->field('shipping_name,invoice_no')
  390. ->find()
  391. ->toArray();
  392. }
  393. /**
  394. * @notes 虚拟发货
  395. * @param $post
  396. * @param $admin_id
  397. * @return bool
  398. * @author 段誉
  399. * @date 2022/4/20 17:56
  400. */
  401. public static function virtualDelivery($post, $admin_id)
  402. {
  403. try {
  404. $order_id = $post['order_id'];
  405. $order = Order::with(['order_goods'])->where(['del' => 0, 'id' => $order_id])->find();
  406. // 更新发货订单信息
  407. $result = GoodsVirtualLogic::shopSelfDelivery($order_id, $post['delivery_content']);
  408. if (true !== $result) {
  409. throw new \Exception($result);
  410. }
  411. //订单日志
  412. OrderLogLogic::record(
  413. OrderLogEnum::TYPE_SHOP,
  414. OrderLogEnum::SHOP_DELIVERY_ORDER,
  415. $order_id,
  416. $admin_id,
  417. OrderLogEnum::SHOP_DELIVERY_ORDER
  418. );
  419. //通知用户发货
  420. if (!empty($order['mobile'])) {
  421. event('Notice', [
  422. 'scene' => NoticeEnum::ORDER_DELIVERY_NOTICE,
  423. 'mobile' => $order['mobile'],
  424. 'params' => [
  425. 'order_id' => $order['id'],
  426. 'user_id' => $order['user_id'],
  427. 'shipping_name' => '无需快递',
  428. 'invoice_no' => '',
  429. ]
  430. ]);
  431. }
  432. return true;
  433. } catch (\Exception $e) {
  434. self::$error = $e->getMessage();
  435. return false;
  436. }
  437. }
  438. /**
  439. * @notes 确认付款
  440. * @param $order_id
  441. * @param $adminInfo
  442. * @return string|true
  443. * @author ljj
  444. * @date 2024/7/19 下午6:32
  445. */
  446. public static function confirmPay($order_id, $adminInfo)
  447. {
  448. Db::startTrans();
  449. try {
  450. $order = Order::where(['id' => $order_id])->findOrEmpty()->toArray();
  451. $result = PayNotifyLogic::handle('order', $order['order_sn']);
  452. if (true !== $result) {
  453. throw new \Exception($result);
  454. }
  455. Db::commit();
  456. return true;
  457. } catch (\Exception $e) {
  458. Db::rollback();
  459. return $e->getMessage();
  460. }
  461. }
  462. }