截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

GoodsVirtualLogic.php 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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\common\logic;
  20. use app\common\enum\GoodsEnum;
  21. use app\common\enum\OrderEnum;
  22. use app\common\model\goods\Goods;
  23. use app\common\model\order\Order;
  24. /**
  25. * 虚拟商品逻辑
  26. * Class GoodsVirtualLogic
  27. * @package app\common\logic
  28. */
  29. class GoodsVirtualLogic
  30. {
  31. /**
  32. * @notes 订单之后虚拟配送
  33. * @param $orderIds
  34. * @return bool
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @author 段誉
  39. * @date 2022/4/12 11:37
  40. */
  41. public static function afterPayVirtualDelivery($orderIds)
  42. {
  43. $orderIds = is_array($orderIds) ? $orderIds : [$orderIds];
  44. $orders = Order::with(['order_goods'])->whereIn('id', $orderIds)->select()->toArray();
  45. foreach ($orders as $order) {
  46. $goodsId = $order['order_goods'][0]['goods_id'] ?? 0;
  47. $goods = Goods::findOrEmpty($goodsId);
  48. // 商品不存在,不是虚拟商品,买家付款后不是自动发货
  49. if ($goods->isEmpty() || $goods['type'] != GoodsEnum::TYPE_VIRTUAL) {
  50. continue;
  51. }
  52. $data = [
  53. 'delivery_content' => $goods['delivery_content'],
  54. 'update_time' => time(),
  55. ];
  56. // 商品为支付后自动发货
  57. if ($goods['after_pay'] == GoodsEnum::AFTER_PAY_AUTO_DELIVERY) {
  58. $data['order_status'] = OrderEnum::ORDER_STATUS_GOODS; // 待收货状态
  59. $data['delivery_type'] = OrderEnum::DELIVERY_TYPE_VIRTUAL; // 发货方式为虚拟发货
  60. $data['shipping_status'] = OrderEnum::SHIPPING_FINISH; // 已发货
  61. $data['shipping_time'] = time();
  62. // 自动完成订单
  63. if ($goods['after_delivery'] == GoodsEnum::AFTER_DELIVERY_AUTO_COMFIRM) {
  64. $data['order_status'] = OrderEnum::ORDER_STATUS_COMPLETE;// 已完成
  65. $data['confirm_take_time'] = time();
  66. }
  67. }
  68. Order::where(['id' => $order['id']])->update($data);
  69. }
  70. return true;
  71. }
  72. /**
  73. * @notes 商家手动发货
  74. * @param $orderId
  75. * @param null $content
  76. * @return bool|string
  77. * @author 段誉
  78. * @date 2022/4/12 11:44
  79. */
  80. public static function shopSelfDelivery($orderId, $content = null)
  81. {
  82. $order = Order::with(['order_goods'])->where('id', $orderId)->findOrEmpty()->toArray();
  83. $goodsId = $order['order_goods'][0]['goods_id'] ?? 0;
  84. $goods = Goods::findOrEmpty($goodsId);
  85. // 商品不存在,不是虚拟商品,买家付款后不是自动发货
  86. if ($goods->isEmpty() || $goods['type'] != GoodsEnum::TYPE_VIRTUAL) {
  87. return '虚拟商品信息不存在';
  88. }
  89. $data = [
  90. 'order_status' => OrderEnum::ORDER_STATUS_GOODS, // 待收货状态
  91. 'delivery_type' => OrderEnum::DELIVERY_TYPE_VIRTUAL, // 发货方式为虚拟发货
  92. 'delivery_content' => empty($content) ? $goods['delivery_content'] : $content,
  93. 'shipping_status' => OrderEnum::SHIPPING_FINISH, // 已发货
  94. 'shipping_time' => time(),
  95. 'update_time' => time(),
  96. ];
  97. // 自动完成订单
  98. if ($goods['after_delivery'] == GoodsEnum::AFTER_DELIVERY_AUTO_COMFIRM) {
  99. $data['order_status'] = OrderEnum::ORDER_STATUS_COMPLETE;// 已完成
  100. $data['confirm_take_time'] = time();
  101. }
  102. Order::where(['id' => $order['id']])->update($data);
  103. return true;
  104. }
  105. }