|
|
|
|
@ -30,6 +30,7 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
bool isInpatient = false;
|
|
|
|
|
|
|
|
|
|
bool isDischargedPatient = false;
|
|
|
|
|
bool isSearchAndOut = false;
|
|
|
|
|
String patientType;
|
|
|
|
|
String arrivalType;
|
|
|
|
|
String from;
|
|
|
|
|
@ -66,6 +67,8 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
}
|
|
|
|
|
if (routeArgs.containsKey("isDischargedPatient")) {
|
|
|
|
|
isDischargedPatient = routeArgs['isDischargedPatient'];
|
|
|
|
|
}if (routeArgs.containsKey("isSearchAndOut")) {
|
|
|
|
|
isSearchAndOut = routeArgs['isSearchAndOut'];
|
|
|
|
|
}
|
|
|
|
|
if (isInpatient)
|
|
|
|
|
_activeTab = 0;
|
|
|
|
|
@ -101,24 +104,22 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
? 210
|
|
|
|
|
: 0,
|
|
|
|
|
),
|
|
|
|
|
if(isFromSearch)
|
|
|
|
|
tabsBar(context, screenSize),
|
|
|
|
|
|
|
|
|
|
Container(
|
|
|
|
|
height: isFromSearch ? MediaQuery
|
|
|
|
|
height: !isSearchAndOut ? MediaQuery
|
|
|
|
|
.of(context)
|
|
|
|
|
.size
|
|
|
|
|
.height * 0.60 : MediaQuery
|
|
|
|
|
.height * 0.70 : MediaQuery
|
|
|
|
|
.of(context)
|
|
|
|
|
.size
|
|
|
|
|
.height * 0.69,
|
|
|
|
|
child: ListView(
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
child: isFromSearch
|
|
|
|
|
child: isSearchAndOut
|
|
|
|
|
? Column(
|
|
|
|
|
children: [
|
|
|
|
|
|
|
|
|
|
if (_activeTab == 0)
|
|
|
|
|
Padding(
|
|
|
|
|
padding:
|
|
|
|
|
const EdgeInsets.symmetric(
|
|
|
|
|
@ -134,6 +135,8 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
crossAxisCount: 3,
|
|
|
|
|
children: [
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
@ -153,17 +156,17 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
.signs,
|
|
|
|
|
route:
|
|
|
|
|
VITAL_SIGN_DETAILS,
|
|
|
|
|
isInPatient: true,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/vital_signs.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: LAB_RESULT,
|
|
|
|
|
isInPatient: true,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
@ -195,10 +198,12 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.result,
|
|
|
|
|
.service,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/health_summary.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
@ -206,15 +211,11 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
arrivalType,
|
|
|
|
|
route:
|
|
|
|
|
ORDER_PRESCRIPTION_NEW,
|
|
|
|
|
isSelectInpatient:
|
|
|
|
|
_activeTab == 0,
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.patient,
|
|
|
|
|
.orders,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
@ -222,222 +223,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
.prescription,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/order_prescription.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: PROGRESS_NOTE,
|
|
|
|
|
isDischargedPatient:
|
|
|
|
|
isDischargedPatient,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.progress,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.note,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/Progress_notes.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: ORDER_NOTE,
|
|
|
|
|
isDischargedPatient:
|
|
|
|
|
isDischargedPatient,
|
|
|
|
|
nameLine1:
|
|
|
|
|
"Order",
|
|
|
|
|
//"Text",
|
|
|
|
|
nameLine2:
|
|
|
|
|
"Sheet",
|
|
|
|
|
//TranslationBase.of(context).orders,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/Progress_notes.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: ORDER_PROCEDURE,
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.orders,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.procedures,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/Order_Procedures.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: MEDICAL_FILE,
|
|
|
|
|
nameLine1: "Health",
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
nameLine2: "Summary",
|
|
|
|
|
//TranslationBase.of(context).summaryReport,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/health_summary.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
isDisable: true,
|
|
|
|
|
route: MEDICAL_FILE,
|
|
|
|
|
nameLine1:
|
|
|
|
|
"Medical",
|
|
|
|
|
//Health
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
nameLine2:
|
|
|
|
|
"Report",
|
|
|
|
|
//Report
|
|
|
|
|
//TranslationBase.of(context).summaryReport,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/health_summary.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route:
|
|
|
|
|
REFER_IN_PATIENT_TO_DOCTOR,
|
|
|
|
|
isInPatient: true,
|
|
|
|
|
isDisable:
|
|
|
|
|
isDischargedPatient ||
|
|
|
|
|
isFromSearch,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.referral,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.patient,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/refer_patient.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route:
|
|
|
|
|
PATIENT_INSURANCE_APPROVALS_NEW,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.insurance,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.approvals,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/vital_signs.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
isDisable: true,
|
|
|
|
|
route: null,
|
|
|
|
|
nameLine1: "Discharge",
|
|
|
|
|
nameLine2: "Summery",
|
|
|
|
|
icon:
|
|
|
|
|
'patient/patient_sick_leave.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: ADD_SICKLEAVE,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.patientSick,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.leave,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/patient_sick_leave.png'),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (_activeTab == 1)
|
|
|
|
|
Padding(
|
|
|
|
|
padding:
|
|
|
|
|
const EdgeInsets.symmetric(
|
|
|
|
|
vertical: 15.0,
|
|
|
|
|
horizontal: 15),
|
|
|
|
|
child: GridView.count(
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
physics:
|
|
|
|
|
NeverScrollableScrollPhysics(),
|
|
|
|
|
crossAxisSpacing: 10,
|
|
|
|
|
mainAxisSpacing: 10,
|
|
|
|
|
childAspectRatio: 1 / 1.0,
|
|
|
|
|
crossAxisCount: 3,
|
|
|
|
|
children: [
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
from: from,
|
|
|
|
|
to: to,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.vital,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.signs,
|
|
|
|
|
route:
|
|
|
|
|
VITAL_SIGN_DETAILS,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/vital_signs.png'),
|
|
|
|
|
// if (selectedPatientType != 7)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -455,50 +240,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
//TranslationBase.of(context).summaryReport,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/health_summary.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: LAB_RESULT,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.lab,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.result,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/lab_results.png'),
|
|
|
|
|
// if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
route:
|
|
|
|
|
RADIOLOGY_PATIENT,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.radiology,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.service,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/health_summary.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -516,29 +257,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
nameLine2: "ECG",
|
|
|
|
|
icon:
|
|
|
|
|
'patient/patient_sick_leave.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route:
|
|
|
|
|
ORDER_PRESCRIPTION_NEW,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.orders,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.prescription,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/order_prescription.png'),
|
|
|
|
|
// if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -560,7 +278,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
.procedures,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/Order_Procedures.png'),
|
|
|
|
|
//if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -583,7 +300,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
.service,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/vital_signs.png'),
|
|
|
|
|
// if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -987,24 +703,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
VITAL_SIGN_DETAILS,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/vital_signs.png'),
|
|
|
|
|
// if (selectedPatientType != 7)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: MEDICAL_FILE,
|
|
|
|
|
nameLine1:
|
|
|
|
|
"Health",
|
|
|
|
|
//TranslationBase.of(context).medicalReport,
|
|
|
|
|
nameLine2:
|
|
|
|
|
"Summary",
|
|
|
|
|
//TranslationBase.of(context).summaryReport,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/health_summary.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -1026,7 +724,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
.result,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/lab_results.png'),
|
|
|
|
|
// if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
@ -1057,15 +754,20 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: PATIENT_ECG,
|
|
|
|
|
route:
|
|
|
|
|
ORDER_PRESCRIPTION_NEW,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.patient,
|
|
|
|
|
nameLine2: "ECG",
|
|
|
|
|
.orders,
|
|
|
|
|
nameLine2:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.prescription,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/patient_sick_leave.png'),
|
|
|
|
|
'patient/order_prescription.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -1074,33 +776,41 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route:
|
|
|
|
|
ORDER_PRESCRIPTION_NEW,
|
|
|
|
|
isSelectInpatient:
|
|
|
|
|
false,
|
|
|
|
|
route: MEDICAL_FILE,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.orders,
|
|
|
|
|
"Health",
|
|
|
|
|
//TranslationBase.of(context).medicalReport,
|
|
|
|
|
nameLine2:
|
|
|
|
|
"Summary",
|
|
|
|
|
//TranslationBase.of(context).summaryReport,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/health_summary.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route: PATIENT_ECG,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
context)
|
|
|
|
|
.prescription,
|
|
|
|
|
.patient,
|
|
|
|
|
nameLine2: "ECG",
|
|
|
|
|
icon:
|
|
|
|
|
'patient/order_prescription.png'),
|
|
|
|
|
// if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
'patient/patient_sick_leave.png'),
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType:
|
|
|
|
|
patientType,
|
|
|
|
|
arrivalType:
|
|
|
|
|
arrivalType,
|
|
|
|
|
route:
|
|
|
|
|
ORDER_PROCEDURE,
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
route: ORDER_PROCEDURE,
|
|
|
|
|
nameLine1:
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(
|
|
|
|
|
@ -1113,7 +823,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
.procedures,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/Order_Procedures.png'),
|
|
|
|
|
//if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
@ -1136,7 +845,6 @@ class _PatientProfileScreenState extends State<PatientProfileScreen>
|
|
|
|
|
.service,
|
|
|
|
|
icon:
|
|
|
|
|
'patient/vital_signs.png'),
|
|
|
|
|
// if (int.parse(patientType) == 7 || int.parse(patientType) == 6)
|
|
|
|
|
PatientProfileButton(
|
|
|
|
|
isInPatient:
|
|
|
|
|
isInpatient,
|
|
|
|
|
|