Merge branch 'fix-issues' into 'development'

removing lookup list call in page opening

See merge request Cloud_Solution/doctor_app_flutter!489
merge-requests/490/merge
Mohammad Aljammal 5 years ago
commit b0bd37d991

@ -207,12 +207,18 @@ class _PrescriptionFormWidgetState extends State<PrescriptionFormWidget> {
doctorID: '',
appointmentNo: widget.patient.appointmentNo);
//await model.getMedicationList();
await model.getMedicationStrength();
if (model.medicationStrengthList.length == 0) {
await model.getMedicationStrength();
}
//await model.getPrescription(mrn: widget.patient.patientMRN);
await model.getMedicationDuration();
if (model.medicationDurationList.length == 0) {
await model.getMedicationDuration();
}
//await model.getMedicationRoute();
//await model.getMedicationFrequency();
await model.getMedicationDoseTime();
if (model.medicationDoseTimeList.length == 0) {
await model.getMedicationDoseTime();
}
//await model.getMedicationIndications();
await model.getPatientAssessment(getAssessmentReqModel);
//await model.getItem();

Loading…
Cancel
Save