Merge branch 'master' of https://gitlab.com/Cloud_Solution/diplomatic-quarter into Haroon
commit
38c980be81
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
@ -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,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 {
|
class VaccineModel {
|
||||||
String to;
|
String setupID;
|
||||||
String from;
|
int projectID;
|
||||||
double versionID;
|
|
||||||
int channel;
|
|
||||||
int languageID;
|
|
||||||
String iPAdress;
|
|
||||||
String generalid;
|
|
||||||
int patientOutSA;
|
|
||||||
String sessionID;
|
|
||||||
bool isDentalAllowedBackend;
|
|
||||||
int deviceTypeID;
|
|
||||||
int patientID;
|
int patientID;
|
||||||
String tokenID;
|
int invoiceNo;
|
||||||
int patientTypeID;
|
String procedureID;
|
||||||
int patientType;
|
String vaccineName;
|
||||||
|
Null vaccineNameN;
|
||||||
String invoiceDate;
|
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 doctorImageURL;
|
||||||
String doctorName;
|
String doctorName;
|
||||||
|
int doctorRate;
|
||||||
String doctorTitle;
|
String doctorTitle;
|
||||||
|
int gender;
|
||||||
|
String genderDescription;
|
||||||
|
bool isActiveDoctorProfile;
|
||||||
|
bool isDoctorAllowVedioCall;
|
||||||
|
bool isExecludeDoctor;
|
||||||
|
int noOfPatientsRate;
|
||||||
|
String patientName;
|
||||||
String projectName;
|
String projectName;
|
||||||
String vaccineName;
|
String qR;
|
||||||
|
List<String> speciality;
|
||||||
|
String vaccinationDate;
|
||||||
|
|
||||||
VaccineModel({
|
VaccineModel(
|
||||||
this.to,
|
{this.setupID,
|
||||||
this.from,
|
this.projectID,
|
||||||
this.versionID,
|
this.patientID,
|
||||||
this.channel,
|
this.invoiceNo,
|
||||||
this.languageID,
|
this.procedureID,
|
||||||
this.iPAdress,
|
this.vaccineName,
|
||||||
this.generalid,
|
this.vaccineNameN,
|
||||||
this.patientOutSA,
|
this.invoiceDate,
|
||||||
this.sessionID,
|
this.doctorID,
|
||||||
this.isDentalAllowedBackend,
|
this.clinicID,
|
||||||
this.deviceTypeID,
|
this.firstName,
|
||||||
this.patientID,
|
this.middleName,
|
||||||
this.tokenID,
|
this.lastName,
|
||||||
this.patientTypeID,
|
this.firstNameN,
|
||||||
this.patientType,
|
this.middleNameN,
|
||||||
this.invoiceDate,
|
this.lastNameN,
|
||||||
this.doctorImageURL,
|
this.dateofBirth,
|
||||||
this.doctorName,
|
this.actualDoctorRate,
|
||||||
this.doctorTitle,
|
this.age,
|
||||||
this.projectName,
|
this.clinicName,
|
||||||
this.vaccineName,
|
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) {
|
VaccineModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
setupID = json['SetupID'];
|
||||||
|
projectID = json['ProjectID'];
|
||||||
|
patientID = json['PatientID'];
|
||||||
|
invoiceNo = json['InvoiceNo'];
|
||||||
|
procedureID = json['ProcedureID'];
|
||||||
vaccineName = json['VaccineName'];
|
vaccineName = json['VaccineName'];
|
||||||
projectName = json['ProjectName'];
|
vaccineNameN = json['VaccineNameN'];
|
||||||
doctorTitle = json['DoctorTitle'];
|
|
||||||
doctorName = json['DoctorName'];
|
|
||||||
doctorImageURL = json['DoctorImageURL'];
|
|
||||||
invoiceDate = json['InvoiceDate'];
|
invoiceDate = json['InvoiceDate'];
|
||||||
to = json['To'];
|
doctorID = json['DoctorID'];
|
||||||
from = json['From'];
|
clinicID = json['ClinicID'];
|
||||||
versionID = json['VersionID'];
|
firstName = json['FirstName'];
|
||||||
channel = json['Channel'];
|
middleName = json['MiddleName'];
|
||||||
languageID = json['LanguageID'];
|
lastName = json['LastName'];
|
||||||
iPAdress = json['IPAdress'];
|
firstNameN = json['FirstNameN'];
|
||||||
generalid = json['generalid'];
|
middleNameN = json['MiddleNameN'];
|
||||||
patientOutSA = json['PatientOutSA'];
|
lastNameN = json['LastNameN'];
|
||||||
sessionID = json['SessionID'];
|
dateofBirth = json['DateofBirth'];
|
||||||
isDentalAllowedBackend = json['isDentalAllowedBackend'];
|
actualDoctorRate = json['ActualDoctorRate'];
|
||||||
deviceTypeID = json['DeviceTypeID'];
|
age = json['Age'];
|
||||||
patientID = json['PatientID'];
|
clinicName = json['ClinicName'];
|
||||||
tokenID = json['TokenID'];
|
doctorImageURL = json['DoctorImageURL'];
|
||||||
patientTypeID = json['PatientTypeID'];
|
doctorName = json['DoctorName'];
|
||||||
patientType = json['PatientType'];
|
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() {
|
Map<String, dynamic> toJson() {
|
||||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
data['To'] = this.to;
|
data['SetupID'] = this.setupID;
|
||||||
data['From'] = this.from;
|
data['ProjectID'] = this.projectID;
|
||||||
data['VersionID'] = this.versionID;
|
|
||||||
data['Channel'] = this.channel;
|
|
||||||
data['LanguageID'] = this.languageID;
|
|
||||||
data['IPAdress'] = this.iPAdress;
|
|
||||||
data['generalid'] = this.generalid;
|
|
||||||
data['PatientOutSA'] = this.patientOutSA;
|
|
||||||
data['SessionID'] = this.sessionID;
|
|
||||||
data['isDentalAllowedBackend'] = this.isDentalAllowedBackend;
|
|
||||||
data['DeviceTypeID'] = this.deviceTypeID;
|
|
||||||
data['PatientID'] = this.patientID;
|
data['PatientID'] = this.patientID;
|
||||||
data['TokenID'] = this.tokenID;
|
data['InvoiceNo'] = this.invoiceNo;
|
||||||
data['PatientTypeID'] = this.patientTypeID;
|
data['ProcedureID'] = this.procedureID;
|
||||||
data['PatientType'] = this.patientType;
|
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;
|
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,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,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,78 @@
|
|||||||
|
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>[
|
||||||
|
// Text(TranslationBase.of(context).searchBy,
|
||||||
|
// style: TextStyle(
|
||||||
|
// fontSize: 24.0,
|
||||||
|
// letterSpacing: 1.0,
|
||||||
|
// fontWeight: FontWeight.bold,
|
||||||
|
// color: new Color(0xFF60686b))),
|
||||||
|
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,89 @@
|
|||||||
|
//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 '../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);
|
||||||
|
print("=============this.type============="+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)
|
||||||
|
{print("========Ambalunce=========");}
|
||||||
|
else{
|
||||||
|
print("=========Nearest ER===========");
|
||||||
|
|
||||||
|
// Navigator.push(
|
||||||
|
// context,
|
||||||
|
//
|
||||||
|
// FadePage(
|
||||||
|
// // page: NearestEr(isAppbar: true,)));
|
||||||
|
// page: NearestEr()));
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
FadePage(
|
||||||
|
page: NearestEr()));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Navigator.push(
|
||||||
|
// context,
|
||||||
|
// MaterialPageRoute(
|
||||||
|
// builder: (context) => Search(
|
||||||
|
// type: type,
|
||||||
|
// )));
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,126 @@
|
|||||||
|
//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:170,
|
||||||
|
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 {
|
||||||
|
|
||||||
|
//===Switch case===
|
||||||
|
print("================"+type);
|
||||||
|
print("================"+telephone);
|
||||||
|
print("================"+networkImage);
|
||||||
|
|
||||||
|
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);}
|
||||||
|
|
||||||
|
// double.parse(
|
||||||
|
// _medicineProvider.pharmaciesList[index]["Latitude"]),
|
||||||
|
// double.parse(
|
||||||
|
// _medicineProvider.pharmaciesList[index]["Longitude"]),
|
||||||
|
// _medicineProvider.pharmaciesList[index]
|
||||||
|
// ["LocationDescription"]);
|
||||||
|
//launch("tel://" +telephone);
|
||||||
|
//================
|
||||||
|
// MapsLauncher.launchCoordinates(
|
||||||
|
// double.parse(
|
||||||
|
// _medicineProvider.pharmaciesList[index]["Latitude"]),
|
||||||
|
// double.parse(
|
||||||
|
// _medicineProvider.pharmaciesList[index]["Longitude"]),
|
||||||
|
// _medicineProvider.pharmaciesList[index]
|
||||||
|
// ["LocationDescription"]);
|
||||||
|
//=================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
) );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,377 @@
|
|||||||
|
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/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: 'Advance Payment',
|
||||||
|
body: SingleChildScrollView(
|
||||||
|
physics: ScrollPhysics(),
|
||||||
|
child: Container(
|
||||||
|
margin: EdgeInsets.all(12),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
'You can create and add an Advanced Payment for you account or other accounts.',
|
||||||
|
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: 'File Number',
|
||||||
|
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: 'Amount*',
|
||||||
|
keyboardType: TextInputType.number,
|
||||||
|
onChanged: (value) {
|
||||||
|
setState(() {
|
||||||
|
amount = value;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
NewTextFields(
|
||||||
|
hintText: 'Depositor Email*',
|
||||||
|
initialValue: model.user.emailAddress,
|
||||||
|
onChanged: (value) {
|
||||||
|
email = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
NewTextFields(
|
||||||
|
hintText: '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: '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 "My Account";
|
||||||
|
case BeneficiaryType.MyFamilyFiles:
|
||||||
|
return "My Family Files";
|
||||||
|
break;
|
||||||
|
case BeneficiaryType.OtherAccount:
|
||||||
|
return "Other Account";
|
||||||
|
break;
|
||||||
|
case BeneficiaryType.NON:
|
||||||
|
return "Select Beneficiary";
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
String getHospitalName() {
|
||||||
|
if (_selectedHospital != null)
|
||||||
|
return _selectedHospital.name;
|
||||||
|
else
|
||||||
|
return "Select Hospital";
|
||||||
|
}
|
||||||
|
|
||||||
|
String getPatientName() {
|
||||||
|
if (_selectedPatientInfo != null)
|
||||||
|
return _selectedPatientInfo.fullName;
|
||||||
|
else
|
||||||
|
return "Select Patient Name";
|
||||||
|
}
|
||||||
|
|
||||||
|
String getFamilyMembersName() {
|
||||||
|
if (selectedPatientFamily != null)
|
||||||
|
return selectedPatientFamily.patientName;
|
||||||
|
else
|
||||||
|
return "Select Patient Name";
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,176 @@
|
|||||||
|
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/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: 'Advance Payment',
|
||||||
|
body: SingleChildScrollView(
|
||||||
|
physics: ScrollPhysics(),
|
||||||
|
child: Container(
|
||||||
|
margin: EdgeInsets.all(12),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
'Confirm the Payment',
|
||||||
|
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: 'File Number',
|
||||||
|
initialValue: advanceModel.fileNumber,
|
||||||
|
isEnabled: false,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Container(
|
||||||
|
margin: EdgeInsets.all(3),
|
||||||
|
child: NewTextFields(
|
||||||
|
hintText: 'Name',
|
||||||
|
initialValue: patientInfoAndMobileNumber.firstName,
|
||||||
|
isEnabled: false,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
NewTextFields(
|
||||||
|
hintText: 'Mobile Number',
|
||||||
|
initialValue: patientInfoAndMobileNumber.mobileNumber,
|
||||||
|
isEnabled: false,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
NewTextFields(
|
||||||
|
hintText: 'Depositor Name',
|
||||||
|
initialValue: advanceModel.depositorName,
|
||||||
|
isEnabled: false,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 12,
|
||||||
|
),
|
||||||
|
NewTextFields(
|
||||||
|
hintText: 'Note',
|
||||||
|
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: 'CONFIRM',
|
||||||
|
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/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(
|
||||||
|
'Please enter the Verification code send to [${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(
|
||||||
|
'The verification code expires in $timerText',
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(height: 20),
|
||||||
|
|
||||||
|
Container(
|
||||||
|
width: double.maxFinite,
|
||||||
|
padding: EdgeInsets.all(12),
|
||||||
|
child: SecondaryButton(
|
||||||
|
textColor: Colors.white,
|
||||||
|
label: 'SUBMIT',
|
||||||
|
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 'Please enter your Password';
|
||||||
|
}
|
||||||
|
|
||||||
|
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,175 @@
|
|||||||
|
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: const Text('My Account'),
|
||||||
|
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: const Text('My Family Files'),
|
||||||
|
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: const Text('Other Account'),
|
||||||
|
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(
|
||||||
|
'CANCEL',
|
||||||
|
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(
|
||||||
|
'Ok',
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,128 @@
|
|||||||
|
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.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(
|
||||||
|
'CANCEL',
|
||||||
|
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(
|
||||||
|
'Ok',
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,129 @@
|
|||||||
|
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/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(
|
||||||
|
'CANCEL',
|
||||||
|
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(
|
||||||
|
'Ok',
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,129 @@
|
|||||||
|
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/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(
|
||||||
|
'CANCEL',
|
||||||
|
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(
|
||||||
|
'Ok',
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,89 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
|
import 'package:diplomaticquarterapp/config/config.dart';
|
||||||
|
import 'package:diplomaticquarterapp/config/size_config.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:hexcolor/hexcolor.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
class ShowTimerText extends StatefulWidget {
|
||||||
|
ShowTimerText({Key key, this.model});
|
||||||
|
final model;
|
||||||
|
|
||||||
|
@override
|
||||||
|
_ShowTimerTextState createState() => _ShowTimerTextState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ShowTimerTextState extends State<ShowTimerText> {
|
||||||
|
String timerText = (TIMER_MIN - 1).toString() + ':59';
|
||||||
|
int min = TIMER_MIN - 1;
|
||||||
|
int sec = 59;
|
||||||
|
Timer _timer;
|
||||||
|
|
||||||
|
// AuthProvider authProv;
|
||||||
|
|
||||||
|
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) {
|
||||||
|
//TODO
|
||||||
|
|
||||||
|
min = 0;
|
||||||
|
sec = 0;
|
||||||
|
} else if (sec == 0) {
|
||||||
|
min = min - 1;
|
||||||
|
sec = 59;
|
||||||
|
}
|
||||||
|
timerText = min.toString() + ':' + sec.toString();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
resendCode();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_timer.cancel();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Center(
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: <Widget>[
|
||||||
|
InkWell(
|
||||||
|
onTap: min != 0 || sec != 0
|
||||||
|
? null
|
||||||
|
: () {
|
||||||
|
resendActivatioinCode();
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
timerText,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 3.0 * SizeConfig.textMultiplier,
|
||||||
|
color: Hexcolor('#B8382C'),
|
||||||
|
fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
resendActivatioinCode() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,106 @@
|
|||||||
|
import 'package:diplomaticquarterapp/core/viewModels/medical/my_balance_view_model.dart';
|
||||||
|
import 'package:diplomaticquarterapp/pages/base/base_view.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: 'My Balances',
|
||||||
|
body: Container(
|
||||||
|
margin: EdgeInsets.all(12),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
'Balance Amount',
|
||||||
|
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(
|
||||||
|
'Total Balance',
|
||||||
|
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: ' Create Advanced Payment',
|
||||||
|
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,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)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue