merge-update-with-lab-changes
haroon amjad 2 years ago
parent 44d8f0efe2
commit e4e3377c5c

@ -43,6 +43,8 @@ class ReportsService extends BaseService {
}
Future getInpatientAdmissionsList() async {
Map<String, dynamic> body = new Map<String, dynamic>();
body['IsForMedicalReport'] = true;
hasError = false;
await baseAppClient.post(GET_INPATIENT_ADMISSIONS, onSuccess: (dynamic response, int statusCode) {
admissionsMedicalReport.clear();
@ -53,7 +55,7 @@ class ReportsService extends BaseService {
}, onFailure: (String error, int statusCode) {
hasError = true;
super.error = error;
}, body: _requestReports.toJson());
}, body: body);
}
Future getPatentAppointmentHistory() async {

Loading…
Cancel
Save