|
@@ -29,32 +29,36 @@
|
|
];
|
|
];
|
|
?>
|
|
?>
|
|
<div moe wide>
|
|
<div moe wide>
|
|
- <a href="#" start show class="d-flex align-items-baseline" title="Next FU"><img src="{{ asset('img/p-phone.png') }}" alt="" style="width:24px"></a>
|
|
|
|
|
|
+ <a href="#" start show class="d-flex align-items-baseline" title="Next FU"><img src="{{ asset('img/p-phone.png') }}" alt="" style="width:20px"></a>
|
|
<form url="/api/client/putClientRepFollowUp" class="mcp-theme-1">
|
|
<form url="/api/client/putClientRepFollowUp" class="mcp-theme-1">
|
|
<div id="viewNextFuData" class="{{ $patient->clientRepFollowUp ? '':'d-none' }}" fu-screen>
|
|
<div id="viewNextFuData" class="{{ $patient->clientRepFollowUp ? '':'d-none' }}" fu-screen>
|
|
@if($patient->clientRepFollowUp)
|
|
@if($patient->clientRepFollowUp)
|
|
- <div class="d-flex align-items-center">
|
|
|
|
- <a id="updateNextFu" class="c-pointer" data-show="#updateNextFuData" next-fu-screen>Update</a>
|
|
|
|
- <a id="updateFuStatus" class="c-pointer ml-3" data-show="#updateStatus" next-fu-screen >Update Status</a>
|
|
|
|
- </div>
|
|
|
|
- <table class="table table-sm table-striped table-bordered">
|
|
|
|
- <tr>
|
|
|
|
- <td><b>Client Rep</b></td>
|
|
|
|
- <td>{{ $patient->clientRepFollowUp->pro->displayName() }}</td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td><b>Status</b></td>
|
|
|
|
- <td>{{ $patient->clientRepFollowUp->status }}</td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td><b>Next Followup Date</b></td>
|
|
|
|
- <td>{{ friendly_date_time($patient->clientRepFollowUp->next_follow_up_date) }}</td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td><b>Next Followup Reason</b></td>
|
|
|
|
- <td>{{ $patient->clientRepFollowUp->next_follow_up_reason }}</td>
|
|
|
|
- </tr>
|
|
|
|
- </table>
|
|
|
|
|
|
+ <div class="d-flex align-items-center mb-2">
|
|
|
|
+ <a id="updateNextFu" class="c-pointer" data-show="#updateNextFuData" next-fu-screen>Update</a>
|
|
|
|
+ <a id="updateFuStatus" class="c-pointer ml-3" data-show="#updateStatus" next-fu-screen >Update Status</a>
|
|
|
|
+ </div>
|
|
|
|
+ <table class="table table-sm table-striped table-bordered m-0">
|
|
|
|
+ <tr>
|
|
|
|
+ <td><b>Client Rep</b></td>
|
|
|
|
+ <td>{{ $patient->clientRepFollowUp->pro->displayName() }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td><b>Status</b></td>
|
|
|
|
+ <td>{{ $patient->clientRepFollowUp->status }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td><b>Next Followup Date</b></td>
|
|
|
|
+ <td>{{ friendly_date_time($patient->clientRepFollowUp->next_follow_up_date) }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td><b>Next Followup Reason</b></td>
|
|
|
|
+ <td>{{ $patient->clientRepFollowUp->next_follow_up_reason }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td><b>Next Followup Memo</b></td>
|
|
|
|
+ <td>{{ $patient->clientRepFollowUp->next_follow_up_memo }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ </table>
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@if($patient->clientRepFollowUp)
|
|
@if($patient->clientRepFollowUp)
|
|
@@ -98,6 +102,10 @@
|
|
@endforeach
|
|
@endforeach
|
|
</select>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">Call Memo</label>
|
|
|
|
+ <textarea class="form-control input-sm" name="nextFollowUpMemo">{{ $patient->clientRepFollowUp ? $patient->clientRepFollowUp->next_follow_up_memo : '' }}</textarea>
|
|
|
|
+ </div>
|
|
<div class="d-flex align-items-center">
|
|
<div class="d-flex align-items-center">
|
|
<button class="btn btn-sm btn-primary mr-2" submit>Submit</button>
|
|
<button class="btn btn-sm btn-primary mr-2" submit>Submit</button>
|
|
<button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
<button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|