|
@@ -479,6 +479,12 @@
|
|
class="ticket-popup-trigger note-dashboard-action d-block text-nowrap screen-only">
|
|
class="ticket-popup-trigger note-dashboard-action d-block text-nowrap screen-only">
|
|
+ Imaging
|
|
+ Imaging
|
|
</a>
|
|
</a>
|
|
|
|
+ <span class="mx-2 text-secondary screen-only">|</span>
|
|
|
|
+ <a href="/patients/view/{{$patient->uid}}/tickets/other/create?popupmode=1¬e-uid={{$note->uid}}"
|
|
|
|
+ native target="_blank"
|
|
|
|
+ class="ticket-popup-trigger note-dashboard-action d-block text-nowrap screen-only">
|
|
|
|
+ + Other
|
|
|
|
+ </a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="p-3 border">
|
|
<div class="p-3 border">
|
|
@@ -616,7 +622,7 @@
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($otherOpenTickets as $ticket)
|
|
@foreach($otherOpenTickets as $ticket)
|
|
<?php $data = json_decode($ticket->data); ?>
|
|
<?php $data = json_decode($ticket->data); ?>
|
|
- @if($ticket->category === 'erx' || $ticket->category === 'lab' || $ticket->category === 'imaging')
|
|
|
|
|
|
+ @if($ticket->category === 'erx' || $ticket->category === 'lab' || $ticket->category === 'imaging' || $ticket->category === 'other')
|
|
<tr class="{{$ticket->is_open ? '' : 'bg-light on-hover-opaque'}}">
|
|
<tr class="{{$ticket->is_open ? '' : 'bg-light on-hover-opaque'}}">
|
|
<td class="px-2 text-nowrap">
|
|
<td class="px-2 text-nowrap">
|
|
{{friendly_time($ticket->created_at)}}
|
|
{{friendly_time($ticket->created_at)}}
|
|
@@ -703,6 +709,11 @@
|
|
</div>
|
|
</div>
|
|
@endif
|
|
@endif
|
|
@endif
|
|
@endif
|
|
|
|
+ @if($ticket->category === 'other')
|
|
|
|
+ <div>
|
|
|
|
+ {{$data->title}}
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
@endif
|
|
@endif
|