|
@@ -41,19 +41,22 @@
|
|
<th class="border-bottom-0 text-nowrap">Minutes</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 ICDs</th>
|
|
<th class="border-bottom-0 text-nowrap">Note Link</th>
|
|
<th class="border-bottom-0 text-nowrap">Note Link</th>
|
|
|
|
+ <th class="border-bottom-0 text-nowrap"></th>
|
|
|
|
+ <th class="border-bottom-0 text-nowrap"></th>
|
|
<th class="border-bottom-0 text-nowrap">Farah Green?</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">Shawn Review?</th>
|
|
<th class="border-bottom-0 text-nowrap">Memo to Shawn</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 Green?</th>
|
|
<th class="border-bottom-0 text-nowrap">Shawn Reject?</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">Claiming Closed?</th>
|
|
- <th class="border-bottom-0 text-nowrap">Kyle Billed?</th>
|
|
|
|
|
|
+ <th class="border-bottom-0 text-nowrap d-none">Kyle Billed?</th>
|
|
<th class="border-bottom-0 w-50 d-none"></th>
|
|
<th class="border-bottom-0 w-50 d-none"></th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($rows as $row)
|
|
@foreach($rows as $row)
|
|
@php
|
|
@php
|
|
|
|
+ $visitCount = $row->visit_number;
|
|
$parsedDetailJson = new stdClass();
|
|
$parsedDetailJson = new stdClass();
|
|
if($row->detail_json) {
|
|
if($row->detail_json) {
|
|
try {
|
|
try {
|
|
@@ -84,13 +87,46 @@
|
|
href="/resolve-note/{{$row->client_uid}}/{{$row->uid}}">View</a>
|
|
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>
|
|
<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>
|
|
|
|
+ <td>
|
|
|
|
+ @if(!$row->is_claim_closed)
|
|
|
|
+ <div moe>
|
|
|
|
+ <a start show>Submit claim</a>
|
|
|
|
+ <form url="/api/note/processNoteShortcut">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$row->uid}}">
|
|
|
|
+ <div class="form-group mb-2">
|
|
|
|
+ <p>Are you sure?</p>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="form-group m-0">
|
|
|
|
+ <button submit class="btn btn-primary btn-sm">submit</button>
|
|
|
|
+ <button cancel class="btn btn-primary btn-sm">cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ <td>
|
|
|
|
+ @if($row->visit_number == 1 && !$row->is_claim_closed)
|
|
|
|
+ <div moe>
|
|
|
|
+ <form show url="/api/note/processVisit1ForCovidIntake">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$row->uid}}">
|
|
|
|
+ <div class="form-group mb-2 d-none">
|
|
|
|
+ <p>Are you sure?</p>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="form-group m-0">
|
|
|
|
+ <button submit class="btn btn-danger btn-sm" process-intake="true">Process Intake</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ </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-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 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">{{ @$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-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-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">{{ $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 class="font-weight-bold text-success d-none">{!! @$parsedDetailJson->kyle_billed && @$parsedDetailJson->kyle_billed === 'yes' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
|
|
|
|
+
|
|
<td class="d-none">
|
|
<td class="d-none">
|
|
{{--
|
|
{{--
|
|
<a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on" target="popup"
|
|
<a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}?suggestion_mode=on" target="popup"
|