|
@@ -37,7 +37,11 @@ $plural = 'Medications';
|
|
|
<span class="ml-2 text-sm text-secondary">Removed on intake</span>
|
|
|
@endif
|
|
|
<?php elseif ($point->added_in_note_id === $note->id): ?>
|
|
|
- <span class="ml-2 text-sm text-success">* Added on intake</span>
|
|
|
+ <?php if ($point->addition_reason_category === 'DURING_VISIT'): ?>
|
|
|
+ <span class="ml-2 text-sm text-success">* Prescribed during visit</span>
|
|
|
+ <?php else: ?>
|
|
|
+ <span class="ml-2 text-sm text-info">* Added on intake</span>
|
|
|
+ <?php endif;?>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
<?php $review = $point->childReviewAddedInNote($note); ?>
|