|
@@ -13,7 +13,9 @@
|
|
</span>
|
|
</span>
|
|
<div class="flex-grow-1">
|
|
<div class="flex-grow-1">
|
|
<table class="table table-bordered table-xs table-cage mb-0">
|
|
<table class="table table-bordered table-xs table-cage mb-0">
|
|
- <?php $j = 0; foreach ($points as $point): $j++; ?>
|
|
|
|
|
|
+ <?php $j = 0; foreach ($points as $point): ?>
|
|
|
|
+ <?php $plan = $point->childPlanAddedInNote($note); if(!$plan) continue; $j++; ?>
|
|
|
|
+
|
|
<?php $rel = $point->relevanceToNote($note); ?>
|
|
<?php $rel = $point->relevanceToNote($note); ?>
|
|
<tr>
|
|
<tr>
|
|
<td class="width-22px pr-1 pl-0 {{ $rel ? ' text-info':'' }}">
|
|
<td class="width-22px pr-1 pl-0 {{ $rel ? ' text-info':'' }}">
|
|
@@ -25,12 +27,13 @@
|
|
</td>
|
|
</td>
|
|
<td class="px-2">
|
|
<td class="px-2">
|
|
<div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
|
|
<div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
|
|
|
|
+
|
|
{{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
|
|
{{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</td>
|
|
<td class="width-300px">
|
|
<td class="width-300px">
|
|
<div class="pl-2">
|
|
<div class="pl-2">
|
|
- <?php $plan = $point->childPlanAddedInNote($note); ?>
|
|
|
|
|
|
+
|
|
<?php if(!!$plan): ?>
|
|
<?php if(!!$plan): ?>
|
|
<?php
|
|
<?php
|
|
$flat = true;
|
|
$flat = true;
|
|
@@ -38,19 +41,20 @@
|
|
?>
|
|
?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
<div class="pl-3">
|
|
<div class="pl-3">
|
|
<?php if ($point->is_removed): ?>
|
|
<?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
|
|
|
|
|
|
+ @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 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 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 endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@@ -62,4 +66,4 @@
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
-@endif
|
|
|
|
|
|
+@endif
|