zhangguidong 2 年之前
父节点
当前提交
bc2faa189d
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      application/api/model/order/OrderOper.php

+ 4 - 0
application/api/model/order/OrderOper.php

@@ -541,6 +541,10 @@ trait OrderOper
             foreach ($data as $key => $od) {
                 $data[$key] = self::setOrderItemStatusByOrder($od);
                 $data[$key]['expired_time'] = $od['createtime'] + (15 * 60);
+                $time = $time-$od['createtime'] + (15 * 60);
+                if($time>0&&$od['status']==0){
+                    Db::name('shopro_order')->where('id' ,$od['id'])->update(['status'=>-1]);
+                }
             }
 
             $orders['data'] = $data;