|
@@ -117,7 +117,7 @@
|
|
</div>
|
|
</div>
|
|
</div>--}}
|
|
</div>--}}
|
|
|
|
|
|
- <div class="px-2">
|
|
|
|
|
|
+ <div class="px-2 border-right">
|
|
<div class="d-flex">
|
|
<div class="d-flex">
|
|
<span class="mr-2"><span class="text-secondary">HCP:</span> {{$note->hcpPro->name_display}}</span>
|
|
<span class="mr-2"><span class="text-secondary">HCP:</span> {{$note->hcpPro->name_display}}</span>
|
|
@if(!$note->is_signed_by_hcp)
|
|
@if(!$note->is_signed_by_hcp)
|
|
@@ -142,6 +142,60 @@
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
|
|
+ <div class="px-2 border-right">
|
|
|
|
+ <div class="d-flex">
|
|
|
|
+ <span class="mr-2"><span class="text-secondary">Type:</span> {{$note->new_or_fu_or_na ? $note->new_or_fu_or_na : '-'}}</span>
|
|
|
|
+ @if(!$note->is_signed_by_hcp)
|
|
|
|
+ <div moe class="ml-auto">
|
|
|
|
+ <a href="" show start><i class="fa fa-edit"></i></a>
|
|
|
|
+ <form url="/api/note/updateNewOrFuOrNa">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$note->uid}}">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <select name="newOrFuOrNa" class="form-control form-control-sm" required>
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option value="NEW" {{ $note->new_or_fu_or_na === "NEW" ? "selected" : "" }}>New</option>
|
|
|
|
+ <option value="FU" {{ $note->new_or_fu_or_na === "FU" ? "selected" : "" }}>Follow-up</option>
|
|
|
|
+ <option value="NA" {{ $note->new_or_fu_or_na === "NA" ? "selected" : "" }}>N/A</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <button class="btn btn-primary btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="px-2">
|
|
|
|
+ <div class="d-flex">
|
|
|
|
+ <span class="mr-2"><span class="text-secondary">Method:</span> {{$note->method ? $note->method : '-'}}</span>
|
|
|
|
+ @if(!$note->is_signed_by_hcp && $note->new_or_fu_or_na !== 'NEW')
|
|
|
|
+ <div moe class="ml-auto">
|
|
|
|
+ <a href="" show start><i class="fa fa-edit"></i></a>
|
|
|
|
+ <form url="/api/note/updateMethod">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$note->uid}}">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <select name="method" class="form-control form-control-sm" required>
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option value="Video" {{ $note->method === "Video" ? "selected" : "" }}>Video</option>
|
|
|
|
+ <option value="Audio" {{ $note->method === "Audio" ? "selected" : "" }}>Audio</option>
|
|
|
|
+ <option value="In-Clinic" {{ $note->method === "In-Clinic" ? "selected" : "" }}>In-Clinic</option>
|
|
|
|
+ <option value="House Call" {{ $note->method === "House Call" ? "selected" : "" }}>House Call</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-0">
|
|
|
|
+ <button class="btn btn-primary btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
<div class="ml-auto d-flex align-items-start">
|
|
<div class="ml-auto d-flex align-items-start">
|
|
<div class="pr-2">
|
|
<div class="pr-2">
|
|
<div>
|
|
<div>
|