|
@@ -2,6 +2,11 @@
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
+ <style>tr.bgyellow td, tr.bgyellow th { background-color: lightyellow; }</style>
|
|
|
+ <style>tr.bggreen td, tr.bggreen th { background-color: #caffca; }</style>
|
|
|
+ <style>tr.bgblue td, tr.bgblue th { background-color: #d0f2fd; }</style>
|
|
|
+ <style>tr.claim-closed td:not(:first-child), tr.claim-closed th:not(:first-child) { background-color: lightgray; }</style>
|
|
|
+
|
|
|
<div id="notes-resolution-center" class="p-3 mcp-theme-1">
|
|
|
|
|
|
<div class="d-flex align-items-baseline">
|
|
@@ -27,19 +32,23 @@
|
|
|
<table class="table table-sm table-bordered table-striped">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th class="border-bottom-0 text-nowrap text-right pr-2">Visit #</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap text-right pr-2">V#</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Name</th>
|
|
|
<th class="border-bottom-0 text-nowrap">MCP</th>
|
|
|
- <th class="border-bottom-0 text-nowrap">NA</th>
|
|
|
- <th class="border-bottom-0 text-nowrap">Chart #</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap d-none">NA</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap d-none">Chart #</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Date</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap">Minutes</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap">Note ICDs</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Note Link</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Farah Green?</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Shawn Review?</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap">Memo to Shawn</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Shawn Green?</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Shawn Reject?</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap">Claiming Closed?</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Kyle Billed?</th>
|
|
|
- <th class="border-bottom-0 w-50"></th>
|
|
|
+ <th class="border-bottom-0 w-50 d-none"></th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -64,24 +73,41 @@
|
|
|
}
|
|
|
$prevChartNumber = $row->chart_number;
|
|
|
@endphp
|
|
|
- <tr>
|
|
|
+ <tr class="{{ $visitCount > 2 ? 'bgyellow':'' }} {{ $visitCount == 1 ? 'bggreen':'' }} {{ $visitCount == 2 ? 'bgblue':'' }} {{ $row->is_claim_closed ? 'claim-closed' : '' }}">
|
|
|
<td class="text-nowrap text-right pr-2">{{$visitCount}}</td>
|
|
|
<td class="text-nowrap">{{$row->client_name}}</td>
|
|
|
<td class="text-nowrap">{{$row->hcp_name}}</td>
|
|
|
- <td class="text-nowrap">{{$row->na_name}}</td>
|
|
|
- <td class="text-nowrap">{{$row->chart_number}}</td>
|
|
|
+ <td class="text-nowrap d-none">{{$row->na_name}}</td>
|
|
|
+ <td class="text-nowrap d-none">{{$row->chart_number}}</td>
|
|
|
<td class="text-nowrap">{{friendly_date($row->effective_dateest)}}</td>
|
|
|
+ <td class="text-nowrap">{{ $row->minutes }}</td>
|
|
|
+ <td class="text-nowrap">
|
|
|
+ <div class="">
|
|
|
+ @if($row->icd1) <div>{{$row->icd1}} {{$row->icd1description}}</div>@endif
|
|
|
+ @if($row->icd2) <div>{{$row->icd2}} {{$row->icd2description}}</div>@endif
|
|
|
+ @if($row->icd3) <div>{{$row->icd3}} {{$row->icd3description}}</div>@endif
|
|
|
+ @if($row->icd4) <div>{{$row->icd4}} {{$row->icd4description}}</div>@endif
|
|
|
+ @if($row->icd_memo) <div>{{$row->icd_memo}}</div>@endif
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
<td class="text-nowrap">
|
|
|
- <a open-in-stag-popup update-parent title="Note: {{$row->client_name}} - {{friendly_date($row->effective_dateest)}}" href="/resolve-note/{{$row->client_uid}}/{{$row->uid}}">View</a>
|
|
|
- <a class="ml-2" href="/patients/view/{{$row->client_uid}}/notes/view/{{$row->uid}}"><i class="fa fa-external-link"></i></a>
|
|
|
+ <a open-in-stag-popup update-parent title="Note: {{$row->client_name}} - {{friendly_date($row->effective_dateest)}}" href="/resolve-note/{{$row->client_uid}}/{{$row->uid}}">View</a>
|
|
|
+ <a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on" target="popup" onclick="window.open("/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on",'popup','width=600,height=600,scrollbars=no,resizable=no'); return false;"><i class="fa fa-arrow-right"></i></a>
|
|
|
</td>
|
|
|
<td class="font-weight-bold text-success">{!! @$parsedDetailJson->farah_decision && @$parsedDetailJson->farah_decision === 'green' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
|
|
|
<td class="font-weight-bold text-warning-dark">{!! @$parsedDetailJson->farah_decision && @$parsedDetailJson->farah_decision === 'red' ? '<i class="fa fa-exclamation-triangle"></i> Yes' : '' !!}</td>
|
|
|
+ <td class="font-weight-bold">{{ @$parsedDetailJson->memo_to_shawn }}</td>
|
|
|
<td class="font-weight-bold text-success">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'green' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
|
|
|
<td class="font-weight-bold text-danger">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'red' ? '<i class="fa fa-times"></i> Rejected' : '' !!}</td>
|
|
|
+ <td class="font-weight-bold text-success">{{ $row->is_claim_closed }}</td>
|
|
|
<td class="font-weight-bold text-success">{!! @$parsedDetailJson->kyle_billed && @$parsedDetailJson->kyle_billed === 'yes' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
|
|
|
- <td>
|
|
|
- <a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on">Go to note</a>
|
|
|
+ <td class="d-none">
|
|
|
+
|
|
|
+ <a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on" target="popup"
|
|
|
+ onclick="window.open("/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on",'popup','width=600,height=600,scrollbars=no,resizable=no'); return false;"></a>
|
|
|
+
|
|
|
+ <a open-in-stag-popup update-parent title="Note: {{$row->client_name}} - {{friendly_date($row->effective_dateest)}} - SUGGESTION MODE"
|
|
|
+ href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on">Go to note</a>
|
|
|
</td>
|
|
|
</tr>
|
|
|
@endforeach
|