|
@@ -24,11 +24,11 @@ $plural = 'Care team members';
|
|
@endif
|
|
@endif
|
|
<div class="<?= $point->is_removed ? 'strike-through' : '' ?>">
|
|
<div class="<?= $point->is_removed ? 'strike-through' : '' ?>">
|
|
<b><?= !!@($point->data->name) ? @($point->data->name) : '-' ?></b>
|
|
<b><?= !!@($point->data->name) ? @($point->data->name) : '-' ?></b>
|
|
- <?= !!@($point->data->spacialty) ? '/ ' . @($point->data->spacialty) . '<br>' : '' ?>
|
|
|
|
- <?= !!@($point->data->organization) ? '/ ' . @($point->data->organization) . '<br>' : '' ?>
|
|
|
|
- <?= !!@($point->data->phone) ? 'Ph: ' . @($point->data->phone) . '<br>' : '' ?>
|
|
|
|
- <?= !!@($point->data->fax) ? '/ Fax: ' . @($point->data->fax) . '<br>' : '' ?>
|
|
|
|
- <?= !!@($point->data->date) ? 'Date: ' . @($point->data->date) : '' ?>
|
|
|
|
|
|
+ <?= !!@($point->data->specialty) ? '/ ' . @($point->data->specialty) . '' : '' ?>
|
|
|
|
+ <?= !!@($point->data->organization) ? '/ ' . @($point->data->organization) . '' : '' ?><br>
|
|
|
|
+ <?= !!@($point->data->phone) ? 'Ph: ' . @($point->data->phone) . '' : '' ?>
|
|
|
|
+ <?= !!@($point->data->fax) ? ' / Fax: ' . @($point->data->fax) . '<br>' : '' ?>
|
|
|
|
+ <?= !!@($point->data->date) ? ' / Date: ' . @($point->data->date) : '' ?>
|
|
</div>
|
|
</div>
|
|
<?php if ($point->is_removed): ?>
|
|
<?php if ($point->is_removed): ?>
|
|
@if($point->removal_reason_category === 'DURING_VISIT')
|
|
@if($point->removal_reason_category === 'DURING_VISIT')
|
|
@@ -37,7 +37,11 @@ $plural = 'Care team members';
|
|
<span class="ml-2 text-sm text-secondary">Removed on intake</span>
|
|
<span class="ml-2 text-sm text-secondary">Removed on intake</span>
|
|
@endif
|
|
@endif
|
|
<?php elseif ($point->added_in_note_id === $note->id): ?>
|
|
<?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">* Added during visit</span>
|
|
|
|
+ <?php else: ?>
|
|
|
|
+ <span class="ml-2 text-sm text-info">* Added on intake</span>
|
|
|
|
+ <?php endif;?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<?php $review = $point->childReviewAddedInNote($note); ?>
|
|
<?php $review = $point->childReviewAddedInNote($note); ?>
|