This commit is contained in:
unknown 2023-10-18 10:38:19 +08:00
parent 1f468b61d2
commit 20555862b6

View File

@ -158,7 +158,11 @@ class VehicleContractController extends BaseAdminController
$notify_url = '';
if($contract['type'] == 0){
$smsTitle = '《租赁合同》';
$notify_url = env('project.website_domain').'/api/index/townCarRent';
if(empty($contract['contract_logistic_id'])){
$notify_url = env('project.website_domain').'/api/index/systemCarRent';
}else{
$notify_url = env('project.website_domain').'/api/index/townCarRent';
}
}elseif($contract['type'] == 1){
$smsTitle = '《自有车辆上传合同》';
$notify_url = env('project.website_domain').'/api/index/selfCarRent';