|
@@ -21,19 +21,23 @@ $plural = 'Problems';
|
|
|
<?= !!@($point->data->name) ? @($point->data->name) : '-' ?><?= !!@($point->data->icd) ? ' / ' . @($point->data->icd) : '' ?>:
|
|
|
</span>
|
|
|
<span class="text-nowrap">
|
|
|
- <?php if ($point->is_removed): ?>
|
|
|
- @if($point->removal_reason_category === 'DURING_VISIT')
|
|
|
- <span class="text-sm text-secondary">Removed during visit</span>
|
|
|
- @elseif($point->removal_reason_category === 'ON_INTAKE')
|
|
|
- <span class="text-sm text-secondary">Historic</span>
|
|
|
- @endif
|
|
|
- <?php elseif ($point->added_in_note_id === $note->id): ?>
|
|
|
- <?php if ($point->addition_reason_category === 'DURING_VISIT'): ?>
|
|
|
- <span class="text-sm text-success">* Added during visit</span>
|
|
|
- <?php else: ?>
|
|
|
- <span class="text-sm text-info">* Added on intake</span>
|
|
|
- <?php endif;?>
|
|
|
- <?php endif; ?>
|
|
|
+ <?php if ($point->is_removed): ?>
|
|
|
+ @if($point->removal_reason_category === 'DURING_VISIT')
|
|
|
+ @if ($point->removed_in_note_id === $note->id)
|
|
|
+ <span class="text-sm text-secondary">Removed during visit</span>
|
|
|
+ @else
|
|
|
+ <span class="text-sm text-secondary">Removed on a previous visit</span>
|
|
|
+ @endif
|
|
|
+ @elseif($point->removal_reason_category === 'ON_INTAKE')
|
|
|
+ <span class="text-sm text-secondary">Historic</span>
|
|
|
+ @endif
|
|
|
+ <?php elseif ($point->added_in_note_id === $note->id): ?>
|
|
|
+ <?php if ($point->addition_reason_category === 'DURING_VISIT'): ?>
|
|
|
+ <span class="text-sm text-success">* Added during visit</span>
|
|
|
+ <?php else: ?>
|
|
|
+ <span class="text-sm text-info">* Added on intake</span>
|
|
|
+ <?php endif;?>
|
|
|
+ <?php endif; ?>
|
|
|
</span>
|
|
|
</span>
|
|
|
<div class="ml-3 mb-1">
|