|
|
|
|
@ -77,7 +77,7 @@ class _ProgressNoteState extends State<DiagnosisScreen> {
|
|
|
|
|
body: model.diagnosisForInPatientList == null ||
|
|
|
|
|
model.diagnosisForInPatientList.length == 0
|
|
|
|
|
? DrAppEmbeddedError(
|
|
|
|
|
error: TranslationBase.of(context).errorNoProgressNote)
|
|
|
|
|
error: TranslationBase.of(context).noItem)
|
|
|
|
|
: Container(
|
|
|
|
|
color: Colors.grey[200],
|
|
|
|
|
child: Column(
|
|
|
|
|
@ -126,7 +126,7 @@ class _ProgressNoteState extends State<DiagnosisScreen> {
|
|
|
|
|
TranslationBase.of(
|
|
|
|
|
context)
|
|
|
|
|
.createdBy,
|
|
|
|
|
fontSize: 10,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: AppText(
|
|
|
|
|
@ -206,13 +206,40 @@ class _ProgressNoteState extends State<DiagnosisScreen> {
|
|
|
|
|
mainAxisAlignment:
|
|
|
|
|
MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(
|
|
|
|
|
context)
|
|
|
|
|
.icd + " : ",
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: AppText(
|
|
|
|
|
model
|
|
|
|
|
.diagnosisForInPatientList[
|
|
|
|
|
index]
|
|
|
|
|
.iCDCode10ID,
|
|
|
|
|
fontSize: 10,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
isCopyable: true,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8,
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment:
|
|
|
|
|
MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText("Ascii Desc : ",
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: AppText(
|
|
|
|
|
model
|
|
|
|
|
.diagnosisForInPatientList[
|
|
|
|
|
index]
|
|
|
|
|
.asciiDesc,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
isCopyable: true,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|