Merge branch 'master' of https://gitlab.com/Cloud_Solution/diplomatic-quarter into my_trackers
commit
0122cc8914
Binary file not shown.
@ -0,0 +1,16 @@
|
||||
-----BEGIN CERTIFICATE REQUEST-----
|
||||
MIICkDCCAXgCAQAwSzEjMCEGCSqGSIb3DQEJARYUaGFyb29uNjEzOEBnbWFpbC5j
|
||||
b20xFzAVBgNVBAMMDk1vaGFtZWQgTWVrYXd5MQswCQYDVQQGEwJBRTCCASIwDQYJ
|
||||
KoZIhvcNAQEBBQADggEPADCCAQoCggEBALcPrk09MmhQhRNe8LYdaeN4mYtoKJg3
|
||||
SndMLgpxnaRqP7a6f4sp118wCFZsTXnwhPVP4DzmXWc2AzZtsusmhdw1tzNFtme0
|
||||
PtEjDXIPI2lHU3Zhi2zukZdAVxF+uNi3pcp0axina60ZQciIfb/7Fx6hNbqpk90E
|
||||
O8a2Ob17Wq/ZTYIP4H7ZGydUe2ra9QyDtjmGj9vpEv+xXYWX685sgEylTG14DSOP
|
||||
ozGsQmaf+QCMbCT3osq7idWc1IQ+3Oed0kUTx1jmRtZwPzQkJJ1Bx3vYSXN/EOlb
|
||||
u+ei1Nqtc14aVCYvmcuvGDtMyRtw6w+syCw2CpJCPGNkxNz+EH9h+EUCAwEAAaAA
|
||||
MA0GCSqGSIb3DQEBCwUAA4IBAQBYdu2AaZY6kReuT1Xp8ktlyPfjBRKhPPChuaeR
|
||||
tFnYMsJtG0aIA/xOu4/RYDgmL92seimULXd9DIPvkJ2DuaB+bdfGTw0qXUlihkm8
|
||||
ui5O0L2F9OZbQxJogvTmrMsKnkoR27O5vyfCn9VMOLk3x1nyEzAXIj/5GHWw9T6t
|
||||
r65jPUOfm6ikiZtICBzSaTPBtyfZB8mrbwG2dpOvVNSa1dj3xip4L8CL6TxH+qM3
|
||||
+N90QFYjvjphJkpn2Kt0ow9IyIyeqJbIYJmsWoV9pXddOHCjKdTWUjq7D2Jn3eUA
|
||||
DAKjKgVqF4/dU10k7EtSfrw01aHLXjj5FxsD5YhVrgTA5xSq
|
||||
-----END CERTIFICATE REQUEST-----
|
||||
Binary file not shown.
@ -0,0 +1,16 @@
|
||||
-----BEGIN CERTIFICATE REQUEST-----
|
||||
MIICkDCCAXgCAQAwSzEjMCEGCSqGSIb3DQEJARYUaGFyb29uNjEzOEBnbWFpbC5j
|
||||
b20xFzAVBgNVBAMMDk1vaGFtZWQgTWVrYXd5MQswCQYDVQQGEwJBRTCCASIwDQYJ
|
||||
KoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnHqsyE7WfiVcE1Lpa4t4OVO6qlll2q
|
||||
1djs0XG06R/dlDtIqv4940/XLj+hU93mzAcVvFW4DSIEdD3InM3+T6oMTjPu6meU
|
||||
69h9ryaVkluQRrT/tdGI1EKO4MWGMe4MDIt7DqMhMfAcxTwekwdxdKaCEhaw3qnA
|
||||
l/64AelY6URW1pHHJMA0VV7j+pE3jVNai+muMXPrhQ1VrOrV8FftpY3bEeRJR2Cl
|
||||
T0tv0LhEMu4SfLnVWCzGQQC82hilDw3rH3ZDs8DFxF9agNVdwKlYamarh1dQXwRq
|
||||
Yx2+sjY1/51r9L4VS+GAh9ECxz0e+43NpzfZ/N+mTeDYKDepaBwPQ6kCAwEAAaAA
|
||||
MA0GCSqGSIb3DQEBCwUAA4IBAQB89OyLfywKT7ftmpEqCmgsmaJexb580q9w8wOk
|
||||
1JhJkNV5ec+p1dnge2NZeJ4LGII/5wmPj1vANNW0GZdmJDgnC+2gg9toq1QLCAsF
|
||||
rW7/LMpgAoEH+P5bhrHV9RRv6BQi0ZmN0apBHjp/pqZfm2Cl5jQPEWjUEf2tIF4l
|
||||
LSKdok6IPO9n4Fgyk0XdUNSEhgVhsLtZkGiXnkI1YovKDnupTFYPXMLp103bc9zP
|
||||
xDxwscvOysNDijlzZAkJPg2z8NrJIRDrKvLRHzxQwZ/1LHVB/51bp/1iyks3vOjh
|
||||
qw5XVsrtGAjCjU9md7q3XkPSyKzhK9UqPdOxdvl1OY0KKIIY
|
||||
-----END CERTIFICATE REQUEST-----
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,17 @@
|
||||
package io.flutter.plugins.firebasemessaging;
|
||||
|
||||
import android.content.Intent;
|
||||
|
||||
import com.google.firebase.messaging.RemoteMessage;
|
||||
|
||||
public class CustomFlutterFirebaseMessagingService extends FlutterFirebaseMessagingService {
|
||||
@Override
|
||||
public void onMessageReceived(RemoteMessage remoteMessage) {
|
||||
if (remoteMessage.getData().containsKey("is_call")) {
|
||||
Intent intent = getPackageManager().getLaunchIntentForPackage(getPackageName());
|
||||
startActivity(intent);
|
||||
super.onMessageReceived(remoteMessage);
|
||||
} else
|
||||
super.onMessageReceived(remoteMessage);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
package io.flutter.plugins.firebasemessaging;
|
||||
|
||||
import android.content.Intent;
|
||||
|
||||
import com.google.firebase.messaging.RemoteMessage;
|
||||
|
||||
public class CustomFlutterFirebaseMessagingService extends FlutterFirebaseMessagingService {
|
||||
@Override
|
||||
public void onMessageReceived(RemoteMessage remoteMessage) {
|
||||
if (remoteMessage.getData().containsKey("is_call")) {
|
||||
Intent intent = getPackageManager().getLaunchIntentForPackage(getPackageName());
|
||||
startActivity(intent);
|
||||
super.onMessageReceived(remoteMessage);
|
||||
} else
|
||||
super.onMessageReceived(remoteMessage);
|
||||
}
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
#Fri Jun 23 08:50:38 CEST 2017
|
||||
#Thu Sep 03 16:26:30 EEST 2020
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
@ -0,0 +1,79 @@
|
||||
import 'package:diplomaticquarterapp/uitl/date_uitl.dart';
|
||||
class PatientER_RRT_GetAllTransportationMethodListModel {
|
||||
int id;
|
||||
DateTime createDate;
|
||||
DateTime lastEditDate;
|
||||
int createdBy;
|
||||
int lastEditBy;
|
||||
bool isActive;
|
||||
String title;
|
||||
String titleAR;
|
||||
int price;
|
||||
Null isDefault;
|
||||
int visibility;
|
||||
Null durationId;
|
||||
String description;
|
||||
String descriptionAR;
|
||||
int totalPrice;
|
||||
int vAT;
|
||||
|
||||
PatientER_RRT_GetAllTransportationMethodListModel(
|
||||
{
|
||||
this.id,
|
||||
this.createDate,
|
||||
this.lastEditDate,
|
||||
this.createdBy,
|
||||
this.lastEditBy,
|
||||
this.isActive,
|
||||
this.title,
|
||||
this.titleAR,
|
||||
this.price,
|
||||
this.isDefault,
|
||||
this.visibility,
|
||||
this.durationId,
|
||||
this.description,
|
||||
this.descriptionAR,
|
||||
this.totalPrice,
|
||||
this.vAT});
|
||||
|
||||
PatientER_RRT_GetAllTransportationMethodListModel.fromJson(
|
||||
Map<String, dynamic> json) {
|
||||
id = json['Id'];
|
||||
createDate = DateUtil.convertStringToDate(json['CreateDate']);
|
||||
lastEditDate = DateUtil.convertStringToDate(json['LastEditDate']);
|
||||
createdBy = json['CreatedBy'];
|
||||
lastEditBy = json['LastEditBy'];
|
||||
isActive = json['IsActive'];
|
||||
title = json['Title'];
|
||||
titleAR = json['TitleAR'];
|
||||
price = json['Price'];
|
||||
isDefault = json['isDefault'];
|
||||
visibility = json['Visibility'];
|
||||
durationId = json['DurationId'];
|
||||
description = json['Description'];
|
||||
descriptionAR = json['DescriptionAR'];
|
||||
totalPrice = json['TotalPrice'];
|
||||
vAT = json['VAT'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['Id'] = this.id;
|
||||
data['CreateDate'] = this.createDate;
|
||||
data['LastEditDate'] = this.lastEditDate;
|
||||
data['CreatedBy'] = this.createdBy;
|
||||
data['LastEditBy'] = this.lastEditBy;
|
||||
data['IsActive'] = this.isActive;
|
||||
data['Title'] = this.title;
|
||||
data['TitleAR'] = this.titleAR;
|
||||
data['Price'] = this.price;
|
||||
data['isDefault'] = this.isDefault;
|
||||
data['Visibility'] = this.visibility;
|
||||
data['DurationId'] = this.durationId;
|
||||
data['Description'] = this.description;
|
||||
data['DescriptionAR'] = this.descriptionAR;
|
||||
data['TotalPrice'] = this.totalPrice;
|
||||
data['VAT'] = this.vAT;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,104 @@
|
||||
class ProjectAvgERWaitingTime {
|
||||
int iD;
|
||||
int projectID;
|
||||
int avgTimeInMinutes;
|
||||
String avgTimeInHHMM;
|
||||
dynamic distanceInKilometers;
|
||||
String latitude;
|
||||
String longitude;
|
||||
String phoneNumber;
|
||||
String projectImageURL;
|
||||
String projectName;
|
||||
|
||||
ProjectAvgERWaitingTime(
|
||||
{this.iD,
|
||||
this.projectID,
|
||||
this.avgTimeInMinutes,
|
||||
this.avgTimeInHHMM,
|
||||
this.distanceInKilometers,
|
||||
this.latitude,
|
||||
this.longitude,
|
||||
this.phoneNumber,
|
||||
this.projectImageURL,
|
||||
this.projectName});
|
||||
|
||||
ProjectAvgERWaitingTime.fromJson(Map<String, dynamic> json) {
|
||||
iD = json['ID'];
|
||||
projectID = json['ProjectID'];
|
||||
avgTimeInMinutes = json['AvgTimeInMinutes'];
|
||||
avgTimeInHHMM = json['AvgTimeInHHMM'];
|
||||
distanceInKilometers = json['DistanceInKilometers'];
|
||||
latitude = json['Latitude'];
|
||||
longitude = json['Longitude'];
|
||||
phoneNumber = json['PhoneNumber'];
|
||||
projectImageURL = json['ProjectImageURL'];
|
||||
projectName = json['ProjectName'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['ID'] = this.iD;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['AvgTimeInMinutes'] = this.avgTimeInMinutes;
|
||||
data['AvgTimeInHHMM'] = this.avgTimeInHHMM;
|
||||
data['DistanceInKilometers'] = this.distanceInKilometers;
|
||||
data['Latitude'] = this.latitude;
|
||||
data['Longitude'] = this.longitude;
|
||||
data['PhoneNumber'] = this.phoneNumber;
|
||||
data['ProjectImageURL'] = this.projectImageURL;
|
||||
data['ProjectName'] = this.projectName;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
//class ProjectAvgERWaitingTime {
|
||||
// int iD;
|
||||
// int projectID;
|
||||
// int avgTimeInMinutes;
|
||||
// String avgTimeInHHMM;
|
||||
// String distanceInKilometers;
|
||||
// String latitude;
|
||||
// String longitude;
|
||||
// String phoneNumber;
|
||||
// String projectImageURL;
|
||||
// String projectName;
|
||||
//
|
||||
// ProjectAvgERWaitingTime(
|
||||
// {this.iD,
|
||||
// this.projectID,
|
||||
// this.avgTimeInMinutes,
|
||||
// this.avgTimeInHHMM,
|
||||
// this.distanceInKilometers,
|
||||
// this.latitude,
|
||||
// this.longitude,
|
||||
// this.phoneNumber,
|
||||
// this.projectImageURL,
|
||||
// this.projectName});
|
||||
//
|
||||
// ProjectAvgERWaitingTime.fromJson(Map<String, dynamic> json) {
|
||||
// iD = json['ID'];
|
||||
// projectID = json['ProjectID'];
|
||||
// avgTimeInMinutes = json['AvgTimeInMinutes'];
|
||||
// avgTimeInHHMM = json['AvgTimeInHHMM'];
|
||||
// distanceInKilometers = json['DistanceInKilometers'];
|
||||
// latitude = json['Latitude'];
|
||||
// longitude = json['Longitude'];
|
||||
// phoneNumber = json['PhoneNumber'];
|
||||
// projectImageURL = json['ProjectImageURL'];
|
||||
// projectName = json['ProjectName'];
|
||||
// }
|
||||
//
|
||||
// Map<String, dynamic> toJson() {
|
||||
// final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
// data['ID'] = this.iD;
|
||||
// data['ProjectID'] = this.projectID;
|
||||
// data['AvgTimeInMinutes'] = this.avgTimeInMinutes;
|
||||
// data['AvgTimeInHHMM'] = this.avgTimeInHHMM;
|
||||
// data['DistanceInKilometers'] = this.distanceInKilometers;
|
||||
// data['Latitude'] = this.latitude;
|
||||
// data['Longitude'] = this.longitude;
|
||||
// data['PhoneNumber'] = this.phoneNumber;
|
||||
// data['ProjectImageURL'] = this.projectImageURL;
|
||||
// data['ProjectName'] = this.projectName;
|
||||
// return data;
|
||||
// }
|
||||
//}
|
||||
@ -0,0 +1,88 @@
|
||||
class LabResult {
|
||||
String description;
|
||||
Null femaleInterpretativeData;
|
||||
int gender;
|
||||
int lineItemNo;
|
||||
Null maleInterpretativeData;
|
||||
String notes;
|
||||
String packageID;
|
||||
int patientID;
|
||||
String projectID;
|
||||
String referanceRange;
|
||||
String resultValue;
|
||||
String sampleCollectedOn;
|
||||
String sampleReceivedOn;
|
||||
String setupID;
|
||||
Null superVerifiedOn;
|
||||
String testCode;
|
||||
String uOM;
|
||||
String verifiedOn;
|
||||
Null verifiedOnDateTime;
|
||||
|
||||
LabResult(
|
||||
{this.description,
|
||||
this.femaleInterpretativeData,
|
||||
this.gender,
|
||||
this.lineItemNo,
|
||||
this.maleInterpretativeData,
|
||||
this.notes,
|
||||
this.packageID,
|
||||
this.patientID,
|
||||
this.projectID,
|
||||
this.referanceRange,
|
||||
this.resultValue,
|
||||
this.sampleCollectedOn,
|
||||
this.sampleReceivedOn,
|
||||
this.setupID,
|
||||
this.superVerifiedOn,
|
||||
this.testCode,
|
||||
this.uOM,
|
||||
this.verifiedOn,
|
||||
this.verifiedOnDateTime});
|
||||
|
||||
LabResult.fromJson(Map<String, dynamic> json) {
|
||||
description = json['Description'];
|
||||
femaleInterpretativeData = json['FemaleInterpretativeData'];
|
||||
gender = json['Gender'];
|
||||
lineItemNo = json['LineItemNo'];
|
||||
maleInterpretativeData = json['MaleInterpretativeData'];
|
||||
notes = json['Notes'];
|
||||
packageID = json['PackageID'];
|
||||
patientID = json['PatientID'];
|
||||
projectID = json['ProjectID'];
|
||||
referanceRange = json['ReferanceRange'];
|
||||
resultValue = json['ResultValue'];
|
||||
sampleCollectedOn = json['SampleCollectedOn'];
|
||||
sampleReceivedOn = json['SampleReceivedOn'];
|
||||
setupID = json['SetupID'];
|
||||
superVerifiedOn = json['SuperVerifiedOn'];
|
||||
testCode = json['TestCode'];
|
||||
uOM = json['UOM'];
|
||||
verifiedOn = json['VerifiedOn'];
|
||||
verifiedOnDateTime = json['VerifiedOnDateTime'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['Description'] = this.description;
|
||||
data['FemaleInterpretativeData'] = this.femaleInterpretativeData;
|
||||
data['Gender'] = this.gender;
|
||||
data['LineItemNo'] = this.lineItemNo;
|
||||
data['MaleInterpretativeData'] = this.maleInterpretativeData;
|
||||
data['Notes'] = this.notes;
|
||||
data['PackageID'] = this.packageID;
|
||||
data['PatientID'] = this.patientID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['ReferanceRange'] = this.referanceRange;
|
||||
data['ResultValue'] = this.resultValue;
|
||||
data['SampleCollectedOn'] = this.sampleCollectedOn;
|
||||
data['SampleReceivedOn'] = this.sampleReceivedOn;
|
||||
data['SetupID'] = this.setupID;
|
||||
data['SuperVerifiedOn'] = this.superVerifiedOn;
|
||||
data['TestCode'] = this.testCode;
|
||||
data['UOM'] = this.uOM;
|
||||
data['VerifiedOn'] = this.verifiedOn;
|
||||
data['VerifiedOnDateTime'] = this.verifiedOnDateTime;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
|
||||
|
||||
class AdvanceModel {
|
||||
String fileNumber;
|
||||
String amount;
|
||||
HospitalsModel hospitalsModel;
|
||||
String email;
|
||||
String note;
|
||||
String depositorName;
|
||||
|
||||
AdvanceModel(
|
||||
{this.amount,
|
||||
this.email,
|
||||
this.note,
|
||||
this.hospitalsModel,
|
||||
this.fileNumber,
|
||||
this.depositorName});
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
class PatientAdvanceBalanceAmount {
|
||||
int distanceInKilometers;
|
||||
dynamic patientAdvanceBalanceAmount;
|
||||
String projectDescription;
|
||||
int projectID;
|
||||
|
||||
PatientAdvanceBalanceAmount(
|
||||
{this.distanceInKilometers,
|
||||
this.patientAdvanceBalanceAmount,
|
||||
this.projectDescription,
|
||||
this.projectID});
|
||||
|
||||
PatientAdvanceBalanceAmount.fromJson(Map<String, dynamic> json) {
|
||||
distanceInKilometers = json['DistanceInKilometers'];
|
||||
patientAdvanceBalanceAmount = json['PatientAdvanceBalanceAmount'];
|
||||
projectDescription = json['ProjectDescription'];
|
||||
projectID = json['ProjectID'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['DistanceInKilometers'] = this.distanceInKilometers;
|
||||
data['PatientAdvanceBalanceAmount'] = this.patientAdvanceBalanceAmount;
|
||||
data['ProjectDescription'] = this.projectDescription;
|
||||
data['ProjectID'] = this.projectID;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,32 @@
|
||||
class PatientInfo {
|
||||
String fullName;
|
||||
String mobileNumber;
|
||||
int patientID;
|
||||
int projectID;
|
||||
String zipCode;
|
||||
|
||||
PatientInfo(
|
||||
{this.fullName,
|
||||
this.mobileNumber,
|
||||
this.patientID,
|
||||
this.projectID,
|
||||
this.zipCode});
|
||||
|
||||
PatientInfo.fromJson(Map<String, dynamic> json) {
|
||||
fullName = json['FullName'];
|
||||
mobileNumber = json['MobileNumber'];
|
||||
patientID = json['PatientID'];
|
||||
projectID = json['ProjectID'];
|
||||
zipCode = json['ZipCode'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['FullName'] = this.fullName;
|
||||
data['MobileNumber'] = this.mobileNumber;
|
||||
data['PatientID'] = this.patientID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['ZipCode'] = this.zipCode;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,84 @@
|
||||
class PatientInfoAndMobileNumber {
|
||||
String setupID;
|
||||
int projectID;
|
||||
int mainAccountID;
|
||||
int patientType;
|
||||
int patientID;
|
||||
String firstName;
|
||||
Null middleName;
|
||||
Null lastName;
|
||||
Null firstNameN;
|
||||
Null middleNameN;
|
||||
Null lastNameN;
|
||||
Null gender;
|
||||
Null dateofBirth;
|
||||
Null dateofBirthN;
|
||||
Null nationalityID;
|
||||
String mobileNumber;
|
||||
String emailAddress;
|
||||
Null zipCode;
|
||||
|
||||
PatientInfoAndMobileNumber(
|
||||
{this.setupID,
|
||||
this.projectID,
|
||||
this.mainAccountID,
|
||||
this.patientType,
|
||||
this.patientID,
|
||||
this.firstName,
|
||||
this.middleName,
|
||||
this.lastName,
|
||||
this.firstNameN,
|
||||
this.middleNameN,
|
||||
this.lastNameN,
|
||||
this.gender,
|
||||
this.dateofBirth,
|
||||
this.dateofBirthN,
|
||||
this.nationalityID,
|
||||
this.mobileNumber,
|
||||
this.emailAddress,
|
||||
this.zipCode});
|
||||
|
||||
PatientInfoAndMobileNumber.fromJson(Map<String, dynamic> json) {
|
||||
setupID = json['SetupID'];
|
||||
projectID = json['ProjectID'];
|
||||
mainAccountID = json['MainAccountID'];
|
||||
patientType = json['PatientType'];
|
||||
patientID = json['PatientID'];
|
||||
firstName = json['FirstName'];
|
||||
middleName = json['MiddleName'];
|
||||
lastName = json['LastName'];
|
||||
firstNameN = json['FirstNameN'];
|
||||
middleNameN = json['MiddleNameN'];
|
||||
lastNameN = json['LastNameN'];
|
||||
gender = json['Gender'];
|
||||
dateofBirth = json['DateofBirth'];
|
||||
dateofBirthN = json['DateofBirthN'];
|
||||
nationalityID = json['NationalityID'];
|
||||
mobileNumber = json['MobileNumber'];
|
||||
emailAddress = json['EmailAddress'];
|
||||
zipCode = json['ZipCode'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['SetupID'] = this.setupID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['MainAccountID'] = this.mainAccountID;
|
||||
data['PatientType'] = this.patientType;
|
||||
data['PatientID'] = this.patientID;
|
||||
data['FirstName'] = this.firstName;
|
||||
data['MiddleName'] = this.middleName;
|
||||
data['LastName'] = this.lastName;
|
||||
data['FirstNameN'] = this.firstNameN;
|
||||
data['MiddleNameN'] = this.middleNameN;
|
||||
data['LastNameN'] = this.lastNameN;
|
||||
data['Gender'] = this.gender;
|
||||
data['DateofBirth'] = this.dateofBirth;
|
||||
data['DateofBirthN'] = this.dateofBirthN;
|
||||
data['NationalityID'] = this.nationalityID;
|
||||
data['MobileNumber'] = this.mobileNumber;
|
||||
data['EmailAddress'] = this.emailAddress;
|
||||
data['ZipCode'] = this.zipCode;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,139 @@
|
||||
import 'package:diplomaticquarterapp/uitl/date_uitl.dart';
|
||||
|
||||
class SickLeave {
|
||||
String setupID;
|
||||
int projectID;
|
||||
int patientID;
|
||||
int patientType;
|
||||
int clinicID;
|
||||
int doctorID;
|
||||
int requestNo;
|
||||
DateTime requestDate;
|
||||
int sickLeaveDays;
|
||||
int appointmentNo;
|
||||
int admissionNo;
|
||||
int actualDoctorRate;
|
||||
String appointmentDate;
|
||||
String clinicName;
|
||||
String doctorImageURL;
|
||||
String doctorName;
|
||||
int doctorRate;
|
||||
String doctorTitle;
|
||||
int gender;
|
||||
String genderDescription;
|
||||
bool isActiveDoctorProfile;
|
||||
bool isDoctorAllowVedioCall;
|
||||
bool isExecludeDoctor;
|
||||
bool isInOutPatient;
|
||||
String isInOutPatientDescription;
|
||||
String isInOutPatientDescriptionN;
|
||||
int noOfPatientsRate;
|
||||
Null patientName;
|
||||
String projectName;
|
||||
String qR;
|
||||
List<String> speciality;
|
||||
|
||||
SickLeave(
|
||||
{this.setupID,
|
||||
this.projectID,
|
||||
this.patientID,
|
||||
this.patientType,
|
||||
this.clinicID,
|
||||
this.doctorID,
|
||||
this.requestNo,
|
||||
this.requestDate,
|
||||
this.sickLeaveDays,
|
||||
this.appointmentNo,
|
||||
this.admissionNo,
|
||||
this.actualDoctorRate,
|
||||
this.appointmentDate,
|
||||
this.clinicName,
|
||||
this.doctorImageURL,
|
||||
this.doctorName,
|
||||
this.doctorRate,
|
||||
this.doctorTitle,
|
||||
this.gender,
|
||||
this.genderDescription,
|
||||
this.isActiveDoctorProfile,
|
||||
this.isDoctorAllowVedioCall,
|
||||
this.isExecludeDoctor,
|
||||
this.isInOutPatient,
|
||||
this.isInOutPatientDescription,
|
||||
this.isInOutPatientDescriptionN,
|
||||
this.noOfPatientsRate,
|
||||
this.patientName,
|
||||
this.projectName,
|
||||
this.qR,
|
||||
this.speciality});
|
||||
|
||||
SickLeave.fromJson(Map<String, dynamic> json) {
|
||||
setupID = json['SetupID'];
|
||||
projectID = json['ProjectID'];
|
||||
patientID = json['PatientID'];
|
||||
patientType = json['PatientType'];
|
||||
clinicID = json['ClinicID'];
|
||||
doctorID = json['DoctorID'];
|
||||
requestNo = json['RequestNo'];
|
||||
requestDate = DateUtil.convertStringToDate(json['RequestDate']);
|
||||
sickLeaveDays = json['SickLeaveDays'];
|
||||
appointmentNo = json['AppointmentNo'];
|
||||
admissionNo = json['AdmissionNo'];
|
||||
actualDoctorRate = json['ActualDoctorRate'];
|
||||
appointmentDate = json['AppointmentDate'];
|
||||
clinicName = json['ClinicName'];
|
||||
doctorImageURL = json['DoctorImageURL'];
|
||||
doctorName = json['DoctorName'];
|
||||
doctorRate = json['DoctorRate'];
|
||||
doctorTitle = json['DoctorTitle'];
|
||||
gender = json['Gender'];
|
||||
genderDescription = json['GenderDescription'];
|
||||
isActiveDoctorProfile = json['IsActiveDoctorProfile'];
|
||||
isDoctorAllowVedioCall = json['IsDoctorAllowVedioCall'];
|
||||
isExecludeDoctor = json['IsExecludeDoctor'];
|
||||
isInOutPatient = json['IsInOutPatient'];
|
||||
isInOutPatientDescription = json['IsInOutPatientDescription'];
|
||||
isInOutPatientDescriptionN = json['IsInOutPatientDescriptionN'];
|
||||
noOfPatientsRate = json['NoOfPatientsRate'];
|
||||
patientName = json['PatientName'];
|
||||
projectName = json['ProjectName'];
|
||||
qR = json['QR'];
|
||||
if(json['Speciality']!=null)
|
||||
speciality = json['Speciality'].cast<String>();
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['SetupID'] = this.setupID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['PatientID'] = this.patientID;
|
||||
data['PatientType'] = this.patientType;
|
||||
data['ClinicID'] = this.clinicID;
|
||||
data['DoctorID'] = this.doctorID;
|
||||
data['RequestNo'] = this.requestNo;
|
||||
data['RequestDate'] = DateUtil.convertDateToString(requestDate);
|
||||
data['SickLeaveDays'] = this.sickLeaveDays;
|
||||
data['AppointmentNo'] = this.appointmentNo;
|
||||
data['AdmissionNo'] = this.admissionNo;
|
||||
data['ActualDoctorRate'] = this.actualDoctorRate;
|
||||
data['AppointmentDate'] = this.appointmentDate;
|
||||
data['ClinicName'] = this.clinicName;
|
||||
data['DoctorImageURL'] = this.doctorImageURL;
|
||||
data['DoctorName'] = this.doctorName;
|
||||
data['DoctorRate'] = this.doctorRate;
|
||||
data['DoctorTitle'] = this.doctorTitle;
|
||||
data['Gender'] = this.gender;
|
||||
data['GenderDescription'] = this.genderDescription;
|
||||
data['IsActiveDoctorProfile'] = this.isActiveDoctorProfile;
|
||||
data['IsDoctorAllowVedioCall'] = this.isDoctorAllowVedioCall;
|
||||
data['IsExecludeDoctor'] = this.isExecludeDoctor;
|
||||
data['IsInOutPatient'] = this.isInOutPatient;
|
||||
data['IsInOutPatientDescription'] = this.isInOutPatientDescription;
|
||||
data['IsInOutPatientDescriptionN'] = this.isInOutPatientDescriptionN;
|
||||
data['NoOfPatientsRate'] = this.noOfPatientsRate;
|
||||
data['PatientName'] = this.patientName;
|
||||
data['ProjectName'] = this.projectName;
|
||||
data['QR'] = this.qR;
|
||||
data['Speciality'] = this.speciality;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -1,91 +1,152 @@
|
||||
class VaccineModel {
|
||||
String to;
|
||||
String from;
|
||||
double versionID;
|
||||
int channel;
|
||||
int languageID;
|
||||
String iPAdress;
|
||||
String generalid;
|
||||
int patientOutSA;
|
||||
String sessionID;
|
||||
bool isDentalAllowedBackend;
|
||||
int deviceTypeID;
|
||||
String setupID;
|
||||
int projectID;
|
||||
int patientID;
|
||||
String tokenID;
|
||||
int patientTypeID;
|
||||
int patientType;
|
||||
int invoiceNo;
|
||||
String procedureID;
|
||||
String vaccineName;
|
||||
Null vaccineNameN;
|
||||
String invoiceDate;
|
||||
int doctorID;
|
||||
int clinicID;
|
||||
String firstName;
|
||||
String middleName;
|
||||
String lastName;
|
||||
Null firstNameN;
|
||||
Null middleNameN;
|
||||
Null lastNameN;
|
||||
String dateofBirth;
|
||||
int actualDoctorRate;
|
||||
String age;
|
||||
String clinicName;
|
||||
String doctorImageURL;
|
||||
String doctorName;
|
||||
int doctorRate;
|
||||
String doctorTitle;
|
||||
int gender;
|
||||
String genderDescription;
|
||||
bool isActiveDoctorProfile;
|
||||
bool isDoctorAllowVedioCall;
|
||||
bool isExecludeDoctor;
|
||||
int noOfPatientsRate;
|
||||
String patientName;
|
||||
String projectName;
|
||||
String vaccineName;
|
||||
String qR;
|
||||
List<String> speciality;
|
||||
String vaccinationDate;
|
||||
|
||||
VaccineModel({
|
||||
this.to,
|
||||
this.from,
|
||||
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.invoiceDate,
|
||||
this.doctorImageURL,
|
||||
this.doctorName,
|
||||
this.doctorTitle,
|
||||
this.projectName,
|
||||
this.vaccineName,
|
||||
});
|
||||
VaccineModel(
|
||||
{this.setupID,
|
||||
this.projectID,
|
||||
this.patientID,
|
||||
this.invoiceNo,
|
||||
this.procedureID,
|
||||
this.vaccineName,
|
||||
this.vaccineNameN,
|
||||
this.invoiceDate,
|
||||
this.doctorID,
|
||||
this.clinicID,
|
||||
this.firstName,
|
||||
this.middleName,
|
||||
this.lastName,
|
||||
this.firstNameN,
|
||||
this.middleNameN,
|
||||
this.lastNameN,
|
||||
this.dateofBirth,
|
||||
this.actualDoctorRate,
|
||||
this.age,
|
||||
this.clinicName,
|
||||
this.doctorImageURL,
|
||||
this.doctorName,
|
||||
this.doctorRate,
|
||||
this.doctorTitle,
|
||||
this.gender,
|
||||
this.genderDescription,
|
||||
this.isActiveDoctorProfile,
|
||||
this.isDoctorAllowVedioCall,
|
||||
this.isExecludeDoctor,
|
||||
this.noOfPatientsRate,
|
||||
this.patientName,
|
||||
this.projectName,
|
||||
this.qR,
|
||||
this.speciality,
|
||||
this.vaccinationDate});
|
||||
|
||||
VaccineModel.fromJson(Map<String, dynamic> json) {
|
||||
setupID = json['SetupID'];
|
||||
projectID = json['ProjectID'];
|
||||
patientID = json['PatientID'];
|
||||
invoiceNo = json['InvoiceNo'];
|
||||
procedureID = json['ProcedureID'];
|
||||
vaccineName = json['VaccineName'];
|
||||
projectName = json['ProjectName'];
|
||||
doctorTitle = json['DoctorTitle'];
|
||||
doctorName = json['DoctorName'];
|
||||
doctorImageURL = json['DoctorImageURL'];
|
||||
vaccineNameN = json['VaccineNameN'];
|
||||
invoiceDate = json['InvoiceDate'];
|
||||
to = json['To'];
|
||||
from = json['From'];
|
||||
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'];
|
||||
doctorID = json['DoctorID'];
|
||||
clinicID = json['ClinicID'];
|
||||
firstName = json['FirstName'];
|
||||
middleName = json['MiddleName'];
|
||||
lastName = json['LastName'];
|
||||
firstNameN = json['FirstNameN'];
|
||||
middleNameN = json['MiddleNameN'];
|
||||
lastNameN = json['LastNameN'];
|
||||
dateofBirth = json['DateofBirth'];
|
||||
actualDoctorRate = json['ActualDoctorRate'];
|
||||
age = json['Age'];
|
||||
clinicName = json['ClinicName'];
|
||||
doctorImageURL = json['DoctorImageURL'];
|
||||
doctorName = json['DoctorName'];
|
||||
doctorRate = json['DoctorRate'];
|
||||
doctorTitle = json['DoctorTitle'];
|
||||
gender = json['Gender'];
|
||||
genderDescription = json['GenderDescription'];
|
||||
isActiveDoctorProfile = json['IsActiveDoctorProfile'];
|
||||
isDoctorAllowVedioCall = json['IsDoctorAllowVedioCall'];
|
||||
isExecludeDoctor = json['IsExecludeDoctor'];
|
||||
noOfPatientsRate = json['NoOfPatientsRate'];
|
||||
patientName = json['PatientName'];
|
||||
projectName = json['ProjectName'];
|
||||
qR = json['QR'];
|
||||
speciality = json['Speciality'].cast<String>();
|
||||
vaccinationDate = json['VaccinationDate'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['To'] = this.to;
|
||||
data['From'] = this.from;
|
||||
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['SetupID'] = this.setupID;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['PatientID'] = this.patientID;
|
||||
data['TokenID'] = this.tokenID;
|
||||
data['PatientTypeID'] = this.patientTypeID;
|
||||
data['PatientType'] = this.patientType;
|
||||
data['InvoiceNo'] = this.invoiceNo;
|
||||
data['ProcedureID'] = this.procedureID;
|
||||
data['VaccineName'] = this.vaccineName;
|
||||
data['VaccineNameN'] = this.vaccineNameN;
|
||||
data['InvoiceDate'] = this.invoiceDate;
|
||||
data['DoctorID'] = this.doctorID;
|
||||
data['ClinicID'] = this.clinicID;
|
||||
data['FirstName'] = this.firstName;
|
||||
data['MiddleName'] = this.middleName;
|
||||
data['LastName'] = this.lastName;
|
||||
data['FirstNameN'] = this.firstNameN;
|
||||
data['MiddleNameN'] = this.middleNameN;
|
||||
data['LastNameN'] = this.lastNameN;
|
||||
data['DateofBirth'] = this.dateofBirth;
|
||||
data['ActualDoctorRate'] = this.actualDoctorRate;
|
||||
data['Age'] = this.age;
|
||||
data['ClinicName'] = this.clinicName;
|
||||
data['DoctorImageURL'] = this.doctorImageURL;
|
||||
data['DoctorName'] = this.doctorName;
|
||||
data['DoctorRate'] = this.doctorRate;
|
||||
data['DoctorTitle'] = this.doctorTitle;
|
||||
data['Gender'] = this.gender;
|
||||
data['GenderDescription'] = this.genderDescription;
|
||||
data['IsActiveDoctorProfile'] = this.isActiveDoctorProfile;
|
||||
data['IsDoctorAllowVedioCall'] = this.isDoctorAllowVedioCall;
|
||||
data['IsExecludeDoctor'] = this.isExecludeDoctor;
|
||||
data['NoOfPatientsRate'] = this.noOfPatientsRate;
|
||||
data['PatientName'] = this.patientName;
|
||||
data['ProjectName'] = this.projectName;
|
||||
data['QR'] = this.qR;
|
||||
data['Speciality'] = this.speciality;
|
||||
data['VaccinationDate'] = this.vaccinationDate;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,18 @@
|
||||
class VaccinationItem {
|
||||
String dESCRIPTION;
|
||||
String iTEMCODE;
|
||||
|
||||
VaccinationItem({this.dESCRIPTION, this.iTEMCODE});
|
||||
|
||||
VaccinationItem.fromJson(Map<String, dynamic> json) {
|
||||
dESCRIPTION = json['DESCRIPTION'];
|
||||
iTEMCODE = json['ITEM_CODE'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['DESCRIPTION'] = this.dESCRIPTION;
|
||||
data['ITEM_CODE'] = this.iTEMCODE;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,44 @@
|
||||
class VaccinationOnHand {
|
||||
int distanceInKilometers;
|
||||
int iTEMONHAND;
|
||||
bool isThereItems;
|
||||
String oRGANIZATIONCODE;
|
||||
String oRGANIZATIONNAME;
|
||||
String projectAlias;
|
||||
int projectID;
|
||||
String projectName;
|
||||
|
||||
VaccinationOnHand(
|
||||
{this.distanceInKilometers,
|
||||
this.iTEMONHAND,
|
||||
this.isThereItems,
|
||||
this.oRGANIZATIONCODE,
|
||||
this.oRGANIZATIONNAME,
|
||||
this.projectAlias,
|
||||
this.projectID,
|
||||
this.projectName});
|
||||
|
||||
VaccinationOnHand.fromJson(Map<String, dynamic> json) {
|
||||
distanceInKilometers = json['DistanceInKilometers'];
|
||||
iTEMONHAND = json['ITEM_ONHAND'];
|
||||
isThereItems = json['IsThereItems'];
|
||||
oRGANIZATIONCODE = json['ORGANIZATION_CODE'];
|
||||
oRGANIZATIONNAME = json['ORGANIZATION_NAME'];
|
||||
projectAlias = json['ProjectAlias'];
|
||||
projectID = json['ProjectID'];
|
||||
projectName = json['ProjectName'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['DistanceInKilometers'] = this.distanceInKilometers;
|
||||
data['ITEM_ONHAND'] = this.iTEMONHAND;
|
||||
data['IsThereItems'] = this.isThereItems;
|
||||
data['ORGANIZATION_CODE'] = this.oRGANIZATIONCODE;
|
||||
data['ORGANIZATION_NAME'] = this.oRGANIZATIONNAME;
|
||||
data['ProjectAlias'] = this.projectAlias;
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['ProjectName'] = this.projectName;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
import 'package:diplomaticquarterapp/config/config.dart';
|
||||
import 'package:diplomaticquarterapp/config/shared_pref_kay.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/er/get_all_transportation_method_list_model.dart';
|
||||
import '../base_service.dart';
|
||||
|
||||
class AmService extends BaseService {
|
||||
List<PatientER_RRT_GetAllTransportationMethodListModel> AmModelList = List();
|
||||
Map<String, dynamic> body = Map();
|
||||
|
||||
Future getAllTransportationOrders() async {
|
||||
hasError = false;
|
||||
|
||||
await baseAppClient.post(GET_AMBULANCE_REQUEST,
|
||||
onSuccess: (dynamic response, int statusCode) {
|
||||
AmModelList.clear();
|
||||
response['AmModelList'].forEach((vital) {
|
||||
AmModelList.add(
|
||||
PatientER_RRT_GetAllTransportationMethodListModel.fromJson(vital));
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,43 @@
|
||||
import 'package:diplomaticquarterapp/config/config.dart';
|
||||
import 'package:diplomaticquarterapp/config/shared_pref_kay.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/er/projectavgerwaitingtime.dart';
|
||||
import '../base_service.dart';
|
||||
|
||||
class ErService extends BaseService {
|
||||
List<ProjectAvgERWaitingTime> projectAvgERWaitingTimeModelList = List();
|
||||
|
||||
Map<String, dynamic> body = Map();
|
||||
String Latitude = "";
|
||||
String Longitude = "";
|
||||
String PhoneNumber = "";
|
||||
|
||||
Future getProjectAvgERWaitingTimeOrders({int id, int projectID}) async {
|
||||
hasError = false;
|
||||
|
||||
if (id != null && projectID != null) {
|
||||
body['ID'] = id;
|
||||
body['ProjectID'] = projectID;
|
||||
}
|
||||
var lat = await sharedPref.getDouble(USER_LAT);
|
||||
var long = await sharedPref.getDouble(USER_LONG);
|
||||
body['Latitude'] = lat ?? 0;
|
||||
body['Longitude'] = long ?? 0;
|
||||
|
||||
await baseAppClient.post(GET_NEAREST_HOSPITAL,
|
||||
onSuccess: (dynamic response, int statusCode) {
|
||||
projectAvgERWaitingTimeModelList.clear();
|
||||
response['List_ProjectAvgERWaitingTime'].forEach((vital) {
|
||||
projectAvgERWaitingTimeModelList
|
||||
.add(ProjectAvgERWaitingTime.fromJson(vital));
|
||||
});
|
||||
projectAvgERWaitingTimeModelList.forEach((element) {
|
||||
Latitude = '${element.latitude}';
|
||||
Longitude = '${element.longitude}';
|
||||
PhoneNumber = '${element.phoneNumber}';
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,45 @@
|
||||
import 'package:diplomaticquarterapp/config/config.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/sick_leave/sick_leave.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/base_service.dart';
|
||||
|
||||
class PatientSickLeaveService extends BaseService {
|
||||
List<SickLeave> sickLeaveList = List();
|
||||
|
||||
getSickLeave() async {
|
||||
hasError = false;
|
||||
super.error = "";
|
||||
await baseAppClient.post(GET_PATIENT_SICK_LEAVE,
|
||||
onSuccess: (response, statusCode) async {
|
||||
sickLeaveList.clear();
|
||||
response['List_SickLeave'].forEach((sickLeave) {
|
||||
sickLeaveList.add(SickLeave.fromJson(sickLeave));
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: Map());
|
||||
}
|
||||
|
||||
sendSickLeaveEmail(
|
||||
{int requestNo, String projectName, String doctorName, int projectID,String setupID}) async {
|
||||
hasError = false;
|
||||
super.error = "";
|
||||
Map<String, dynamic> body = Map();
|
||||
body['RequestNo'] = requestNo;
|
||||
body['To'] = user.emailAddress;
|
||||
body['DateofBirth'] = user.dateofBirth;
|
||||
body['PatientIditificationNum'] = user.patientIdentificationNo;
|
||||
body['PatientMobileNumber'] = user.mobileNumber;
|
||||
body['PatientName'] = user.firstName + " " + user.firstName;
|
||||
body['ProjectName'] = projectName;
|
||||
body['DoctorName'] = doctorName;
|
||||
body['ProjectID'] = 12;
|
||||
body['SetupID'] = 12;
|
||||
await baseAppClient
|
||||
.post(SendSickLeaveEmail, onSuccess: (response, statusCode) async {},
|
||||
onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,148 @@
|
||||
import 'dart:convert';
|
||||
|
||||
import 'package:diplomaticquarterapp/config/config.dart';
|
||||
import 'package:diplomaticquarterapp/config/shared_pref_kay.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_advance_balance_amount.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info_and_mobile_number.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/base_service.dart';
|
||||
import 'package:diplomaticquarterapp/models/FamilyFiles/GetAllSharedRecordByStatusResponse.dart';
|
||||
import 'package:diplomaticquarterapp/models/FamilyFiles/GetAllSharedRecordsByStatusReq.dart';
|
||||
import 'package:diplomaticquarterapp/services/family_files/family_files_provider.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
||||
|
||||
class MyBalanceService extends BaseService {
|
||||
List<PatientAdvanceBalanceAmount> patientAdvanceBalanceAmountList = List();
|
||||
double totalAdvanceBalanceAmount;
|
||||
List<PatientInfo> patientInfoList = List();
|
||||
GetAllSharedRecordsByStatusResponse getAllSharedRecordsByStatusResponse =
|
||||
GetAllSharedRecordsByStatusResponse();
|
||||
PatientInfoAndMobileNumber patientInfoAndMobileNumber;
|
||||
String logInTokenID;
|
||||
String verificationCode;
|
||||
|
||||
getPatientAdvanceBalanceAmount() async {
|
||||
hasError = false;
|
||||
super.error = "";
|
||||
await baseAppClient.post(GET_PATIENT_AdVANCE_BALANCE_AMOUNT,
|
||||
onSuccess: (response, statusCode) async {
|
||||
patientAdvanceBalanceAmountList.clear();
|
||||
response['List_PatientAdvanceBalanceAmount'].forEach((item) {
|
||||
patientAdvanceBalanceAmountList
|
||||
.add(PatientAdvanceBalanceAmount.fromJson(item));
|
||||
});
|
||||
totalAdvanceBalanceAmount = response['TotalAdvanceBalanceAmount'];
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: Map());
|
||||
}
|
||||
|
||||
getPatientInfoByPatientID({String id}) async {
|
||||
hasError = false;
|
||||
super.error = "";
|
||||
Map<String, dynamic> body = Map();
|
||||
body['SearchPatientID'] = int.parse(id);
|
||||
body['isDentalAllowedBackend'] = false;
|
||||
await baseAppClient.post(GET_PATIENT_INFO_BY_ID,
|
||||
onSuccess: (response, statusCode) async {
|
||||
patientInfoList.clear();
|
||||
response['GetPatientInfoByPatientIDList'].forEach((item) {
|
||||
patientInfoList.add(PatientInfo.fromJson(item));
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
|
||||
getPatientInfoByPatientIDAndMobileNumber() async {
|
||||
hasError = false;
|
||||
super.error = "";
|
||||
Map<String, dynamic> body = Map();
|
||||
body['isDentalAllowedBackend'] = false;
|
||||
body['MobileNo'] = user.mobileNumber;
|
||||
body['ProjectID'] = user.projectID;
|
||||
|
||||
await baseAppClient.post(GET_PATIENT_INFO_BY_ID_AND_MOBILE_NUMBER,
|
||||
onSuccess: (response, statusCode) async {
|
||||
response['List_PatientInfo'].forEach((item) {
|
||||
patientInfoAndMobileNumber = PatientInfoAndMobileNumber.fromJson(item);
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
|
||||
sendActivationCodeForAdvancePayment({int patientID,int projectID}) async {
|
||||
hasError = false;
|
||||
super.error = "";
|
||||
Map<String, dynamic> body = Map();
|
||||
body['PatientID'] = patientID;
|
||||
body['ProjectID'] = projectID;
|
||||
body['isDentalAllowedBackend'] = false;
|
||||
|
||||
await baseAppClient.post(SEND_ACTIVATION_CODE_FOR_ADVANCE_PAYMENT,
|
||||
onSuccess: (response, statusCode) async {
|
||||
logInTokenID = response['LogInTokenID'];
|
||||
verificationCode = response['VerificationCode'];
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
|
||||
checkActivationCodeForAdvancePayment({String activationCode}) async {
|
||||
hasError = false;
|
||||
super.error = "";
|
||||
Map<String, dynamic> body = Map();
|
||||
body['activationCode'] = activationCode;
|
||||
body['PatientMobileNumber'] = 'XXXXXXXXXX';
|
||||
body['isDentalAllowedBackend'] = false;
|
||||
body['LogInTokenID'] = logInTokenID;
|
||||
|
||||
await baseAppClient.post(CHECK_ACTIVATION_CODE_FOR_ADVANCE_PAYMENT,
|
||||
onSuccess: (response, statusCode) async {
|
||||
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
|
||||
getSharedRecordByStatus() async {
|
||||
try {
|
||||
var request = GetAllSharedRecordsByStatusReq();
|
||||
request.status = 0;
|
||||
await baseAppClient.post(GET_SHARED_RECORD_BY_STATUS,
|
||||
onSuccess: (dynamic response, int statusCode) {
|
||||
sharedPref.setObject(FAMILY_FILE, response);
|
||||
getAllSharedRecordsByStatusResponse =
|
||||
GetAllSharedRecordsByStatusResponse.fromJson(response);
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
AppToast.showErrorToast(message: error);
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: request.toJson());
|
||||
} catch (error) {
|
||||
print(error);
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}
|
||||
}
|
||||
|
||||
getFamilyFiles() async {
|
||||
if (await sharedPref.getObject(FAMILY_FILE) != null) {
|
||||
getAllSharedRecordsByStatusResponse =
|
||||
GetAllSharedRecordsByStatusResponse.fromJson(
|
||||
await sharedPref.getObject(FAMILY_FILE));
|
||||
return getAllSharedRecordsByStatusResponse;
|
||||
} else {
|
||||
return getSharedRecordByStatus();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,83 @@
|
||||
import 'package:diplomaticquarterapp/config/config.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/reports/Reports.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/reports/request_reports.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/base_service.dart';
|
||||
import 'package:diplomaticquarterapp/pages/feedback/appointment_history.dart';
|
||||
|
||||
class ReportsMonthlyService extends BaseService {
|
||||
List<Reports> reportsList = List();
|
||||
List<AppointmentHistory> appointHistoryList = List();
|
||||
|
||||
RequestReports _requestReports = RequestReports(
|
||||
isReport: true,
|
||||
encounterType: 1,
|
||||
requestType: 1,
|
||||
versionID: 5.5,
|
||||
channel: 3,
|
||||
languageID: 2,
|
||||
iPAdress: "10.20.10.20",
|
||||
generalid: 'Cs2020@2016\$2958',
|
||||
patientOutSA: 0,
|
||||
sessionID: 'KIbLoqkytuKJEWECHQ',
|
||||
isDentalAllowedBackend: false,
|
||||
deviceTypeID: 2,
|
||||
patientID: 1231755,
|
||||
tokenID: '@dm!n',
|
||||
patientTypeID: 1,
|
||||
patientType: 1);
|
||||
|
||||
Future getReports() async {
|
||||
hasError = false;
|
||||
await baseAppClient.post(REPORTS,
|
||||
onSuccess: (dynamic response, int statusCode) {
|
||||
reportsList.clear();
|
||||
response['GetPatientMedicalStatus'].forEach((reports) {
|
||||
reportsList.add(Reports.fromJson(reports));
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: _requestReports.toJson());
|
||||
}
|
||||
|
||||
Future getPatentAppointmentHistory() async {
|
||||
hasError = false;
|
||||
Map<String, dynamic> body = new Map<String, dynamic>();
|
||||
body['IsForMedicalReport'] = true;
|
||||
await baseAppClient.post(GET_PATIENT_AppointmentHistory,
|
||||
onSuccess: (dynamic response, int statusCode) {
|
||||
appointHistoryList = [];
|
||||
response['AppoimentAllHistoryResultList'].forEach((appoint) {
|
||||
appointHistoryList.add(AppointmentHistory.fromJson(appoint));
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
|
||||
Future insertRequestForMedicalReport(
|
||||
AppointmentHistory appointmentHistory) async {
|
||||
Map<String, dynamic> body = new Map<String, dynamic>();
|
||||
body['ClinicID'] = appointmentHistory.clinicID;
|
||||
body['DoctorID'] = appointmentHistory.doctorID;
|
||||
body['SetupID'] = appointmentHistory.setupID;
|
||||
body['EncounterNo'] = appointmentHistory.appointmentNo;
|
||||
body['EncounterType'] = 1;// appointmentHistory.appointmentType;
|
||||
body['IsActive'] = appointmentHistory.isActiveDoctor;
|
||||
body['ProjectID'] = appointmentHistory.projectID;
|
||||
body['Remarks'] = "";
|
||||
body['ProcedureId'] = "";
|
||||
body['RequestType'] = 1;
|
||||
body['Source'] = 2;
|
||||
body['Status'] = 1;
|
||||
body['CreatedBy'] = 102;
|
||||
hasError = false;
|
||||
await baseAppClient.post(INSERT_REQUEST_FOR_MEDICAL_REPORT,
|
||||
onSuccess: (dynamic response, int statusCode) {},
|
||||
onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,32 @@
|
||||
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/er/get_all_transportation_method_list_model.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/er/am_service.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/base_view_model.dart';
|
||||
import '../base_view_model.dart';
|
||||
import '../../../locator.dart';
|
||||
|
||||
class AmRequestViewModel extends BaseViewModel{
|
||||
|
||||
|
||||
AmService _amService = locator<AmService>();
|
||||
|
||||
List<PatientER_RRT_GetAllTransportationMethodListModel> get AmRequestModeList=>
|
||||
_amService.AmModelList;
|
||||
|
||||
getAmRequestOrders({int id, int projectID}) async {
|
||||
setState(ViewState.Busy);
|
||||
|
||||
|
||||
await _amService.getAllTransportationOrders();
|
||||
|
||||
if ( _amService.hasError) {
|
||||
error = _amService.error;
|
||||
setState(ViewState.Error);
|
||||
} else
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -0,0 +1,31 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/er/projectavgerwaitingtime.dart';
|
||||
|
||||
import 'package:diplomaticquarterapp/core/service/er/er_service.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/base_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/BookAppointment/widgets/BranchView.dart';
|
||||
|
||||
import '../../../locator.dart';
|
||||
|
||||
class NearHospitalViewModel extends BaseViewModel {
|
||||
ErService _erService = locator<ErService>();
|
||||
|
||||
List<ProjectAvgERWaitingTime> get ProjectAvgERWaitingTimeModeList =>
|
||||
_erService.projectAvgERWaitingTimeModelList;
|
||||
|
||||
getProjectAvgERWaitingTimeOrders({int id, int projectID}) async {
|
||||
setState(ViewState.Busy);
|
||||
|
||||
if (id != null && projectID != null) {
|
||||
await _erService.getProjectAvgERWaitingTimeOrders(
|
||||
id: id, projectID: projectID);
|
||||
} else {
|
||||
await _erService.getProjectAvgERWaitingTimeOrders();
|
||||
}
|
||||
if (_erService.hasError) {
|
||||
error = _erService.error;
|
||||
setState(ViewState.Error);
|
||||
} else
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,116 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_advance_balance_amount.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info_and_mobile_number.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/hospital_service.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/medical/my_balance_service.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/base_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/locator.dart';
|
||||
import 'package:diplomaticquarterapp/models/FamilyFiles/GetAllSharedRecordByStatusResponse.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
||||
|
||||
class MyBalanceViewModel extends BaseViewModel {
|
||||
MyBalanceService _myBalanceService = locator<MyBalanceService>();
|
||||
|
||||
HospitalService _hospitalService = locator<HospitalService>();
|
||||
|
||||
List<HospitalsModel> get hospitals => _hospitalService.hospitals;
|
||||
|
||||
List<PatientAdvanceBalanceAmount> get patientAdvanceBalanceAmountList =>
|
||||
_myBalanceService.patientAdvanceBalanceAmountList;
|
||||
|
||||
double get totalAdvanceBalanceAmount =>
|
||||
_myBalanceService.totalAdvanceBalanceAmount;
|
||||
|
||||
GetAllSharedRecordsByStatusResponse get getAllSharedRecordsByStatusResponse =>
|
||||
_myBalanceService.getAllSharedRecordsByStatusResponse;
|
||||
|
||||
List<PatientInfo> get patientInfoList => _myBalanceService.patientInfoList;
|
||||
|
||||
PatientInfoAndMobileNumber get patientInfoAndMobileNumber =>
|
||||
_myBalanceService.patientInfoAndMobileNumber;
|
||||
|
||||
|
||||
String get logInTokenID => _myBalanceService.logInTokenID;
|
||||
String get verificationCode => _myBalanceService.verificationCode;
|
||||
|
||||
getPatientAdvanceBalanceAmount() async {
|
||||
setState(ViewState.Busy);
|
||||
await _myBalanceService.getPatientAdvanceBalanceAmount();
|
||||
if (_myBalanceService.hasError) {
|
||||
error = _myBalanceService.error;
|
||||
setState(ViewState.Error);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
|
||||
Future getHospitals() async {
|
||||
setState(ViewState.Busy);
|
||||
await _hospitalService.getHospitals();
|
||||
if (_hospitalService.hasError) {
|
||||
error = _hospitalService.error;
|
||||
setState(ViewState.Error);
|
||||
} else
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
|
||||
Future getPatientInfoByPatientID({String id}) async {
|
||||
setState(ViewState.Busy);
|
||||
await _myBalanceService.getPatientInfoByPatientID(id: id);
|
||||
if (_myBalanceService.hasError) {
|
||||
error = _myBalanceService.error;
|
||||
setState(ViewState.ErrorLocal);
|
||||
AppToast.showErrorToast(message: error);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
|
||||
Future getPatientInfoByPatientIDAndMobileNumber() async {
|
||||
setState(ViewState.Busy);
|
||||
await _myBalanceService.getPatientInfoByPatientIDAndMobileNumber();
|
||||
if (_myBalanceService.hasError) {
|
||||
error = _myBalanceService.error;
|
||||
setState(ViewState.ErrorLocal);
|
||||
AppToast.showErrorToast(message: error);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
|
||||
Future sendActivationCodeForAdvancePayment({int patientID,int projectID}) async {
|
||||
setState(ViewState.Busy);
|
||||
await _myBalanceService.sendActivationCodeForAdvancePayment(patientID: patientID,projectID: projectID);
|
||||
if (_myBalanceService.hasError) {
|
||||
error = _myBalanceService.error;
|
||||
setState(ViewState.ErrorLocal);
|
||||
AppToast.showErrorToast(message: error);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
Future checkActivationCodeForAdvancePayment({String activationCode}) async {
|
||||
setState(ViewState.Busy);
|
||||
await _myBalanceService.checkActivationCodeForAdvancePayment(activationCode: activationCode);
|
||||
if (_myBalanceService.hasError) {
|
||||
error = _myBalanceService.error;
|
||||
setState(ViewState.ErrorLocal);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
|
||||
Future getFamilyFiles() async {
|
||||
setState(ViewState.Busy);
|
||||
await _myBalanceService.getFamilyFiles();
|
||||
if (_myBalanceService.hasError) {
|
||||
error = _myBalanceService.error;
|
||||
setState(ViewState.ErrorLocal);
|
||||
AppToast.showErrorToast(message: error);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,42 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/sick_leave/sick_leave.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/medical/PatientSickLeaveService.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/base_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/locator.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
||||
|
||||
class PatientSickLeaveViewMode extends BaseViewModel {
|
||||
PatientSickLeaveService _patientSickLeaveService =
|
||||
locator<PatientSickLeaveService>();
|
||||
|
||||
List<SickLeave> get sickLeaveList => _patientSickLeaveService.sickLeaveList;
|
||||
|
||||
getSickLeave() async {
|
||||
setState(ViewState.Busy);
|
||||
await _patientSickLeaveService.getSickLeave();
|
||||
if (_patientSickLeaveService.hasError) {
|
||||
error = _patientSickLeaveService.error;
|
||||
setState(ViewState.Error);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
|
||||
Future sendSickLeaveEmail(
|
||||
{String message,
|
||||
int requestNo,
|
||||
String projectName,
|
||||
String doctorName,int projectID,String setupID}) async {
|
||||
setState(ViewState.Busy);
|
||||
await _patientSickLeaveService.sendSickLeaveEmail(
|
||||
requestNo: requestNo, projectName: projectName, doctorName: doctorName,projectID: projectID,setupID: setupID);
|
||||
if (_patientSickLeaveService.hasError) {
|
||||
error = _patientSickLeaveService.error;
|
||||
setState(ViewState.ErrorLocal);
|
||||
AppToast.showErrorToast(message: error);
|
||||
} else {
|
||||
AppToast.showSuccessToast(message: message);
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,46 @@
|
||||
import 'package:diplomaticquarterapp/pages/feedback/appointment_history.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
||||
|
||||
import '../../../core/enum/reportfilter_type.dart';
|
||||
import '../../../core/enum/viewstate.dart';
|
||||
import '../../../core/model/reports/Reports.dart';
|
||||
import '../../../core/service/medical/reports_service.dart';
|
||||
import '../../../locator.dart';
|
||||
import '../base_view_model.dart';
|
||||
|
||||
class ReportsMonthlyViewModel extends BaseViewModel {
|
||||
ReportFilterType filterType = ReportFilterType.Requested;
|
||||
|
||||
ReportsService _reportsService = locator<ReportsService>();
|
||||
|
||||
|
||||
|
||||
String get userAgreementContent => _reportsService.userAgreementContent;
|
||||
|
||||
getUserTermsAndConditions() async{
|
||||
setState(ViewState.Busy);
|
||||
await _reportsService.getUserTermsAndConditions();
|
||||
if (_reportsService.hasError) {
|
||||
error = _reportsService.error;
|
||||
setState(ViewState.Error);
|
||||
} else {
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
|
||||
updatePatientHealthSummaryReport({String message, bool isSummary})async{
|
||||
setState(ViewState.BusyLocal);
|
||||
await _reportsService.updatePatientHealthSummaryReport(isSummary: isSummary);
|
||||
if (_reportsService.hasError) {
|
||||
error = _reportsService.error;
|
||||
AppToast.showErrorToast(message: error);
|
||||
setState(ViewState.ErrorLocal);
|
||||
} else {
|
||||
AppToast.showSuccessToast(message: message);
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -0,0 +1,48 @@
|
||||
class DentalChiefComplaintsModel {
|
||||
List<ListDentalChiefComplain> listDentalChiefComplain;
|
||||
|
||||
DentalChiefComplaintsModel({this.listDentalChiefComplain});
|
||||
|
||||
DentalChiefComplaintsModel.fromJson(Map<String, dynamic> json) {
|
||||
if (json['List_DentalChiefComplain'] != null) {
|
||||
listDentalChiefComplain = new List<ListDentalChiefComplain>();
|
||||
json['List_DentalChiefComplain'].forEach((v) {
|
||||
listDentalChiefComplain.add(new ListDentalChiefComplain.fromJson(v));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
if (this.listDentalChiefComplain != null) {
|
||||
data['List_DentalChiefComplain'] =
|
||||
this.listDentalChiefComplain.map((v) => v.toJson()).toList();
|
||||
}
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
class ListDentalChiefComplain {
|
||||
int projectID;
|
||||
int iD;
|
||||
String name;
|
||||
String nameN;
|
||||
|
||||
ListDentalChiefComplain({this.projectID, this.iD, this.name, this.nameN});
|
||||
|
||||
ListDentalChiefComplain.fromJson(Map<String, dynamic> json) {
|
||||
projectID = json['ProjectID'];
|
||||
iD = json['ID'];
|
||||
name = json['Name'];
|
||||
nameN = json['NameN'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['ProjectID'] = this.projectID;
|
||||
data['ID'] = this.iD;
|
||||
data['Name'] = this.name;
|
||||
data['NameN'] = this.nameN;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,10 @@
|
||||
class SearchInfo {
|
||||
int ProjectID;
|
||||
int ClinicID;
|
||||
String DoctorName;
|
||||
String SelectedDate;
|
||||
String SelectedTime;
|
||||
String currentLat;
|
||||
String currentLong;
|
||||
DateTime date;
|
||||
}
|
||||
@ -0,0 +1,82 @@
|
||||
import 'package:diplomaticquarterapp/config/shared_pref_kay.dart';
|
||||
import 'package:diplomaticquarterapp/models/Appointments/DentalChiefComplaintsModel.dart';
|
||||
import 'package:diplomaticquarterapp/models/Appointments/SearchInfoModel.dart';
|
||||
import 'package:diplomaticquarterapp/pages/BookAppointment/widgets/DentalComplaintCard.dart';
|
||||
import 'package:diplomaticquarterapp/pages/livecare/widgets/clinic_card.dart';
|
||||
import 'package:diplomaticquarterapp/services/clinic_services/get_clinic_service.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_shared_preferences.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:smart_progress_bar/smart_progress_bar.dart';
|
||||
|
||||
class DentalComplaints extends StatefulWidget {
|
||||
SearchInfo searchInfo;
|
||||
|
||||
DentalComplaints({@required this.searchInfo});
|
||||
|
||||
@override
|
||||
_DentalComplaintsState createState() => _DentalComplaintsState();
|
||||
}
|
||||
|
||||
class _DentalComplaintsState extends State<DentalComplaints> {
|
||||
List<ListDentalChiefComplain> complaintsList = [];
|
||||
AppSharedPreferences sharedPref = AppSharedPreferences();
|
||||
bool isDataLoaded = false;
|
||||
var languageID;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
WidgetsBinding.instance
|
||||
.addPostFrameCallback((_) => getChiefComplaintsList());
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: "Symptoms",
|
||||
body: Container(
|
||||
margin: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 0.0),
|
||||
child: ListView.builder(
|
||||
itemCount: complaintsList.length,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
return Container(
|
||||
margin: EdgeInsets.only(bottom: 10.0),
|
||||
child: DentalComplaintCard(
|
||||
listDentalChiefComplain: complaintsList[index],
|
||||
languageID: languageID,
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
getLanguageID() async {
|
||||
languageID = await sharedPref.getString(APP_LANGUAGE);
|
||||
}
|
||||
|
||||
getChiefComplaintsList() {
|
||||
getLanguageID();
|
||||
ClinicListService service = new ClinicListService();
|
||||
service
|
||||
.getChiefComplaintsList(
|
||||
widget.searchInfo.ClinicID, widget.searchInfo.ProjectID, context)
|
||||
.then((res) {
|
||||
if (res['MessageStatus'] == 1) {
|
||||
print(res['List_DentalChiefComplain']);
|
||||
setState(() {
|
||||
res['List_DentalChiefComplain'].forEach((v) {
|
||||
complaintsList.add(new ListDentalChiefComplain.fromJson(v));
|
||||
});
|
||||
print(complaintsList.length);
|
||||
});
|
||||
} else {}
|
||||
}).catchError((err) {
|
||||
print(err);
|
||||
}).showProgressBar(
|
||||
text: "Loading", backgroundColor: Colors.blue.withOpacity(0.6));
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,135 @@
|
||||
import 'package:diplomaticquarterapp/models/Appointments/DentalChiefComplaintsModel.dart';
|
||||
import 'package:diplomaticquarterapp/models/Appointments/DoctorListResponse.dart';
|
||||
import 'package:diplomaticquarterapp/pages/BookAppointment/SearchResults.dart';
|
||||
import 'package:diplomaticquarterapp/services/clinic_services/get_clinic_service.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:smart_progress_bar/smart_progress_bar.dart';
|
||||
|
||||
// ignore: must_be_immutable
|
||||
class DentalComplaintCard extends StatefulWidget {
|
||||
final ListDentalChiefComplain listDentalChiefComplain;
|
||||
var languageID;
|
||||
|
||||
DentalComplaintCard(
|
||||
{@required this.listDentalChiefComplain, this.languageID});
|
||||
|
||||
@override
|
||||
_DentalComplaintCardState createState() => _DentalComplaintCardState();
|
||||
}
|
||||
|
||||
class _DentalComplaintCardState extends State<DentalComplaintCard> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
getChiefComplaintsList();
|
||||
},
|
||||
child: Card(
|
||||
color: Colors.white,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.85,
|
||||
padding: EdgeInsets.all(12.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
children: <Widget>[
|
||||
Container(
|
||||
child: Text(widget.listDentalChiefComplain.name,
|
||||
style:
|
||||
TextStyle(fontSize: 16.0, color: Colors.black)),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Container(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
children: <Widget>[
|
||||
Icon(Icons.arrow_forward_ios,
|
||||
size: 20.0, color: Colors.black54),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
getChiefComplaintsList() {
|
||||
List<DoctorList> doctorsList = [];
|
||||
List<PatientDoctorAppointmentList> _patientDoctorAppointmentListHospital =
|
||||
List();
|
||||
|
||||
ClinicListService service = new ClinicListService();
|
||||
service
|
||||
.getChiefComplaintDoctorList(widget.listDentalChiefComplain.iD,
|
||||
widget.listDentalChiefComplain.projectID, context)
|
||||
.then((res) {
|
||||
if (res['MessageStatus'] == 1) {
|
||||
print(res['List_DentalDoctorChiefComplaintMapping']);
|
||||
setState(() {
|
||||
doctorsList.clear();
|
||||
res['List_DentalDoctorChiefComplaintMapping'].forEach((v) {
|
||||
doctorsList.add(new DoctorList.fromJson(v));
|
||||
});
|
||||
|
||||
doctorsList.forEach((element) {
|
||||
List<PatientDoctorAppointmentList> doctorByHospital =
|
||||
_patientDoctorAppointmentListHospital
|
||||
.where(
|
||||
(elementClinic) =>
|
||||
elementClinic.filterName == element.projectName,
|
||||
)
|
||||
.toList();
|
||||
|
||||
if (doctorByHospital.length != 0) {
|
||||
_patientDoctorAppointmentListHospital[
|
||||
_patientDoctorAppointmentListHospital
|
||||
.indexOf(doctorByHospital[0])]
|
||||
.patientDoctorAppointmentList
|
||||
.add(element);
|
||||
} else {
|
||||
_patientDoctorAppointmentListHospital.add(
|
||||
PatientDoctorAppointmentList(
|
||||
filterName: element.projectName,
|
||||
distanceInKMs:
|
||||
element.projectDistanceInKiloMeters.toString(),
|
||||
patientDoctorAppointment: element));
|
||||
}
|
||||
});
|
||||
navigateToSearchResults(
|
||||
context, doctorsList, _patientDoctorAppointmentListHospital);
|
||||
});
|
||||
} else {
|
||||
AppToast.showErrorToast(message: res['ErrorEndUserMessage']);
|
||||
}
|
||||
}).catchError((err) {
|
||||
print(err);
|
||||
}).showProgressBar(
|
||||
text: "Loading", backgroundColor: Colors.blue.withOpacity(0.6));
|
||||
}
|
||||
|
||||
Future navigateToSearchResults(
|
||||
context,
|
||||
List<DoctorList> docList,
|
||||
List<PatientDoctorAppointmentList>
|
||||
patientDoctorAppointmentListHospital) async {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => SearchResults(
|
||||
doctorsList: docList,
|
||||
patientDoctorAppointmentListHospital:
|
||||
patientDoctorAppointmentListHospital)));
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,125 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/prescriptions_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/pages/medical/prescriptions/prescriptions_history_page.dart';
|
||||
import 'package:diplomaticquarterapp/pages/medical/prescriptions/prescriptions_page.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'dart:ui';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
|
||||
class AmbulanceReq extends StatefulWidget {
|
||||
@override
|
||||
_AmbulanceReqState createState() => _AmbulanceReqState();
|
||||
}
|
||||
|
||||
class _AmbulanceReqState extends State<AmbulanceReq>
|
||||
with SingleTickerProviderStateMixin {
|
||||
TabController _tabController;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_tabController = TabController(length: 2, vsync: this);
|
||||
}
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
_tabController.dispose();
|
||||
}
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<PrescriptionsViewModel>(
|
||||
onModelReady: (model) => model.getPrescriptions(),
|
||||
builder: (_, model, widget) => AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: "Ambulance Request",
|
||||
body: Scaffold(
|
||||
extendBodyBehindAppBar: true,
|
||||
appBar: PreferredSize(
|
||||
preferredSize: Size.fromHeight(65.0),
|
||||
child: Stack(
|
||||
children: <Widget>[
|
||||
Positioned(
|
||||
bottom: 1,
|
||||
left: 0,
|
||||
right: 0,
|
||||
child: BackdropFilter(
|
||||
filter: ImageFilter.blur(sigmaX: 10, sigmaY: 10),
|
||||
child: Container(
|
||||
color: Theme.of(context)
|
||||
.scaffoldBackgroundColor
|
||||
.withOpacity(0.8),
|
||||
height: 70.0,
|
||||
),
|
||||
),
|
||||
),
|
||||
Center(
|
||||
child: Container(
|
||||
height: 60.0,
|
||||
margin: EdgeInsets.only(top: 10.0),
|
||||
width: MediaQuery.of(context).size.width * 0.9,
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
bottom: BorderSide(
|
||||
color: Theme.of(context).dividerColor,
|
||||
width: 0.7),
|
||||
),
|
||||
color: Colors.white),
|
||||
child: Center(
|
||||
child: TabBar(
|
||||
isScrollable: true,
|
||||
controller: _tabController,
|
||||
indicatorWeight: 5.0,
|
||||
indicatorSize: TabBarIndicatorSize.label,
|
||||
indicatorColor: Colors.red[800],
|
||||
labelColor: Theme.of(context).primaryColor,
|
||||
labelPadding:
|
||||
EdgeInsets.only(top: 4.0, left: 18.0, right: 18.0),
|
||||
unselectedLabelColor: Colors.grey[800],
|
||||
tabs: [
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.40,
|
||||
child: Center(
|
||||
child: Texts("Ambulance Request"),//TranslationBase.of(context).prescriptions
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.30,
|
||||
child: Center(
|
||||
child: Texts("Orders Log"),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
body: Column(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: TabBarView(
|
||||
physics: BouncingScrollPhysics(),
|
||||
controller: _tabController,
|
||||
children: <Widget>[
|
||||
PrescriptionsPage(
|
||||
prescriptionsViewModel: model,
|
||||
),
|
||||
PrescriptionsHistoryPage(
|
||||
prescriptionsViewModel: model,
|
||||
)
|
||||
],
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,73 @@
|
||||
import 'package:diplomaticquarterapp/uitl/location_util.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import '../../uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/pages/ErService/widgets/card_common.dart';
|
||||
|
||||
class ErOptions extends StatefulWidget {
|
||||
final bool isAppbar;
|
||||
|
||||
const ErOptions({Key key, this.isAppbar}) : super(key: key);
|
||||
|
||||
|
||||
@override
|
||||
_ErOptionsState createState() => _ErOptionsState();
|
||||
}
|
||||
|
||||
class _ErOptionsState extends State<ErOptions> {
|
||||
LocationUtils locationUtils;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
locationUtils =
|
||||
new LocationUtils(isShowConfirmDialog: true, context: context);
|
||||
WidgetsBinding.instance
|
||||
.addPostFrameCallback((_) => locationUtils.getCurrentLocation());
|
||||
|
||||
super.initState();
|
||||
}
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return AppScaffold(
|
||||
isShowAppBar: widget.isAppbar,
|
||||
appBarTitle: TranslationBase.of(context).bookAppo,
|
||||
body: Container(
|
||||
margin: EdgeInsets.fromLTRB(10.0, 20.0, 10.0, 10.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
|
||||
Container(
|
||||
margin: EdgeInsets.fromLTRB(0.0, 10.0, 0.0, 10.0),
|
||||
child: Row(
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: CardCommonEr(
|
||||
image: 'assets/images/new-design/AM.PNG',
|
||||
text: TranslationBase.of(context).ambulancerequest,
|
||||
subText: TranslationBase.of(context).requestA,
|
||||
type: 0,
|
||||
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: CardCommonEr(
|
||||
image: 'assets/images/new-design/emergency_icon.png',
|
||||
text: TranslationBase.of(context).nearester,
|
||||
subText: TranslationBase.of(context).locationa,
|
||||
type: 1),
|
||||
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,350 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/er/near_hospital_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/location_util.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import '../../uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/pages/ErService/widgets/card_common.dart';
|
||||
import 'widgets/card_position.dart';
|
||||
|
||||
class NearestEr extends StatelessWidget {
|
||||
static const String _url = "assets/images/";
|
||||
|
||||
int appointmentNo;
|
||||
int projectID;
|
||||
|
||||
NearestEr({this.appointmentNo, this.projectID});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<NearHospitalViewModel>(
|
||||
onModelReady: appointmentNo != null && projectID != null
|
||||
? (model) => model.getProjectAvgERWaitingTimeOrders(
|
||||
id: appointmentNo, projectID: projectID)
|
||||
: (model) => model.getProjectAvgERWaitingTimeOrders(),
|
||||
builder: (_, mode, widget) => AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: 'Nearest ER',
|
||||
baseViewModel: mode,
|
||||
body: mode.ProjectAvgERWaitingTimeModeList.length > 0
|
||||
? Container(
|
||||
child: ListView(
|
||||
children: <Widget>[
|
||||
Text(
|
||||
"\nThis service Displays nearest branch\n among all the branches of All Habib \n medical Group based on your current Location",
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
fontSize: 18.0,
|
||||
letterSpacing: 1.0,
|
||||
fontWeight: FontWeight.w900,
|
||||
color: new Color(0xFF60686b))),
|
||||
Container(
|
||||
margin: EdgeInsets.fromLTRB(0.0, 10.0, 0.0, 10.0),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: Container(
|
||||
child: CardPosition(
|
||||
text: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0]
|
||||
.projectName
|
||||
.toString(),
|
||||
image:
|
||||
'assets/images/new-design/find_us_icon.png',
|
||||
subText: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0]
|
||||
.distanceInKilometers
|
||||
.toString(),
|
||||
type: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0].iD
|
||||
.toString(),
|
||||
telephone: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0]
|
||||
.phoneNumber
|
||||
.toString(),
|
||||
networkImage: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0]
|
||||
.projectImageURL
|
||||
.toString(),
|
||||
latitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0]
|
||||
.latitude,
|
||||
longitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0]
|
||||
.longitude,
|
||||
projectname: mode
|
||||
.ProjectAvgERWaitingTimeModeList[0]
|
||||
.projectName,
|
||||
),
|
||||
),
|
||||
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
child: CardPosition(
|
||||
text: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1]
|
||||
.projectName
|
||||
.toString(),
|
||||
image:
|
||||
'assets/images/new-design/find_us_icon.png',
|
||||
subText: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1]
|
||||
.distanceInKilometers
|
||||
.toString(),
|
||||
type: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1].iD
|
||||
.toString(),
|
||||
telephone: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1]
|
||||
.phoneNumber
|
||||
.toString(),
|
||||
networkImage: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1]
|
||||
.projectImageURL
|
||||
.toString(),
|
||||
latitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1]
|
||||
.latitude,
|
||||
longitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1]
|
||||
.longitude,
|
||||
projectname: mode
|
||||
.ProjectAvgERWaitingTimeModeList[1]
|
||||
.projectName,
|
||||
),
|
||||
),
|
||||
|
||||
)
|
||||
],
|
||||
),
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: Container(
|
||||
child: CardPosition(
|
||||
|
||||
text: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2]
|
||||
.projectName
|
||||
.toString(),
|
||||
image:
|
||||
'assets/images/new-design/find_us_icon.png',
|
||||
|
||||
subText: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2]
|
||||
.distanceInKilometers
|
||||
.toString(),
|
||||
type: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2].iD
|
||||
.toString(),
|
||||
telephone: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2]
|
||||
.phoneNumber
|
||||
.toString(),
|
||||
networkImage: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2]
|
||||
.projectImageURL
|
||||
.toString(),
|
||||
latitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2]
|
||||
.latitude,
|
||||
longitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2]
|
||||
.longitude,
|
||||
projectname: mode
|
||||
.ProjectAvgERWaitingTimeModeList[2]
|
||||
.projectName,
|
||||
),
|
||||
),
|
||||
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
child: CardPosition(
|
||||
|
||||
text: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3]
|
||||
.projectName
|
||||
.toString(),
|
||||
image:
|
||||
'assets/images/new-design/find_us_icon.png',
|
||||
|
||||
subText: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3]
|
||||
.distanceInKilometers
|
||||
.toString(),
|
||||
type: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3].iD
|
||||
.toString(),
|
||||
telephone: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3]
|
||||
.phoneNumber
|
||||
.toString(),
|
||||
networkImage: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3]
|
||||
.projectImageURL
|
||||
.toString(),
|
||||
latitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3]
|
||||
.latitude,
|
||||
longitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3]
|
||||
.longitude,
|
||||
projectname: mode
|
||||
.ProjectAvgERWaitingTimeModeList[3]
|
||||
.projectName,
|
||||
),
|
||||
),
|
||||
flex: 0,
|
||||
)
|
||||
],
|
||||
),
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: Container(
|
||||
child: CardPosition(
|
||||
|
||||
text: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4]
|
||||
.projectName
|
||||
.toString(),
|
||||
image:
|
||||
'assets/images/new-design/find_us_icon.png',
|
||||
|
||||
subText: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4]
|
||||
.distanceInKilometers
|
||||
.toString(),
|
||||
type: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4].iD
|
||||
.toString(),
|
||||
telephone: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4]
|
||||
.phoneNumber
|
||||
.toString(),
|
||||
networkImage: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4]
|
||||
.projectImageURL
|
||||
.toString(),
|
||||
latitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4]
|
||||
.latitude,
|
||||
longitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4]
|
||||
.longitude,
|
||||
projectname: mode
|
||||
.ProjectAvgERWaitingTimeModeList[4]
|
||||
.projectName,
|
||||
),
|
||||
),
|
||||
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
child: CardPosition(
|
||||
text: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5]
|
||||
.projectName
|
||||
.toString(),
|
||||
image:
|
||||
'assets/images/new-design/find_us_icon.png',
|
||||
subText: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5]
|
||||
.distanceInKilometers
|
||||
.toString(),
|
||||
type: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5].iD
|
||||
.toString(),
|
||||
telephone: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5]
|
||||
.phoneNumber
|
||||
.toString(),
|
||||
networkImage: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5]
|
||||
.projectImageURL
|
||||
.toString(),
|
||||
latitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5]
|
||||
.latitude,
|
||||
longitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5]
|
||||
.longitude,
|
||||
projectname: mode
|
||||
.ProjectAvgERWaitingTimeModeList[5]
|
||||
.projectName,
|
||||
),
|
||||
),
|
||||
|
||||
)
|
||||
],
|
||||
),
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: Container(
|
||||
child: CardPosition(
|
||||
text: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6]
|
||||
.projectName
|
||||
.toString(),
|
||||
image:
|
||||
'assets/images/new-design/find_us_icon.png',
|
||||
subText: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6]
|
||||
.distanceInKilometers
|
||||
.toString(),
|
||||
type: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6].iD
|
||||
.toString(),
|
||||
telephone: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6]
|
||||
.phoneNumber
|
||||
.toString(),
|
||||
networkImage: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6]
|
||||
.projectImageURL
|
||||
.toString(),
|
||||
latitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6]
|
||||
.latitude,
|
||||
longitude: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6]
|
||||
.longitude,
|
||||
projectname: mode
|
||||
.ProjectAvgERWaitingTimeModeList[6]
|
||||
.projectName,
|
||||
),
|
||||
),
|
||||
flex: 0,
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
)),
|
||||
],
|
||||
),
|
||||
)
|
||||
: Center(
|
||||
child: Texts('No Data'),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,83 @@
|
||||
//import 'package:diplomaticquarterapp/pages/BookAppointment/Search.dart';
|
||||
import 'package:diplomaticquarterapp/pages/BookAppointment/Search.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../AmbulanceReq.dart';
|
||||
import '../NearestEr.dart';
|
||||
|
||||
class CardCommonEr extends StatelessWidget {
|
||||
final image;
|
||||
final text;
|
||||
final subText;
|
||||
final type;
|
||||
const CardCommonEr(
|
||||
{@required this.image,
|
||||
@required this.text,
|
||||
@required this.subText,
|
||||
@required this.type});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return GestureDetector(
|
||||
onTap: () {
|
||||
navigateToSearch(context, this.type);
|
||||
|
||||
},
|
||||
child: Container(
|
||||
margin: EdgeInsets.fromLTRB(9.0, 9.0, 9.0, 9.0),
|
||||
decoration: BoxDecoration(boxShadow: [
|
||||
BoxShadow(color: Colors.grey[400], blurRadius: 2.0, spreadRadius: 0.0)
|
||||
], borderRadius: BorderRadius.circular(10), color: Colors.white),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
Container(
|
||||
margin: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 0.0),
|
||||
child: Text(this.text,
|
||||
overflow: TextOverflow.clip,
|
||||
style: TextStyle(
|
||||
color: new Color(0xFFc5272d),
|
||||
letterSpacing: 1.0,
|
||||
fontSize: 20.0)),
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.fromLTRB(10.0, 0.0, 10.0, 0.0),
|
||||
child: Text(this.subText,
|
||||
overflow: TextOverflow.clip,
|
||||
style: TextStyle(
|
||||
color: Colors.black, letterSpacing: 1.0, fontSize: 15.0)),
|
||||
),
|
||||
Container(
|
||||
alignment: Alignment.bottomRight,
|
||||
margin: EdgeInsets.fromLTRB(0.0, 0.0, 10.0, 8.0),
|
||||
child: Image.asset(this.image, width: 60.0, height: 60.0),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Future navigateToSearch(context, type) async {
|
||||
//===Switch case===
|
||||
if(type==0)
|
||||
{
|
||||
|
||||
Navigator.push(
|
||||
context,
|
||||
FadePage(
|
||||
page: AmbulanceReq()));
|
||||
}
|
||||
else{
|
||||
|
||||
Navigator.push(
|
||||
context,
|
||||
FadePage(
|
||||
page: NearestEr()));
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,108 @@
|
||||
//import 'package:diplomaticquarterapp/pages/BookAppointment/Search.dart';
|
||||
import 'package:diplomaticquarterapp/config/size_config.dart';
|
||||
import 'package:diplomaticquarterapp/pages/BookAppointment/Search.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:giffy_dialog/giffy_dialog.dart';
|
||||
import 'package:url_launcher/url_launcher.dart';
|
||||
import 'package:maps_launcher/maps_launcher.dart';
|
||||
|
||||
|
||||
import '../NearestEr.dart';
|
||||
|
||||
class CardPosition extends StatelessWidget {
|
||||
final image;
|
||||
final text;
|
||||
final subText;
|
||||
final type;
|
||||
final telephone;
|
||||
final networkImage;
|
||||
final latitude;
|
||||
final longitude;
|
||||
final projectname;
|
||||
const CardPosition(
|
||||
{
|
||||
@required this.image,
|
||||
@required this.text,
|
||||
@required this.subText,
|
||||
@required this.type,
|
||||
@required this.telephone,
|
||||
@required this.networkImage ,
|
||||
@required this.latitude,
|
||||
@required this.longitude,
|
||||
@required this.projectname ,
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return GestureDetector(
|
||||
onTap: () {
|
||||
navigateToSearch(context, this.type,this.telephone,this.networkImage,this.latitude,this.longitude,this.projectname);
|
||||
|
||||
},
|
||||
child: Container(
|
||||
width:MediaQuery.of(context).size.width * 0.47,//165,
|
||||
margin: EdgeInsets.fromLTRB(7.0, 7.0, 7.0, 7.0),
|
||||
decoration: BoxDecoration(boxShadow: [
|
||||
BoxShadow(color: Colors.grey[400], blurRadius: 2.0, spreadRadius: 0.0)
|
||||
], borderRadius: BorderRadius.circular(10), color: Colors.white),
|
||||
child: Column(
|
||||
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Container(
|
||||
margin: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 0.0),
|
||||
child: Text(this.text,
|
||||
overflow: TextOverflow.clip,
|
||||
style: TextStyle(
|
||||
color: Colors.black,
|
||||
letterSpacing: 1.0,
|
||||
fontSize: 2 * SizeConfig.textMultiplier)),
|
||||
),
|
||||
Container(
|
||||
alignment: Alignment.center,
|
||||
margin: EdgeInsets.fromLTRB(0.0, 0.0, 10.0, 8.0),
|
||||
child: Image.asset(this.image, width: 60.0, height: 60.0),
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.fromLTRB(10.0, 0.0, 10.0, 0.0),
|
||||
child: Text(this.subText,
|
||||
overflow: TextOverflow.clip,
|
||||
style: TextStyle(
|
||||
color: Color(0xFFc5272d), letterSpacing: 1.0, fontSize: 15.0)),
|
||||
),
|
||||
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Future navigateToSearch(context, type,telephone,networkImage,latitude,longitude,projectname) async {
|
||||
|
||||
|
||||
|
||||
|
||||
showDialog(
|
||||
context: context,builder: (_) => AssetGiffyDialog(
|
||||
title: Text(projectname,
|
||||
style: TextStyle(
|
||||
fontSize: 22.0, fontWeight: FontWeight.w600),
|
||||
),image:Image.network(networkImage, fit: BoxFit.cover,),
|
||||
|
||||
buttonOkText:Text("LOCATION"),
|
||||
buttonOkColor: Colors.grey,
|
||||
buttonCancelText:Text('CAll') ,
|
||||
buttonCancelColor: Colors.grey,
|
||||
onOkButtonPressed: () { MapsLauncher.launchCoordinates(double.parse(latitude),double.parse(longitude),projectname);},
|
||||
onCancelButtonPressed :() {launch("tel://" +telephone);}
|
||||
|
||||
|
||||
|
||||
|
||||
) );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -0,0 +1,378 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/my_balance_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/models/FamilyFiles/GetAllSharedRecordByStatusResponse.dart';
|
||||
import 'package:diplomaticquarterapp/pages/ToDoList/payment_method_select.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/pages/medical/balance/dialogs/SelectHospitalDialog.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/utils.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/secondary_button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:smart_progress_bar/smart_progress_bar.dart';
|
||||
|
||||
import '../../../core/model/my_balance/AdvanceModel.dart';
|
||||
import 'dialogs/ConfirmSMSDialog.dart';
|
||||
import 'dialogs/SelectBeneficiaryDialog.dart';
|
||||
import 'dialogs/SelectPatientFamilyDialog.dart';
|
||||
import 'dialogs/SelectPatientInfoDialog.dart';
|
||||
import 'confirm_payment_page.dart';
|
||||
import 'new_text_Field.dart';
|
||||
|
||||
enum BeneficiaryType { MyAccount, MyFamilyFiles, OtherAccount, NON }
|
||||
|
||||
class AdvancePaymentPage extends StatefulWidget {
|
||||
@override
|
||||
_AdvancePaymentPageState createState() => _AdvancePaymentPageState();
|
||||
}
|
||||
|
||||
class _AdvancePaymentPageState extends State<AdvancePaymentPage> {
|
||||
TextEditingController _fileTextController = TextEditingController();
|
||||
TextEditingController _notesTextController = TextEditingController();
|
||||
BeneficiaryType beneficiaryType = BeneficiaryType.NON;
|
||||
HospitalsModel _selectedHospital;
|
||||
String amount = "";
|
||||
String email;
|
||||
PatientInfo _selectedPatientInfo;
|
||||
GetAllSharedRecordsByStatusList selectedPatientFamily;
|
||||
AdvanceModel advanceModel = AdvanceModel();
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<MyBalanceViewModel>(
|
||||
onModelReady: (model) => model.getHospitals(),
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: TranslationBase.of(context).advancePayment,
|
||||
body: SingleChildScrollView(
|
||||
physics: ScrollPhysics(),
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(12),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Texts(
|
||||
TranslationBase.of(context).advancePaymentLabel,
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
InkWell(
|
||||
onTap: () => confirmSelectBeneficiaryDialog(model),
|
||||
child: Container(
|
||||
padding: EdgeInsets.all(12),
|
||||
width: double.infinity,
|
||||
height: 65,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
color: Colors.white),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(getBeneficiaryType()),
|
||||
Icon(Icons.arrow_drop_down)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
if (beneficiaryType == BeneficiaryType.MyFamilyFiles)
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
if (beneficiaryType == BeneficiaryType.MyFamilyFiles)
|
||||
InkWell(
|
||||
onTap: () {
|
||||
model.getFamilyFiles().then((value) {
|
||||
confirmSelectFamilyDialog(model
|
||||
.getAllSharedRecordsByStatusResponse
|
||||
.getAllSharedRecordsByStatusList);
|
||||
}).showProgressBar(
|
||||
text: "Loading",
|
||||
backgroundColor: Colors.blue.withOpacity(0.6));
|
||||
},
|
||||
child: Container(
|
||||
padding: EdgeInsets.all(12),
|
||||
width: double.infinity,
|
||||
height: 65,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
color: Colors.white),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(getFamilyMembersName()),
|
||||
Icon(Icons.arrow_drop_down)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
NewTextFields(
|
||||
hintText: TranslationBase.of(context).fileNumber,
|
||||
controller: _fileTextController,
|
||||
),
|
||||
if (beneficiaryType == BeneficiaryType.OtherAccount)
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
if (beneficiaryType == BeneficiaryType.OtherAccount)
|
||||
InkWell(
|
||||
onTap: () {
|
||||
if (_fileTextController.text.isNotEmpty)
|
||||
model
|
||||
.getPatientInfoByPatientID(
|
||||
id: _fileTextController.text)
|
||||
.then((value) {
|
||||
confirmSelectPatientDialog(model.patientInfoList);
|
||||
}).showProgressBar(
|
||||
text: "Loading",
|
||||
backgroundColor:
|
||||
Colors.blue.withOpacity(0.6));
|
||||
else
|
||||
AppToast.showErrorToast(
|
||||
message: 'Please Enter The File Number');
|
||||
},
|
||||
child: Container(
|
||||
padding: EdgeInsets.all(12),
|
||||
width: double.infinity,
|
||||
height: 65,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
color: Colors.white),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(getPatientName()),
|
||||
Icon(Icons.arrow_drop_down)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
InkWell(
|
||||
onTap: () => confirmSelectHospitalDialog(model.hospitals),
|
||||
child: Container(
|
||||
padding: EdgeInsets.all(12),
|
||||
width: double.infinity,
|
||||
height: 65,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
color: Colors.white),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(getHospitalName()),
|
||||
Icon(Icons.arrow_drop_down)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
NewTextFields(
|
||||
hintText: TranslationBase.of(context).amount,
|
||||
keyboardType: TextInputType.number,
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
amount = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
NewTextFields(
|
||||
hintText: TranslationBase.of(context).depositorEmail,
|
||||
initialValue: model.user.emailAddress,
|
||||
onChanged: (value) {
|
||||
email = value;
|
||||
},
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
NewTextFields(
|
||||
hintText: TranslationBase.of(context).notes,
|
||||
controller: _notesTextController,
|
||||
),
|
||||
SizedBox(
|
||||
height: MediaQuery.of(context).size.height * 0.15,
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
bottomSheet: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.1,
|
||||
width: double.infinity,
|
||||
padding: EdgeInsets.all(12),
|
||||
child: SecondaryButton(
|
||||
textColor: Colors.white,
|
||||
label: TranslationBase.of(context).submit,
|
||||
disabled: amount.isEmpty ||
|
||||
_fileTextController.text.isEmpty ||
|
||||
_selectedHospital == null,
|
||||
onTap: () {
|
||||
advanceModel.fileNumber = _fileTextController.text;
|
||||
advanceModel.hospitalsModel = _selectedHospital;
|
||||
advanceModel.note = _notesTextController.text;
|
||||
advanceModel.email = email ?? model.user.emailAddress;
|
||||
advanceModel.amount = amount;
|
||||
|
||||
model.getPatientInfoByPatientIDAndMobileNumber().then((value) {
|
||||
if (model.state != ViewState.Error &&
|
||||
model.state != ViewState.ErrorLocal) {
|
||||
Utils.hideKeyboard(context);
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => PaymentMethod())).then(
|
||||
(value) {
|
||||
Navigator.push(
|
||||
context,
|
||||
FadePage(
|
||||
page: ConfirmPaymentPage(
|
||||
advanceModel: advanceModel,
|
||||
selectedPaymentMethod: value,
|
||||
patientInfoAndMobileNumber:
|
||||
model.patientInfoAndMobileNumber,
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
}).showProgressBar(
|
||||
text: "Loading",
|
||||
backgroundColor: Colors.blue.withOpacity(0.6));
|
||||
},
|
||||
),
|
||||
)),
|
||||
);
|
||||
}
|
||||
|
||||
void confirmSelectBeneficiaryDialog(MyBalanceViewModel model) {
|
||||
showDialog(
|
||||
context: context,
|
||||
child: SelectBeneficiaryDialog(
|
||||
beneficiaryType: beneficiaryType,
|
||||
onValueSelected: (value) {
|
||||
setState(() {
|
||||
if (value == BeneficiaryType.MyAccount) {
|
||||
_fileTextController.text = model.user.patientID.toString();
|
||||
advanceModel.depositorName =
|
||||
model.user.firstName + " " + model.user.lastName;
|
||||
} else
|
||||
_fileTextController.text = "";
|
||||
|
||||
beneficiaryType = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
void confirmSelectHospitalDialog(List<HospitalsModel> hospitals) {
|
||||
showDialog(
|
||||
context: context,
|
||||
child: SelectHospitalDialog(
|
||||
hospitals: hospitals,
|
||||
selectedHospital: _selectedHospital,
|
||||
onValueSelected: (value) {
|
||||
setState(() {
|
||||
_selectedHospital = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
void confirmSelectPatientDialog(List<PatientInfo> patientInfoList) {
|
||||
showDialog(
|
||||
context: context,
|
||||
child: SelectPatientInfoDialog(
|
||||
patientInfoList: patientInfoList,
|
||||
selectedPatientInfo: _selectedPatientInfo,
|
||||
onValueSelected: (value) {
|
||||
setState(() {
|
||||
advanceModel.depositorName = value.fullName;
|
||||
_selectedPatientInfo = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
void confirmSelectFamilyDialog(
|
||||
List<GetAllSharedRecordsByStatusList> getAllSharedRecordsByStatusList) {
|
||||
showDialog(
|
||||
context: context,
|
||||
child: SelectPatientFamilyDialog(
|
||||
getAllSharedRecordsByStatusList: getAllSharedRecordsByStatusList,
|
||||
selectedPatientFamily: selectedPatientFamily,
|
||||
onValueSelected: (value) {
|
||||
setState(() {
|
||||
selectedPatientFamily = value;
|
||||
_fileTextController.text = selectedPatientFamily.patientID.toString();
|
||||
advanceModel.depositorName = value.patientName;
|
||||
});
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
String getBeneficiaryType() {
|
||||
switch (beneficiaryType) {
|
||||
case BeneficiaryType.MyAccount:
|
||||
return TranslationBase.of(context).myAccount;
|
||||
case BeneficiaryType.MyFamilyFiles:
|
||||
return TranslationBase.of(context).myFamilyFiles;
|
||||
break;
|
||||
case BeneficiaryType.OtherAccount:
|
||||
return TranslationBase.of(context).otherAccount;
|
||||
break;
|
||||
case BeneficiaryType.NON:
|
||||
return TranslationBase.of(context).selectBeneficiary;
|
||||
}
|
||||
return TranslationBase.of(context).selectBeneficiary;
|
||||
}
|
||||
|
||||
String getHospitalName() {
|
||||
if (_selectedHospital != null)
|
||||
return _selectedHospital.name;
|
||||
else
|
||||
return TranslationBase.of(context).selectHospital;
|
||||
}
|
||||
|
||||
String getPatientName() {
|
||||
if (_selectedPatientInfo != null)
|
||||
return _selectedPatientInfo.fullName;
|
||||
else
|
||||
return TranslationBase.of(context).selectPatientName;
|
||||
}
|
||||
|
||||
String getFamilyMembersName() {
|
||||
if (selectedPatientFamily != null)
|
||||
return selectedPatientFamily.patientName;
|
||||
else
|
||||
return TranslationBase.of(context).selectFamilyPatientName;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,177 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info_and_mobile_number.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/my_balance_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/AdvanceModel.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/secondary_button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'dialogs/ConfirmSMSDialog.dart';
|
||||
import 'new_text_Field.dart';
|
||||
import 'package:smart_progress_bar/smart_progress_bar.dart';
|
||||
|
||||
class ConfirmPaymentPage extends StatelessWidget {
|
||||
final AdvanceModel advanceModel;
|
||||
final PatientInfoAndMobileNumber patientInfoAndMobileNumber;
|
||||
final String selectedPaymentMethod;
|
||||
|
||||
ConfirmPaymentPage(
|
||||
{this.advanceModel,
|
||||
this.patientInfoAndMobileNumber,
|
||||
this.selectedPaymentMethod});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
void showSMSDialog() {
|
||||
showDialog(
|
||||
context: context,
|
||||
barrierDismissible: false,
|
||||
child: ConfirmSMSDialog(
|
||||
phoneNumber: patientInfoAndMobileNumber.mobileNumber,
|
||||
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
return BaseView<MyBalanceViewModel>(
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: TranslationBase.of(context).advancePayment,
|
||||
body: SingleChildScrollView(
|
||||
physics: ScrollPhysics(),
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(12),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Texts(
|
||||
TranslationBase.of(context).confirmThePayment,
|
||||
textAlign: TextAlign.center,
|
||||
fontWeight: FontWeight.w500,
|
||||
fontSize: 24,
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Container(
|
||||
height: 100.0,
|
||||
padding: EdgeInsets.all(7.0),
|
||||
width: MediaQuery.of(context).size.width * 0.45,
|
||||
child: Image.asset(getImagePath(selectedPaymentMethod)),
|
||||
),
|
||||
Texts(
|
||||
'${advanceModel.amount} SAR',
|
||||
fontSize: 26,
|
||||
bold: true,
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(3),
|
||||
child: NewTextFields(
|
||||
hintText: TranslationBase.of(context).fileNumber,
|
||||
initialValue: advanceModel.fileNumber,
|
||||
isEnabled: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(3),
|
||||
child: NewTextFields(
|
||||
hintText: TranslationBase.of(context).name,
|
||||
initialValue: patientInfoAndMobileNumber.firstName,
|
||||
isEnabled: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
NewTextFields(
|
||||
hintText: TranslationBase.of(context).mobileNumber,
|
||||
initialValue: patientInfoAndMobileNumber.mobileNumber,
|
||||
isEnabled: false,
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
NewTextFields(
|
||||
hintText: TranslationBase.of(context).depositorName,
|
||||
initialValue: advanceModel.depositorName,
|
||||
isEnabled: false,
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
NewTextFields(
|
||||
hintText: TranslationBase.of(context).notes,
|
||||
initialValue: advanceModel.note,
|
||||
isEnabled: false,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
bottomSheet: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.1,
|
||||
width: double.infinity,
|
||||
padding: EdgeInsets.all(12),
|
||||
child: SecondaryButton(
|
||||
textColor: Colors.white,
|
||||
label: TranslationBase.of(context).confirm.toUpperCase(),
|
||||
disabled: model.state == ViewState.Busy,
|
||||
onTap: () {
|
||||
model
|
||||
.sendActivationCodeForAdvancePayment(
|
||||
patientID: int.parse(advanceModel.fileNumber),projectID: advanceModel.hospitalsModel.iD)
|
||||
.then((value) {
|
||||
if (model.state != ViewState.ErrorLocal &&
|
||||
model.state != ViewState.Error) showSMSDialog();
|
||||
}).showProgressBar(
|
||||
text: "Loading",
|
||||
backgroundColor: Colors.blue.withOpacity(0.6));
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
String getImagePath(String paymentMethod) {
|
||||
switch (paymentMethod) {
|
||||
case "MADA":
|
||||
return 'assets/images/new-design/mada.png';
|
||||
break;
|
||||
case "SADAD":
|
||||
return 'assets/images/new-design/sadad.png';
|
||||
break;
|
||||
case "VISA":
|
||||
return 'assets/images/new-design/visa.png';
|
||||
break;
|
||||
case "MASTERCARD":
|
||||
return 'assets/images/new-design/mastercard.png';
|
||||
break;
|
||||
case "Installment":
|
||||
return 'assets/images/new-design/installment.png';
|
||||
break;
|
||||
}
|
||||
|
||||
return 'assets/images/new-design/mada.png';
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,363 @@
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:diplomaticquarterapp/config/config.dart';
|
||||
import 'package:diplomaticquarterapp/config/size_config.dart';
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/AdvanceModel.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info_and_mobile_number.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/my_balance_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/secondary_button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:smart_progress_bar/smart_progress_bar.dart';
|
||||
|
||||
class ConfirmSMSDialog extends StatefulWidget {
|
||||
final String phoneNumber;
|
||||
final AdvanceModel advanceModel;
|
||||
final PatientInfoAndMobileNumber patientInfoAndMobileNumber;
|
||||
final String selectedPaymentMethod;
|
||||
const ConfirmSMSDialog({Key key, this.phoneNumber,this.advanceModel,this.selectedPaymentMethod,this.patientInfoAndMobileNumber})
|
||||
: super(key: key);
|
||||
|
||||
@override
|
||||
_ConfirmSMSDialogState createState() => _ConfirmSMSDialogState();
|
||||
}
|
||||
|
||||
class _ConfirmSMSDialogState extends State<ConfirmSMSDialog> {
|
||||
final verifyAccountForm = GlobalKey<FormState>();
|
||||
Map verifyAccountFormValue = {
|
||||
'digit1': null,
|
||||
'digit2': null,
|
||||
'digit3': null,
|
||||
'digit4': null,
|
||||
};
|
||||
|
||||
TextEditingController digit1 = TextEditingController(text: "");
|
||||
TextEditingController digit2 = TextEditingController(text: "");
|
||||
TextEditingController digit3 = TextEditingController(text: "");
|
||||
TextEditingController digit4 = TextEditingController(text: "");
|
||||
|
||||
String timerText = (TIMER_MIN - 1).toString() + ':59';
|
||||
int min = TIMER_MIN - 1;
|
||||
int sec = 59;
|
||||
Timer _timer;
|
||||
|
||||
resendCode() {
|
||||
min = TIMER_MIN - 1;
|
||||
sec = 59;
|
||||
_timer = Timer.periodic(Duration(seconds: 1), (Timer timer) {
|
||||
if (min <= 0 && sec <= 0) {
|
||||
timer.cancel();
|
||||
} else {
|
||||
setState(() {
|
||||
sec = sec - 1;
|
||||
if (sec == 0 && min == 0) {
|
||||
Navigator.pop(context);
|
||||
min = 0;
|
||||
sec = 0;
|
||||
} else if (sec == 0) {
|
||||
min = min - 1;
|
||||
sec = 59;
|
||||
}
|
||||
timerText = min.toString() + ':' + sec.toString();
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
FocusNode focusD1;
|
||||
FocusNode focusD2;
|
||||
FocusNode focusD3;
|
||||
FocusNode focusD4;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
resendCode();
|
||||
focusD1 = FocusNode();
|
||||
focusD2 = FocusNode();
|
||||
focusD3 = FocusNode();
|
||||
focusD4 = FocusNode();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_timer.cancel();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<MyBalanceViewModel>(
|
||||
builder: (_, model, w) => Dialog(
|
||||
elevation: 0.6,
|
||||
child: Container(
|
||||
height: 520,
|
||||
child: ListView(
|
||||
children: [
|
||||
Container(
|
||||
width: double.infinity,
|
||||
height: 40,
|
||||
color: Colors.grey[700],
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Expanded(
|
||||
flex: 4,
|
||||
child: Center(
|
||||
child: Texts(
|
||||
'SMS',
|
||||
color: Colors.white,
|
||||
textAlign: TextAlign.center,
|
||||
))),
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () => Navigator.pop(context),
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.circle, color: Colors.white),
|
||||
child: Icon(
|
||||
Icons.clear,
|
||||
color: Colors.grey[900],
|
||||
)),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
Image.asset(
|
||||
'assets/images/login/103.png',
|
||||
height: MediaQuery.of(context).size.width * 0.25,
|
||||
width: MediaQuery.of(context).size.width * 0.25,
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Texts(
|
||||
TranslationBase.of(context).pleaseEnterTheVerificationCode+'[${widget.phoneNumber}]',
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
Form(
|
||||
key: verifyAccountForm,
|
||||
child: Container(
|
||||
width: SizeConfig.realScreenWidth * 0.90,
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
SizedBox(
|
||||
height: 30,
|
||||
),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
||||
children: <Widget>[
|
||||
Container(
|
||||
width: 65,
|
||||
child: TextFormField(
|
||||
textInputAction: TextInputAction.next,
|
||||
style: TextStyle(
|
||||
fontSize: SizeConfig.textMultiplier * 3,
|
||||
),
|
||||
focusNode: focusD1,
|
||||
maxLength: 1,
|
||||
controller: digit1,
|
||||
textAlign: TextAlign.center,
|
||||
keyboardType: TextInputType.number,
|
||||
decoration: buildInputDecoration(context),
|
||||
onSaved: (val) {
|
||||
verifyAccountFormValue['digit1'] = val;
|
||||
},
|
||||
validator: validateCodeDigit,
|
||||
onFieldSubmitted: (_) {
|
||||
FocusScope.of(context).requestFocus(focusD2);
|
||||
},
|
||||
onChanged: (val) {
|
||||
if (val.length == 1) {
|
||||
FocusScope.of(context).requestFocus(focusD2);
|
||||
}
|
||||
},
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: 65,
|
||||
child: TextFormField(
|
||||
focusNode: focusD2,
|
||||
controller: digit2,
|
||||
textInputAction: TextInputAction.next,
|
||||
maxLength: 1,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
fontSize: SizeConfig.textMultiplier * 3,
|
||||
),
|
||||
keyboardType: TextInputType.number,
|
||||
decoration: buildInputDecoration(context),
|
||||
validator: validateCodeDigit,
|
||||
onSaved: (val) {
|
||||
verifyAccountFormValue['digit2'] = val;
|
||||
},
|
||||
onFieldSubmitted: (_) {
|
||||
FocusScope.of(context).requestFocus(focusD3);
|
||||
},
|
||||
onChanged: (val) {
|
||||
if (val.length == 1) {
|
||||
FocusScope.of(context).requestFocus(focusD3);
|
||||
}
|
||||
},
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: 65,
|
||||
child: TextFormField(
|
||||
focusNode: focusD3,
|
||||
controller: digit3,
|
||||
textInputAction: TextInputAction.next,
|
||||
maxLength: 1,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
fontSize: SizeConfig.textMultiplier * 3,
|
||||
),
|
||||
keyboardType: TextInputType.number,
|
||||
decoration: buildInputDecoration(context),
|
||||
validator: validateCodeDigit,
|
||||
onSaved: (val) {
|
||||
verifyAccountFormValue['digit3'] = val;
|
||||
},
|
||||
onFieldSubmitted: (_) {
|
||||
FocusScope.of(context).requestFocus(focusD4);
|
||||
},
|
||||
onChanged: (val) {
|
||||
if (val.length == 1) {
|
||||
FocusScope.of(context)
|
||||
.requestFocus(focusD4);
|
||||
}
|
||||
},
|
||||
)),
|
||||
Container(
|
||||
width: 65,
|
||||
child: TextFormField(
|
||||
focusNode: focusD4,
|
||||
controller: digit4,
|
||||
maxLength: 1,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
fontSize: SizeConfig.textMultiplier * 3,
|
||||
),
|
||||
keyboardType: TextInputType.number,
|
||||
decoration: buildInputDecoration(context),
|
||||
validator: validateCodeDigit,
|
||||
onSaved: (val) {
|
||||
verifyAccountFormValue['digit4'] = val;
|
||||
},
|
||||
onFieldSubmitted: (_) {
|
||||
FocusScope.of(context).requestFocus(focusD4);
|
||||
submit(model);
|
||||
},
|
||||
onChanged: (val) {
|
||||
if (val.length == 1) {
|
||||
FocusScope.of(context)
|
||||
.requestFocus(focusD4);
|
||||
submit(model);
|
||||
}
|
||||
}),
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 8,
|
||||
),
|
||||
if (model.state == ViewState.ErrorLocal ||
|
||||
model.state == ViewState.Error)
|
||||
Container(
|
||||
margin: EdgeInsets.only(left: 8,right: 8),
|
||||
width: double.maxFinite,
|
||||
child: Texts(
|
||||
model.error,
|
||||
color: Colors.red,
|
||||
),
|
||||
),
|
||||
SizedBox(height: 20),
|
||||
// buildText(),
|
||||
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Texts(
|
||||
TranslationBase.of(context).theVerificationCodeExpiresIn+' $timerText',
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
),
|
||||
SizedBox(height: 20),
|
||||
|
||||
Container(
|
||||
width: double.maxFinite,
|
||||
padding: EdgeInsets.all(12),
|
||||
child: SecondaryButton(
|
||||
textColor: Colors.white,
|
||||
label: TranslationBase.of(context).submit.toUpperCase(),
|
||||
onTap: () {
|
||||
submit(model);
|
||||
},
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
void submit(MyBalanceViewModel model) {
|
||||
if (verifyAccountForm.currentState.validate()) {
|
||||
final activationCode =
|
||||
digit1.text + digit2.text + digit3.text + digit4.text;
|
||||
model.checkActivationCodeForAdvancePayment(
|
||||
activationCode: activationCode).then((value) {
|
||||
//TODO complete payment
|
||||
}).showProgressBar(
|
||||
text: "Loading",
|
||||
backgroundColor: Colors.blue.withOpacity(0.6));
|
||||
}
|
||||
}
|
||||
|
||||
String validateCodeDigit(value) {
|
||||
if (value.isEmpty) {
|
||||
return '';
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
InputDecoration buildInputDecoration(BuildContext context) {
|
||||
return InputDecoration(
|
||||
// ts/images/password_icon.png
|
||||
contentPadding: EdgeInsets.only(top: 20, bottom: 20),
|
||||
enabledBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.all(Radius.circular(5)),
|
||||
borderSide: BorderSide(color: Colors.black),
|
||||
),
|
||||
focusedBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.all(Radius.circular(5.0)),
|
||||
borderSide: BorderSide(color: Theme.of(context).primaryColor),
|
||||
),
|
||||
errorBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.all(Radius.circular(5.0)),
|
||||
borderSide: BorderSide(color: Theme.of(context).errorColor),
|
||||
),
|
||||
focusedErrorBorder: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.all(Radius.circular(5.0)),
|
||||
borderSide: BorderSide(color: Theme.of(context).errorColor),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,176 @@
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../advance_payment_page.dart';
|
||||
|
||||
class SelectBeneficiaryDialog extends StatefulWidget {
|
||||
final BeneficiaryType beneficiaryType;
|
||||
final Function(BeneficiaryType) onValueSelected;
|
||||
|
||||
SelectBeneficiaryDialog(
|
||||
{Key key, this.beneficiaryType, this.onValueSelected});
|
||||
|
||||
@override
|
||||
_SelectBeneficiaryDialogState createState() =>
|
||||
_SelectBeneficiaryDialogState(this.beneficiaryType);
|
||||
}
|
||||
|
||||
class _SelectBeneficiaryDialogState extends State<SelectBeneficiaryDialog> {
|
||||
_SelectBeneficiaryDialogState(this.beneficiaryType);
|
||||
|
||||
BeneficiaryType beneficiaryType;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SimpleDialog(
|
||||
children: [
|
||||
Container(
|
||||
child: Column(
|
||||
children: [
|
||||
Divider(),
|
||||
Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
beneficiaryType = BeneficiaryType.MyAccount;
|
||||
});
|
||||
},
|
||||
child: ListTile(
|
||||
title: Text(TranslationBase.of(context).myAccount),
|
||||
leading: Radio(
|
||||
value: BeneficiaryType.MyAccount,
|
||||
groupValue: beneficiaryType,
|
||||
activeColor: Colors.red[800],
|
||||
onChanged: (BeneficiaryType value) {
|
||||
setState(() {
|
||||
beneficiaryType = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
beneficiaryType = BeneficiaryType.MyFamilyFiles;
|
||||
});
|
||||
},
|
||||
child: ListTile(
|
||||
title: Text(TranslationBase.of(context).myFamilyFiles),
|
||||
leading: Radio(
|
||||
value: BeneficiaryType.MyFamilyFiles,
|
||||
groupValue: beneficiaryType,
|
||||
activeColor: Colors.red[800],
|
||||
onChanged: (BeneficiaryType value) {
|
||||
setState(() {
|
||||
beneficiaryType = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
beneficiaryType = BeneficiaryType.OtherAccount;
|
||||
});
|
||||
},
|
||||
child: ListTile(
|
||||
title: Text(TranslationBase.of(context).otherAccount),
|
||||
leading: Radio(
|
||||
value: BeneficiaryType.OtherAccount,
|
||||
groupValue: beneficiaryType,
|
||||
activeColor: Colors.red[800],
|
||||
onChanged: (BeneficiaryType value) {
|
||||
setState(() {
|
||||
beneficiaryType = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
Row(
|
||||
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Container(
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).cancel.toUpperCase(),
|
||||
color: Colors.red,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: 1,
|
||||
height: 30,
|
||||
color: Colors.grey[500],
|
||||
),
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
widget.onValueSelected(beneficiaryType);
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).ok,
|
||||
fontWeight: FontWeight.w400,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
],
|
||||
),
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,129 @@
|
||||
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class SelectHospitalDialog extends StatefulWidget {
|
||||
final List<HospitalsModel> hospitals;
|
||||
final Function(HospitalsModel) onValueSelected;
|
||||
HospitalsModel selectedHospital;
|
||||
|
||||
SelectHospitalDialog(
|
||||
{Key key, this.hospitals, this.onValueSelected, this.selectedHospital});
|
||||
|
||||
@override
|
||||
_SelectHospitalDialogState createState() => _SelectHospitalDialogState();
|
||||
}
|
||||
|
||||
class _SelectHospitalDialogState extends State<SelectHospitalDialog> {
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
widget.selectedHospital = widget.selectedHospital ?? widget.hospitals[0];
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SimpleDialog(
|
||||
children: [
|
||||
Column(
|
||||
children: [
|
||||
Divider(),
|
||||
...List.generate(
|
||||
widget.hospitals.length,
|
||||
(index) => Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
widget.selectedHospital = widget.hospitals[index];
|
||||
});
|
||||
},
|
||||
child: ListTile(
|
||||
title: Text(widget.hospitals[index].name +
|
||||
' ${widget.hospitals[index].distanceInKilometers} KM'),
|
||||
leading: Radio(
|
||||
value: widget.hospitals[index],
|
||||
groupValue: widget.selectedHospital,
|
||||
activeColor: Colors.red[800],
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
widget.selectedHospital = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
Row(
|
||||
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Container(
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).cancel.toUpperCase(),
|
||||
color: Colors.red,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: 1,
|
||||
height: 30,
|
||||
color: Colors.grey[500],
|
||||
),
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
widget.onValueSelected(widget.selectedHospital);
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).ok,
|
||||
fontWeight: FontWeight.w400,
|
||||
)),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,130 @@
|
||||
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info.dart';
|
||||
import 'package:diplomaticquarterapp/models/FamilyFiles/GetAllSharedRecordByStatusResponse.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class SelectPatientFamilyDialog extends StatefulWidget {
|
||||
final List<GetAllSharedRecordsByStatusList> getAllSharedRecordsByStatusList;
|
||||
final Function(GetAllSharedRecordsByStatusList) onValueSelected;
|
||||
GetAllSharedRecordsByStatusList selectedPatientFamily;
|
||||
|
||||
SelectPatientFamilyDialog({Key key, this.getAllSharedRecordsByStatusList, this.onValueSelected,this.selectedPatientFamily});
|
||||
|
||||
@override
|
||||
_SelectPatientFamilyDialogState createState() => _SelectPatientFamilyDialogState();
|
||||
}
|
||||
|
||||
class _SelectPatientFamilyDialogState extends State<SelectPatientFamilyDialog> {
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
widget.selectedPatientFamily = widget.selectedPatientFamily?? widget.getAllSharedRecordsByStatusList[0];
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SimpleDialog(
|
||||
children: [
|
||||
Column(
|
||||
children: [
|
||||
Divider(),
|
||||
...List.generate(
|
||||
widget.getAllSharedRecordsByStatusList.length,
|
||||
(index) => Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
widget.selectedPatientFamily = widget.getAllSharedRecordsByStatusList[index];
|
||||
});
|
||||
},
|
||||
child: ListTile(
|
||||
title: Text(widget.getAllSharedRecordsByStatusList[index].patientName),
|
||||
leading: Radio(
|
||||
value: widget.getAllSharedRecordsByStatusList[index],
|
||||
groupValue: widget.selectedPatientFamily,
|
||||
activeColor: Colors.red[800],
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
widget.selectedPatientFamily = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
Row(
|
||||
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Container(
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).cancel.toUpperCase(),
|
||||
color: Colors.red,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: 1,
|
||||
height: 30,
|
||||
color: Colors.grey[500],
|
||||
),
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
widget.onValueSelected(widget.selectedPatientFamily);
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).ok,
|
||||
fontWeight: FontWeight.w400,
|
||||
)),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,130 @@
|
||||
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/my_balance/patient_info.dart';
|
||||
import 'package:diplomaticquarterapp/models/FamilyFiles/GetAllSharedRecordByStatusResponse.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class SelectPatientInfoDialog extends StatefulWidget {
|
||||
final List<PatientInfo> patientInfoList ;
|
||||
final Function(PatientInfo) onValueSelected;
|
||||
PatientInfo selectedPatientInfo;
|
||||
|
||||
SelectPatientInfoDialog({Key key, this.patientInfoList, this.onValueSelected,this.selectedPatientInfo});
|
||||
|
||||
@override
|
||||
_SelectPatientInfoDialogState createState() => _SelectPatientInfoDialogState();
|
||||
}
|
||||
|
||||
class _SelectPatientInfoDialogState extends State<SelectPatientInfoDialog> {
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
widget.selectedPatientInfo = widget.selectedPatientInfo?? widget.patientInfoList[0];
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SimpleDialog(
|
||||
children: [
|
||||
Column(
|
||||
children: [
|
||||
Divider(),
|
||||
...List.generate(
|
||||
widget.patientInfoList.length,
|
||||
(index) => Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
Row(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
widget.selectedPatientInfo = widget.patientInfoList[index];
|
||||
});
|
||||
},
|
||||
child: ListTile(
|
||||
title: Text(widget.patientInfoList[index].fullName),
|
||||
leading: Radio(
|
||||
value: widget.patientInfoList[index],
|
||||
groupValue: widget.selectedPatientInfo,
|
||||
activeColor: Colors.red[800],
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
widget.selectedPatientInfo = value;
|
||||
});
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 5.0,
|
||||
),
|
||||
Row(
|
||||
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Container(
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).cancel.toUpperCase(),
|
||||
color: Colors.red,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: 1,
|
||||
height: 30,
|
||||
color: Colors.grey[500],
|
||||
),
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: InkWell(
|
||||
onTap: () {
|
||||
widget.onValueSelected(widget.selectedPatientInfo);
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Center(
|
||||
child: Texts(
|
||||
TranslationBase.of(context).ok,
|
||||
fontWeight: FontWeight.w400,
|
||||
)),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,107 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/my_balance_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/secondary_button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:hexcolor/hexcolor.dart';
|
||||
|
||||
import 'advance_payment_page.dart';
|
||||
|
||||
class MyBalancePage extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<MyBalanceViewModel>(
|
||||
onModelReady: (model) => model.getPatientAdvanceBalanceAmount(),
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
baseViewModel: model,
|
||||
isShowAppBar: true,
|
||||
appBarTitle: TranslationBase.of(context).myBalances,
|
||||
body: Container(
|
||||
margin: EdgeInsets.all(12),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Texts(
|
||||
TranslationBase.of(context).balanceAmount,
|
||||
color: Colors.black,
|
||||
bold: true,
|
||||
),
|
||||
SizedBox(
|
||||
height: 15,
|
||||
),
|
||||
Container(
|
||||
padding: EdgeInsets.all(8),
|
||||
width: double.infinity,
|
||||
height: 65,
|
||||
decoration: BoxDecoration(
|
||||
color: Hexcolor('#B61422'),
|
||||
shape: BoxShape.rectangle,
|
||||
borderRadius: BorderRadius.circular(7),
|
||||
),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(
|
||||
TranslationBase.of(context).totalBalance,
|
||||
color: Colors.white,
|
||||
),
|
||||
Texts(
|
||||
'${model.totalAdvanceBalanceAmount ?? 0} SAR',
|
||||
color: Colors.white,
|
||||
bold: true,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 9,
|
||||
),
|
||||
...List.generate(
|
||||
model.patientAdvanceBalanceAmountList.length,
|
||||
(index) => Container(
|
||||
padding: EdgeInsets.all(8),
|
||||
height: 65,
|
||||
margin: EdgeInsets.only(top: 8),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
shape: BoxShape.rectangle,
|
||||
borderRadius: BorderRadius.circular(7),
|
||||
),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(model.patientAdvanceBalanceAmountList[index]
|
||||
.projectDescription),
|
||||
Texts(
|
||||
'${model.patientAdvanceBalanceAmountList[index].patientAdvanceBalanceAmount} SAR',
|
||||
bold: true,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
bottomSheet: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.1,
|
||||
width: double.infinity,
|
||||
padding: EdgeInsets.all(12),
|
||||
child: SecondaryButton(
|
||||
// color: Colors.grey[900],
|
||||
textColor: Colors.white,
|
||||
label: TranslationBase.of(context).createAdvancedPayment,
|
||||
onTap: () {
|
||||
Navigator.push(context,
|
||||
FadePage(page: AdvancePaymentPage()));
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,239 @@
|
||||
import 'package:eva_icons_flutter/eva_icons_flutter.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
class NumberTextInputFormatter extends TextInputFormatter {
|
||||
@override
|
||||
TextEditingValue formatEditUpdate(
|
||||
TextEditingValue oldValue, TextEditingValue newValue) {
|
||||
final int newTextLength = newValue.text.length;
|
||||
int selectionIndex = newValue.selection.end;
|
||||
int usedSubstringIndex = 0;
|
||||
final StringBuffer newText = StringBuffer();
|
||||
if (newTextLength >= 1) {
|
||||
newText.write('(');
|
||||
if (newValue.selection.end >= 1) selectionIndex++;
|
||||
}
|
||||
if (newTextLength >= 4) {
|
||||
newText.write(newValue.text.substring(0, usedSubstringIndex = 3) + ') ');
|
||||
if (newValue.selection.end >= 3) selectionIndex += 2;
|
||||
}
|
||||
if (newTextLength >= 7) {
|
||||
newText.write(newValue.text.substring(3, usedSubstringIndex = 6) + '-');
|
||||
if (newValue.selection.end >= 6) selectionIndex++;
|
||||
}
|
||||
if (newTextLength >= 11) {
|
||||
newText.write(newValue.text.substring(6, usedSubstringIndex = 10) + ' ');
|
||||
if (newValue.selection.end >= 10) selectionIndex++;
|
||||
}
|
||||
// Dump the rest.
|
||||
if (newTextLength >= usedSubstringIndex)
|
||||
newText.write(newValue.text.substring(usedSubstringIndex));
|
||||
return TextEditingValue(
|
||||
text: newText.toString(),
|
||||
selection: TextSelection.collapsed(offset: selectionIndex),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
final _mobileFormatter = NumberTextInputFormatter();
|
||||
|
||||
class NewTextFields extends StatefulWidget {
|
||||
NewTextFields(
|
||||
{Key key,
|
||||
this.type,
|
||||
this.hintText,
|
||||
this.suffixIcon,
|
||||
this.autoFocus,
|
||||
this.onChanged,
|
||||
this.initialValue,
|
||||
this.minLines,
|
||||
this.maxLines,
|
||||
this.inputFormatters,
|
||||
this.padding,
|
||||
this.focus = false,
|
||||
this.maxLengthEnforced = true,
|
||||
this.suffixIconColor,
|
||||
this.inputAction,
|
||||
this.onSubmit,
|
||||
this.keepPadding = true,
|
||||
this.textCapitalization = TextCapitalization.none,
|
||||
this.controller,
|
||||
this.keyboardType,
|
||||
this.validator,
|
||||
this.borderOnlyError = false,
|
||||
this.onSaved,
|
||||
this.onSuffixTap,
|
||||
this.readOnly: false,
|
||||
this.maxLength,
|
||||
this.prefixIcon,
|
||||
this.bare = false,
|
||||
this.onTap,
|
||||
this.fontSize = 16.0,
|
||||
this.fontWeight = FontWeight.w700,
|
||||
this.autoValidate = false,
|
||||
this.hintColor,this.isEnabled=true})
|
||||
: super(key: key);
|
||||
|
||||
final String hintText;
|
||||
|
||||
// final String initialValue;
|
||||
final String type;
|
||||
final bool autoFocus;
|
||||
final IconData suffixIcon;
|
||||
final Color suffixIconColor;
|
||||
final Icon prefixIcon;
|
||||
final VoidCallback onTap;
|
||||
final TextEditingController controller;
|
||||
final TextInputType keyboardType;
|
||||
final FormFieldValidator validator;
|
||||
final Function onSaved;
|
||||
final Function onSuffixTap;
|
||||
final Function onChanged;
|
||||
final Function onSubmit;
|
||||
final bool readOnly;
|
||||
final int maxLength;
|
||||
final int minLines;
|
||||
final int maxLines;
|
||||
final bool maxLengthEnforced;
|
||||
final bool bare;
|
||||
final bool isEnabled;
|
||||
final TextInputAction inputAction;
|
||||
final double fontSize;
|
||||
final FontWeight fontWeight;
|
||||
final bool keepPadding;
|
||||
final TextCapitalization textCapitalization;
|
||||
final List<TextInputFormatter> inputFormatters;
|
||||
final bool autoValidate;
|
||||
final EdgeInsets padding;
|
||||
final bool focus;
|
||||
final bool borderOnlyError;
|
||||
final Color hintColor;
|
||||
final String initialValue;
|
||||
@override
|
||||
_NewTextFieldsState createState() => _NewTextFieldsState();
|
||||
}
|
||||
|
||||
class _NewTextFieldsState extends State<NewTextFields> {
|
||||
final FocusNode _focusNode = FocusNode();
|
||||
bool focus = false;
|
||||
bool view = false;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_focusNode.addListener(() {
|
||||
setState(() {
|
||||
focus = _focusNode.hasFocus;
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
void didUpdateWidget(NewTextFields oldWidget) {
|
||||
if (widget.focus) _focusNode.requestFocus();
|
||||
super.didUpdateWidget(oldWidget);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_focusNode.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
|
||||
bool _determineReadOnly() {
|
||||
if (widget.readOnly != null && widget.readOnly) {
|
||||
_focusNode.unfocus();
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return AnimatedContainer(
|
||||
duration: Duration(milliseconds: 300),
|
||||
decoration:BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
color: Colors.white),
|
||||
child: Container(
|
||||
margin: EdgeInsets.only(top: 8),
|
||||
|
||||
child: TextFormField(
|
||||
enabled: widget.isEnabled,
|
||||
initialValue: widget.initialValue,
|
||||
keyboardAppearance: Theme.of(context).brightness,
|
||||
scrollPhysics: BouncingScrollPhysics(),
|
||||
autovalidate: widget.autoValidate,
|
||||
textCapitalization: widget.textCapitalization,
|
||||
onFieldSubmitted: widget.inputAction == TextInputAction.next
|
||||
? (widget.onSubmit != null
|
||||
? widget.onSubmit
|
||||
: (val) {
|
||||
_focusNode.nextFocus();
|
||||
})
|
||||
: widget.onSubmit,
|
||||
textInputAction: widget.inputAction,
|
||||
minLines: widget.minLines ?? 1,
|
||||
maxLines: widget.maxLines ?? 1,
|
||||
maxLengthEnforced: widget.maxLengthEnforced,
|
||||
onChanged: widget.onChanged,
|
||||
focusNode: _focusNode,
|
||||
maxLength: widget.maxLength ?? null,
|
||||
controller: widget.controller,
|
||||
keyboardType: widget.keyboardType,
|
||||
readOnly: _determineReadOnly(),
|
||||
obscureText: widget.type == "password" && !view ? true : false,
|
||||
autofocus: widget.autoFocus ?? false,
|
||||
validator: widget.validator,
|
||||
onSaved: widget.onSaved,
|
||||
|
||||
style: Theme.of(context)
|
||||
.textTheme
|
||||
.body2
|
||||
.copyWith(fontSize: widget.fontSize, fontWeight: widget.fontWeight),
|
||||
inputFormatters: widget.keyboardType == TextInputType.phone
|
||||
? <TextInputFormatter>[
|
||||
WhitelistingTextInputFormatter.digitsOnly,
|
||||
_mobileFormatter,
|
||||
]
|
||||
: widget.inputFormatters,
|
||||
decoration: InputDecoration(
|
||||
labelText: widget.hintText,
|
||||
labelStyle: TextStyle(color: Colors.black),
|
||||
errorBorder: OutlineInputBorder(
|
||||
borderSide: BorderSide(
|
||||
color: Theme.of(context)
|
||||
.errorColor
|
||||
.withOpacity(0.5),
|
||||
width: 1.0),
|
||||
borderRadius: BorderRadius.circular(12.0)),
|
||||
focusedErrorBorder: OutlineInputBorder(
|
||||
borderSide: BorderSide(
|
||||
color: Theme.of(context)
|
||||
.errorColor
|
||||
.withOpacity(0.5),
|
||||
width: 1.0),
|
||||
borderRadius: BorderRadius.circular(8.0)),
|
||||
focusedBorder: OutlineInputBorder(
|
||||
borderSide:
|
||||
BorderSide(color: Colors.white, width: 1.0),
|
||||
borderRadius: BorderRadius.circular(12)),
|
||||
disabledBorder: OutlineInputBorder(
|
||||
borderSide:
|
||||
BorderSide(color: Colors.white, width: 1.0),
|
||||
borderRadius: BorderRadius.circular(12)),
|
||||
enabledBorder: OutlineInputBorder(
|
||||
borderSide:
|
||||
BorderSide(color: Colors.white, width: 1.0),
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,51 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/patient_sick_leave_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/date_uitl.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/medical/doctor_card.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
|
||||
class PatientSickLeavePage extends StatefulWidget {
|
||||
@override
|
||||
_PatientSickLeavePageState createState() => _PatientSickLeavePageState();
|
||||
}
|
||||
|
||||
class _PatientSickLeavePageState extends State<PatientSickLeavePage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<PatientSickLeaveViewMode>(
|
||||
onModelReady: (model) => model.getSickLeave(),
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: 'Sick Leave',
|
||||
baseViewModel: model,
|
||||
body: Container(
|
||||
margin: EdgeInsets.all(12),
|
||||
child: ListView.builder(
|
||||
itemCount: model.sickLeaveList.length,
|
||||
itemBuilder: (context, index) => DoctorCard(
|
||||
name: model.sickLeaveList[index].doctorName,
|
||||
date: DateUtil.getMonthDayYearDateFormatted(
|
||||
model.sickLeaveList[index].requestDate),
|
||||
profileUrl: model.sickLeaveList[index].doctorImageURL,
|
||||
rat: model.sickLeaveList[index].actualDoctorRate.toDouble(),
|
||||
subName: model.sickLeaveList[index].projectName,
|
||||
isInOutPatientDescription:
|
||||
model.sickLeaveList[index].isInOutPatientDescription,
|
||||
onEmailTap: () {
|
||||
model.sendSickLeaveEmail(
|
||||
message: TranslationBase.of(context).emailSentSuccessfully,
|
||||
requestNo: model.sickLeaveList[index].requestNo,
|
||||
doctorName: model.sickLeaveList[index].doctorName,
|
||||
projectName: model.sickLeaveList[index].projectName,
|
||||
setupID: model.sickLeaveList[index].setupID,
|
||||
projectID: model.sickLeaveList[index].projectID);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,167 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/reports_monthly_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/pages/medical/reports/user_agreement_page.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/secondary_button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/input/custom_switch.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class MonthlyReportsPage extends StatefulWidget {
|
||||
@override
|
||||
_MonthlyReportsPageState createState() => _MonthlyReportsPageState();
|
||||
}
|
||||
|
||||
class _MonthlyReportsPageState extends State<MonthlyReportsPage> {
|
||||
bool isAgree = false;
|
||||
bool isSummary = false;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<ReportsMonthlyViewModel>(
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: TranslationBase.of(context).monthlyReports,
|
||||
body: SingleChildScrollView(
|
||||
child: Container(
|
||||
padding: EdgeInsets.all(12),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Container(
|
||||
padding: EdgeInsets.all(9),
|
||||
height: 55,
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.all(Radius.circular(8)),
|
||||
shape: BoxShape.rectangle,
|
||||
border: Border.all(color: Colors.grey)),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(
|
||||
TranslationBase.of(context).patientHealthSummaryReport,
|
||||
bold: true,
|
||||
),
|
||||
CustomSwitch(
|
||||
value: isSummary,
|
||||
activeColor: Colors.red,
|
||||
inactiveColor: Colors.grey,
|
||||
onChanged: () async {
|
||||
setState(() {
|
||||
isSummary = !isSummary;
|
||||
});
|
||||
},
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 15,
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.all(8),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Texts(
|
||||
model.user.emailAddress,
|
||||
bold: true,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Divider(
|
||||
height: 10.4,
|
||||
thickness: 1.0,
|
||||
),
|
||||
SizedBox(
|
||||
height: 15,
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.all(8),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Expanded(
|
||||
child: Texts(TranslationBase.of(context)
|
||||
.toViewTheTermsAndConditions),
|
||||
),
|
||||
InkWell(
|
||||
onTap: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
FadePage(
|
||||
page: UserAgreementContent(),
|
||||
),
|
||||
);
|
||||
},
|
||||
child: Texts(
|
||||
TranslationBase.of(context).clickHere,
|
||||
color: Colors.blue,
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 5,
|
||||
),
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
children: [
|
||||
Checkbox(
|
||||
value: isAgree,
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
isAgree = !isAgree;
|
||||
});
|
||||
},
|
||||
activeColor: Colors.red,
|
||||
),
|
||||
Texts(TranslationBase.of(context)
|
||||
.iAgreeToTheTermsAndConditions),
|
||||
],
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.all(8),
|
||||
width: double.infinity,
|
||||
child: SecondaryButton(
|
||||
textColor: Colors.white,
|
||||
label: TranslationBase.of(context).save,
|
||||
disabled: !isAgree,
|
||||
loading: model.state == ViewState.BusyLocal,
|
||||
onTap: () {
|
||||
model.updatePatientHealthSummaryReport(
|
||||
message: TranslationBase.of(context)
|
||||
.updateSuccessfully,
|
||||
isSummary: isSummary);
|
||||
},
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(5.0),
|
||||
child: Texts(
|
||||
TranslationBase.of(context)
|
||||
.iAgreeToTheTermsAndConditionsSubtitle,
|
||||
fontWeight: FontWeight.normal,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 12,
|
||||
),
|
||||
Center(child: Image.asset('assets/images/report.jpg'))
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/medical/reports_monthly_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter_html/flutter_html.dart';
|
||||
|
||||
class UserAgreementContent extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<ReportsMonthlyViewModel>(
|
||||
onModelReady: (model) => model.getUserTermsAndConditions(),
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
isShowAppBar: true,
|
||||
baseViewModel: model,
|
||||
appBarTitle: TranslationBase.of(context).userAgreement,
|
||||
body: SingleChildScrollView(
|
||||
child: Html(
|
||||
data: model.userAgreementContent,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,151 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/medical/balance/advance_payment_page.dart';
|
||||
import 'package:diplomaticquarterapp/pages/medical/balance/my_balance_page.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:hexcolor/hexcolor.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
class PaymentService extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
ProjectViewModel projectViewModel = Provider.of(context);
|
||||
return AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: TranslationBase.of(context).paymentService,
|
||||
body: SingleChildScrollView(
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(12),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: InkWell(
|
||||
onTap: () => Navigator.push(
|
||||
context, FadePage(page: AdvancePaymentPage())),
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(5.0),
|
||||
padding: EdgeInsets.all(9),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(8.0),
|
||||
shape: BoxShape.rectangle),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Texts(
|
||||
TranslationBase.of(context).payment,
|
||||
color: Hexcolor('#B61422'),
|
||||
bold: true,
|
||||
),
|
||||
Texts(
|
||||
TranslationBase.of(context).paymentOnline,
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.normal,
|
||||
),
|
||||
Image.asset(
|
||||
'assets/images/al-habib_online_payment_service_icon.png',
|
||||
fit: BoxFit.fill,
|
||||
height: 55,
|
||||
width: double.infinity,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(5.0),
|
||||
padding: EdgeInsets.all(9),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(8.0),
|
||||
shape: BoxShape.rectangle),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Texts(
|
||||
TranslationBase.of(context).onlineCheckIn,
|
||||
color: Hexcolor('#B61422'),
|
||||
bold: true,
|
||||
),
|
||||
Texts(
|
||||
TranslationBase.of(context).appointment,
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.normal,
|
||||
),
|
||||
Align(
|
||||
alignment: projectViewModel.isArabic
|
||||
? Alignment.centerRight
|
||||
: Alignment.centerLeft,
|
||||
child: Image.asset(
|
||||
'assets/images/al-habib_online_payment_service_icon.png',
|
||||
height: 55,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Expanded(
|
||||
child: InkWell(
|
||||
onTap: () => Navigator.push(
|
||||
context, FadePage(page: MyBalancePage())),
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(5.0),
|
||||
padding: EdgeInsets.all(9),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
borderRadius: BorderRadius.circular(8.0),
|
||||
shape: BoxShape.rectangle),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Texts(
|
||||
'My Balances',
|
||||
color: Hexcolor('#B61422'),
|
||||
bold: true,
|
||||
),
|
||||
Texts(
|
||||
TranslationBase.of(context).payment,
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.normal,
|
||||
),
|
||||
Align(
|
||||
alignment: projectViewModel.isArabic
|
||||
? Alignment.centerRight
|
||||
: Alignment.centerLeft,
|
||||
child: Image.asset(
|
||||
'assets/images/al-habib_online_payment_service_icon.png',
|
||||
height: 55,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Container(),
|
||||
)
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,78 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/secondary_button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:diplomaticquarterapp/config/size_config.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import '../base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/vaccine_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/rounded_container.dart';
|
||||
import 'package:popup_box/popup_box.dart';
|
||||
|
||||
class MyVaccinesItemPage extends StatefulWidget {
|
||||
@override
|
||||
_MyVaccinesItemPageState createState() => _MyVaccinesItemPageState();
|
||||
}
|
||||
|
||||
class _MyVaccinesItemPageState extends State<MyVaccinesItemPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
ProjectViewModel projectViewModel = Provider.of(context);
|
||||
return BaseView<VaccineViewModel>(
|
||||
onModelReady: (model) => model.getMyVaccinationItem(),
|
||||
builder: (BuildContext context, VaccineViewModel model, Widget child) =>
|
||||
AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: TranslationBase.of(context).myVaccinesAvailability,
|
||||
baseViewModel: model,
|
||||
body: Container(
|
||||
margin: EdgeInsets.only(
|
||||
left: SizeConfig.screenWidth * 0.004,
|
||||
right: SizeConfig.screenWidth * 0.004,
|
||||
top: SizeConfig.screenWidth * 0.04,
|
||||
),
|
||||
child: ListView.builder(
|
||||
itemCount: model.vaccinationItemList.length,
|
||||
itemBuilder: (context, index) => InkWell(
|
||||
onTap: () async {
|
||||
await model.getMyVaccinationOnHand(
|
||||
pItemCode: model.vaccinationItemList[index].iTEMCODE);
|
||||
if (model.hasError) {
|
||||
AppToast.showErrorToast(message: model.error);
|
||||
} else {
|
||||
//TODO show dialog
|
||||
|
||||
}
|
||||
},
|
||||
child: Container(
|
||||
margin: EdgeInsets.all(5),
|
||||
padding: EdgeInsets.all(10),
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.rectangle,
|
||||
borderRadius: BorderRadius.circular(7),
|
||||
color: Colors.white,
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Texts(
|
||||
model.vaccinationItemList[index].dESCRIPTION)),
|
||||
Icon(projectViewModel.isArabic
|
||||
? Icons.arrow_forward_ios
|
||||
: Icons.arrow_back_ios)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue