|
@@ -18,15 +18,34 @@
|
|
|
?>
|
|
|
|
|
|
<div class="pt-2 pb-3 d-flex align-items-start">
|
|
|
- <h6 class="my-0 text-secondary d-flex align-items-start">
|
|
|
+ <h6 class="my-0 text-secondary d-flex align-items-start w-100">
|
|
|
<a href="/patients/view/{{ $patient->uid }}/notes" class="small text-decoration-none mr-3">
|
|
|
<i class="fa fa-chevron-left"></i>
|
|
|
</a>
|
|
|
- <div>
|
|
|
+ <div class="mr-auto">
|
|
|
<span class="text-dark font-weight-bold">Note
|
|
|
<span class="text-secondary font-weight-normal">{{ $note->is_cancelled ? '(CANCELLED)' : '' }}</span>
|
|
|
</span>
|
|
|
</div>
|
|
|
+ @if($patient->has_mcp_done_onboarding_visit !== 'YES')
|
|
|
+ <div class="ml-auto">
|
|
|
+ <div moe relative>
|
|
|
+ <a start show class="font-weight-bold">Mark as OB Visit Note</a>
|
|
|
+ <form url="/api/client/updateMcpOnboardingVisitInfo" class="mcp-theme-1" right>
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <input type="hidden" name="mcpOnboardingVisitNoteUid" value="{{$note->uid}}">
|
|
|
+ <input type="hidden" name="hasMcpDoneOnboardingVisit" value="YES">
|
|
|
+ <input type="hidden" name="mcpOnboardingVisitDate" value="{{$note->effective_dateest}}">
|
|
|
+ <p class="min-width-200px">Mark this patient's onboarding as completed using this note?</p>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-success mr-1">Yes</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">No</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
</h6>
|
|
|
</div>
|
|
|
|