|
@@ -11,7 +11,7 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="card-body p-0">
|
|
<div class="card-body p-0">
|
|
- <div class="d-flex flex-row">
|
|
|
|
|
|
+ <div class="d-flex_ d-none flex-row">
|
|
<div class="ml-2 mt-2">
|
|
<div class="ml-2 mt-2">
|
|
<div>Patient</div>
|
|
<div>Patient</div>
|
|
<input type="text" class="form-control input-sm" name="patient">
|
|
<input type="text" class="form-control input-sm" name="patient">
|
|
@@ -83,22 +83,27 @@
|
|
<table class="table table-sm table-condensed p-0 m-0" style="table-layout: fixed">
|
|
<table class="table table-sm table-condensed p-0 m-0" style="table-layout: fixed">
|
|
<thead class="bg-light">
|
|
<thead class="bg-light">
|
|
<tr>
|
|
<tr>
|
|
- <th class="border-0">MCP</th>
|
|
|
|
|
|
+ @if($isAdmin)
|
|
|
|
+ <th class="border-0">MCP</th>
|
|
|
|
+ @endif
|
|
<th class="border-0">Patient</th>
|
|
<th class="border-0">Patient</th>
|
|
<th class="border-0">Month/Year</th>
|
|
<th class="border-0">Month/Year</th>
|
|
<th class="border-0"># Days w/ Meas.</th>
|
|
<th class="border-0"># Days w/ Meas.</th>
|
|
<th class="border-0">Most Recent MCP Note</th>
|
|
<th class="border-0">Most Recent MCP Note</th>
|
|
<th class="border-0">Days Between Note and EOM</th>
|
|
<th class="border-0">Days Between Note and EOM</th>
|
|
- <th class="border-0">RM Bill</th>
|
|
|
|
|
|
+ @if($isAdmin)
|
|
|
|
+ <th class="border-0">RM Bill</th>
|
|
<th class="border-0">Is Bill Closed</th>
|
|
<th class="border-0">Is Bill Closed</th>
|
|
<th class="border-0">Bill Closed At</th>
|
|
<th class="border-0">Bill Closed At</th>
|
|
<th class="border-0">Is Claim Closed</th>
|
|
<th class="border-0">Is Claim Closed</th>
|
|
|
|
+ @endif
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($rows as $row)
|
|
@foreach($rows as $row)
|
|
<tr>
|
|
<tr>
|
|
|
|
+ @if($isAdmin)
|
|
<td>
|
|
<td>
|
|
@if($row->mcp)
|
|
@if($row->mcp)
|
|
<b>{{ implode(", ", [$row->mcp->name_display]) }}</b>
|
|
<b>{{ implode(", ", [$row->mcp->name_display]) }}</b>
|
|
@@ -106,6 +111,7 @@
|
|
--
|
|
--
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
|
|
+ @endif
|
|
<td>
|
|
<td>
|
|
<a href="/patients/view/{{ $row->patient->uid }}">
|
|
<a href="/patients/view/{{ $row->patient->uid }}">
|
|
<b>{{ implode(", ", [$row->patient->name_last,$row->patient->name_first]) }}</b>
|
|
<b>{{ implode(", ", [$row->patient->name_last,$row->patient->name_first]) }}</b>
|
|
@@ -129,7 +135,8 @@
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
<td>{{$row->days_between_most_recent_mcp_note_date_and_end_of_care_month}}</td>
|
|
<td>{{$row->days_between_most_recent_mcp_note_date_and_end_of_care_month}}</td>
|
|
- <td>
|
|
|
|
|
|
+ @if($isAdmin)
|
|
|
|
+ <td>
|
|
@if($row->rmBill)
|
|
@if($row->rmBill)
|
|
<a href="{{route('patients.view.care-months.view.dashboard', ['patient'=>$row->patient, 'careMonth'=>$row])}}">{{ $row->rmBill->code }}</a>
|
|
<a href="{{route('patients.view.care-months.view.dashboard', ['patient'=>$row->patient, 'careMonth'=>$row])}}">{{ $row->rmBill->code }}</a>
|
|
@else
|
|
@else
|
|
@@ -139,6 +146,7 @@
|
|
<td>{{$row->is_bill_closed? 'Yes':'No'}}</td>
|
|
<td>{{$row->is_bill_closed? 'Yes':'No'}}</td>
|
|
<td>{{friendly_date_time($row->bill_closed_at)}}</td>
|
|
<td>{{friendly_date_time($row->bill_closed_at)}}</td>
|
|
<td>{{$row->is_claim_closed? 'Yes':'No'}}</td>
|
|
<td>{{$row->is_claim_closed? 'Yes':'No'}}</td>
|
|
|
|
+ @endif
|
|
</tr>
|
|
</tr>
|
|
@endforeach
|
|
@endforeach
|
|
</tbody>
|
|
</tbody>
|