|
|
|
|
@ -32,193 +32,190 @@ class PrescriptionsPage extends StatelessWidget {
|
|
|
|
|
onModelReady: (model) => patient.admissionNo == null
|
|
|
|
|
? model.getPrescriptions(patient, patientType: patientType)
|
|
|
|
|
: model.getMedicationForInPatient(patient),
|
|
|
|
|
builder: (_, model, w) => NetworkBaseView(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
child: AppScaffold(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
backgroundColor: Colors.grey[100],
|
|
|
|
|
appBar: PatientProfileAppBar(
|
|
|
|
|
patient,
|
|
|
|
|
isInpatient: isInpatient,
|
|
|
|
|
),
|
|
|
|
|
body: patient.admissionNo == null
|
|
|
|
|
? FractionallySizedBox(
|
|
|
|
|
widthFactor: 1.0,
|
|
|
|
|
child: ListView(
|
|
|
|
|
physics: BouncingScrollPhysics(),
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 12,
|
|
|
|
|
),
|
|
|
|
|
if (model.prescriptionsList.isNotEmpty && patient.patientStatusType != 43)
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).orders,
|
|
|
|
|
style: "caption2",
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontSize: 13,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).prescriptions,
|
|
|
|
|
bold: true,
|
|
|
|
|
fontSize: 22,
|
|
|
|
|
builder: (_, model, w) => AppScaffold(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
backgroundColor: Colors.grey[100],
|
|
|
|
|
appBar: PatientProfileAppBar(
|
|
|
|
|
patient,
|
|
|
|
|
isInpatient: isInpatient,
|
|
|
|
|
),
|
|
|
|
|
body: patient.admissionNo == null
|
|
|
|
|
? FractionallySizedBox(
|
|
|
|
|
widthFactor: 1.0,
|
|
|
|
|
child: ListView(
|
|
|
|
|
physics: BouncingScrollPhysics(),
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 12,
|
|
|
|
|
),
|
|
|
|
|
if (model.prescriptionsList.isNotEmpty && patient.patientStatusType != 43)
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).orders,
|
|
|
|
|
style: "caption2",
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontSize: 13,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).prescriptions,
|
|
|
|
|
bold: true,
|
|
|
|
|
fontSize: 22,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (patient.patientStatusType != null && patient.patientStatusType == 43)
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).orders,
|
|
|
|
|
style: "caption2",
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontSize: 13,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).prescriptions,
|
|
|
|
|
bold: true,
|
|
|
|
|
fontSize: 22,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if ((patient.patientStatusType != null && patient.patientStatusType == 43) ||
|
|
|
|
|
(isFromLiveCare && patient.appointmentNo != null))
|
|
|
|
|
AddNewOrder(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
MaterialPageRoute(
|
|
|
|
|
builder: (context) => BaseAddProcedureTabPage(
|
|
|
|
|
patient: patient,
|
|
|
|
|
prescriptionModel: model,
|
|
|
|
|
procedureType: ProcedureType.PRESCRIPTION,
|
|
|
|
|
),
|
|
|
|
|
settings: RouteSettings(name: 'AddProcedureTabPage')),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
label: TranslationBase.of(context).applyForNewPrescriptionsOrder,
|
|
|
|
|
),
|
|
|
|
|
...List.generate(
|
|
|
|
|
model.prescriptionsList.length,
|
|
|
|
|
(index) => InkWell(
|
|
|
|
|
onTap: () => Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
FadePage(
|
|
|
|
|
page: PrescriptionItemsPage(
|
|
|
|
|
prescriptions: model.prescriptionsList[index],
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
child: DoctorCard(
|
|
|
|
|
doctorName: model.prescriptionsList[index].doctorName,
|
|
|
|
|
profileUrl: model.prescriptionsList[index].doctorImageURL,
|
|
|
|
|
branch: model.prescriptionsList[index].name,
|
|
|
|
|
clinic: model.prescriptionsList[index].clinicDescription,
|
|
|
|
|
isPrescriptions: true,
|
|
|
|
|
appointmentDate: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.prescriptionsList[index].appointmentDate,
|
|
|
|
|
),
|
|
|
|
|
))),
|
|
|
|
|
if (model.prescriptionsList.isEmpty && patient.patientStatusType != 43)
|
|
|
|
|
Center(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 100,
|
|
|
|
|
),
|
|
|
|
|
if (patient.patientStatusType != null && patient.patientStatusType == 43)
|
|
|
|
|
Image.asset('assets/images/no-data.png'),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).orders,
|
|
|
|
|
style: "caption2",
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontSize: 13,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).prescriptions,
|
|
|
|
|
bold: true,
|
|
|
|
|
fontSize: 22,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if ((patient.patientStatusType != null && patient.patientStatusType == 43) ||
|
|
|
|
|
(isFromLiveCare && patient.appointmentNo != null))
|
|
|
|
|
AddNewOrder(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
MaterialPageRoute(
|
|
|
|
|
builder: (context) => BaseAddProcedureTabPage(
|
|
|
|
|
patient: patient,
|
|
|
|
|
prescriptionModel: model,
|
|
|
|
|
procedureType: ProcedureType.PRESCRIPTION,
|
|
|
|
|
child: AppText(TranslationBase.of(context).noPrescriptionsFound),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
: NetworkBaseView(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
child: FractionallySizedBox(
|
|
|
|
|
widthFactor: 1.0,
|
|
|
|
|
child: ListView(
|
|
|
|
|
physics: BouncingScrollPhysics(),
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
// SizedBox(
|
|
|
|
|
// height: 12,
|
|
|
|
|
// ),
|
|
|
|
|
|
|
|
|
|
ListView.builder(
|
|
|
|
|
scrollDirection: Axis.vertical,
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
itemCount: model.medicationForInPatient.length,
|
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
|
//model.medicationForInPatient.length,
|
|
|
|
|
return InkWell(
|
|
|
|
|
onTap: () => Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
FadePage(
|
|
|
|
|
page: PrescriptionItemsInPatientPage(
|
|
|
|
|
prescriptionIndex: index,
|
|
|
|
|
prescriptions: model.medicationForInPatient[index],
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
startOn: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.medicationForInPatient[index].startDatetime,
|
|
|
|
|
),
|
|
|
|
|
settings: RouteSettings(name: 'AddProcedureTabPage')),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
label: TranslationBase.of(context).applyForNewPrescriptionsOrder,
|
|
|
|
|
),
|
|
|
|
|
...List.generate(
|
|
|
|
|
model.prescriptionsList.length,
|
|
|
|
|
(index) => InkWell(
|
|
|
|
|
onTap: () => Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
FadePage(
|
|
|
|
|
page: PrescriptionItemsPage(
|
|
|
|
|
prescriptions: model.prescriptionsList[index],
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
stopOn: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.medicationForInPatient[index].stopDatetime,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
child: DoctorCard(
|
|
|
|
|
doctorName: model.prescriptionsList[index].doctorName,
|
|
|
|
|
profileUrl: model.prescriptionsList[index].doctorImageURL,
|
|
|
|
|
branch: model.prescriptionsList[index].name,
|
|
|
|
|
clinic: model.prescriptionsList[index].clinicDescription,
|
|
|
|
|
isPrescriptions: true,
|
|
|
|
|
appointmentDate: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.prescriptionsList[index].appointmentDate,
|
|
|
|
|
),
|
|
|
|
|
))),
|
|
|
|
|
if (model.prescriptionsList.isEmpty && patient.patientStatusType != 43)
|
|
|
|
|
Center(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 100,
|
|
|
|
|
child: InPatientDoctorCard(
|
|
|
|
|
doctorName: model.medicationForInPatient[index].pHRItemDescription,
|
|
|
|
|
profileUrl: 'sss',
|
|
|
|
|
branch: 'hamza',
|
|
|
|
|
clinic: 'basheer',
|
|
|
|
|
isPrescriptions: true,
|
|
|
|
|
appointmentDate: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.medicationForInPatient[index].prescriptionDatetime,
|
|
|
|
|
),
|
|
|
|
|
Image.asset('assets/images/no-data.png'),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
child: AppText(TranslationBase.of(context).noPrescriptionsFound),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
createdBy: model.medicationForInPatient[index].doctorName.toString(),
|
|
|
|
|
));
|
|
|
|
|
}),
|
|
|
|
|
if (model.medicationForInPatient.length == 0)
|
|
|
|
|
Center(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 100,
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
: NetworkBaseView(
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
child: FractionallySizedBox(
|
|
|
|
|
widthFactor: 1.0,
|
|
|
|
|
child: ListView(
|
|
|
|
|
physics: BouncingScrollPhysics(),
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
// SizedBox(
|
|
|
|
|
// height: 12,
|
|
|
|
|
// ),
|
|
|
|
|
|
|
|
|
|
ListView.builder(
|
|
|
|
|
scrollDirection: Axis.vertical,
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
itemCount: model.medicationForInPatient.length,
|
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
|
//model.medicationForInPatient.length,
|
|
|
|
|
return InkWell(
|
|
|
|
|
onTap: () => Navigator.push(
|
|
|
|
|
context,
|
|
|
|
|
FadePage(
|
|
|
|
|
page: PrescriptionItemsInPatientPage(
|
|
|
|
|
prescriptionIndex: index,
|
|
|
|
|
prescriptions: model.medicationForInPatient[index],
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
startOn: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.medicationForInPatient[index].startDatetime,
|
|
|
|
|
),
|
|
|
|
|
stopOn: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.medicationForInPatient[index].stopDatetime,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
child: InPatientDoctorCard(
|
|
|
|
|
doctorName: model.medicationForInPatient[index].pHRItemDescription,
|
|
|
|
|
profileUrl: 'sss',
|
|
|
|
|
branch: 'hamza',
|
|
|
|
|
clinic: 'basheer',
|
|
|
|
|
isPrescriptions: true,
|
|
|
|
|
appointmentDate: AppDateUtils.getDateTimeFromServerFormat(
|
|
|
|
|
model.medicationForInPatient[index].prescriptionDatetime,
|
|
|
|
|
),
|
|
|
|
|
createdBy: model.medicationForInPatient[index].doctorName.toString(),
|
|
|
|
|
));
|
|
|
|
|
}),
|
|
|
|
|
if (model.medicationForInPatient.length == 0)
|
|
|
|
|
Center(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 100,
|
|
|
|
|
),
|
|
|
|
|
Image.asset('assets/images/no-data.png'),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
child: AppText(TranslationBase.of(context).noPrescriptionsFound),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Image.asset('assets/images/no-data.png'),
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
child: AppText(TranslationBase.of(context).noPrescriptionsFound),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
)),
|
|
|
|
|
));
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|