|
@@ -17,7 +17,20 @@ $cmTier = determineTier($iPatient);
|
|
|
class="text-nowrap d-block max-width-170px overflow-hidden text-ellipsis"
|
|
|
><span class="sort-data">{{ $iPatient->client_name }}</span></a>
|
|
|
</td>
|
|
|
- <td>{{$iPatient->payer_name}}</td>
|
|
|
+ <td>
|
|
|
+ <div class="d-flex">
|
|
|
+ {{$iPatient->payer_name}}
|
|
|
+ <span class="ml-auto mr-2 on-hover-opaque">
|
|
|
+ <a open-in-stag-popup
|
|
|
+ popup-style="tall wide"
|
|
|
+ title="Insurance Details"
|
|
|
+ mc-initer="createInsuranceCard"
|
|
|
+ href="/patients/view/{{$iPatient->client_uid}}/insurance-migration?liteHeader=1">
|
|
|
+ <i class="fa fa-eye"></i>
|
|
|
+ </a>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
<td>{{$iPatient->mailing_address_state}}</td>
|
|
|
<td>{{$iPatient->mcp_name}}</td>
|
|
|
<td>
|
|
@@ -56,19 +69,21 @@ $cmTier = determineTier($iPatient);
|
|
|
<span class="text-secondary">No</span>
|
|
|
@endif
|
|
|
</td>
|
|
|
- <td>
|
|
|
- {{$iPatient->dslm}}
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <div class="d-flex align-items-baseline">
|
|
|
- <i class="mr-1 text-sm fa {{$lastVisitWithinDays ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
|
- <span class="sort-data">{{!is_null($iPatient->days_between_most_recent_mcp_note_date_and_end_of_care_month) ? $iPatient->days_between_most_recent_mcp_note_date_and_end_of_care_month : '-'}}</span>
|
|
|
- </div>
|
|
|
- </td>
|
|
|
-
|
|
|
- <td>
|
|
|
- {{$iPatient->next_visit_date ?: '-'}}
|
|
|
- </td>
|
|
|
+ {{-- only if curr month selected --}}
|
|
|
+ @if(!request()->input('m') || intval(request()->input('m')) == intval(date('m')))
|
|
|
+ <td>
|
|
|
+ {{$iPatient->dslm}}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <div class="d-flex align-items-baseline">
|
|
|
+ <i class="mr-1 text-sm fa {{$lastVisitWithinDays ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
|
+ <span class="sort-data">{{!is_null($iPatient->days_between_most_recent_mcp_note_date_and_end_of_care_month) ? $iPatient->days_between_most_recent_mcp_note_date_and_end_of_care_month : '-'}}</span>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{$iPatient->next_visit_date ?: '-'}}
|
|
|
+ </td>
|
|
|
+ @endif
|
|
|
|
|
|
<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
@@ -94,23 +109,29 @@ $cmTier = determineTier($iPatient);
|
|
|
<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
|
<i class="mr-1 text-sm fa {{$iPatient->rm_total_time_in_seconds_by_mcp >= 1200 ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
|
- <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds_by_mcp / 60)}}:{{round($iPatient->rm_total_time_in_seconds_by_mcp % 60)}}</span>
|
|
|
+ <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds_by_mcp / 60)}}{{--:{{round($iPatient->rm_total_time_in_seconds_by_mcp % 60)}}--}}</span>
|
|
|
<span class="sort-data d-none">{{$iPatient->rm_total_time_in_seconds_by_mcp}}</span>
|
|
|
</div>
|
|
|
</td>
|
|
|
|
|
|
- <td>
|
|
|
+ {{--<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
|
<i class="mr-1 text-sm fa {{$iPatient->rm_total_time_in_seconds_by_rmm_pro >= 1200 ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
|
<span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds_by_rmm_pro / 60)}}:{{round($iPatient->rm_total_time_in_seconds_by_rmm_pro % 60)}}</span>
|
|
|
<span class="sort-data d-none">{{$iPatient->rm_total_time_in_seconds_by_rmm_pro}}</span>
|
|
|
</div>
|
|
|
+ </td>--}}
|
|
|
+ <td>
|
|
|
+ <div class="d-flex align-items-baseline">
|
|
|
+ <?php $seconds = $iPatient->rm_total_time_in_seconds - $iPatient->rm_total_time_in_seconds_by_mcp; ?>
|
|
|
+ {{round($seconds/60)}}
|
|
|
+ </div>
|
|
|
</td>
|
|
|
|
|
|
<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
|
<i class="mr-1 text-sm fa {{$iPatient->rm_total_time_in_seconds >= 1200 ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
|
- <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds / 60)}}:{{round($iPatient->rm_total_time_in_seconds % 60)}}</span>
|
|
|
+ <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds / 60)}}{{--:{{round($iPatient->rm_total_time_in_seconds % 60)}}--}}</span>
|
|
|
<span class="sort-data d-none">{{$iPatient->rm_total_time_in_seconds}}</span>
|
|
|
</div>
|
|
|
</td>
|