From c806f0eb74d6a2765e2c14e6844c17190e9c7ee4 Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Tue, 25 Apr 2023 19:24:54 +0800 Subject: [PATCH] 1 --- app/Services/PatientDoctorService.php | 6 ++---- app/Services/UserDoctorService.php | 6 ------ 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/app/Services/PatientDoctorService.php b/app/Services/PatientDoctorService.php index 45f93c2..50b9d4e 100644 --- a/app/Services/PatientDoctorService.php +++ b/app/Services/PatientDoctorService.php @@ -59,10 +59,8 @@ class PatientDoctorService extends BaseService $doctor_params['status'] = 1; // 状态(0:禁用 1:正常 2:删除) $doctor_params["iden_auth_status"] = 1;// 身份认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败) - - $doctor_params["is_online"] = 1;// 是否在线(0:不在线 1:在线) - - $doctor_params["is_img_expert_reception"] = 1;// 是否参加专家图文接诊(0:否 1:是) + $doctor_params["multi_point_status"] = 1;// 医生多点执业认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败) + $doctor_params["is_bind_bank"] = 1;// 是否已绑定结算银行卡(0:否 1:是) if (!empty($is_search_welfare_reception)){ $doctor_params["is_img_welfare_reception"] = $is_search_welfare_reception;// 是否参加公益图文问诊(0:否 1:是) diff --git a/app/Services/UserDoctorService.php b/app/Services/UserDoctorService.php index 86918a7..8a28ef9 100644 --- a/app/Services/UserDoctorService.php +++ b/app/Services/UserDoctorService.php @@ -1750,12 +1750,6 @@ class UserDoctorService extends BaseService } } - if ($is_multi_point) { - if ($user_doctor['multi_point_status'] != 1) { - return "请先完成多点执业认证"; - } - } - return true; }