ancillary fix

merge-update-with-lab-changes
haroon amjad 3 years ago
parent b337343df3
commit b2ec6c76bf

@ -1,6 +1,6 @@
class AncillaryOrdersListModel { class AncillaryOrdersListModel {
List<AncillaryOrderList> ancillaryOrderList; List<AncillaryOrderList> ancillaryOrderList;
Null errCode; dynamic errCode;
String message; String message;
int patientID; int patientID;
String patientName; String patientName;
@ -32,7 +32,7 @@ class AncillaryOrdersListModel {
errCode = json['ErrCode']; errCode = json['ErrCode'];
message = json['Message']; message = json['Message'];
patientID = json['PatientID']; patientID = json['PatientID'];
patientName = json['PatientName']; patientName = json['PatientName'] != null ? json['PatientName'] : "";
patientType = json['PatientType']; patientType = json['PatientType'];
projectID = json['ProjectID']; projectID = json['ProjectID'];
projectName = json['ProjectName']; projectName = json['ProjectName'];
@ -83,7 +83,7 @@ class AncillaryOrderList {
appointmentDate = json['AppointmentDate']; appointmentDate = json['AppointmentDate'];
appointmentNo = json['AppointmentNo']; appointmentNo = json['AppointmentNo'];
clinicID = json['ClinicID']; clinicID = json['ClinicID'];
clinicName = json['ClinicName']; clinicName = json['ClinicName'] != null ? json['ClinicName'] : "";
doctorID = json['DoctorID']; doctorID = json['DoctorID'];
doctorName = json['DoctorName']; doctorName = json['DoctorName'];
orderDate = json['OrderDate']; orderDate = json['OrderDate'];

Loading…
Cancel
Save