This commit is contained in:
wucongxing 2023-10-18 11:28:33 +08:00
parent 43b4de0468
commit 65a3538f81

View File

@ -325,15 +325,15 @@ class UserDoctor extends Model
"DoctorExpertise", "DoctorExpertise",
"DoctorInquiryConfig" => function ($query) use ($is_search_welfare_reception) { "DoctorInquiryConfig" => function ($query) use ($is_search_welfare_reception) {
$inquiry_type = [1,3]; $inquiry_type = [1,3];
$is_enable = 0;
if (!empty($is_search_welfare_reception)){ if (!empty($is_search_welfare_reception)){
$inquiry_type = [3]; $inquiry_type = [3];
$is_enable = 1;
} }
$query->whereIn('inquiry_type', $inquiry_type) $query->whereIn('inquiry_type', $inquiry_type)
->where('inquiry_mode', 1) ->where('inquiry_mode', 1);
->where('is_enable', $is_enable); if (!empty($is_search_welfare_reception)){
$query->where('is_enable', 1);
}
}, },
]) ])
->where($doctor_params) ->where($doctor_params)
@ -354,15 +354,16 @@ class UserDoctor extends Model
}) })
->whereHas('DoctorInquiryConfig', function ($query) use ($is_search_welfare_reception) { ->whereHas('DoctorInquiryConfig', function ($query) use ($is_search_welfare_reception) {
$inquiry_type = [1,3]; $inquiry_type = [1,3];
$is_enable = 0;
if (!empty($is_search_welfare_reception)){ if (!empty($is_search_welfare_reception)){
$inquiry_type = [3]; $inquiry_type = [3];
$is_enable = 1;
} }
$params = array(); $params = array();
$params['inquiry_mode'] = 1;// 接诊方式:图文 $params['inquiry_mode'] = 1;// 接诊方式:图文
$params['is_enable'] = $is_enable; if (!empty($is_search_welfare_reception)){
$params['is_enable'] = 1;
}
$query->where($params)->whereIn('inquiry_type', $inquiry_type); $query->where($params)->whereIn('inquiry_type', $inquiry_type);
}); });