|
@@ -6,8 +6,8 @@
|
|
|
|
|
|
<div id="notes-list-{{$patient->id}}">
|
|
<div id="notes-list-{{$patient->id}}">
|
|
<div class="pt-2 d-flex align-items-start">
|
|
<div class="pt-2 d-flex align-items-start">
|
|
- <h6 class="my-0 text-secondary d-flex align-items-center w-100">
|
|
|
|
- <span class="font-weight-bold text-secondary">Notes</span>
|
|
|
|
|
|
+ <h6 class="my-0 d-flex align-items-center w-100">
|
|
|
|
+ <span class="font-weight-bold font-size-16">Notes</span>
|
|
@if(true || $patient->latestClientPrimaryCoverage->is_covered == 'YES')
|
|
@if(true || $patient->latestClientPrimaryCoverage->is_covered == 'YES')
|
|
@if($isOldClient)
|
|
@if($isOldClient)
|
|
<span class="mx-2 text-secondary">|</span>
|
|
<span class="mx-2 text-secondary">|</span>
|
|
@@ -148,21 +148,21 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<table class="table table-sm table-striped table-bordered mb-0 mt-2 notes-list">
|
|
<table class="table table-sm table-striped table-bordered mb-0 mt-2 notes-list">
|
|
- <thead>
|
|
|
|
|
|
+ <thead class="bg-light">
|
|
<tr>
|
|
<tr>
|
|
- <th class="px-2 text-secondary border-bottom-0">Effective Date</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0">New Patient / FU</th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">Effective Date</th>
|
|
|
|
+ <th class="border-0 text-secondary">New Patient / FU</th>
|
|
@if($pro->pro_type == 'ADMIN')
|
|
@if($pro->pro_type == 'ADMIN')
|
|
- <th class="px-2 text-secondary border-bottom-0">Method</th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">Method</th>
|
|
@endif
|
|
@endif
|
|
- <th class="px-2 text-secondary border-bottom-0">HCP</th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">HCP</th>
|
|
@if($pro->pro_type == 'ADMIN')
|
|
@if($pro->pro_type == 'ADMIN')
|
|
- <th class="px-2 text-secondary border-bottom-0">NA</th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">NA</th>
|
|
@endif
|
|
@endif
|
|
- <th class="px-2 text-secondary border-bottom-0">HCP Signed</th>
|
|
|
|
- <!-- <th class="px-2 text-secondary border-bottom-0 w-50">Content</th> -->
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0"> </th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0">Actions</th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">HCP Signed</th>
|
|
|
|
+ <!-- <th class="border-0 text-secondary w-50">Content</th> -->
|
|
|
|
+ <th class="border-0 text-secondary"> </th>
|
|
|
|
+ <th class="border-0 text-secondary">Actions</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@@ -182,8 +182,8 @@
|
|
?>
|
|
?>
|
|
@foreach ($records as $note)
|
|
@foreach ($records as $note)
|
|
<tr class="{{ $note->is_cancelled ? 'cancelled-item always-clickable' : '' }}">
|
|
<tr class="{{ $note->is_cancelled ? 'cancelled-item always-clickable' : '' }}">
|
|
- <td class="px-2">
|
|
|
|
- <a href="/patients/view/{{ $patient->uid }}/notes/view/{{ $note->uid }}" class="font-weight-bold">
|
|
|
|
|
|
+ <td>
|
|
|
|
+ <a href="/patients/view/{{ $patient->uid }}/notes/view/{{ $note->uid }}">
|
|
{{ friendly_date_time($note->effective_dateest, false) }}
|
|
{{ friendly_date_time($note->effective_dateest, false) }}
|
|
</a>
|
|
</a>
|
|
@if(!!$note->visitTemplate)
|
|
@if(!!$note->visitTemplate)
|
|
@@ -191,23 +191,23 @@
|
|
@endif
|
|
@endif
|
|
<span class="ml-1">{{ $note->is_cancelled ? '[cancelled]' : '' }}</span>
|
|
<span class="ml-1">{{ $note->is_cancelled ? '[cancelled]' : '' }}</span>
|
|
</td>
|
|
</td>
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
{{ $note->new_or_fu_or_na === 'NEW' ? 'New Patient' : $note->new_or_fu_or_na }}
|
|
{{ $note->new_or_fu_or_na === 'NEW' ? 'New Patient' : $note->new_or_fu_or_na }}
|
|
</td>
|
|
</td>
|
|
@if($pro->pro_type == 'ADMIN')
|
|
@if($pro->pro_type == 'ADMIN')
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
{{ noteMethodDisplay($note->method) }}
|
|
{{ noteMethodDisplay($note->method) }}
|
|
</td>
|
|
</td>
|
|
@endif
|
|
@endif
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
{{$note->hcpPro ? $note->hcpPro->name_display: '-'}}
|
|
{{$note->hcpPro ? $note->hcpPro->name_display: '-'}}
|
|
</td>
|
|
</td>
|
|
@if($pro->pro_type == 'ADMIN')
|
|
@if($pro->pro_type == 'ADMIN')
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
{{$note->allyPro ? $note->allyPro->name_display: '-'}}
|
|
{{$note->allyPro ? $note->allyPro->name_display: '-'}}
|
|
</td>
|
|
</td>
|
|
@endif
|
|
@endif
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
{!! $note->hcpPro && $note->is_signed_by_hcp ? '<b class="text-success">Yes</b>' : 'No' !!}
|
|
{!! $note->hcpPro && $note->is_signed_by_hcp ? '<b class="text-success">Yes</b>' : 'No' !!}
|
|
</td>
|
|
</td>
|
|
<?php /*
|
|
<?php /*
|
|
@@ -216,7 +216,7 @@
|
|
{!! $note->summary() !!}
|
|
{!! $note->summary() !!}
|
|
</div>
|
|
</div>
|
|
</td> */ ?>
|
|
</td> */ ?>
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
<div class="position-relative c-pointer text-center stag-tooltip">
|
|
<div class="position-relative c-pointer text-center stag-tooltip">
|
|
<i class="fa fa-info-circle"></i>
|
|
<i class="fa fa-info-circle"></i>
|
|
<div class="position-absolute bg-white border rounded p-2 stag-tooltip-content">
|
|
<div class="position-absolute bg-white border rounded p-2 stag-tooltip-content">
|
|
@@ -225,7 +225,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</td>
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
<div class="d-flex align-items-center">
|
|
<div class="d-flex align-items-center">
|
|
<a href="/patients/view/{{ $patient->uid }}/notes/view/{{ $note->uid }}" class="font-weight-bold">Open</a>
|
|
<a href="/patients/view/{{ $patient->uid }}/notes/view/{{ $note->uid }}" class="font-weight-bold">Open</a>
|
|
@if($note->new_or_fu_or_na !== 'NEW')
|
|
@if($note->new_or_fu_or_na !== 'NEW')
|