|
@@ -1,3 +1,4 @@
|
|
|
+import 'package:fis_common/index.dart';
|
|
|
import 'package:fis_jsonrpc/rpc.dart';
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
import 'package:flutter/material.dart';
|
|
@@ -186,6 +187,12 @@ class PatientListController extends FControllerBase
|
|
|
PatientBaseDTO? patientInfo,
|
|
|
]) async {
|
|
|
if (patientInfo != null) {
|
|
|
+ if (patientInfo.createdDoctorName.isNullOrEmpty) {
|
|
|
+ patientInfo.createdDoctorName = patientInfoDto?.createdDoctorName;
|
|
|
+ }
|
|
|
+ if (patientInfo.createdOrgName.isNullOrEmpty) {
|
|
|
+ patientInfo.createdOrgName = patientInfoDto?.createdOrgName;
|
|
|
+ }
|
|
|
if (patientInfoDto != null) {
|
|
|
final hasConfirmed = await FaceResultDialog.show(patientInfo, true);
|
|
|
if (!hasConfirmed) {
|