|
|
|
|
@ -17,7 +17,7 @@ class PatientMedicalReportService extends BaseService {
|
|
|
|
|
body['ProjectID'] = doctorProfile.projectID;
|
|
|
|
|
|
|
|
|
|
await baseAppClient.postPatient(PATIENT_MEDICAL_REPORT_GET_LIST, onSuccess: (dynamic response, int statusCode) {
|
|
|
|
|
medicalReportList.clear();
|
|
|
|
|
medicalReportList = [];
|
|
|
|
|
if (response['DAPP_ListMedicalReportList'] != null) {
|
|
|
|
|
response['DAPP_ListMedicalReportList'].forEach((v) {
|
|
|
|
|
medicalReportList.add(MedicalReportModel.fromJson(v));
|
|
|
|
|
|