|
@@ -81,7 +81,7 @@
|
|
<th class="border-bottom-0 border-top-0">Units</th>
|
|
<th class="border-bottom-0 border-top-0">Units</th>
|
|
<th class="border-bottom-0 border-top-0">Verified?</th>
|
|
<th class="border-bottom-0 border-top-0">Verified?</th>
|
|
<th class="border-bottom-0 border-top-0">Cancelled?</th>
|
|
<th class="border-bottom-0 border-top-0">Cancelled?</th>
|
|
- <th class="border-bottom-0 border-top-0">Care Month Has Claim?</th>
|
|
|
|
|
|
+ <th class="border-bottom-0 border-top-0">Has Claim?</th>
|
|
@if(!request()->input('t') || request()->input('t') === 'hcp')
|
|
@if(!request()->input('t') || request()->input('t') === 'hcp')
|
|
<th class="border-bottom-0 border-top-0">HCP Expected Amount</th>
|
|
<th class="border-bottom-0 border-top-0">HCP Expected Amount</th>
|
|
@elseif(request()->input('t') === 'na')
|
|
@elseif(request()->input('t') === 'na')
|
|
@@ -156,10 +156,10 @@
|
|
@if($row->genericCompanyPro && $row->genericCompanyPro->company)
|
|
@if($row->genericCompanyPro && $row->genericCompanyPro->company)
|
|
{{$row->genericCompanyPro->company->name}}
|
|
{{$row->genericCompanyPro->company->name}}
|
|
@else
|
|
@else
|
|
- <i>[company pro is not set]</i>
|
|
|
|
|
|
+ <i class="text-warning-dark">[company pro is not set]</i>
|
|
@endif
|
|
@endif
|
|
@if(count($row->genericPro->companyPros))
|
|
@if(count($row->genericPro->companyPros))
|
|
- <div moe class="">
|
|
|
|
|
|
+ <div moe class="ml-1">
|
|
<a class="text-primary" href="" show start><i class="fa fa-edit"></i></a>
|
|
<a class="text-primary" href="" show start><i class="fa fa-edit"></i></a>
|
|
<form url="/api/bill/swapGenericCompanyPro">
|
|
<form url="/api/bill/swapGenericCompanyPro">
|
|
<input type="hidden" name="uid" value="{{$row->uid}}">
|
|
<input type="hidden" name="uid" value="{{$row->uid}}">
|
|
@@ -266,7 +266,26 @@
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
- {{$row->careMonth? (count($row->careMonth->claims)? 'Yes': 'No') : 'N/A'}}
|
|
|
|
|
|
+ @if($row->careMonth)
|
|
|
|
+ @if(count($row->careMonth->claims))
|
|
|
|
+ <span class="text-dark">Yes</span>
|
|
|
|
+ <?php
|
|
|
|
+ $cptCodes = [];
|
|
|
|
+ foreach($row->careMonth->claims as $claim) {
|
|
|
|
+ foreach ($claim->lines as $line) {
|
|
|
|
+ $cptCodes[] = $line->cpt;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ?>
|
|
|
|
+ @if(count($cptCodes))
|
|
|
|
+ ({{implode(', ', $cptCodes)}})
|
|
|
|
+ @endif
|
|
|
|
+ @else
|
|
|
|
+ <span class="text-secondary">No</span>
|
|
|
|
+ @endif
|
|
|
|
+ @else
|
|
|
|
+ N/A
|
|
|
|
+ @endif
|
|
</td>
|
|
</td>
|
|
@if(!request()->input('t') || request()->input('t') === 'hcp')
|
|
@if(!request()->input('t') || request()->input('t') === 'hcp')
|
|
<td>${{$row->hcp_expected_payment_amount}}</td>
|
|
<td>${{$row->hcp_expected_payment_amount}}</td>
|