|
@@ -50,11 +50,18 @@ class PatientInfomationController extends FControllerBase {
|
|
|
bool isConfirmed = true;
|
|
|
if (patient.currentOrgCode != Store.user.organizationCode) {
|
|
|
isConfirmed = await ConfirmBox.show(
|
|
|
- content: "该居民已被其他医院建档,是否继续填写?",
|
|
|
- width: 400,
|
|
|
+ content:
|
|
|
+ "该居民已在${patient.createdOrgName}下由${patient.createdDoctorName}建档",
|
|
|
+ width: 520,
|
|
|
+ showCancel: false,
|
|
|
);
|
|
|
} else {
|
|
|
- isConfirmed = await ConfirmBox.show(content: "该居民已存在,是否继续填写?");
|
|
|
+ isConfirmed = await ConfirmBox.show(
|
|
|
+ content:
|
|
|
+ "该居民已在${patient.createdOrgName}下由${patient.createdDoctorName}建档",
|
|
|
+ width: 520,
|
|
|
+ showCancel: false,
|
|
|
+ );
|
|
|
}
|
|
|
return isConfirmed;
|
|
|
}
|