fix issues inside diff pages

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

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

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

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

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

Loading…
Cancel
Save