|
|
@@ -619,6 +619,10 @@ public class FsCompanyCustomerServiceImpl implements IFsCompanyCustomerService {
|
|
|
customer.setDoctorName(fsDoctor.getDoctorName());
|
|
|
|
|
|
// 5. 更新客户
|
|
|
+ if (customer.getPhone()!=null&&customer.getPhone().contains("*")){
|
|
|
+ //若提交的号码是脱敏的号码,则不需要更新号码
|
|
|
+ customer.setPhone(null);
|
|
|
+ }
|
|
|
fsCompanyCustomerMapper.updateFsCompanyCustomer(customer);
|
|
|
}
|
|
|
}
|