Samson Mutunga 3 vuotta sitten
vanhempi
commit
d8cf6956bb

+ 2 - 3
resources/views/app/dna/appointments.blade.php

@@ -24,7 +24,7 @@
                         <th class="border-0">Age</th>
                         <th class="border-0">Sex</th>
                         <th class="border-0">Insurance</th>
-                        <th class="border-0">MCP</th>
+                        <th class="border-0">HCP</th>
                         <th class="border-0">Time</th>
                         <th class="border-0">Status</th>
                     </tr>
@@ -32,7 +32,6 @@
                 <tbody>
                     @foreach($appointments as $appointment)
                     <tr>
-
                         <td class="text-nowrap">
                             <a native target="_blank" href="{{route('patients.view.dashboard', $appointment->client)}}">
                                 {{$appointment->client->chart_number}}
@@ -62,7 +61,7 @@
                                 @endif
                             </div>
                         </td>
-                        <td>{{ $appointment->client->mcp->displayName() }}</td>
+                        <td>{{ $appointment->pro->displayName() }}</td>
                         <td>
                             <a href="/patients/view/{{$appointment->client->uid}}/calendar/{{$appointment->uid}}" class="text-nowrap">
                                 {{friendlier_date_time($appointment->raw_date . ' ' . $appointment->raw_start_time)}}

+ 5 - 6
resources/views/app/dna/dashboard/patients_without_appointment.blade.php

@@ -9,10 +9,12 @@
                 <table class="table table-sm table-striped mb-0">
                     <thead class="bg-light">
                         <tr>
+                            <th class="border-0">Chart #</th>
                             <th class="border-0">Patient</th>
-                            <th class="border-0">Type</th>
-                            <th class="border-0">Value</th>
-                            <th class="border-0" colspan="4">Timestamp</th>
+                            <th class="border-0">DOB</th>
+                            <th class="border-0">Gender</th>
+                            <th class="border-0">Insurance</th>
+                            <th class="border-0">MCP</th>
                         </tr>
                     </thead>
                     <tbody>
@@ -38,9 +40,6 @@
                             <td class="text-nowrap">
                                 {{$row->mcp->name_display ?? '' }}
                             </td>
-                            <td class="text-nowrap">
-                                {{friendly_date($row->most_recent_completed_mcp_note_date)}}
-                            </td>
                         </tr>
                         @endforeach
                     </tbody>