add PatientSickLeave
parent
d7934a66ab
commit
11f9daa3ff
@ -0,0 +1,138 @@
|
|||||||
|
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'];
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,43 @@
|
|||||||
|
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}) 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;
|
||||||
|
await baseAppClient
|
||||||
|
.post(SendSickLeaveEmail, onSuccess: (response, statusCode) async {},
|
||||||
|
onFailure: (String error, int statusCode) {
|
||||||
|
hasError = true;
|
||||||
|
super.error = error;
|
||||||
|
}, body: body);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -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}) async {
|
||||||
|
setState(ViewState.BusyLocal);
|
||||||
|
await _patientSickLeaveService.sendSickLeaveEmail(
|
||||||
|
requestNo: requestNo, projectName: projectName, doctorName: doctorName);
|
||||||
|
if (_patientSickLeaveService.hasError) {
|
||||||
|
error = _patientSickLeaveService.error;
|
||||||
|
setState(ViewState.ErrorLocal);
|
||||||
|
AppToast.showErrorToast(message: error);
|
||||||
|
} else {
|
||||||
|
AppToast.showSuccessToast(message: message);
|
||||||
|
setState(ViewState.Idle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,44 @@
|
|||||||
|
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/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: SingleChildScrollView(
|
||||||
|
child: 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].doctorRate.toDouble(),
|
||||||
|
subName: model.sickLeaveList[index].projectName,
|
||||||
|
isInOutPatientDescription: model.sickLeaveList[index].isInOutPatientDescription,
|
||||||
|
onEmailTap: (){
|
||||||
|
model.sendSickLeaveEmail();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue