fix issues inside diff pages

merge-requests/884/head
Elham Rababh 4 years ago
parent ca854638e5
commit 2e884c4a35

@ -37,7 +37,6 @@ class STPReferralFrequencyRequest {
{this.languageID = 2,
this.stamp = "2020-06-03T11:18:19.986Z",
this.iPAdress = "11.11.11.11",
this.versionID = 5.8,
this.channel = 9,
this.tokenID,
this.sessionID = "JBXRsDl37L",

@ -35,8 +35,6 @@ class ProgressNoteRequest {
bool isLoginForDoctorApp;
bool patientOutSA;
int patientTypeID;
double versionID;
ProgressNoteRequest(
{this.visitType ,
this.admissionNo,
@ -49,7 +47,6 @@ class ProgressNoteRequest {
this.sessionID = "LlBk8lUEJY",
this.isLoginForDoctorApp = true,
this.patientTypeID = 1,
this.versionID = 5.5,
this.patientOutSA = false});
ProgressNoteRequest.fromJson(Map<String, dynamic> json) {
@ -65,7 +62,6 @@ class ProgressNoteRequest {
isLoginForDoctorApp = json['IsLoginForDoctorApp'];
patientOutSA = json['PatientOutSA'];
patientTypeID = json['PatientTypeID'];
versionID = json['VersionID'];
}
Map<String, dynamic> toJson() {
@ -82,7 +78,6 @@ class ProgressNoteRequest {
data['IsLoginForDoctorApp'] = this.isLoginForDoctorApp;
data['PatientOutSA'] = this.patientOutSA;
data['PatientTypeID'] = this.patientTypeID;
data['VersionID'] = this.versionID;
return data;
}
}

@ -26,7 +26,6 @@ class PharmaciesListRequestModel {
this.languageID = 2,
this.stamp = '2020-04-23T21:01:21.492Z',
this.ipAdress = '11.11.11.11',
this.versionID = 5.5,
this.tokenID,
this.sessionID = 'e29zoooEJ4',
this.isLoginForDoctorApp = true,

@ -10,7 +10,6 @@ class PharmaciesItemsRequestModel {
String pHRItemName;
int pageIndex = 0;
int pageSize = 20;
double versionID = 5.5;
int channel = 3;
int languageID = 2;
String iPAdress = "10.20.10.20";
@ -24,7 +23,6 @@ class PharmaciesItemsRequestModel {
{this.pHRItemName,
this.pageIndex = 0,
this.pageSize = 20,
this.versionID = 5.8,
this.channel = 3,
this.languageID = 2,
this.iPAdress = "10.20.10.20",
@ -38,7 +36,6 @@ class PharmaciesItemsRequestModel {
pHRItemName = json['PHR_itemName'];
pageIndex = json['PageIndex'];
pageSize = json['PageSize'];
versionID = json['VersionID'];
channel = json['Channel'];
languageID = json['LanguageID'];
iPAdress = json['IPAdress'];
@ -54,7 +51,6 @@ class PharmaciesItemsRequestModel {
data['PHR_itemName'] = this.pHRItemName;
data['PageIndex'] = this.pageIndex;
data['PageSize'] = this.pageSize;
data['VersionID'] = this.versionID;
data['Channel'] = this.channel;
data['LanguageID'] = this.languageID;
data['IPAdress'] = this.iPAdress;

Loading…
Cancel
Save