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

DistributionOrder.php 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace app\common\command;
  3. use app\admin\logic\distribution\DistributionLevelLogic;
  4. use app\common\enum\DistributionOrderGoodsEnum;
  5. use app\common\model\AccountLog;
  6. use app\common\model\after_sale\AfterSale;
  7. use app\common\model\distribution\DistributionOrderGoods;
  8. use app\common\model\order\Order;
  9. use app\common\model\user\User;
  10. use app\common\server\ConfigServer;
  11. use think\console\Command;
  12. use think\console\Input;
  13. use think\console\Output;
  14. use think\facade\Db;
  15. use think\facade\Log;
  16. class DistributionOrder extends Command
  17. {
  18. protected function configure()
  19. {
  20. $this->setName('distribution_order')
  21. ->setDescription('结算分销订单');
  22. }
  23. protected function execute(Input $input, Output $output)
  24. {
  25. Db::startTrans();
  26. try {
  27. // 1、获取结算时间
  28. $time = time();
  29. $afterSaleTime = ConfigServer::get('distribution', 'settlement_days', 7);
  30. $afterSaleTime = intval($afterSaleTime * 24 * 60 * 60);
  31. // 2、查询可以结算的订单
  32. $model = new DistributionOrderGoods();
  33. $orders = $model->alias('DOG')->field([
  34. 'O.id as order_id, O.order_status, O.confirm_take_time',
  35. 'DOG.id as distribution_id, DOG.sn, DOG.money',
  36. 'DOG.user_id, DOG.order_goods_id'
  37. ])
  38. ->join('order_goods OG', 'OG.id = DOG.order_goods_id')
  39. ->join('order O', 'O.id = OG.order_id')
  40. ->whereRaw("O.confirm_take_time+$afterSaleTime < $time")
  41. ->where([
  42. ['DOG.status', '=', DistributionOrderGoodsEnum::STATUS_WAIT_HANDLE],
  43. ])
  44. ->limit(100)
  45. ->select()->toArray();
  46. foreach ($orders as &$order) {
  47. //当前分佣订单是否可结算
  48. if (false === self::isSettle($order)) {
  49. continue;
  50. }
  51. // 增加用户佣金
  52. $earnings = User::where('id', $order['user_id'])->value('earnings');
  53. User::update([
  54. 'earnings' => $earnings + $order['money'],
  55. 'update_time' => $time,
  56. 'id' => $order['user_id']
  57. ]);
  58. // 记录流水
  59. AccountLog::create([
  60. 'log_sn' => createSn('account_log', 'log_sn', '', 4),
  61. 'user_id' => $order['user_id'],
  62. 'source_type' => AccountLog::distribution_inc_earnings,
  63. 'source_id' => $order['distribution_id'],
  64. 'source_sn' => $order['sn'],
  65. 'change_amount' => $order['money'],
  66. 'left_amount' => $earnings+$order['money'],
  67. 'change_type' => 1,
  68. 'remark' => '分销佣金增加'
  69. ]);
  70. // 更新分销订单状态
  71. DistributionOrderGoods::update([
  72. 'status' => DistributionOrderGoodsEnum::STATUS_SUCCESS,
  73. 'update_time' => $time,
  74. 'settlement_time' => $time,
  75. 'id'=>$order['distribution_id']
  76. ]);
  77. // 更新订单分销佣金
  78. $orderModel = Order::findOrEmpty($order['order_id']);
  79. $orderModel->distribution_money = $orderModel->distribution_money + $order['money'];
  80. $orderModel->update_time = $time;
  81. $orderModel->save();
  82. // 更新分销会员等级
  83. DistributionLevelLogic::updateDistributionLevel($order['user_id']);
  84. }
  85. Db::commit();
  86. } catch (\Exception $e) {
  87. Db::rollback();
  88. Log::write('分销结算异常:'.$e->getMessage());
  89. }
  90. }
  91. /**
  92. * @Notes: 是否可以结算分佣订单 (检查是否有售后记录 没有则可结算, 有则需要检查售后记录状态)
  93. * @Author: 张无忌
  94. * @param $order
  95. * @return bool
  96. */
  97. protected function isSettle($order)
  98. {
  99. // 订单是否在售后(正在退款或已退款)
  100. $check = (new AfterSale())->where([
  101. 'order_id' => $order['order_id'],
  102. 'order_goods_id' => $order['order_goods_id'],
  103. 'del'=>0
  104. ])->findOrEmpty()->toArray();
  105. if (!$check) {
  106. return true;
  107. }
  108. // 有售后订单记录且状态 $no_settlement中的 不结算分佣订单
  109. $no_settlement = [
  110. AfterSale::STATUS_APPLY_REFUND, //申请退款
  111. AfterSale::STATUS_WAIT_RETURN_GOODS, //商品待退货
  112. AfterSale::STATUS_WAIT_RECEIVE_GOODS, //商家待收货
  113. ];
  114. // 不结算且分佣订单改为已失效
  115. $set_fail = [
  116. AfterSale::STATUS_WAIT_REFUND, //等待退款
  117. AfterSale::STATUS_SUCCESS_REFUND, //退款成功
  118. ];
  119. // 售后情况不明 不结算
  120. if (in_array($check['status'], $no_settlement)) {
  121. return false;
  122. }
  123. // 分佣订单更新为已失效 不结算
  124. if (in_array($check['status'], $set_fail)) {
  125. DistributionOrderGoods::update([
  126. 'status' => DistributionOrderGoodsEnum::STATUS_ERROR,
  127. 'update_time' => time()
  128. ], ['id'=>$order['distribution_id']]);
  129. return false;
  130. }
  131. return true;
  132. }
  133. }