|
@@ -367,6 +367,7 @@
|
|
|
<tr class="bg-light">
|
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">Created</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">Type</th>
|
|
|
+ <th class="px-2 text-secondary border-bottom-0 width-30px">Pro</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">View</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">Status</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0">Detail</th>
|
|
@@ -383,6 +384,17 @@
|
|
|
<td class="px-2 text-nowrap">
|
|
|
{{$ticket->category}}
|
|
|
</td>
|
|
|
+ <td class="px-2 text-nowrap">
|
|
|
+ @if($ticket->orderingPro)
|
|
|
+ @if($ticket->orderingPro->id !== $pro->id)
|
|
|
+ <b>{{$ticket->orderingPro->displayName()}}</b>
|
|
|
+ @else
|
|
|
+ You
|
|
|
+ @endif
|
|
|
+ @else
|
|
|
+ -
|
|
|
+ @endif
|
|
|
+ </td>
|
|
|
<td class="px-2 text-nowrap">
|
|
|
<div class="d-flex align-items-center flex-nowrap">
|
|
|
<a href="/patients/view/{{$ticket->patient->uid}}/tickets/{{$ticket->category}}/{{$ticket->uid}}?popupmode=1"
|