|
|
@@ -55,6 +55,7 @@ import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Optional;
|
|
|
@@ -340,7 +341,10 @@ public class LocalAssistantUserBindService extends BaseService<AssistantUserBind
|
|
|
DelayMessageProperties.of(TimeUnit.HOURS, 24));
|
|
|
delayMessageManager.add(delayMessage);
|
|
|
}
|
|
|
-
|
|
|
+ String clinicId = patientDetail.getClinic().getId();
|
|
|
+ if(ObjectUtil.isNotNull(source.getManage())){
|
|
|
+ patientClient.setManageType(clinicId,source.getManage());
|
|
|
+ }
|
|
|
//查询是否存在默认看护
|
|
|
return result;
|
|
|
}
|