root 4 سال پیش
والد
کامیت
a83902267a

+ 9 - 1
resources/views/app/practice-management/processing-bill-matrix.blade.php

@@ -23,12 +23,15 @@
                 <table class="table table-sm table-condensed p-0 m-0">
                     <thead class="bg-light">
                     <tr>
+			<th><input type="checkbox"/> All</th>
                         <th>Note Link</th>
                         <td>Effective Date</td>
+			<td>Balance Post Date</td>
                         <td>Pro</td>
                         <td>Client</td>
                         <td>Code</td>
                         <td>Units</td>
+			<td>Verified?</td>
                         <td>HCP Expected Amount</td>
                         <td>HCP Signed?</td>
 {{--                        <td>HCP Signed At</td>--}}
@@ -37,6 +40,9 @@
                     <tbody>
                     @foreach ($bills as $row)
                         <tr class="">
+			    <td>
+				<input type="checkbox"/>
+			    </td>
                             <td>
                                 @if($row->note)
                                 <a href="/patients/view/{{ $row->client->uid }}/notes/view/{{ $row->note->uid }}">
@@ -48,11 +54,13 @@
                                     </a>
                                 @endif
                             </td>
-                            <td>{{$row->effective_date}}</td>
+                            <td>{{friendly_date($row->effective_date)}}</td>
+			    <td>{{friendly_date($row->balance_post_date)}}</td>
                             <td>{{$row->hcp->name_last}}, {{$row->hcp->name_first}}</td>
                             <td>{{$row->client->name_last}}, {{$row->client->name_first}}</td>
                             <td>{{$row->code}}</td>
                             <td>{{$row->number_of_units}}</td>
+			    <td>{{$row->is_verified ? 'Verified: ' . friendly_date($row->marked_verified_at, true) : 'Not Verified'}} </td>
                             <td>{{$row->hcp_expected_payment_amount}}</td>
                             <td>{{$row->is_signed_by_hcp}}</td>
 {{--                            <td>{{$row->signed_by_hcp_at}}</td>--}}

+ 2 - 0
resources/views/app/practice-management/shipments-waiting-for-picker.blade.php

@@ -34,6 +34,7 @@
                     </th>
                     <th class="border-top-0 border-bottom-0"></th>
                     <th class="border-top-0 border-bottom-0">Patient</th>
+		    <th class="border-top-0 border-bottom-0">Phone</th>
                     <th class="border-top-0 border-bottom-0">Address</th>
                     <th class="border-top-0 border-bottom-0">Item(s)</th>
                     <th class="border-top-0 border-bottom-0 border-right-0">Actions</th>
@@ -49,6 +50,7 @@
                         </th>
                         <td class="border-right"><a href="{{route('practice-management.shipment', $shipment->uid)}}">Open</a></td>
                         <td>{{$shipment->client->displayName()}}</td>
+			<td>{{$shipment->client->phone_home ? $shipment->client->phone_home : $shipment->client->cell_number }}</td>
                         <td>
                             {!! $shipment->mailing_address_full ? implode(" ", [$shipment->mailing_address_line1 . ' ' . $shipment->mailing_address_line2, $shipment->mailing_address_city . ' ' . $shipment->mailing_address_state . ' ' . $shipment->mailing_address_zip]) : '-'  !!}
                         </td>