|
@@ -161,6 +161,46 @@
|
|
|
<div class="d-inline border-left pl-2">
|
|
|
@include('app.practice-management.visit-templates.change-note-visit-template')
|
|
|
</div>
|
|
|
+ @if($note->visit_template_id)
|
|
|
+ <div moe relative class="d-inline border-left pl-2 ml-2">
|
|
|
+ <a start show>Clone</a>
|
|
|
+ <form url="/api/visit/clone" class="mcp-theme-1" left
|
|
|
+ redir="/patients/view/{{$patient->uid}}/notes/view/[data]">
|
|
|
+ <input type="hidden" name="visitToCloneUid" value="{{$note->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">Effective Date</label>
|
|
|
+ <input type="date" name="effectiveDate" class="form-control input-sm" value="{{get_current_date($pro->display_timezone)}}">
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label for="" class="text-secondary text-sm mb-1">New/Follow-up</label>
|
|
|
+ <div class="d-flex align-items-baseline py-1">
|
|
|
+ <label class="mr-3 my-0 d-inline-flex align-items-center c-pointer">
|
|
|
+ <input type="radio" name="newOrFuOrNa" value="NEW" required>
|
|
|
+ <span class="ml-1 text-dark">New</span>
|
|
|
+ </label>
|
|
|
+ <label class="my-0 d-inline-flex align-items-center c-pointer">
|
|
|
+ <input type="radio" name="newOrFuOrNa" value="FU" required checked>
|
|
|
+ <span class="ml-1 text-dark">Follow-Up</span>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="mb-2">
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">Method</label>
|
|
|
+ <select name="noteContactMethod" id="" class="form-control input-sm">
|
|
|
+ <option value="">--select--</option>
|
|
|
+ <option value="VIDEO">Video</option>
|
|
|
+ <option value="AUDIO">Audio</option>
|
|
|
+ <option value="IN_CLINIC">In Clinic</option>
|
|
|
+ <option value="HOUSE_CALL">House Call</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="m-0">
|
|
|
+ <button submit class="btn btn-primary btn-sm">submit</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
@endif
|
|
|
</div>
|
|
|
<div class="px-2 border-left border-right">
|