|
|
|
@ -298,6 +298,11 @@ class DatabaseController extends BaseController |
|
|
|
|
if(!$b_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($b_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$b_info->user_id = 0; |
|
|
|
|
if(!$b_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($b_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从A库分配到B库',1); |
|
|
|
|
} |
|
|
|
@ -346,6 +351,11 @@ class DatabaseController extends BaseController |
|
|
|
|
if(!$b_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($b_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$b_info->user_id = 0; |
|
|
|
|
if(!$b_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($b_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从A库分配到B库',1); |
|
|
|
|
} |
|
|
|
@ -396,6 +406,11 @@ class DatabaseController extends BaseController |
|
|
|
|
if(!$c_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($c_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$c_info->user_id = 0; |
|
|
|
|
if(!$c_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($c_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从A库分配到C库',1); |
|
|
|
|
} |
|
|
|
@ -988,6 +1003,7 @@ class DatabaseController extends BaseController |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$b_info = CarBT::findOne(['id'=>$id]); |
|
|
|
|
if($b_info) { |
|
|
|
|
if($b_info->user_id > 0) { |
|
|
|
|
//删除预约 |
|
|
|
|
AppointmentT::deleteAll('car_id='.$b_info->id); |
|
|
|
@ -1003,6 +1019,8 @@ class DatabaseController extends BaseController |
|
|
|
|
$order_info->delete(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$b_info->delete(); |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从B库移动到无效库',1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -1555,6 +1573,11 @@ class DatabaseController extends BaseController |
|
|
|
|
if(!$d_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($d_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$d_info->user_id = 0; |
|
|
|
|
if(!$d_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($d_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从C库分配到D库',1); |
|
|
|
|
} |
|
|
|
@ -1601,6 +1624,11 @@ class DatabaseController extends BaseController |
|
|
|
|
if(!$d_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($d_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$d_info->user_id = 0; |
|
|
|
|
if(!$d_info->save(false)) { |
|
|
|
|
throw new Exception(print_r($d_info->getFirstErrors(),true)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从C库分配到D库',1); |
|
|
|
|
} |
|
|
|
@ -1659,6 +1687,7 @@ class DatabaseController extends BaseController |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$c_info = CarCT::findOne(['id'=>$id]); |
|
|
|
|
if($c_info) { |
|
|
|
|
if($c_info->user_id > 0) { |
|
|
|
|
//删除预约 |
|
|
|
|
AppointmentT::deleteAll('car_id='.$c_info->id); |
|
|
|
@ -1674,6 +1703,8 @@ class DatabaseController extends BaseController |
|
|
|
|
$order_info->delete(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$c_info->delete(); |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从C库移动到无效库',1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2236,6 +2267,7 @@ class DatabaseController extends BaseController |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$d_info = CarDT::findOne(['id'=>$id]); |
|
|
|
|
if($d_info) { |
|
|
|
|
if($d_info->user_id > 0) { |
|
|
|
|
//删除预约 |
|
|
|
|
AppointmentT::deleteAll('car_id='.$d_info->id); |
|
|
|
@ -2251,6 +2283,8 @@ class DatabaseController extends BaseController |
|
|
|
|
$order_info->delete(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$d_info->deletel(); |
|
|
|
|
} |
|
|
|
|
$this->addLog($car_info->id,'从C库移动到无效库',1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|