change the checkup item based on service
parent
31b217aa19
commit
9ebc6980dd
@ -0,0 +1,68 @@
|
|||||||
|
class CMCGetItemsRequestModel {
|
||||||
|
double versionID;
|
||||||
|
int channel;
|
||||||
|
int languageID;
|
||||||
|
String iPAdress;
|
||||||
|
String generalid;
|
||||||
|
int patientOutSA;
|
||||||
|
String sessionID;
|
||||||
|
bool isDentalAllowedBackend;
|
||||||
|
int deviceTypeID;
|
||||||
|
int patientID;
|
||||||
|
String tokenID;
|
||||||
|
int patientTypeID;
|
||||||
|
int patientType;
|
||||||
|
int checkupType;
|
||||||
|
|
||||||
|
CMCGetItemsRequestModel(
|
||||||
|
{this.versionID,
|
||||||
|
this.channel,
|
||||||
|
this.languageID,
|
||||||
|
this.iPAdress,
|
||||||
|
this.generalid,
|
||||||
|
this.patientOutSA,
|
||||||
|
this.sessionID,
|
||||||
|
this.isDentalAllowedBackend,
|
||||||
|
this.deviceTypeID,
|
||||||
|
this.patientID,
|
||||||
|
this.tokenID,
|
||||||
|
this.patientTypeID,
|
||||||
|
this.patientType,
|
||||||
|
this.checkupType});
|
||||||
|
|
||||||
|
CMCGetItemsRequestModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
versionID = json['VersionID'];
|
||||||
|
channel = json['Channel'];
|
||||||
|
languageID = json['LanguageID'];
|
||||||
|
iPAdress = json['IPAdress'];
|
||||||
|
generalid = json['generalid'];
|
||||||
|
patientOutSA = json['PatientOutSA'];
|
||||||
|
sessionID = json['SessionID'];
|
||||||
|
isDentalAllowedBackend = json['isDentalAllowedBackend'];
|
||||||
|
deviceTypeID = json['DeviceTypeID'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
tokenID = json['TokenID'];
|
||||||
|
patientTypeID = json['PatientTypeID'];
|
||||||
|
patientType = json['PatientType'];
|
||||||
|
checkupType = json['CheckupType'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['VersionID'] = this.versionID;
|
||||||
|
data['Channel'] = this.channel;
|
||||||
|
data['LanguageID'] = this.languageID;
|
||||||
|
data['IPAdress'] = this.iPAdress;
|
||||||
|
data['generalid'] = this.generalid;
|
||||||
|
data['PatientOutSA'] = this.patientOutSA;
|
||||||
|
data['SessionID'] = this.sessionID;
|
||||||
|
data['isDentalAllowedBackend'] = this.isDentalAllowedBackend;
|
||||||
|
data['DeviceTypeID'] = this.deviceTypeID;
|
||||||
|
data['PatientID'] = this.patientID;
|
||||||
|
data['TokenID'] = this.tokenID;
|
||||||
|
data['PatientTypeID'] = this.patientTypeID;
|
||||||
|
data['PatientType'] = this.patientType;
|
||||||
|
data['CheckupType'] = this.checkupType;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
class CMCGetItemsResponseModel {
|
||||||
|
String itemDescription;
|
||||||
|
String itemName;
|
||||||
|
|
||||||
|
CMCGetItemsResponseModel({this.itemDescription, this.itemName});
|
||||||
|
|
||||||
|
CMCGetItemsResponseModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
itemDescription = json['ItemDescription'];
|
||||||
|
itemName = json['ItemName'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['ItemDescription'] = this.itemDescription;
|
||||||
|
data['ItemName'] = this.itemName;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,135 @@
|
|||||||
|
class CMCInsertPresOrderRequestModel {
|
||||||
|
double versionID;
|
||||||
|
int channel;
|
||||||
|
int languageID;
|
||||||
|
String iPAdress;
|
||||||
|
String generalid;
|
||||||
|
int patientOutSA;
|
||||||
|
String sessionID;
|
||||||
|
bool isDentalAllowedBackend;
|
||||||
|
int deviceTypeID;
|
||||||
|
int patientID;
|
||||||
|
String tokenID;
|
||||||
|
int patientTypeID;
|
||||||
|
int patientType;
|
||||||
|
double latitude;
|
||||||
|
double longitude;
|
||||||
|
int createdBy;
|
||||||
|
int orderServiceID;
|
||||||
|
List<PatientERCMCInsertServicesList> patientERCMCInsertServicesList;
|
||||||
|
|
||||||
|
CMCInsertPresOrderRequestModel(
|
||||||
|
{this.versionID,
|
||||||
|
this.channel,
|
||||||
|
this.languageID,
|
||||||
|
this.iPAdress,
|
||||||
|
this.generalid,
|
||||||
|
this.patientOutSA,
|
||||||
|
this.sessionID,
|
||||||
|
this.isDentalAllowedBackend,
|
||||||
|
this.deviceTypeID,
|
||||||
|
this.patientID,
|
||||||
|
this.tokenID,
|
||||||
|
this.patientTypeID,
|
||||||
|
this.patientType,
|
||||||
|
this.latitude,
|
||||||
|
this.longitude,
|
||||||
|
this.createdBy,
|
||||||
|
this.orderServiceID,
|
||||||
|
this.patientERCMCInsertServicesList});
|
||||||
|
|
||||||
|
CMCInsertPresOrderRequestModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
versionID = json['VersionID'];
|
||||||
|
channel = json['Channel'];
|
||||||
|
languageID = json['LanguageID'];
|
||||||
|
iPAdress = json['IPAdress'];
|
||||||
|
generalid = json['generalid'];
|
||||||
|
patientOutSA = json['PatientOutSA'];
|
||||||
|
sessionID = json['SessionID'];
|
||||||
|
isDentalAllowedBackend = json['isDentalAllowedBackend'];
|
||||||
|
deviceTypeID = json['DeviceTypeID'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
tokenID = json['TokenID'];
|
||||||
|
patientTypeID = json['PatientTypeID'];
|
||||||
|
patientType = json['PatientType'];
|
||||||
|
latitude = json['Latitude'];
|
||||||
|
longitude = json['Longitude'];
|
||||||
|
createdBy = json['CreatedBy'];
|
||||||
|
orderServiceID = json['OrderServiceID'];
|
||||||
|
if (json['PatientER_CMC_InsertServicesList'] != null) {
|
||||||
|
patientERCMCInsertServicesList =
|
||||||
|
new List<PatientERCMCInsertServicesList>();
|
||||||
|
json['PatientER_CMC_InsertServicesList'].forEach((v) {
|
||||||
|
patientERCMCInsertServicesList
|
||||||
|
.add(new PatientERCMCInsertServicesList.fromJson(v));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['VersionID'] = this.versionID;
|
||||||
|
data['Channel'] = this.channel;
|
||||||
|
data['LanguageID'] = this.languageID;
|
||||||
|
data['IPAdress'] = this.iPAdress;
|
||||||
|
data['generalid'] = this.generalid;
|
||||||
|
data['PatientOutSA'] = this.patientOutSA;
|
||||||
|
data['SessionID'] = this.sessionID;
|
||||||
|
data['isDentalAllowedBackend'] = this.isDentalAllowedBackend;
|
||||||
|
data['DeviceTypeID'] = this.deviceTypeID;
|
||||||
|
data['PatientID'] = this.patientID;
|
||||||
|
data['TokenID'] = this.tokenID;
|
||||||
|
data['PatientTypeID'] = this.patientTypeID;
|
||||||
|
data['PatientType'] = this.patientType;
|
||||||
|
data['Latitude'] = this.latitude;
|
||||||
|
data['Longitude'] = this.longitude;
|
||||||
|
data['CreatedBy'] = this.createdBy;
|
||||||
|
data['OrderServiceID'] = this.orderServiceID;
|
||||||
|
if (this.patientERCMCInsertServicesList != null) {
|
||||||
|
data['PatientER_CMC_InsertServicesList'] =
|
||||||
|
this.patientERCMCInsertServicesList.map((v) => v.toJson()).toList();
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class PatientERCMCInsertServicesList {
|
||||||
|
int recordID;
|
||||||
|
String serviceID;
|
||||||
|
String selectedServiceName;
|
||||||
|
String selectedServiceNameAR;
|
||||||
|
dynamic price;
|
||||||
|
dynamic vAT;
|
||||||
|
dynamic totalPrice;
|
||||||
|
|
||||||
|
PatientERCMCInsertServicesList(
|
||||||
|
{this.recordID,
|
||||||
|
this.serviceID,
|
||||||
|
this.selectedServiceName,
|
||||||
|
this.selectedServiceNameAR,
|
||||||
|
this.price,
|
||||||
|
this.vAT,
|
||||||
|
this.totalPrice});
|
||||||
|
|
||||||
|
PatientERCMCInsertServicesList.fromJson(Map<String, dynamic> json) {
|
||||||
|
recordID = json['RecordID'];
|
||||||
|
serviceID = json['ServiceID'];
|
||||||
|
selectedServiceName = json['selectedServiceName'];
|
||||||
|
selectedServiceNameAR = json['selectedServiceNameAR'];
|
||||||
|
price = json['Price'];
|
||||||
|
vAT = json['VAT'];
|
||||||
|
totalPrice = json['TotalPrice'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['RecordID'] = this.recordID;
|
||||||
|
data['ServiceID'] = this.serviceID;
|
||||||
|
data['selectedServiceName'] = this.selectedServiceName;
|
||||||
|
data['selectedServiceNameAR'] = this.selectedServiceNameAR;
|
||||||
|
data['Price'] = this.price;
|
||||||
|
data['VAT'] = this.vAT;
|
||||||
|
data['TotalPrice'] = this.totalPrice;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,72 @@
|
|||||||
|
class GetCMCServicesRequestModel {
|
||||||
|
int channel;
|
||||||
|
int deviceTypeID;
|
||||||
|
int genderID;
|
||||||
|
String generalid;
|
||||||
|
String identificationNo;
|
||||||
|
String iPAdress;
|
||||||
|
bool isDentalAllowedBackend;
|
||||||
|
int languageID;
|
||||||
|
int patientID;
|
||||||
|
int patientOutSA;
|
||||||
|
int patientType;
|
||||||
|
int patientTypeID;
|
||||||
|
String sessionID;
|
||||||
|
String tokenID;
|
||||||
|
double versionID;
|
||||||
|
|
||||||
|
GetCMCServicesRequestModel(
|
||||||
|
{this.channel,
|
||||||
|
this.deviceTypeID,
|
||||||
|
this.genderID,
|
||||||
|
this.generalid,
|
||||||
|
this.identificationNo,
|
||||||
|
this.iPAdress,
|
||||||
|
this.isDentalAllowedBackend,
|
||||||
|
this.languageID,
|
||||||
|
this.patientID,
|
||||||
|
this.patientOutSA,
|
||||||
|
this.patientType,
|
||||||
|
this.patientTypeID,
|
||||||
|
this.sessionID,
|
||||||
|
this.tokenID,
|
||||||
|
this.versionID});
|
||||||
|
|
||||||
|
GetCMCServicesRequestModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
channel = json['Channel'];
|
||||||
|
deviceTypeID = json['DeviceTypeID'];
|
||||||
|
genderID = json['GenderID'];
|
||||||
|
generalid = json['generalid'];
|
||||||
|
identificationNo = json['IdentificationNo'];
|
||||||
|
iPAdress = json['IPAdress'];
|
||||||
|
isDentalAllowedBackend = json['isDentalAllowedBackend'];
|
||||||
|
languageID = json['LanguageID'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
patientOutSA = json['PatientOutSA'];
|
||||||
|
patientType = json['PatientType'];
|
||||||
|
patientTypeID = json['PatientTypeID'];
|
||||||
|
sessionID = json['SessionID'];
|
||||||
|
tokenID = json['TokenID'];
|
||||||
|
versionID = json['VersionID'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['Channel'] = this.channel;
|
||||||
|
data['DeviceTypeID'] = this.deviceTypeID;
|
||||||
|
data['GenderID'] = this.genderID;
|
||||||
|
data['generalid'] = this.generalid;
|
||||||
|
data['IdentificationNo'] = this.identificationNo;
|
||||||
|
data['IPAdress'] = this.iPAdress;
|
||||||
|
data['isDentalAllowedBackend'] = this.isDentalAllowedBackend;
|
||||||
|
data['LanguageID'] = this.languageID;
|
||||||
|
data['PatientID'] = this.patientID;
|
||||||
|
data['PatientOutSA'] = this.patientOutSA;
|
||||||
|
data['PatientType'] = this.patientType;
|
||||||
|
data['PatientTypeID'] = this.patientTypeID;
|
||||||
|
data['SessionID'] = this.sessionID;
|
||||||
|
data['TokenID'] = this.tokenID;
|
||||||
|
data['VersionID'] = this.versionID;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue