1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\common\command;
- use app\common\model\MobileOrder;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- use think\Db;
- use think\Log;
- class OrderExpiredCommand extends Command{
- protected function configure()
- {
- $this->setName('order:expired')->setDescription('订单超时关闭');
- }
- protected function execute(Input $input, Output $output)
- {
- $orders= MobileOrder::expired()->field('id')->select();
- foreach ($orders as $order){
- try {
- Db::startTrans();
- $order=MobileOrder::where('id',$order['id'])->lock(true)->find();
- $order->cancel();
- Db::commit();
- }catch (\Exception $e){
- Log::error("关闭订单[$order->id]失败:{$e->getMessage()}");
- }
- }
- $output->info('success');
- }
- }
|