wupengfei 2 éve
szülő
commit
f5ad42dc4a
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      application/api/controller/Appointment.php

+ 1 - 1
application/api/controller/Appointment.php

@@ -193,7 +193,7 @@ class Appointment extends Base
         try {
             $detail = AppOrder::where('id',$order_id)->find()->toArray();
             if($detail['status'] != 0) $this->exception('预约记录已完成或是已取消');
-            if(strtotime($detail['app_time']) < time() + 7200) $this->exception('2小时内无法直接取消预约,请联系客服');
+           // if(strtotime($detail['app_time']) < time() + 7200) $this->exception('2小时内无法直接取消预约,请联系客服');
             AppOrder::where('id',$order_id)->update(['status'=>9,'cancel_at'=>date("Y-m-d H:i:s"),'cancel_state'=>1,'cancel_desc'=>$cancel_desc]);
             Db::commit();
         }catch (\Exception $e){