|
@@ -809,6 +809,14 @@ use App\Models\Handout;
|
|
|
@include('app.patient.handouts-list', compact('patient', 'clientHandouts', 'handouts', 'note'))
|
|
|
</div>
|
|
|
|
|
|
+ @if($pro->pro_type === 'ADMIN' && $note->hcpPro)
|
|
|
+ <div class="p-3 border-bottom mt-2 screen-only">
|
|
|
+ <div class="">
|
|
|
+ @include('app/patient/partials/company-pro-documents')
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+
|
|
|
<div class="p-3 border-bottom screen-only" data-non-segment-section="Prescriptions">
|
|
|
@include('app.patient.prescriptions.list', compact('patient', 'note'))
|
|
|
</div>
|
|
@@ -1070,16 +1078,16 @@ use App\Models\Handout;
|
|
|
</script>
|
|
|
</div>
|
|
|
|
|
|
- <div class="p-3 border-bottom" data-non-segment-section="ICDs">
|
|
|
- <div class="">
|
|
|
- <div class="d-flex align-items-center mb-2">
|
|
|
+ <div class="p-2 border-bottom" data-non-segment-section="ICDs">
|
|
|
+ <div class="d-flex alignt-items-start">
|
|
|
+ <div class="d-flex {{ count($note->reasons) > 2 ? '':'align-items-center' }} mr-2">
|
|
|
<p class="font-weight-bold text-secondary m-0 mr-2">ICDs</p>
|
|
|
@include('app/patient/note/_create-note-reason')
|
|
|
</div>
|
|
|
<div class="d-flex align-items-start flex-wrap">
|
|
|
@if(count($note->reasons))
|
|
|
@foreach ($note->reasons as $reason)
|
|
|
- <span class="badge badge-info p-2 mb-2 mr-2">
|
|
|
+ <span class="badge badge-info p-2 mb-1 mr-2">
|
|
|
{{ $reason->description}} ({{ $reason->code }})
|
|
|
</span>
|
|
|
@endforeach
|
|
@@ -2454,14 +2462,6 @@ use App\Models\Handout;
|
|
|
@include('app/patient/note/_cancel-signed-note')
|
|
|
</div>
|
|
|
|
|
|
- @if($pro->pro_type === 'ADMIN' && $note->hcpPro)
|
|
|
- <div class="screen-only">
|
|
|
- <div class="border-top p3">
|
|
|
- @include('app/patient/partials/company-pro-documents')
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
</div>
|
|
|
|
|
|
@if($isVisitTemplateBased && !$note->is_signed_by_hcp)
|