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

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

Loading…
Cancel
Save