OrderExpiredCommand.php 899 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\MobileOrder;
  4. use think\console\Command;
  5. use think\console\Input;
  6. use think\console\Output;
  7. use think\Db;
  8. use think\Log;
  9. class OrderExpiredCommand extends Command{
  10. protected function configure()
  11. {
  12. $this->setName('order:expired')->setDescription('订单超时关闭');
  13. }
  14. protected function execute(Input $input, Output $output)
  15. {
  16. $orders= MobileOrder::expired()->field('id')->select();
  17. foreach ($orders as $order){
  18. try {
  19. Db::startTrans();
  20. $order=MobileOrder::where('id',$order['id'])->lock(true)->find();
  21. $order->cancel();
  22. Db::commit();
  23. }catch (\Exception $e){
  24. Log::error("关闭订单[$order->id]失败:{$e->getMessage()}");
  25. }
  26. }
  27. $output->info('success');
  28. }
  29. }