|
@@ -390,7 +390,7 @@ $isOldClient = (date_diff(date_create(config('app.point_impl_date')), date_creat
|
|
|
<i class="fa fa-video"></i>
|
|
|
</div>
|
|
|
</div>--}}
|
|
|
- <section>
|
|
|
+ <section class="align-self-start mt-2">
|
|
|
<div class="hbox">
|
|
|
<h4 class="pt-name">{{$patientName}}</h4>
|
|
|
<div class="screen-only mr-1 patient-presence-indicator thumbnail {{$online}}"
|
|
@@ -466,95 +466,6 @@ $isOldClient = (date_diff(date_create(config('app.point_impl_date')), date_creat
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="screen-only">
|
|
|
- <div class=separators>
|
|
|
- <div>
|
|
|
- <label>MCP:</label> {{$mcpName}}
|
|
|
- @if($patient->has_mcp_done_onboarding_visit !== 'YES' && $pro->pro_type == 'ADMIN')
|
|
|
- <div moe class="ml-2 hide-inside-popup">
|
|
|
- <a start show><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/client/putMcp" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">MCP Pro</label>
|
|
|
- <select name="mcpProUid" provider-search data-pro-uid="{{ @$patient->mcp->uid }}"
|
|
|
- class="form-control form-control-sm">
|
|
|
- <option value=""> --select--</option>
|
|
|
- @foreach($pros as $iPro)
|
|
|
- <option
|
|
|
- value="{{$iPro->uid}}" {{ $patient->mcp && $iPro->uid === $patient->mcp->uid ? 'selected' : '' }}>{{$iPro->displayName()}}</option>
|
|
|
- @endforeach
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">
|
|
|
- Submit
|
|
|
- </button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">
|
|
|
- Cancel
|
|
|
- </button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- @if($patient->mcp)
|
|
|
- <div moe class="ml-2 hide-inside-popup">
|
|
|
- <a start show><i class="fa fa-times"></i></a>
|
|
|
- <form url="/api/client/removeMcp" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Remove MCP Pro</label>
|
|
|
-
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit
|
|
|
- </button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">
|
|
|
- Cancel
|
|
|
- </button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- @if($patient->mcp && $patient->mcp->id === $pro->id || $pro->pro_type == 'ADMIN')
|
|
|
- <div>
|
|
|
- <label>Status (mcp):</label>
|
|
|
- <b>{!! $patient->mcpEngagementAssessmentStatus && $patient->mcpEngagementAssessmentStatus->status_category ? ucwords(strtolower(str_replace('_', ' ', $patient->mcpEngagementAssessmentStatus->status_category))) : '<span class="text-danger">Not Set</span>' !!}</b>
|
|
|
- <div moe class="ml-2">
|
|
|
- <a start show><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/client/updateMcpEngagementAssessmentStatus" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm text-secondary mb-1">Category </label>
|
|
|
- <select name="category" class="form-control form-control-sm">
|
|
|
- <option value="NULL">--</option>
|
|
|
- <option value="ACTIVE">ACTIVE</option>
|
|
|
- <option value="INACTIVE">INACTIVE</option>
|
|
|
- <option value="ENTRY_ERROR">ENTRY_ERROR</option>
|
|
|
- <option value="DUMMY">DUMMY</option>
|
|
|
- <option value="DECEASED">DECEASED</option>
|
|
|
- <option value="DUPLICATE">DUPLICATE</option>
|
|
|
- <option value="NO_LONGER_INTERESTED">NO_LONGER_INTERESTED</option>
|
|
|
- <option value="BAD_RECORD">BAD_RECORD</option>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm text-secondary mb-1">Memo</label>
|
|
|
- <input type="text" name="memo" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm text-secondary mb-1">Detail</label>
|
|
|
- <input type="text" name="detail" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
<div>
|
|
|
<div>
|
|
|
@if($patient->has_mcp_done_onboarding_visit !== 'YES')
|
|
@@ -623,126 +534,11 @@ $isOldClient = (date_diff(date_create(config('app.point_impl_date')), date_creat
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="separators">
|
|
|
- <div>
|
|
|
- <label>CC:</label> {{$patient->defaultNaPro ? $patient->defaultNaPro->displayName() : '-' }}
|
|
|
- @if($pro->pro_type == 'ADMIN')
|
|
|
- <div moe class="ml-2 hide-inside-popup">
|
|
|
- <a start show><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/client/putDefaultNaPro" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Care Coordinator</label>
|
|
|
- <select provider-search data-pro-uid="{{ @$patient->defaultNaPro->uid }}"
|
|
|
- name="defaultNaProUid"
|
|
|
- class="form-control form-control-sm">
|
|
|
- <option value=""> --select--</option>
|
|
|
- @foreach($pros as $iPro)
|
|
|
- <option
|
|
|
- value="{{$iPro->uid}}" {{ $patient->pcp && $iPro->uid === $patient->pcp->uid ? 'selected' : '' }}>{{$iPro->displayName()}}</option>
|
|
|
- @endforeach
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit
|
|
|
- </button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">
|
|
|
- Cancel
|
|
|
- </button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- @if($patient->pcp)
|
|
|
- <div moe class="ml-2 hide-inside-popup">
|
|
|
- <a start show><i class="fa fa-times"></i></a>
|
|
|
- <form url="/api/client/removeDefaultNaPro" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Remove Care Coordinator</label>
|
|
|
-
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- @if($patient->defaultNaPro && $patient->defaultNaPro->id === $pro->id || $pro->pro_type == 'ADMIN')
|
|
|
- <div>
|
|
|
- <label>Status (cc):</label>
|
|
|
- <b>{!! $patient->defaultNaEngagementAssessmentStatus && $patient->defaultNaEngagementAssessmentStatus->status_category ? ucwords(strtolower(str_replace('_', ' ', $patient->defaultNaEngagementAssessmentStatus->status_category))) : '<span class="text-danger">Not Set</span>' !!}</b>
|
|
|
- <div moe class="ml-2">
|
|
|
- <a start show><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/client/updateDefaultNaEngagementAssessmentStatus" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm text-secondary mb-1">Category </label>
|
|
|
- <select name="category" class="form-control form-control-sm">
|
|
|
- <option value="NULL">--</option>
|
|
|
- <option value="ACTIVE">ACTIVE</option>
|
|
|
- <option value="INACTIVE">INACTIVE</option>
|
|
|
- <option value="ENTRY_ERROR">ENTRY_ERROR</option>
|
|
|
- <option value="DUMMY">DUMMY</option>
|
|
|
- <option value="DECEASED">DECEASED</option>
|
|
|
- <option value="DUPLICATE">DUPLICATE</option>
|
|
|
- <option value="NO_LONGER_INTERESTED">NO_LONGER_INTERESTED</option>
|
|
|
- <option value="BAD_RECORD">BAD_RECORD</option>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm text-secondary mb-1">Memo</label>
|
|
|
- <input type="text" name="memo" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm text-secondary mb-1">Detail</label>
|
|
|
- <input type="text" name="detail" class="form-control form-control-sm">
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="separators">
|
|
|
- <?php $currentCareMonth = $patient->currentCareMonth(); ?>
|
|
|
- @if($currentCareMonth && $pro->id === $currentCareMonth->mcp_pro_id)
|
|
|
- <div class="">
|
|
|
- <?php $spoken = $currentCareMonth->has_anyone_interacted_with_client_about_rm_outside_note; ?>
|
|
|
- <span class="">Communicated this month:</span>
|
|
|
- <b class="{{$spoken ? 'text-success' : ''}}">
|
|
|
- {{$spoken ? 'Yes' : 'No'}}
|
|
|
- @if(!$spoken)
|
|
|
- <i class="fa fa-exclamation-triangle"></i>
|
|
|
- @else
|
|
|
- <i class="fa fa-check"></i>
|
|
|
- @endif
|
|
|
- </b>
|
|
|
- @if($currentCareMonth->mcp && $pro->id === $currentCareMonth->mcp->id)
|
|
|
- <div moe relative class="ml-1">
|
|
|
- <a href="#" start show class="text-sm"><i class="fa fa-edit"></i></a>
|
|
|
- <form url="/api/careMonth/setHasAnyoneInteractedWithClientAboutRmOutsideNoteTo{{$spoken ? 'False' : 'True'}}" right>
|
|
|
- <input type="hidden" name="uid" value="{{$currentCareMonth->uid}}">
|
|
|
- <p>Set to {{$spoken ? 'No' : 'Yes'}}?</p>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- @endif
|
|
|
+ <div class="">
|
|
|
@if($patient->mcp && $patient->mcp->id === $pro->id || $pro->pro_type == 'ADMIN')
|
|
|
<div>
|
|
|
<label>Follow-up Freq (days):</label>
|
|
|
- <b>{!! is_null($patient->mcp_usual_follow_up_frequency_in_days) ? '<span class="text-danger">Not Set</span>' : $patient->mcp_usual_follow_up_frequency_in_days !!}</b>
|
|
|
+ <span>{!! is_null($patient->mcp_usual_follow_up_frequency_in_days) ? '<span class="text-danger">Not Set</span>' : $patient->mcp_usual_follow_up_frequency_in_days !!}</span>
|
|
|
<div moe relative class="ml-2">
|
|
|
<a href="#" start show class="text-sm"><i class="fa fa-edit"></i></a>
|
|
|
<form url="/api/client/putMcpUsualFollowUpFrequencyInDays">
|
|
@@ -763,6 +559,11 @@ $isOldClient = (date_diff(date_create(config('app.point_impl_date')), date_creat
|
|
|
|
|
|
|
|
|
</div>
|
|
|
+ @if(!$patient->getPrimaryCoverage() || $patient->getPrimaryCoverageStatus() !== 'YES')
|
|
|
+ <div class="mt-2">
|
|
|
+ @include('app.patient.coverage-status')
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
</section>
|
|
|
<section class="hide-inside-popup screen-only vbox mt-2 align-self-start ml-3 pl-3 border-left mcp-theme-1">
|
|
|
<div>
|
|
@@ -827,15 +628,225 @@ $isOldClient = (date_diff(date_create(config('app.point_impl_date')), date_creat
|
|
|
<a href="#" start show class="d-flex align-items-baseline" onclick="return openInRHS('/pro/meet/{{ $patient->uid }}')"><i class="fa fa-video text-sm mr-1"></i><span>Join</span></a>
|
|
|
</div>
|
|
|
</section>
|
|
|
- @if(!$patient->getPrimaryCoverage() || $patient->getPrimaryCoverageStatus() !== 'YES')
|
|
|
- <section class="hide-inside-popup screen-only vbox align-self-start mt-2 mx-2">
|
|
|
- @include('app.patient.coverage-status')
|
|
|
+ <section class="screen-only vbox align-self-start mt-2 mx-2 border-left pl-2">
|
|
|
+ <div>
|
|
|
+ <label>MCP:</label> {{$mcpName}}
|
|
|
+ @if($patient->has_mcp_done_onboarding_visit !== 'YES' && $pro->pro_type == 'ADMIN')
|
|
|
+ <div moe class="ml-2 hide-inside-popup">
|
|
|
+ <a start show><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/client/putMcp" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-secondary text-sm">MCP Pro</label>
|
|
|
+ <select name="mcpProUid" provider-search data-pro-uid="{{ @$patient->mcp->uid }}"
|
|
|
+ class="form-control form-control-sm">
|
|
|
+ <option value=""> --select--</option>
|
|
|
+ @foreach($pros as $iPro)
|
|
|
+ <option
|
|
|
+ value="{{$iPro->uid}}" {{ $patient->mcp && $iPro->uid === $patient->mcp->uid ? 'selected' : '' }}>{{$iPro->displayName()}}</option>
|
|
|
+ @endforeach
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">
|
|
|
+ Submit
|
|
|
+ </button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">
|
|
|
+ Cancel
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @if($patient->mcp)
|
|
|
+ <div moe class="ml-2 hide-inside-popup">
|
|
|
+ <a start show><i class="fa fa-times"></i></a>
|
|
|
+ <form url="/api/client/removeMcp" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-secondary text-sm">Remove MCP Pro</label>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit
|
|
|
+ </button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">
|
|
|
+ Cancel
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ @if($patient->mcp && $patient->mcp->id === $pro->id || $pro->pro_type == 'ADMIN')
|
|
|
+ <div>
|
|
|
+ <label>Status (mcp):</label>
|
|
|
+ <span>{!! $patient->mcpEngagementAssessmentStatus && $patient->mcpEngagementAssessmentStatus->status_category ? ucwords(strtolower(str_replace('_', ' ', $patient->mcpEngagementAssessmentStatus->status_category))) : '<span class="text-danger">Not Set</span>' !!}</span>
|
|
|
+ <div moe class="ml-2">
|
|
|
+ <a start show><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/client/updateMcpEngagementAssessmentStatus" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm text-secondary mb-1">Category </label>
|
|
|
+ <select name="category" class="form-control form-control-sm">
|
|
|
+ <option value="NULL">--</option>
|
|
|
+ <option value="ACTIVE">ACTIVE</option>
|
|
|
+ <option value="INACTIVE">INACTIVE</option>
|
|
|
+ <option value="ENTRY_ERROR">ENTRY_ERROR</option>
|
|
|
+ <option value="DUMMY">DUMMY</option>
|
|
|
+ <option value="DECEASED">DECEASED</option>
|
|
|
+ <option value="DUPLICATE">DUPLICATE</option>
|
|
|
+ <option value="NO_LONGER_INTERESTED">NO_LONGER_INTERESTED</option>
|
|
|
+ <option value="BAD_RECORD">BAD_RECORD</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm text-secondary mb-1">Memo</label>
|
|
|
+ <input type="text" name="memo" class="form-control form-control-sm">
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm text-secondary mb-1">Detail</label>
|
|
|
+ <input type="text" name="detail" class="form-control form-control-sm">
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ <div>
|
|
|
+ <label>CC:</label> {{$patient->defaultNaPro ? $patient->defaultNaPro->displayName() : '-' }}
|
|
|
+ @if($pro->pro_type == 'ADMIN')
|
|
|
+ <div moe class="ml-2 hide-inside-popup">
|
|
|
+ <a start show><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/client/putDefaultNaPro" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-secondary text-sm">Care Coordinator</label>
|
|
|
+ <select provider-search data-pro-uid="{{ @$patient->defaultNaPro->uid }}"
|
|
|
+ name="defaultNaProUid"
|
|
|
+ class="form-control form-control-sm">
|
|
|
+ <option value=""> --select--</option>
|
|
|
+ @foreach($pros as $iPro)
|
|
|
+ <option
|
|
|
+ value="{{$iPro->uid}}" {{ $patient->pcp && $iPro->uid === $patient->pcp->uid ? 'selected' : '' }}>{{$iPro->displayName()}}</option>
|
|
|
+ @endforeach
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit
|
|
|
+ </button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">
|
|
|
+ Cancel
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @if($patient->pcp)
|
|
|
+ <div moe class="ml-2 hide-inside-popup">
|
|
|
+ <a start show><i class="fa fa-times"></i></a>
|
|
|
+ <form url="/api/client/removeDefaultNaPro" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-secondary text-sm">Remove Care Coordinator</label>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ @if($patient->defaultNaPro && $patient->defaultNaPro->id === $pro->id || $pro->pro_type == 'ADMIN')
|
|
|
+ <div>
|
|
|
+ <label>Status (cc):</label>
|
|
|
+ <span>{!! $patient->defaultNaEngagementAssessmentStatus && $patient->defaultNaEngagementAssessmentStatus->status_category ? ucwords(strtolower(str_replace('_', ' ', $patient->defaultNaEngagementAssessmentStatus->status_category))) : '<span class="text-danger">Not Set</span>' !!}</span>
|
|
|
+ <div moe class="ml-2">
|
|
|
+ <a start show><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/client/updateDefaultNaEngagementAssessmentStatus" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm text-secondary mb-1">Category </label>
|
|
|
+ <select name="category" class="form-control form-control-sm">
|
|
|
+ <option value="NULL">--</option>
|
|
|
+ <option value="ACTIVE">ACTIVE</option>
|
|
|
+ <option value="INACTIVE">INACTIVE</option>
|
|
|
+ <option value="ENTRY_ERROR">ENTRY_ERROR</option>
|
|
|
+ <option value="DUMMY">DUMMY</option>
|
|
|
+ <option value="DECEASED">DECEASED</option>
|
|
|
+ <option value="DUPLICATE">DUPLICATE</option>
|
|
|
+ <option value="NO_LONGER_INTERESTED">NO_LONGER_INTERESTED</option>
|
|
|
+ <option value="BAD_RECORD">BAD_RECORD</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm text-secondary mb-1">Memo</label>
|
|
|
+ <input type="text" name="memo" class="form-control form-control-sm">
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm text-secondary mb-1">Detail</label>
|
|
|
+ <input type="text" name="detail" class="form-control form-control-sm">
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
</section>
|
|
|
- @endif
|
|
|
+ <section class="screen-only vbox align-self-start mt-2 mx-2 border-left pl-2 mcp-theme-1">
|
|
|
+ <div>Cell. BP: <b>{{$patient->hasBPDevice()?'Yes':'No'}}</b></div>
|
|
|
+ @if($patient->most_recent_cellular_bp_sbp_mm_hg && $patient->most_recent_cellular_bp_dbp_mm_hg)
|
|
|
+ <div>Last BP:
|
|
|
+ <b>{{$patient->most_recent_cellular_bp_sbp_mm_hg ?: '-'}}/{{$patient->most_recent_cellular_bp_dbp_mm_hg ?: '-'}}</b>
|
|
|
+ @if($patient->most_recent_cellular_bp_measurement_at)
|
|
|
+ <span class="text-sm text-secondary text-nowrap ml-1"
|
|
|
+ title="{{friendly_date_time($patient->most_recent_cellular_bp_measurement_at)}}">({{friendly_date($patient->most_recent_cellular_bp_measurement_at)}})</span>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ <div>Wt. Scale: <b>{{$patient->hasWeightScaleDevice()?'Yes':'No'}}</b></div>
|
|
|
+ @if($patient->most_recent_cellular_weight_value)
|
|
|
+ <div>Last Wt.:
|
|
|
+ <b>{{round($patient->most_recent_cellular_weight_value, 1)}}</b>
|
|
|
+ @if($patient->most_recent_cellular_weight_measurement_at)
|
|
|
+ <span class="text-sm text-secondary text-nowrap ml-1"
|
|
|
+ title="{{friendly_date_time($patient->most_recent_cellular_weight_measurement_at)}}">({{friendly_date($patient->most_recent_cellular_weight_measurement_at)}})</span>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
|
|
|
+ <?php $currentCareMonth = $patient->currentCareMonth(); ?>
|
|
|
+ @if($currentCareMonth && ($pro->pro_type === 'ADMIN' || $pro->id === $currentCareMonth->mcp_pro_id))
|
|
|
+ <div class="text-primary c-pointer"
|
|
|
+ open-in-stag-popup
|
|
|
+ mc-initer="care-month-dashboard-{{$patient->uid}}"
|
|
|
+ title="Care Month: {{friendly_month($currentCareMonth->start_date)}}"
|
|
|
+ popup-style="overflow-visible"
|
|
|
+ href="/patients/view/{{ $patient->uid }}/care-months/view/{{$currentCareMonth->uid}}">
|
|
|
+ <?php $spoken = $currentCareMonth->has_anyone_interacted_with_client_about_rm_outside_note; ?>
|
|
|
+ <span class="">RPM comm. this month:</span>
|
|
|
+ <b class="{{$spoken ? 'text-success' : ''}}">
|
|
|
+ {{$spoken ? 'Yes' : 'No'}}
|
|
|
+ @if(!$spoken)
|
|
|
+ <i class="fa fa-exclamation-triangle"></i>
|
|
|
+ @else
|
|
|
+ <i class="fa fa-check"></i>
|
|
|
+ @endif
|
|
|
+ </b>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ </section>
|
|
|
<section class="mr-4 align-self-start mt-2 ml-auto mcp-theme-1">
|
|
|
<div class="d-flex align-items-start">
|
|
|
- <div class="max-width-300px max-height-200px overflow-auto d-inline-block">
|
|
|
+ <div class="max-width-300px max-height-100px overflow-auto d-inline-block">
|
|
|
<label>Sticky Note:</label> <span class="text-secondary">{{$patient->sticky_note ?? '-' }}</span>
|
|
|
</div>
|
|
|
<div moe relative wide class="ml-2 hide-inside-popup">
|
|
@@ -857,7 +868,7 @@ $isOldClient = (date_diff(date_create(config('app.point_impl_date')), date_creat
|
|
|
</div>
|
|
|
</div>
|
|
|
@if($pro->pro_type === 'ADMIN')
|
|
|
- <div>
|
|
|
+ <div class="mt-1">
|
|
|
<label>Intake Data: - </label> <span class="text-secondary"></span>
|
|
|
@include('app.patient.intake-data.patient-intake-data-form')
|
|
|
</div>
|