截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

OrderFinish.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace app\common\command;
  3. use app\common\enum\OrderEnum;
  4. use app\common\model\order\Order;
  5. use app\common\server\ConfigServer;
  6. use think\console\Command;
  7. use think\console\Input;
  8. use think\console\Output;
  9. use think\facade\Log;
  10. class OrderFinish extends Command
  11. {
  12. protected function configure()
  13. {
  14. $this->setName('order_finish')
  15. ->setDescription('自动确认收货(待收货订单)');
  16. }
  17. protected function execute(Input $input, Output $output)
  18. {
  19. try {
  20. $time = time();
  21. $config = ConfigServer::get('transaction', 'order_auto_receipt_days', 7);
  22. if ($config == 0) {
  23. return true;
  24. }
  25. $finish_limit = $config * 24 * 60 * 60;
  26. $model = new Order();
  27. $orders = $model->field(true)->where([
  28. ['order_status', '=', OrderEnum::ORDER_STATUS_GOODS],
  29. ['pay_status', '=', OrderEnum::PAY_STATUS_PAID],
  30. ['del', '=', 0]
  31. ])->whereRaw("shipping_time+$finish_limit < $time")
  32. ->select()->toArray();
  33. foreach ($orders as $order) {
  34. $model->where(['id' => $order['id']])
  35. ->update([
  36. 'order_status' => OrderEnum::ORDER_STATUS_COMPLETE,
  37. 'update_time' => $time,
  38. 'confirm_take_time' => $time,
  39. ]);
  40. }
  41. return true;
  42. } catch (\Exception $e) {
  43. Log::write('自动确认收货异常:'.$e->getMessage());
  44. return false;
  45. }
  46. }
  47. }