lab report email change

merge-update-with-lab-changes
Sultan khan 3 years ago
parent 83c15196c8
commit 0514fecae2

@ -16,6 +16,7 @@ class PatientLabOrders {
int gender;
String genderDescription;
String invoiceNo;
String invoiceNo_VP;
bool isActiveDoctorProfile;
bool isDoctorAllowVedioCall;
bool isExecludeDoctor;
@ -68,6 +69,7 @@ class PatientLabOrders {
this.projectNameN,
this.qR,
this.setupID,
this.invoiceNo_VP,
this.speciality,this.isLiveCareAppointment});
PatientLabOrders.fromJson(Map<String, dynamic> json) {
@ -103,6 +105,7 @@ class PatientLabOrders {
projectNameN = json['ProjectNameN'];
qR = json['QR'];
setupID = json['SetupID'];
invoiceNo_VP = json['invoiceNo_VP'];
isLiveCareAppointment = json['IsLiveCareAppointment'];
// speciality = json['Speciality'].cast<String>();
}
@ -143,6 +146,7 @@ class PatientLabOrders {
data['SetupID'] = this.setupID;
data['Speciality'] = this.speciality;
data['IsLiveCareAppointment'] = this.isLiveCareAppointment;
data['invoiceNo_VP'] =this.invoiceNo_VP;
return data;
}
}

@ -79,7 +79,7 @@ class RequestSendLabReportEmail {
doctorName = json['DoctorName'];
projectID = json['ProjectID'];
invoiceNo = json['InvoiceNo'];
invoiceNo = json['InvoiceNo_VP'];
invoiceNoVP = json['InvoiceNo_VP'];
orderDate = json['OrderDate'];
}
@ -109,7 +109,7 @@ class RequestSendLabReportEmail {
data['DoctorName'] = this.doctorName;
data['ProjectID'] = this.projectID;
data['InvoiceNo'] = this.invoiceNo;
data['InvoiceNo_VP'] = this.invoiceNo;
data['InvoiceNo_VP'] = this.invoiceNoVP;
data['OrderDate'] = this.orderDate;
return data;
}

Loading…
Cancel
Save