|
@@ -18,15 +18,19 @@ if($items && count($items)) {
|
|
|
<?= !!@$parsed->frequency ? '/ ' . @$parsed->frequency : '' ?>
|
|
|
<?php if(!!@$parsed->removed_during_note_uid): ?>
|
|
|
/ <span class="text-warning-mellow text-sm mr-2 font-weight-bold">(Removed<?= @$parsed->removed_during_note_uid === $note->uid ? ' during this visit' : '' ?>)</span>
|
|
|
+ <?php if(!!@$parsed->removal_memo): ?>
|
|
|
+ <div class="text-sm text-secondary font-italic mt-1"><?= $parsed->removal_memo ?></div>
|
|
|
+ <?php endif; ?>
|
|
|
<?php elseif(!!@$parsed->was_existing_at_visit_start): ?>
|
|
|
/ <span class="text-secondary text-sm mr-2 font-weight-bold">(Existing)</span>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
<?php
|
|
|
- $detailPlain = @$parsed->detail ? $parsed->detail : '';
|
|
|
- if(!!$detailPlain):
|
|
|
- ?>
|
|
|
- <div class="text-secondary"><?= $detailPlain ?></div>
|
|
|
+ if (!@$parsed->removed_during_note_uid):
|
|
|
+ $detailPlain = @$parsed->detail ? $parsed->detail : '';
|
|
|
+ if(!!$detailPlain): ?>
|
|
|
+ <div class="text-secondary"><?= $detailPlain ?></div>
|
|
|
+ <?php endif; ?>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
<?php
|