|
@@ -16,79 +16,289 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="card-body p-0">
|
|
<div class="card-body p-0">
|
|
|
|
+
|
|
|
|
+
|
|
<div class="p-3">
|
|
<div class="p-3">
|
|
@include('app.dna.my_bills_filters')
|
|
@include('app.dna.my_bills_filters')
|
|
</div>
|
|
</div>
|
|
- <table class="table table-sm table-striped p-0 m-0">
|
|
|
|
- <thead class="bg-light border-top">
|
|
|
|
- <tr>
|
|
|
|
- <th class="border-0">Effective Date</th>
|
|
|
|
- <th class="border-0">Patient</th>
|
|
|
|
- <th class="border-0">Service</th>
|
|
|
|
- <th class="border-0">Description</th>
|
|
|
|
- <th class="border-0">Amount</th>
|
|
|
|
- <th class="border-0">Submitted</th>
|
|
|
|
- <th class="border-0">Verified</th>
|
|
|
|
- <th class="border-0">Cancelled</th>
|
|
|
|
- </tr>
|
|
|
|
|
|
+ <table class="table table-sm table-striped mb-0 table-bordered">
|
|
|
|
+ <thead class="bg-light">
|
|
|
|
+ <tr class="text-secondary">
|
|
|
|
+ <th class="border-bottom-0">Date</th>
|
|
|
|
+ <th class="border-bottom-0">Pro</th>
|
|
|
|
+ @if(@$adminView)
|
|
|
|
+ <th class="border-bottom-0">Context</th>
|
|
|
|
+ @endif
|
|
|
|
+ <th class="border-bottom-0">Service</th>
|
|
|
|
+ <th class="border-bottom-0">Billable</th>
|
|
|
|
+ <th class="border-bottom-0 screen-only">Total</th>
|
|
|
|
+ <th class="border-bottom-0">Sign</th>
|
|
|
|
+ <th class="border-bottom-0">Cancellation</th>
|
|
|
|
+ <th class="border-bottom-0">Verification</th>
|
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
|
+ <th class="border-bottom-0 screen-only">Payment</th>
|
|
|
|
+ @endif
|
|
|
|
+ </tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
- @foreach($bills as $bill)
|
|
|
|
- <tr>
|
|
|
|
- <td>{{ friendly_date($bill->effective_date) }}</td>
|
|
|
|
-
|
|
|
|
- <td>
|
|
|
|
- @if($bill->client)
|
|
|
|
- <a native target="_blank" href="{{route('patients.view.dashboard', $bill->client)}}">
|
|
|
|
- {{$bill->client->displayName()}}
|
|
|
|
- </a>
|
|
|
|
- @else
|
|
|
|
- --
|
|
|
|
|
|
+ @foreach ($bills as $bill)
|
|
|
|
+ <tr class="{{$bill->is_cancelled ? 'bg-light text-secondary' : ''}}">
|
|
|
|
+ <td class="text-nowrap">{{friendlier_date_time($bill->effective_date, false)}}</td>
|
|
|
|
+ <td class="">
|
|
|
|
+ <div class="text-nowrap font-weight-bold text-secondary">{{ $bill->genericPro->displayName() }}</div>
|
|
|
|
+ <div class="text-nowrap mt-1 screen-only">
|
|
|
|
+ <span class="text-secondary">Paid: </span>
|
|
|
|
+ <span>{{ $bill->has_generic_pro_been_paid ? 'Yes' : 'No' }}</span>
|
|
|
|
+ </div>
|
|
|
|
+ @if(!$bill->has_generic_pro_been_paid)
|
|
|
|
+ <div class="text-nowrap mt-1 screen-only">
|
|
|
|
+ <span class="text-secondary">Expected: </span>
|
|
|
|
+ <span class="font-weight-bold">${{ round($bill->total_expected, 2) }}</span>
|
|
|
|
+ </div>
|
|
|
|
+ @else
|
|
|
|
+ <div class="text-nowrap mt-1 screen-only">
|
|
|
|
+ <span class="text-secondary">Amount: </span>
|
|
|
|
+ <span class="font-weight-bold">${{ round($bill->total_paid, 2) }}</span>
|
|
|
|
+ </div>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
- <td>{{ $bill->bill_service_type }}</td>
|
|
|
|
- <td class="border-0"><?= nl2br($bill->generic_description) ?></td>
|
|
|
|
- <td>
|
|
|
|
- @if($bill->bill_service_type === 'GENERIC')
|
|
|
|
- {{ $bill->generic_pro_expected_payment_amount ? '$'.friendly_money($bill->generic_pro_expected_payment_amount) : '' }}</td>
|
|
|
|
- @else
|
|
|
|
- {{ $bill->na_expected_payment_amount ? '$'.friendly_money($bill->na_expected_payment_amount) : '' }}</td>
|
|
|
|
|
|
+ @if(@$adminView)
|
|
|
|
+ <td>
|
|
|
|
+ @include('app.generic-bills.context')
|
|
|
|
+ </td>
|
|
|
|
+ @endif
|
|
|
|
+ <td>{{$bill->code}}
|
|
|
|
+ @if($bill->generic_description)
|
|
|
|
+ <pre class="max-width-300px text-wrap mb-0 text-sm text-secondary font-italic">{!! preg_replace('#<br\s*/?>#i', "\n", $bill->generic_description) !!}</pre>
|
|
@endif
|
|
@endif
|
|
- <td>
|
|
|
|
- @if($bill->has_hcp_been_paid)
|
|
|
|
- <span>YES</span>
|
|
|
|
- <div class="d-flex flex-column">
|
|
|
|
- <span class="text-muted">Expected: ${{ $bill->hcp_expected_payment_amount }}</span>
|
|
|
|
- <span class="text-muted">Paid: ${{ $bill->hcp_payment_amount }}</span>
|
|
|
|
- </div>
|
|
|
|
- @else
|
|
|
|
- <span>NO</span>
|
|
|
|
|
|
+ @if(!$bill->is_signed_by_generic_pro)
|
|
|
|
+ <div moe wide>
|
|
|
|
+ <a href="#" start show class="text-nowrap text-sm">Edit Description</a>
|
|
|
|
+ <form url="/api/bill/putGenericDescription">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Edit Description</p>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <textarea class="text form-control form-control-sm"
|
|
|
|
+ rows="5"
|
|
|
|
+ name="genericDescription"
|
|
|
|
+ placeholder="">{{$bill->generic_description ? preg_replace('#<br\s*/?>#i', "\n", $bill->generic_description) : ''}}</textarea>
|
|
|
|
+ </div>
|
|
|
|
+ <div>
|
|
|
|
+ <button class="btn btn-primary btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
- <td>
|
|
|
|
- @if($bill->is_verified)
|
|
|
|
- <span>YES</span>
|
|
|
|
|
|
+ <td class="">
|
|
|
|
+ <?php
|
|
|
|
+ $totalSeconds = $bill->number_of_units * 3600;
|
|
|
|
+ $remainder = $totalSeconds % 60;
|
|
|
|
+ if ($remainder !== 0) {
|
|
|
|
+ if ($remainder < 30) {
|
|
|
|
+ $totalSeconds = $totalSeconds - $remainder;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ $totalSeconds = $totalSeconds + (60 - $remainder);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ?>
|
|
|
|
+ {{ time_in_hrminsec($totalSeconds) }}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="pr-3 screen-only text-nowrap">
|
|
|
|
+ @if($bill->has_generic_pro_been_paid)
|
|
|
|
+ <span class="text-secondary">Paid. </span>
|
|
|
|
+ <span class="font-weight-bold">${{ round($bill->total_paid, 2) }}</span>
|
|
@else
|
|
@else
|
|
- <span>NO</span>
|
|
|
|
|
|
+ <span class="text-secondary">Exp. </span>
|
|
|
|
+ <span class="font-weight-bold">{{ $bill->total_expected ? '$' . round($bill->total_expected, 2) : '-' }}</span>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
|
|
+ @if(!$bill->is_cancelled)
|
|
|
|
+ @if($bill->is_signed_by_generic_pro)
|
|
|
|
+ <div class="d-block text-secondary text-nowrap">
|
|
|
|
+ <i class="fa fa-check"></i>
|
|
|
|
+ Signed
|
|
|
|
+ </div>
|
|
|
|
+ @else
|
|
|
|
+ <div moe
|
|
|
|
+ class="d-block {{ $bill->generic_pro_id !== $pro->id ? 'moe-disabled' : '' }}"
|
|
|
|
+ title="{{ $bill->generic_pro_id !== $pro->id ? 'Only the bill\'s pro can sign' : '' }}">
|
|
|
|
+ <a class="text-nowrap" href="" show start>Sign</a>
|
|
|
|
+ <form url="/api/bill/signAsGenericPro">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Sign this bill?</p>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <button class="btn btn-success btn-sm" submit>Sign</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ <td> <!-- cancellation -->
|
|
@if($bill->is_cancelled)
|
|
@if($bill->is_cancelled)
|
|
- <span>YES</span>
|
|
|
|
|
|
+ <div class="text-warning-mellow font-weight-bold">Cancelled</div>
|
|
|
|
+ @if($bill->cancellation_memo)
|
|
|
|
+ <div class="text-dark text-sm font-italic my-1">{{$bill->cancellation_memo}}</div>
|
|
|
|
+ @endif
|
|
|
|
+ @if($bill->is_cancelled_by_administrator)
|
|
|
|
+ <div class="text-secondary text-sm text-nowrap">(by Administrator)</div>
|
|
|
|
+ @endif
|
|
|
|
+ <div moe class="mt-1">
|
|
|
|
+ <a class="text-nowrap" href="" show start>Update Memo</a>
|
|
|
|
+ <form url="/api/bill/updateCancellationMemo">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Update Cancellation Memo</p>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <textarea class="text form-control form-control-sm" name="cancellationMemo"
|
|
|
|
+ placeholder="">{{$bill->cancellation_memo ? $bill->cancellation_memo : ($pro->pro_type === 'ADMIN' ? 'Please contact billing.' : '')}}</textarea>
|
|
|
|
+ </div>
|
|
|
|
+ <div>
|
|
|
|
+ <button class="btn btn-success btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
@else
|
|
@else
|
|
- <span>NO</span>
|
|
|
|
|
|
+ <div class="d-block" moe relative="">
|
|
|
|
+ <a class="text-danger" href="" show start>Cancel</a>
|
|
|
|
+ <form url="/api/bill/markCancelled" right="">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p class="mb-2">Cancel this bill?</p>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="mb-1 text-secondary">Cancellation Memo</label>
|
|
|
|
+ <textarea type="text" name="memo" placeholder="Memo" class="form-control form-control-sm">@if($pro->pro_type === 'ADMIN')Please contact billing.@endif</textarea>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <button class="btn btn-danger btn-sm" submit>Yes</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>No</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+
|
|
|
|
+ @if($bill->is_cancelled && !$bill->is_cancellation_acknowledged)
|
|
|
|
+ <div class="mt-2 text-secondary text-nowrap">
|
|
|
|
+ <i class="fa fa-exclamation-triangle"></i>
|
|
|
|
+ Not Ack.
|
|
|
|
+ </div>
|
|
|
|
+ <div class="d-block mt-1" moe>
|
|
|
|
+ <a class="text-nowrap" href="" show start>Ack. Cancellation</a>
|
|
|
|
+ <form url="/api/bill/acknowledgeCancellation">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Acknowledge Cancellation?</p>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ {{--<input type="text" class="text form-control form-control-sm" name="cancellationMemo" value="{{$bill->cancellation_memo}}" placeholder=""><br>--}}
|
|
|
|
+ <button class="btn btn-primary btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
@endif
|
|
@endif
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- @endforeach
|
|
|
|
|
|
|
|
- @if(count($bills) === 0)
|
|
|
|
- <tr>
|
|
|
|
- <td colspan="9">No records found!</td>
|
|
|
|
|
|
+ @if($bill->is_cancellation_acknowledged)
|
|
|
|
+ <div class="mt-2 text-secondary">
|
|
|
|
+ <i class="fa fa-check"></i>
|
|
|
|
+ Ack.
|
|
|
|
+ </div>
|
|
|
|
+ <div class="d-block mt-1" moe>
|
|
|
|
+ <a class="text-nowrap" href="" show start>Undo Cancellation Ack.</a>
|
|
|
|
+ <form url="/api/bill/undoAcknowledgeCancellation">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Undo Acknowledge Cancellation?</p>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <button class="btn btn-success btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+
|
|
|
|
+ </td>
|
|
|
|
+ @if($pro->pro_type !== 'ADMIN')
|
|
|
|
+ <td> <!-- verification -->
|
|
|
|
+ @if(!$bill->is_cancelled)
|
|
|
|
+ @if(!$bill->is_verified)
|
|
|
|
+ <div class="text-warning-mellow font-weight-bold text-nowrap">Not Verified</div>
|
|
|
|
+ @else
|
|
|
|
+ <div class="text-info font-weight-bold text-nowrap"><i class="fa fa-check"></i> Verified</div>
|
|
|
|
+ @endif
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ @endif
|
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
|
+ <td> <!-- verification -->
|
|
|
|
+ @if(!$bill->is_cancelled)
|
|
|
|
+ @if(!$bill->is_verified)
|
|
|
|
+ <div class="text-warning-mellow font-weight-bold text-nowrap">Not Verified</div>
|
|
|
|
+ <div class="d-block mt-1" moe>
|
|
|
|
+ <a href="" show start>Mark Verified</a>
|
|
|
|
+ <form url="/api/bill/markAsVerified">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Mark As Verified?</p>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <button class="btn btn-success btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @else
|
|
|
|
+ <div class="text-success font-weight-bold"><i class="fa fa-check"></i> Verified</div>
|
|
|
|
+ <div class="d-block mt-1" moe>
|
|
|
|
+ <a class="" href="" show start>Undo</a>
|
|
|
|
+ <form url="/api/bill/undoMarkAsVerified">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Undo Mark As Verified?</p>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <button class="btn btn-success btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ <td class="screen-only"> <!-- submit payment -->
|
|
|
|
+ <div class="my-1">
|
|
|
|
+ @if(!$bill->is_cancelled && !$bill->has_generic_pro_been_paid )
|
|
|
|
+ @if(+$bill->total_expected && $bill->is_signed_by_generic_pro)
|
|
|
|
+ <div class="d-block" moe relative="">
|
|
|
|
+ <a class="font-weight-bold text-nowrap" href="" show start>Submit Payment</a>
|
|
|
|
+ <form url="/api/bill/payGenericProAmount" right>
|
|
|
|
+ <input type="hidden" name="uid" value="{{$bill->uid}}">
|
|
|
|
+ <p>Submit Payment</p>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <input type="text" class="text form-control form-control-sm" name="genericProPaymentAmount" value="{{$bill->total_expected}}" placeholder="amount"><br>
|
|
|
|
+ <button class="btn btn-success btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @else
|
|
|
|
+ @if(!+$bill->total_expected)
|
|
|
|
+ <div class="mb-1 text-danger">
|
|
|
|
+ <i class="fa fa-exclamation-triangle"></i>
|
|
|
|
+ Pro expected amount is invalid
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ @if(!$bill->is_signed_by_generic_pro)
|
|
|
|
+ <div class="mb-1 text-danger">
|
|
|
|
+ <i class="fa fa-exclamation-triangle"></i>
|
|
|
|
+ Pro has not signed the bill
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ @endif
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ </td>
|
|
|
|
+ @endif
|
|
</tr>
|
|
</tr>
|
|
- @endif
|
|
|
|
|
|
+ @endforeach
|
|
</tbody>
|
|
</tbody>
|
|
-
|
|
|
|
</table>
|
|
</table>
|
|
@if($bills->hasPages())
|
|
@if($bills->hasPages())
|
|
<div class="ml-2 mt-2">
|
|
<div class="ml-2 mt-2">
|
|
@@ -98,4 +308,4 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
-@endsection
|
|
|
|
|
|
+@endsection
|