|
|
|
|
@ -107,8 +107,8 @@ class ProfileGridForOther extends StatelessWidget {
|
|
|
|
|
PATIENT_UCAF_REQUEST,
|
|
|
|
|
'patient/ucaf.png',
|
|
|
|
|
isInPatient: isInpatient,
|
|
|
|
|
isDisable: patient.patientStatusType != 43 ||
|
|
|
|
|
patient.appointmentNo == null ? true : false),
|
|
|
|
|
isDisable: isFromLiveCare?patient.appointmentNo == null:patient.patientStatusType != 43 ||
|
|
|
|
|
patient.appointmentNo == null ),
|
|
|
|
|
if (isFromLiveCare ||
|
|
|
|
|
(patient.appointmentNo != null && patient.appointmentNo != 0))
|
|
|
|
|
PatientProfileCardModel(
|
|
|
|
|
@ -121,8 +121,9 @@ class ProfileGridForOther extends StatelessWidget {
|
|
|
|
|
REFER_PATIENT_TO_DOCTOR,
|
|
|
|
|
'patient/refer_patient.png',
|
|
|
|
|
isInPatient: isInpatient,
|
|
|
|
|
isDisable: patient.patientStatusType != 43 ||
|
|
|
|
|
patient.appointmentNo == null ? true : false),
|
|
|
|
|
isDisable: isFromLiveCare?patient.appointmentNo == null:patient.patientStatusType != 43 ||
|
|
|
|
|
patient.appointmentNo == null ,
|
|
|
|
|
),
|
|
|
|
|
if (isFromLiveCare ||
|
|
|
|
|
(patient.appointmentNo != null && patient.appointmentNo != 0))
|
|
|
|
|
PatientProfileCardModel(
|
|
|
|
|
@ -135,8 +136,9 @@ class ProfileGridForOther extends StatelessWidget {
|
|
|
|
|
PATIENT_ADMISSION_REQUEST,
|
|
|
|
|
'patient/admission_req.png',
|
|
|
|
|
isInPatient: isInpatient,
|
|
|
|
|
isDisable: patient.patientStatusType != 43 ||
|
|
|
|
|
patient.appointmentNo == null ? true : false),
|
|
|
|
|
isDisable: isFromLiveCare?patient.appointmentNo == null:patient.patientStatusType != 43 ||
|
|
|
|
|
patient.appointmentNo == null
|
|
|
|
|
),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return Column(
|
|
|
|
|
|