@@ -179,7 +179,7 @@ class VDialogBloodPressure extends StatelessWidget {
TextEditingController controller,
) {
return Row(
- children: [_buildItem(context, controller, '心率')],
+ children: [_buildItem(context, controller, '脉率')],
);
}
@@ -221,6 +221,15 @@ class RegistrationFormController {
return;
+ } else {
+ PatientDTO? currentPatient = await fillInIdentityInfo(patient);
+ if (currentPatient != null) {
+ patient = currentPatient;
+ await createResidentInList(
+ patient: patient,
+ isVital: isVital,
+ );
+ }