Ver código fonte

NA link to note from enc. pending review

Vijayakrishnan 3 anos atrás
pai
commit
77fa63b15e

+ 7 - 1
resources/views/app/dna/dashboard/encounters_pending_my_review.blade.php

@@ -11,6 +11,7 @@
                     <tr>
                         <th class="border-0">Chart#</th>
                         <th class="border-0">Patient</th>
+                        <th class="border-0">Encounter</th>
                         <th class="border-0">DOB</th>
                         <th class="border-0">Gender</th>
                         <th class="border-0">Coverage</th>
@@ -26,10 +27,15 @@
                             {{$row->client->chart_number}}
                         </td>
                         <td>
-                            <a href="{{ route('patients.view.dashboard', $row->client) }}">
+                            <a native target="_blank" href="{{ route('patients.view.dashboard', $row->client) }}">
                                 {{$row->client->displayName()}}
                             </a>
                         </td>
+                        <td>
+                            <a native target="_blank" href="{{ route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row]) }}">
+                                {{friendly_date($row->effective_dateest)}}
+                            </a>
+                        </td>
                         <td class="text-nowrap">
                             {{friendly_date($row->client->dob)}}
                         </td>

+ 6 - 0
resources/views/app/dna/dashboard/encounters_pending_my_review_dashboard.blade.php

@@ -11,6 +11,7 @@
                     <tr>
                     <th class="border-0">Chart#</th>
                         <th class="border-0">Patient</th>
+                        <th class="border-0">Encounter</th>
                         <th class="border-0">DOB</th>
                         <th class="border-0">Gender</th>
                         <th class="border-0">Coverage</th>
@@ -30,6 +31,11 @@
                                 {{$row->client->displayName()}}
                             </a>
                         </td>
+                        <td>
+                            <a href="{{ route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row]) }}">
+                                {{friendly_date($row->effective_dateest)}}
+                            </a>
+                        </td>
                         <td class="text-nowrap">
                             {{friendly_date($row->client->dob)}}
                         </td>