diff --git a/lib/screens/patients/In_patient/InPatientHeader.dart b/lib/screens/patients/In_patient/InPatientHeader.dart index 3bb2afa5..11cc4dcc 100644 --- a/lib/screens/patients/In_patient/InPatientHeader.dart +++ b/lib/screens/patients/In_patient/InPatientHeader.dart @@ -58,7 +58,7 @@ class InPatientHeader extends StatelessWidget with PreferredSizeWidget { iconEnabledColor: Colors.black, isExpanded: true, value: selectedMapId == null - ? model.specialClinicalCareMappingList[0].nursingStationID + ? TranslationBase.of(context).all : selectedMapId, iconSize: 25, elevation: 16, diff --git a/lib/screens/patients/In_patient/in_patient_screen.dart b/lib/screens/patients/In_patient/in_patient_screen.dart index d7bd805a..9508a3cf 100644 --- a/lib/screens/patients/In_patient/in_patient_screen.dart +++ b/lib/screens/patients/In_patient/in_patient_screen.dart @@ -67,12 +67,12 @@ class _InPatientScreenState extends State return BaseView( onModelReady: (model) async { model.clearPatientList(); - if (widget.specialClinic != null) { - await model - .getSpecialClinicalCareMappingList(widget.specialClinic.clinicID); - requestModel.nursingStationID = - model.specialClinicalCareMappingList[0].nursingStationID; - } + // if (widget.specialClinic != null) { + // await model + // .getSpecialClinicalCareMappingList(widget.specialClinic.clinicID); + // requestModel.nursingStationID = + // model.specialClinicalCareMappingList[0].nursingStationID; + // } requestModel.clinicID = 0; await model.getInPatientList(requestModel); }, diff --git a/lib/screens/patients/profile/note/progress_note_screen.dart b/lib/screens/patients/profile/note/progress_note_screen.dart index 054817c2..fb31511d 100644 --- a/lib/screens/patients/profile/note/progress_note_screen.dart +++ b/lib/screens/patients/profile/note/progress_note_screen.dart @@ -166,8 +166,10 @@ class _ProgressNoteState extends State { index] .createdBy) AppText( + TranslationBase.of(context) .notePending, + fontWeight: FontWeight.bold, color: Color(0xFFCC9B14), fontSize: 12, @@ -472,6 +474,7 @@ class _ProgressNoteState extends State { fontWeight: FontWeight.w600, fontSize: 12, + isCopyable:true, ), ), ], @@ -505,6 +508,7 @@ class _ProgressNoteState extends State { .isArabic), fontWeight: FontWeight.w600, fontSize: 14, + isCopyable:true, ), AppText( model @@ -522,6 +526,7 @@ class _ProgressNoteState extends State { DateTime.now()), fontWeight: FontWeight.w600, fontSize: 14, + isCopyable:true, ), ], crossAxisAlignment: @@ -543,6 +548,7 @@ class _ProgressNoteState extends State { index] .notes, fontSize: 10, + isCopyable:true, ), ), ])