|
|
|
|
@ -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 {
|
|
|
|
|
|