From 13be1c6a00e915f64867fb27ee99606dba2a33ef Mon Sep 17 00:00:00 2001 From: Elham Rababh Date: Wed, 11 Aug 2021 10:06:53 +0300 Subject: [PATCH] fix issue in the model --- lib/models/SOAP/post_physical_exam_request_model.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/models/SOAP/post_physical_exam_request_model.dart b/lib/models/SOAP/post_physical_exam_request_model.dart index 41fb4507..f056f168 100644 --- a/lib/models/SOAP/post_physical_exam_request_model.dart +++ b/lib/models/SOAP/post_physical_exam_request_model.dart @@ -99,7 +99,7 @@ class ListHisProgNotePhysicalExaminationVM { final Map data = new Map(); data['episodeId'] = this.episodeId; data['appointmentNo'] = this.appointmentNo; - data['AdmissionNo'] = this.admissionNo; + data['admissionNo'] = this.admissionNo; data['examType'] = this.examType; data['examId'] = this.examId; data['patientMRN'] = this.patientMRN;