소스 검색

Visit UI - problems - show icd

Vijayakrishnan 3 년 전
부모
커밋
f88f568aa3

+ 1 - 0
resources/views/app/patient/segment-templates/intake_problems/edit.blade.php

@@ -29,6 +29,7 @@ $problems = Point::getIntakePointsOfCategory($patient, 'PROBLEM', $note);
                     <div class="d-flex align-items-baseline">
                         <div class="<?= $problem->is_removed ? 'strike-through' : '' ?>">
                             <b><?= !!@($problem->data->name) ? @($problem->data->name) : '-' ?></b>
+                            <?= !!@($problem->data->icd) ? '/&nbsp;' . @($problem->data->icd) : '' ?>
                             <?= !!@($problem->data->description) ? '/&nbsp;' . @($problem->data->description) : '' ?>
                         </div>
 

+ 1 - 0
resources/views/app/patient/segment-templates/plan_problems/edit.blade.php

@@ -30,6 +30,7 @@ $intakeOrVisit = 'PLAN';
                     <div class="d-flex align-items-baseline">
                         <div class="<?= $problem->is_removed ? 'strike-through' : '' ?>">
                             <b><?= !!@($problem->data->name) ? @($problem->data->name) : '-' ?></b>
+                            <?= !!@($problem->data->icd) ? '/&nbsp;' . @($problem->data->icd) : '' ?>
                             <?= !!@($problem->data->description) ? '/&nbsp;' . @($problem->data->description) : '' ?>
                         </div>