|
|
|
|
@ -14,11 +14,12 @@ class GetPharmacyInvoicesResponseModel {
|
|
|
|
|
String? doctorNameN;
|
|
|
|
|
String? displayInvoiceNo;
|
|
|
|
|
String? clinicName;
|
|
|
|
|
double? decimalDoctorRate;
|
|
|
|
|
num? decimalDoctorRate;
|
|
|
|
|
String? doctorImageURL;
|
|
|
|
|
num? doctorRate;
|
|
|
|
|
num? patientNumber;
|
|
|
|
|
String? projectName;
|
|
|
|
|
dynamic locationID;
|
|
|
|
|
|
|
|
|
|
GetPharmacyInvoicesResponseModel(
|
|
|
|
|
{this.setupId,
|
|
|
|
|
@ -40,7 +41,7 @@ class GetPharmacyInvoicesResponseModel {
|
|
|
|
|
this.doctorImageURL,
|
|
|
|
|
this.doctorRate,
|
|
|
|
|
this.patientNumber,
|
|
|
|
|
this.projectName});
|
|
|
|
|
this.projectName, this.locationID});
|
|
|
|
|
|
|
|
|
|
GetPharmacyInvoicesResponseModel.fromJson(Map<String, dynamic> json) {
|
|
|
|
|
setupId = json['SetupId'];
|
|
|
|
|
@ -63,6 +64,7 @@ class GetPharmacyInvoicesResponseModel {
|
|
|
|
|
doctorRate = json['DoctorRate'];
|
|
|
|
|
patientNumber = json['PatientNumber'];
|
|
|
|
|
projectName = json['ProjectName'];
|
|
|
|
|
locationID = json['LocationId'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
|
@ -87,6 +89,7 @@ class GetPharmacyInvoicesResponseModel {
|
|
|
|
|
data['DoctorRate'] = this.doctorRate;
|
|
|
|
|
data['PatientNumber'] = this.patientNumber;
|
|
|
|
|
data['ProjectName'] = this.projectName;
|
|
|
|
|
data['LocationId'] = this.locationID;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|