From 71a4fc3f8254e2868026bad6f8b363aa6aea9398 Mon Sep 17 00:00:00 2001 From: zengchaoxin Date: Sun, 13 Oct 2019 18:26:06 +0800 Subject: [PATCH] 111 --- frontend/controllers/AppointmentController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/controllers/AppointmentController.php b/frontend/controllers/AppointmentController.php index 6321d99..fced2ae 100644 --- a/frontend/controllers/AppointmentController.php +++ b/frontend/controllers/AppointmentController.php @@ -301,7 +301,7 @@ class AppointmentController extends BaseController $query = AppointmentT::find() ->leftJoin('car_t','`car_t`.`id`=`appointment_t`.`car_id`') - ->where('appointment_t.is_first=1 and (car_t.location=2 or cat_t.location=4)'); + ->where('appointment_t.is_first=1 and car_t.location=2'); if($username == '') { $user_ids = $this->getChildrenUserIDs(); @@ -383,7 +383,7 @@ class AppointmentController extends BaseController $query = AppointmentT::find() ->leftJoin('car_t','`car_t`.`id`=`appointment_t`.`car_id`') - ->where('appointment_t.is_first=0 and (car_t.location=2 or cat_t.location=4)') + ->where('appointment_t.is_first=0 and car_t.location=2') ->andWhere('appointment_t.pdate<="'.date('Y-m-d').'"'); $user_ids = $this->getChildrenUserIDs(); @@ -459,7 +459,7 @@ class AppointmentController extends BaseController $query = AppointmentT::find() ->leftJoin('car_t','`car_t`.`id`=`appointment_t`.`car_id`') - ->where('appointment_t.is_first=0 and (car_t.location=2 or cat_t.location=4)'); + ->where('appointment_t.is_first=0 and car_t.location=2'); if($username == '') { $user_ids = $this->getChildrenUserIDs();