|
@@ -38,7 +38,7 @@
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</td>
|
|
-
|
|
|
|
|
|
+
|
|
<td>
|
|
<td>
|
|
<div class="d-flex align-items-baseline">
|
|
<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>
|
|
<i class="mr-1 text-sm fa {{$lastVisitWithinDays ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
@@ -193,10 +193,10 @@
|
|
@if(!request()->input('not-enrolled'))
|
|
@if(!request()->input('not-enrolled'))
|
|
<td>
|
|
<td>
|
|
@if($mode === 'mcp')
|
|
@if($mode === 'mcp')
|
|
|
|
+ @php
|
|
|
|
+ $careMonth = \App\Models\CareMonth::where('uid', $iPatient->care_month_uid)->first();
|
|
|
|
+ @endphp
|
|
@if($lastVisitWithinDays && $iPatient->has_mcp_interacted_with_client_about_rm && $iPatient->number_of_days_with_remote_measurements >= 16 && $iPatient->rm_total_time_in_seconds_by_mcp >= 1200)
|
|
@if($lastVisitWithinDays && $iPatient->has_mcp_interacted_with_client_about_rm && $iPatient->number_of_days_with_remote_measurements >= 16 && $iPatient->rm_total_time_in_seconds_by_mcp >= 1200)
|
|
- @php
|
|
|
|
- $careMonth = \App\Models\CareMonth::where('uid', $iPatient->care_month_uid)->first();
|
|
|
|
- @endphp
|
|
|
|
@if($careMonth->mcpRmGenericBill == null )
|
|
@if($careMonth->mcpRmGenericBill == null )
|
|
|
|
|
|
@php
|
|
@php
|
|
@@ -204,7 +204,7 @@
|
|
@endphp
|
|
@endphp
|
|
|
|
|
|
@if(!$rpmBillability['billable'])
|
|
@if(!$rpmBillability['billable'])
|
|
- <div class="alert alert-info m-0">{{$rpmBillability['reason']}}</div>
|
|
|
|
|
|
+ <div class="alert alert-info m-0 p-1">{{$rpmBillability['reason']}}</div>
|
|
@else
|
|
@else
|
|
<div moe relative class="d-inline-block">
|
|
<div moe relative class="d-inline-block">
|
|
<a class="font-weight-normal" href="" show start>Bill ${{$rpmBillability['amount']}}</a>
|
|
<a class="font-weight-normal" href="" show start>Bill ${{$rpmBillability['amount']}}</a>
|
|
@@ -243,8 +243,10 @@
|
|
<span class="text-danger font-weight-normal">
|
|
<span class="text-danger font-weight-normal">
|
|
No
|
|
No
|
|
</span>
|
|
</span>
|
|
|
|
+ @include('app.patient.care-month.partials.tier-explainer', ['careMonth' => $careMonth])
|
|
@endif
|
|
@endif
|
|
- @elseif($mode === 'rmm')
|
|
|
|
|
|
+ @endif
|
|
|
|
+ @if($mode === 'rmm' && false)
|
|
@if($lastVisitWithinDays && $iPatient->has_mcp_interacted_with_client_about_rm && $iPatient->number_of_days_with_remote_measurements >= 16 && $iPatient->rm_total_time_in_seconds_by_rmm_pro >= 1200)
|
|
@if($lastVisitWithinDays && $iPatient->has_mcp_interacted_with_client_about_rm && $iPatient->number_of_days_with_remote_measurements >= 16 && $iPatient->rm_total_time_in_seconds_by_rmm_pro >= 1200)
|
|
<span class="text-success font-weight-bold">
|
|
<span class="text-success font-weight-bold">
|
|
<i class="fa fa-check"></i>
|
|
<i class="fa fa-check"></i>
|
|
@@ -289,7 +291,7 @@
|
|
No
|
|
No
|
|
</span>
|
|
</span>
|
|
@endif
|
|
@endif
|
|
- @elseif($mode === 'rme')
|
|
|
|
|
|
+ @elseif($mode === 'rme' && false)
|
|
@if($lastVisitWithinDays && $iPatient->number_of_days_with_remote_measurements >= 16)
|
|
@if($lastVisitWithinDays && $iPatient->number_of_days_with_remote_measurements >= 16)
|
|
<span class="text-success font-weight-bold">
|
|
<span class="text-success font-weight-bold">
|
|
<i class="fa fa-check"></i>
|
|
<i class="fa fa-check"></i>
|
|
@@ -303,4 +305,4 @@
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
@endif
|
|
@endif
|
|
-</tr>
|
|
|
|
|
|
+</tr>
|