|
@@ -1,3 +1,4 @@
|
|
|
|
+<div id="mcp-dashboard-notifications">
|
|
<?php
|
|
<?php
|
|
|
|
|
|
$apptsPending = [
|
|
$apptsPending = [
|
|
@@ -13,7 +14,7 @@
|
|
@if(count($apptsPending['status']))
|
|
@if(count($apptsPending['status']))
|
|
<b class="text-secondary my-2 d-block">Appointment Status Changes</b>
|
|
<b class="text-secondary my-2 d-block">Appointment Status Changes</b>
|
|
@foreach($apptsPending['status'] as $appt)
|
|
@foreach($apptsPending['status'] as $appt)
|
|
- <div class="d-flex mb-1 border-bottom border-light">
|
|
|
|
|
|
+ <div class="d-flex mb-1 border-bottom border-light" discardable-container>
|
|
<div class="flex-grow-1 d-inline-flex align-items-baseline">
|
|
<div class="flex-grow-1 d-inline-flex align-items-baseline">
|
|
<div>
|
|
<div>
|
|
<a class="d-block" href="/patients/view/{{$appt->client->uid}}"><b>{{$appt->client->displayName()}}</b></a>
|
|
<a class="d-block" href="/patients/view/{{$appt->client->uid}}"><b>{{$appt->client->displayName()}}</b></a>
|
|
@@ -26,8 +27,8 @@
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div moe relative class="">
|
|
|
|
- <form show url="/api/appointment/acknowledgeStatusAsAppointmentPro">
|
|
|
|
|
|
+ <div class="">
|
|
|
|
+ <form url="/api/appointment/acknowledgeStatusAsAppointmentPro" discardable>
|
|
<input type="hidden" name="uid" value="{{$appt->uid}}">
|
|
<input type="hidden" name="uid" value="{{$appt->uid}}">
|
|
<input type="hidden" name="currentStatus" value="{{$appt->status}}">
|
|
<input type="hidden" name="currentStatus" value="{{$appt->status}}">
|
|
@if($appt->status_memo !== null)
|
|
@if($appt->status_memo !== null)
|
|
@@ -46,7 +47,7 @@
|
|
@if(count($apptsPending['decision']))
|
|
@if(count($apptsPending['decision']))
|
|
<b class="text-secondary my-2 d-block">Appointment Confirmation Changes</b>
|
|
<b class="text-secondary my-2 d-block">Appointment Confirmation Changes</b>
|
|
@foreach($apptsPending['decision'] as $appt)
|
|
@foreach($apptsPending['decision'] as $appt)
|
|
- <div class="d-flex mb-1 border-bottom border-light">
|
|
|
|
|
|
+ <div class="d-flex mb-1 border-bottom border-light" discardable-container>
|
|
<div class="flex-grow-1 d-inline-flex align-items-baseline">
|
|
<div class="flex-grow-1 d-inline-flex align-items-baseline">
|
|
<div>
|
|
<div>
|
|
<a class="d-block" href="/patients/view/{{$appt->client->uid}}"><b>{{$appt->client->displayName()}}</b></a>
|
|
<a class="d-block" href="/patients/view/{{$appt->client->uid}}"><b>{{$appt->client->displayName()}}</b></a>
|
|
@@ -54,8 +55,8 @@
|
|
</div>
|
|
</div>
|
|
<span class="ml-auto mr-3 font-weight-bold text-secondary">{{$appt->latestConfirmationDecision->decision_enum}}</span>
|
|
<span class="ml-auto mr-3 font-weight-bold text-secondary">{{$appt->latestConfirmationDecision->decision_enum}}</span>
|
|
</div>
|
|
</div>
|
|
- <div moe relative class="">
|
|
|
|
- <form show url="/api/appointment/acknowledgeDecisionAsAppointmentPro">
|
|
|
|
|
|
+ <div class="">
|
|
|
|
+ <form url="/api/appointment/acknowledgeDecisionAsAppointmentPro" discardable>
|
|
<input type="hidden" name="uid" value="{{$appt->uid}}">
|
|
<input type="hidden" name="uid" value="{{$appt->uid}}">
|
|
<button submit class="bg-transparent border-0 p-0 text-primary">Ack.</button>
|
|
<button submit class="bg-transparent border-0 p-0 text-primary">Ack.</button>
|
|
</form>
|
|
</form>
|
|
@@ -75,3 +76,4 @@
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
@endforeach
|
|
@endif--}}
|
|
@endif--}}
|
|
|
|
+</div>
|