|
|
|
|
@ -168,7 +168,6 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
patientLabResultOrdersList = [];
|
|
|
|
|
print("res['List_GetLabOreders']");
|
|
|
|
|
res['List_GetLabOreders'].forEach((v) {
|
|
|
|
|
patientLabResultOrdersList.add(new LabOrdersResModel.fromJson(v));
|
|
|
|
|
});
|
|
|
|
|
@ -214,7 +213,6 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
patientPrescriptionsList = [];
|
|
|
|
|
print("res['PatientPrescriptionList']");
|
|
|
|
|
res['PatientPrescriptionList'].forEach((v) {
|
|
|
|
|
patientPrescriptionsList
|
|
|
|
|
.add(new PrescriptionResModel.fromJson(v));
|
|
|
|
|
@ -260,7 +258,6 @@ class PatientsProvider with ChangeNotifier {
|
|
|
|
|
print('$res');
|
|
|
|
|
if (res['MessageStatus'] == 1) {
|
|
|
|
|
patientRadiologyList = [];
|
|
|
|
|
print("res['List_GetRadOreders']");
|
|
|
|
|
res['List_GetRadOreders'].forEach((v) {
|
|
|
|
|
patientRadiologyList.add(new RadiologyResModel.fromJson(v));
|
|
|
|
|
});
|
|
|
|
|
|