|
@@ -7,35 +7,44 @@ if ($pro->pro_type === 'ADMIN') {
|
|
$performerRole = 'ADMIN';
|
|
$performerRole = 'ADMIN';
|
|
} else if ($careMonth->mcp_pro_id === $pro->id) {
|
|
} else if ($careMonth->mcp_pro_id === $pro->id) {
|
|
$performerRole = 'MCP';
|
|
$performerRole = 'MCP';
|
|
-} else if ($careMonth->rme_pro_id === $pro->id || $careMonth->rmm_pro_id === $pro->id) {
|
|
|
|
- $performerRole = 'NON-HCP';
|
|
|
|
|
|
+} else if ($careMonth->rmm_pro_id === $pro->id) {
|
|
|
|
+ $performerRole = 'RMM';
|
|
}
|
|
}
|
|
|
|
|
|
$unstampedMCP = [];
|
|
$unstampedMCP = [];
|
|
-$unstampedNonHCP = [];
|
|
|
|
|
|
+$unstampedRMM = [];
|
|
foreach ($days as $k => $day) {
|
|
foreach ($days as $k => $day) {
|
|
$unstampedMCP[$k] = [];
|
|
$unstampedMCP[$k] = [];
|
|
- $unstampedNonHCP[$k] = [];
|
|
|
|
|
|
+ $unstampedRMM[$k] = [];
|
|
foreach ($days[$k] as $mIndex => $m) {
|
|
foreach ($days[$k] as $mIndex => $m) {
|
|
if(!$m->has_been_stamped_by_mcp) {
|
|
if(!$m->has_been_stamped_by_mcp) {
|
|
$unstampedMCP[$k][] = $m->measurement_uid;
|
|
$unstampedMCP[$k][] = $m->measurement_uid;
|
|
}
|
|
}
|
|
- if(!$m->has_been_stamped_by_non_hcp) {
|
|
|
|
- $unstampedNonHCP[$k][] = $m->measurement_uid;
|
|
|
|
|
|
+ if(!$m->has_been_stamped_by_rmm) {
|
|
|
|
+ $unstampedRMM[$k][] = $m->measurement_uid;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-// skip days that dont have any unstamped
|
|
|
|
|
|
+// skip days that don't have any unstamped
|
|
$daysWithUnstamped = [];
|
|
$daysWithUnstamped = [];
|
|
foreach ($days as $k => $day) {
|
|
foreach ($days as $k => $day) {
|
|
foreach ($days[$k] as $mIndex => $m) {
|
|
foreach ($days[$k] as $mIndex => $m) {
|
|
- if($performerRole === 'MCP') {
|
|
|
|
|
|
+ if($performerRole === 'ADMIN') {
|
|
|
|
+ $daysWithUnstamped[$k] = $days[$k]; // show ther admin everything
|
|
|
|
+ }
|
|
|
|
+ else if($performerRole === 'MCP') {
|
|
if(!$m->has_been_stamped_by_mcp) {
|
|
if(!$m->has_been_stamped_by_mcp) {
|
|
$daysWithUnstamped[$k] = $days[$k];
|
|
$daysWithUnstamped[$k] = $days[$k];
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ else if($performerRole === 'RMM') {
|
|
|
|
+ if(!$m->has_been_stamped_by_rmm) {
|
|
|
|
+ $daysWithUnstamped[$k] = $days[$k];
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$days = $daysWithUnstamped;
|
|
$days = $daysWithUnstamped;
|
|
@@ -51,371 +60,358 @@ $days = $daysWithUnstamped;
|
|
<b class="ml-1">{{friendly_month($careMonth->start_date)}}</b>
|
|
<b class="ml-1">{{friendly_month($careMonth->start_date)}}</b>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
-@if(!@$onlyMatrix)
|
|
|
|
-<div class="d-flex align-items-baseline mb-3" tab-links>
|
|
|
|
- <a class="tab-link-active" href="#" tab-link="matrix">Matrix</a>
|
|
|
|
- <a class="" href="#" tab-link="measurements-graph">Graph</a>
|
|
|
|
- <a class="" href="#" tab-link="bmi-summary">BMI/Weight Management Settings</a>
|
|
|
|
- <a class="" href="#" tab-link="bp-summary">BP Management Settings</a>
|
|
|
|
-</div>
|
|
|
|
-@endif
|
|
|
|
-<table class="table table-condensed table-sm table-bordered mb-3 cm-tab" tab-key="matrix">
|
|
|
|
- <thead class="bg-light">
|
|
|
|
- <tr>
|
|
|
|
- <th class="px-2 text-secondary align-bottom border-bottom-0" rowspan="2">Date</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0" colspan="4">Measurements</th>
|
|
|
|
- <th class="px-2 text-secondary align-bottom border-bottom-0" rowspan="2">{{$performerRole === 'ADMIN' ? 'Stamp Status' : 'Stamp + Entry'}}</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0" rowspan="2">Entries</th>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <th class="text-secondary text-sm border-bottom-0">Time</th>
|
|
|
|
- <th class="text-secondary text-sm border-bottom-0">Type</th>
|
|
|
|
- <th class="text-secondary text-sm border-bottom-0">Value</th>
|
|
|
|
- <th class="text-secondary text-sm border-bottom-0">Stamp</th>
|
|
|
|
- </tr>
|
|
|
|
- </thead>
|
|
|
|
- <tbody>
|
|
|
|
- @foreach($days as $k => $day)
|
|
|
|
- @foreach($days[$k] as $mIndex => $m)
|
|
|
|
- <tr data-day="{{$k}}">
|
|
|
|
- @if($mIndex === 0)
|
|
|
|
- <td rowspan="{{count($days[$k])}}">
|
|
|
|
- {{$k}}
|
|
|
|
- </td>
|
|
|
|
|
|
+ @if(!@$onlyMatrix)
|
|
|
|
+ <div class="d-flex align-items-baseline mb-3" tab-links>
|
|
|
|
+ <a class="tab-link-active" href="#" tab-link="matrix">Matrix</a>
|
|
|
|
+ <a class="" href="#" tab-link="measurements-graph">Graph</a>
|
|
|
|
+ @if($performerRole === 'ADMIN' || $performerRole === 'MCP')
|
|
|
|
+ <a class="" href="#" tab-link="bmi-summary">BMI/Weight Management Settings</a>
|
|
|
|
+ <a class="" href="#" tab-link="bp-summary">BP Management Settings</a>
|
|
@endif
|
|
@endif
|
|
- <td>{{$m->time}}</td>
|
|
|
|
- <td>
|
|
|
|
- @if($m->label === 'BP')
|
|
|
|
- BP
|
|
|
|
- @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
- Weight
|
|
|
|
- @endif
|
|
|
|
- </td>
|
|
|
|
- <td>
|
|
|
|
- @if($m->label === 'BP')
|
|
|
|
- {{ $m->sbp_mm_hg }}/{{ $m->dbp_mm_hg }}
|
|
|
|
- @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
- {{ round(floatval($m->numeric_value), 2) }} lbs
|
|
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+
|
|
|
|
+ <table class="table table-condensed table-sm table-bordered mb-3 cm-tab" tab-key="matrix">
|
|
|
|
+ <thead class="bg-light">
|
|
|
|
+ <tr>
|
|
|
|
+ <th class="px-2 text-secondary align-bottom border-bottom-0" rowspan="2">Date</th>
|
|
|
|
+ <th class="px-2 text-secondary border-bottom-0" colspan="4">Measurements</th>
|
|
|
|
+ <th class="px-2 text-secondary align-bottom border-bottom-0" rowspan="2">{{$performerRole === 'ADMIN' ? 'Stamp Status' : 'Stamp + Entry'}}</th>
|
|
|
|
+ <th class="px-2 text-secondary border-bottom-0" rowspan="2">Entries</th>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <th class="text-secondary text-sm border-bottom-0">Time</th>
|
|
|
|
+ <th class="text-secondary text-sm border-bottom-0">Type</th>
|
|
|
|
+ <th class="text-secondary text-sm border-bottom-0">Value</th>
|
|
|
|
+ <th class="text-secondary text-sm border-bottom-0">Stamp</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ <tbody>
|
|
|
|
+ @foreach($days as $k => $day)
|
|
|
|
+ @foreach($days[$k] as $mIndex => $m)
|
|
|
|
+ <tr data-day="{{$k}}">
|
|
|
|
+ @if($mIndex === 0)
|
|
|
|
+ <td rowspan="{{count($days[$k])}}">
|
|
|
|
+ {{$k}}
|
|
|
|
+ </td>
|
|
@endif
|
|
@endif
|
|
- </td>
|
|
|
|
- <td>
|
|
|
|
- @if($performerRole === 'MCP')
|
|
|
|
- <div class="width-100px">
|
|
|
|
- @if($m->has_been_stamped_by_mcp)
|
|
|
|
- <span class="text-secondary text-sm">
|
|
|
|
- <i class="fa fa-check"></i>
|
|
|
|
- Stamped
|
|
|
|
- </span>
|
|
|
|
- @else
|
|
|
|
- <div moe relative>
|
|
|
|
- <a href="#" start show>Stamp</a>
|
|
|
|
- <form url="/api/measurement/stamp" right class="width-300px">
|
|
|
|
- <input type="hidden" name="uid" value="{{$m->measurement_uid}}">
|
|
|
|
- <p class="mb-1">Stamp this measurement?</p>
|
|
|
|
- <div class="mt-2 bg-light border p-2">
|
|
|
|
- <div class="mb-1 text-secondary">{{ $m->label }}</div>
|
|
|
|
- <div class="font-weight-bold mb-1">
|
|
|
|
- @if($m->label === 'BP')
|
|
|
|
- {{ round($m->sbp_mm_hg, 2) }}/{{ round($m->dbp_mm_hg, 2) }} mmHg
|
|
|
|
- <span class="font-weight-normal d-inline-block pl-2">Pulse:</span>
|
|
|
|
- {{ $m->value_pulse }} {{ $m->value_irregular === 0?'Irregular':'' }} {{ $m->value_irregular === 1?'Regular':'' }}
|
|
|
|
- @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
- {{ round($m->numeric_value, 2) }} lbs
|
|
|
|
- @else
|
|
|
|
- {{ $m->value }}
|
|
|
|
- @endif
|
|
|
|
- </div>
|
|
|
|
- <div class="text-sm">
|
|
|
|
- {{ $m->date }} {{ $m->time }} EST
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <!--<div class="mb-2 border border-info p-2 mt-2 bg-light">
|
|
|
|
- <span>I have had interactive communication with <b>{{$patient->displayName()}}</b> during this care month.</span>
|
|
|
|
- <div class="d-flex border-top mt-2">
|
|
|
|
- <label class="mt-2 mb-0 d-inline-flex align-items-center mr-3">
|
|
|
|
- <input type="radio" class="mr-2" name="communicatedToPatient" value="true" required>
|
|
|
|
- <span>Yes</span>
|
|
|
|
- </label>
|
|
|
|
- <label class="mt-2 mb-0 d-inline-flex align-items-center">
|
|
|
|
- <input type="radio" class="mr-2" name="communicatedToPatient" value="false" checked required>
|
|
|
|
- <span>No</span>
|
|
|
|
- </label>
|
|
|
|
- </div>
|
|
|
|
- </div>-->
|
|
|
|
- <div class="mb-2">
|
|
|
|
- <label class="mb-1 text-secondary text-sm">Memo</label>
|
|
|
|
- <textarea class="form-control form-control-sm" name="memo"></textarea>
|
|
|
|
- </div>
|
|
|
|
- <div class="form-group m-0">
|
|
|
|
- <button submit class="btn btn-primary btn-sm mr-2">Submit</button>
|
|
|
|
- <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
|
|
- </div>
|
|
|
|
- </form>
|
|
|
|
- </div>
|
|
|
|
- @endif
|
|
|
|
- </div>
|
|
|
|
- @elseif($performerRole === 'NON-HCP')
|
|
|
|
- <div class="width-100px">
|
|
|
|
- @if($m->has_been_stamped_by_non_hcp)
|
|
|
|
- <span class="text-secondary text-sm">
|
|
|
|
- <i class="fa fa-check"></i>
|
|
|
|
- Stamped
|
|
|
|
- </span>
|
|
|
|
- @else
|
|
|
|
- <div moe relative>
|
|
|
|
- <a href="#" start show>Stamp</a>
|
|
|
|
- <form url="/api/measurement/stamp" right class="width-300px">
|
|
|
|
- <input type="hidden" name="uid" value="{{$m->measurement_uid}}">
|
|
|
|
- <p class="mb-1">Stamp this measurement?</p>
|
|
|
|
- <div class="mt-2 bg-light border p-2">
|
|
|
|
- <div class="mb-1 text-secondary">{{ $m->label }}</div>
|
|
|
|
- <div class="font-weight-bold mb-1">
|
|
|
|
- @if($m->label === 'BP')
|
|
|
|
- {{ round($m->sbp_mm_hg, 2) }}/{{ round($m->dbp_mm_hg, 2) }} mmHg
|
|
|
|
- <span class="font-weight-normal d-inline-block pl-2">Pulse:</span>
|
|
|
|
- {{ $m->value_pulse }} {{ $m->value_irregular === 0?'Irregular':'' }} {{ $m->value_irregular === 1?'Regular':'' }}
|
|
|
|
- @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
- {{ round($m->numeric_value, 2) }} lbs
|
|
|
|
- @else
|
|
|
|
- {{ $m->value }}
|
|
|
|
- @endif
|
|
|
|
- </div>
|
|
|
|
- <div class="text-sm">
|
|
|
|
- {{ $m->date }} {{ $m->time }} EST
|
|
|
|
|
|
+ <td>{{$m->time}}</td>
|
|
|
|
+ <td>
|
|
|
|
+ @if($m->label === 'BP')
|
|
|
|
+ BP
|
|
|
|
+ @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
+ Weight
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ <td>
|
|
|
|
+ @if($m->label === 'BP')
|
|
|
|
+ {{ $m->sbp_mm_hg }}/{{ $m->dbp_mm_hg }}
|
|
|
|
+ @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
+ {{ round(floatval($m->numeric_value), 2) }} lbs
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ <td>
|
|
|
|
+ @if($performerRole === 'MCP')
|
|
|
|
+ <div class="width-100px">
|
|
|
|
+ @if($m->has_been_stamped_by_mcp)
|
|
|
|
+ <span class="text-secondary text-sm">
|
|
|
|
+ <i class="fa fa-check"></i>
|
|
|
|
+ Stamped
|
|
|
|
+ </span>
|
|
|
|
+ @else
|
|
|
|
+ <div moe relative>
|
|
|
|
+ <a href="#" start show>Stamp</a>
|
|
|
|
+ <form url="/api/measurement/stamp" right class="width-300px">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$m->measurement_uid}}">
|
|
|
|
+ <p class="mb-1">Stamp this measurement?</p>
|
|
|
|
+ <div class="mt-2 bg-light border p-2">
|
|
|
|
+ <div class="mb-1 text-secondary">{{ $m->label }}</div>
|
|
|
|
+ <div class="font-weight-bold mb-1">
|
|
|
|
+ @if($m->label === 'BP')
|
|
|
|
+ {{ round($m->sbp_mm_hg, 2) }}/{{ round($m->dbp_mm_hg, 2) }} mmHg
|
|
|
|
+ <span class="font-weight-normal d-inline-block pl-2">Pulse:</span>
|
|
|
|
+ {{ $m->value_pulse }} {{ $m->value_irregular === 0?'Irregular':'' }} {{ $m->value_irregular === 1?'Regular':'' }}
|
|
|
|
+ @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
+ {{ round($m->numeric_value, 2) }} lbs
|
|
|
|
+ @else
|
|
|
|
+ {{ $m->value }}
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ <div class="text-sm">
|
|
|
|
+ {{ $m->date }} {{ $m->time }} EST
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
- <div class="mb-2">
|
|
|
|
- <label class="mb-1 text-secondary text-sm">Memo</label>
|
|
|
|
- <textarea class="form-control form-control-sm" name="memo"></textarea>
|
|
|
|
- </div>
|
|
|
|
- <div class="form-group m-0">
|
|
|
|
- <button submit class="btn btn-primary btn-sm mr-2">Submit</button>
|
|
|
|
- <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
|
|
- </div>
|
|
|
|
- </form>
|
|
|
|
- </div>
|
|
|
|
- @endif
|
|
|
|
- </div>
|
|
|
|
- @endif
|
|
|
|
- </td>
|
|
|
|
- @if($mIndex === 0)
|
|
|
|
- <td rowspan="{{count($days[$k])}}" class="px-2">
|
|
|
|
- @if($performerRole === 'ADMIN')
|
|
|
|
- <div class="my-1">
|
|
|
|
- <span class="text-secondary">MCP Unstamped:</span>
|
|
|
|
- <b class="{{count($unstampedMCP[$k]) ? '' : 'text-secondary font-weight-normal'}}">{{count($unstampedMCP[$k])}}</b>
|
|
|
|
- </div>
|
|
|
|
- <div class="">
|
|
|
|
- <span class="text-secondary">Non-HCP Unstamped:</span>
|
|
|
|
- <b class="{{count($unstampedNonHCP[$k]) ? '' : 'text-secondary font-weight-normal'}}">{{count($unstampedNonHCP[$k])}}</b>
|
|
|
|
- </div>
|
|
|
|
- @elseif($performerRole === 'MCP')
|
|
|
|
- @if(count($unstampedMCP[$k]))
|
|
|
|
- <div moe relative>
|
|
|
|
- <a href="#" start show class="mcp-stamp-all">
|
|
|
|
- Stamp All
|
|
|
|
- </a>
|
|
|
|
- <form url="/api/measurement/bulkStamp" class="width-300px">
|
|
|
|
- <input type="hidden" name="clientUid" value="{{$patient->uid}}">
|
|
|
|
- <input type="hidden" class="measurements-uids" value="{{implode('|', $unstampedMCP[$k])}}">
|
|
|
|
- <p class="mb-2 font-weight-bold">Stamp all measurements?</p>
|
|
|
|
- <?php
|
|
|
|
- $dayTotalMinutes = 0;
|
|
|
|
- foreach($m->entries as $entry) {
|
|
|
|
- $dayTotalMinutes += round($entry->time_in_seconds / 60);
|
|
|
|
- }
|
|
|
|
- $autoCheckEntry = false;
|
|
|
|
- $autoCheckEntry = ($dayTotalMinutes < 2 && $patient->is_enrolled_in_rm);
|
|
|
|
- ?>
|
|
|
|
- <div class="p-2 border border-info bg-light mb-2">
|
|
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
<label class="mb-1 text-secondary text-sm">Memo</label>
|
|
<label class="mb-1 text-secondary text-sm">Memo</label>
|
|
- <textarea class="form-control form-control-sm" name="entryMemo">measurements within range</textarea>
|
|
|
|
|
|
+ <textarea class="form-control form-control-sm" name="memo"></textarea>
|
|
</div>
|
|
</div>
|
|
- <div class="">
|
|
|
|
- <label class="mb-0 d-flex align-items-center">
|
|
|
|
- <input type="checkbox" class="shouldAddEntry mr-2 my-0" {{$autoCheckEntry ? 'checked' : ''}}>
|
|
|
|
- <span>Add Time Entry</span>
|
|
|
|
- </label>
|
|
|
|
|
|
+ <div class="form-group m-0">
|
|
|
|
+ <button submit class="btn btn-primary btn-sm mr-2">Submit</button>
|
|
|
|
+ <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
</div>
|
|
</div>
|
|
- <div class="if-adding-time-entry pt-2 d-none">
|
|
|
|
- <div class="mb-2">
|
|
|
|
- <label class="mb-1 text-secondary text-sm">Seconds</label>
|
|
|
|
- <input type="number" min="75" max="300"
|
|
|
|
- class="form-control form-control-sm w-100" name="entryNumberOfSeconds"
|
|
|
|
- value="75" placeholder="Time (secs.)">
|
|
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ @elseif($performerRole === 'RMM')
|
|
|
|
+ <div class="width-100px">
|
|
|
|
+ @if($m->has_been_stamped_by_rmm)
|
|
|
|
+ <span class="text-secondary text-sm">
|
|
|
|
+ <i class="fa fa-check"></i>
|
|
|
|
+ Stamped
|
|
|
|
+ </span>
|
|
|
|
+ @else
|
|
|
|
+ <div moe relative>
|
|
|
|
+ <a href="#" start show>Stamp</a>
|
|
|
|
+ <form url="/api/measurement/stamp" right class="width-300px">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$m->measurement_uid}}">
|
|
|
|
+ <p class="mb-1">Stamp this measurement?</p>
|
|
|
|
+ <div class="mt-2 bg-light border p-2">
|
|
|
|
+ <div class="mb-1 text-secondary">{{ $m->label }}</div>
|
|
|
|
+ <div class="font-weight-bold mb-1">
|
|
|
|
+ @if($m->label === 'BP')
|
|
|
|
+ {{ round($m->sbp_mm_hg, 2) }}/{{ round($m->dbp_mm_hg, 2) }} mmHg
|
|
|
|
+ <span class="font-weight-normal d-inline-block pl-2">Pulse:</span>
|
|
|
|
+ {{ $m->value_pulse }} {{ $m->value_irregular === 0?'Irregular':'' }} {{ $m->value_irregular === 1?'Regular':'' }}
|
|
|
|
+ @elseif($m->label === 'Wt. (lbs.)')
|
|
|
|
+ {{ round($m->numeric_value, 2) }} lbs
|
|
|
|
+ @else
|
|
|
|
+ {{ $m->value }}
|
|
|
|
+ @endif
|
|
</div>
|
|
</div>
|
|
- <div class="mb-2">
|
|
|
|
- <label class="mb-1 text-secondary text-sm">Date</label>
|
|
|
|
- <input type="date" class="form-control form-control-sm w-100"
|
|
|
|
- name="entryDate"
|
|
|
|
- value="{{date('Y-m-d', strtotime($k))}}">
|
|
|
|
|
|
+ <div class="text-sm">
|
|
|
|
+ {{ $m->date }} {{ $m->time }} EST
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
- <div class="form-group m-0">
|
|
|
|
- <button type="button" class="btn btn-primary btn-sm mr-2 btn-bulk-stamp">Next</button>
|
|
|
|
- <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
|
|
- </div>
|
|
|
|
- </form>
|
|
|
|
- </div>
|
|
|
|
- @else
|
|
|
|
- <span class="text-secondary text-sm d-flex align-items-center">
|
|
|
|
- <i class="fa fa-check mr-2"></i>
|
|
|
|
- <span>All Stamped</span>
|
|
|
|
- </span>
|
|
|
|
- @endif
|
|
|
|
- @elseif($performerRole === 'NON-HCP')
|
|
|
|
- @if(count($unstampedNonHCP[$k]))
|
|
|
|
- <div moe relative>
|
|
|
|
- <a href="#" start show class="">
|
|
|
|
- Stamp All
|
|
|
|
- </a>
|
|
|
|
- <form url="/api/measurement/bulkStamp" class="width-300px">
|
|
|
|
- <input type="hidden" name="clientUid" value="{{$patient->uid}}">
|
|
|
|
- <input type="hidden" class="measurements-uids" value="{{implode('|', $unstampedNonHCP[$k])}}">
|
|
|
|
- <p class="mb-2 font-weight-bold">Stamp all measurements?</p>
|
|
|
|
- <?php
|
|
|
|
- $dayTotalMinutes = 0;
|
|
|
|
- foreach($m->entries as $entry) {
|
|
|
|
- $dayTotalMinutes += round($entry->time_in_seconds / 60);
|
|
|
|
- }
|
|
|
|
- $autoCheckEntry = false;
|
|
|
|
- $autoCheckEntry = ($dayTotalMinutes < 2 && $patient->is_enrolled_in_rm);
|
|
|
|
- ?>
|
|
|
|
- <div class="p-2 border border-info bg-light mb-2">
|
|
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
<label class="mb-1 text-secondary text-sm">Memo</label>
|
|
<label class="mb-1 text-secondary text-sm">Memo</label>
|
|
- <textarea class="form-control form-control-sm" name="entryMemo"></textarea>
|
|
|
|
|
|
+ <textarea class="form-control form-control-sm" name="memo"></textarea>
|
|
</div>
|
|
</div>
|
|
- <div class="">
|
|
|
|
- <label class="mb-0 d-flex align-items-center">
|
|
|
|
- <input type="checkbox" class="shouldAddEntry mr-2 my-0" {{$autoCheckEntry ? 'checked' : ''}}>
|
|
|
|
- <span>Add Time Entry</span>
|
|
|
|
- </label>
|
|
|
|
|
|
+ <div class="form-group m-0">
|
|
|
|
+ <button submit class="btn btn-primary btn-sm mr-2">Submit</button>
|
|
|
|
+ <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
</div>
|
|
</div>
|
|
- <div class="if-adding-time-entry pt-2 d-none">
|
|
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ @else
|
|
|
|
+ <div class="text-sm text-secondary">Only the MCP or RMM can stamp!</div>
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
|
|
+ @if($mIndex === 0)
|
|
|
|
+ <td rowspan="{{count($days[$k])}}" class="px-2">
|
|
|
|
+ @if($performerRole === 'ADMIN')
|
|
|
|
+ <div class="my-1">
|
|
|
|
+ <span class="text-secondary">MCP Unstamped:</span>
|
|
|
|
+ <b class="{{count($unstampedMCP[$k]) ? '' : 'text-secondary font-weight-normal'}}">{{count($unstampedMCP[$k])}}</b>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="">
|
|
|
|
+ <span class="text-secondary">RMM Unstamped:</span>
|
|
|
|
+ <b class="{{count($unstampedRMM[$k]) ? '' : 'text-secondary font-weight-normal'}}">{{count($unstampedRMM[$k])}}</b>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="text-sm text-secondary">Only the MCP or RMM can stamp-all!</div>
|
|
|
|
+ @elseif($performerRole === 'MCP')
|
|
|
|
+ @if(count($unstampedMCP[$k]))
|
|
|
|
+ <div moe relative>
|
|
|
|
+ <a href="#" start show class="pro-stamp-all">
|
|
|
|
+ Stamp All
|
|
|
|
+ </a>
|
|
|
|
+ <form url="/api/measurement/bulkStamp" class="width-300px">
|
|
|
|
+ <input type="hidden" name="clientUid" value="{{$patient->uid}}">
|
|
|
|
+ <input type="hidden" class="measurements-uids" value="{{implode('|', $unstampedMCP[$k])}}">
|
|
|
|
+ <p class="mb-2 font-weight-bold">Stamp all measurements?</p>
|
|
|
|
+ <?php
|
|
|
|
+ $dayTotalMinutes = 0;
|
|
|
|
+ foreach($m->entries as $entry) {
|
|
|
|
+ $dayTotalMinutes += round($entry->time_in_seconds / 60);
|
|
|
|
+ }
|
|
|
|
+ $autoCheckEntry = false;
|
|
|
|
+ $autoCheckEntry = ($dayTotalMinutes < 2 && $patient->is_enrolled_in_rm);
|
|
|
|
+ ?>
|
|
|
|
+ <div class="p-2 border border-info bg-light mb-2">
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
- <label class="mb-1 text-secondary text-sm">Seconds</label>
|
|
|
|
- <input type="number" min="75" max="300"
|
|
|
|
- class="form-control form-control-sm w-100" name="entryNumberOfSeconds"
|
|
|
|
- value="75" placeholder="Time (secs.)">
|
|
|
|
|
|
+ <label class="mb-1 text-secondary text-sm">Memo</label>
|
|
|
|
+ <textarea class="form-control form-control-sm" name="entryMemo">measurements within range</textarea>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="">
|
|
|
|
+ <label class="mb-0 d-flex align-items-center">
|
|
|
|
+ <input type="checkbox" class="shouldAddEntry mr-2 my-0" {{$autoCheckEntry ? 'checked' : ''}}>
|
|
|
|
+ <span>Add Time Entry</span>
|
|
|
|
+ </label>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="if-adding-time-entry pt-2 d-none">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="mb-1 text-secondary text-sm">Seconds</label>
|
|
|
|
+ <input type="number" min="75" max="300"
|
|
|
|
+ class="form-control form-control-sm w-100" name="entryNumberOfSeconds"
|
|
|
|
+ value="75" placeholder="Time (secs.)">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="mb-1 text-secondary text-sm">Date</label>
|
|
|
|
+ <input type="date" class="form-control form-control-sm w-100"
|
|
|
|
+ name="entryDate"
|
|
|
|
+ value="{{date('Y-m-d', strtotime($k))}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="form-group m-0">
|
|
|
|
+ <button type="button" class="btn btn-primary btn-sm mr-2 btn-bulk-stamp">Next</button>
|
|
|
|
+ <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @else
|
|
|
|
+ <span class="text-secondary text-sm d-flex align-items-center">
|
|
|
|
+ <i class="fa fa-check mr-2"></i>
|
|
|
|
+ <span>All Stamped</span>
|
|
|
|
+ </span>
|
|
|
|
+ @endif
|
|
|
|
+ @elseif($performerRole === 'RMM')
|
|
|
|
+ @if(count($unstampedRMM[$k]))
|
|
|
|
+ <div moe relative>
|
|
|
|
+ <a href="#" start show class="pro-stamp-all">
|
|
|
|
+ Stamp All
|
|
|
|
+ </a>
|
|
|
|
+ <form url="/api/measurement/bulkStamp" class="width-300px">
|
|
|
|
+ <input type="hidden" name="clientUid" value="{{$patient->uid}}">
|
|
|
|
+ <input type="hidden" class="measurements-uids" value="{{implode('|', $unstampedRMM[$k])}}">
|
|
|
|
+ <p class="mb-2 font-weight-bold">Stamp all measurements?</p>
|
|
|
|
+ <?php
|
|
|
|
+ $dayTotalMinutes = 0;
|
|
|
|
+ foreach($m->entries as $entry) {
|
|
|
|
+ $dayTotalMinutes += round($entry->time_in_seconds / 60);
|
|
|
|
+ }
|
|
|
|
+ $autoCheckEntry = false;
|
|
|
|
+ $autoCheckEntry = ($dayTotalMinutes < 2 && $patient->is_enrolled_in_rm);
|
|
|
|
+ ?>
|
|
|
|
+ <div class="p-2 border border-info bg-light mb-2">
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
- <label class="mb-1 text-secondary text-sm">Date</label>
|
|
|
|
- <input type="date" class="form-control form-control-sm w-100"
|
|
|
|
- name="entryDate"
|
|
|
|
- value="{{date('Y-m-d', strtotime($k))}}">
|
|
|
|
|
|
+ <label class="mb-1 text-secondary text-sm">Memo</label>
|
|
|
|
+ <textarea class="form-control form-control-sm" name="entryMemo"></textarea>
|
|
</div>
|
|
</div>
|
|
- <!--<div class="">
|
|
|
|
- <label class="mb-0 d-flex align-items-baseline">
|
|
|
|
- <input type="checkbox" class="hasAnyoneInteractedWithClientAboutRmOutsideNote mr-2 mt-1">
|
|
|
|
- <span>Has anyone interacted with client about rm outside note?</span>
|
|
|
|
|
|
+ <div class="">
|
|
|
|
+ <label class="mb-0 d-flex align-items-center">
|
|
|
|
+ <input type="checkbox" class="shouldAddEntry mr-2 my-0" {{$autoCheckEntry ? 'checked' : ''}}>
|
|
|
|
+ <span>Add Time Entry</span>
|
|
</label>
|
|
</label>
|
|
- </div>-->
|
|
|
|
|
|
+ </div>
|
|
|
|
+ <div class="if-adding-time-entry pt-2 d-none">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="mb-1 text-secondary text-sm">Seconds</label>
|
|
|
|
+ <input type="number" min="75" max="300"
|
|
|
|
+ class="form-control form-control-sm w-100" name="entryNumberOfSeconds"
|
|
|
|
+ value="75" placeholder="Time (secs.)">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="mb-1 text-secondary text-sm">Date</label>
|
|
|
|
+ <input type="date" class="form-control form-control-sm w-100"
|
|
|
|
+ name="entryDate"
|
|
|
|
+ value="{{date('Y-m-d', strtotime($k))}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
- <div class="form-group m-0">
|
|
|
|
- <button type="button" class="btn btn-primary btn-sm mr-2 btn-bulk-stamp">Submit</button>
|
|
|
|
- <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
|
|
- </div>
|
|
|
|
- </form>
|
|
|
|
- </div>
|
|
|
|
- @else
|
|
|
|
- <span class="text-secondary text-sm d-flex align-items-center">
|
|
|
|
- <i class="fa fa-check mr-2"></i>
|
|
|
|
- <span>All Stamped</span>
|
|
|
|
- </span>
|
|
|
|
|
|
+ <div class="form-group m-0">
|
|
|
|
+ <button type="button" class="btn btn-primary btn-sm mr-2 btn-bulk-stamp">Submit</button>
|
|
|
|
+ <button cancel class="btn btn-default border btn-sm mr-2">Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ @else
|
|
|
|
+ <span class="text-secondary text-sm d-flex align-items-center">
|
|
|
|
+ <i class="fa fa-check mr-2"></i>
|
|
|
|
+ <span>All Stamped</span>
|
|
|
|
+ </span>
|
|
|
|
+ @endif
|
|
@endif
|
|
@endif
|
|
- @endif
|
|
|
|
- </td>
|
|
|
|
- <td rowspan="{{count($days[$k])}}" class="px-2">
|
|
|
|
- @foreach($m->entries as $entry)
|
|
|
|
- <div class="my-1 d-flex align-items-baseline flex-nowrap">
|
|
|
|
- <b class="mr-2">{{round($entry->time_in_seconds / 60)}}m {{round($entry->time_in_seconds % 60)}}s</b>
|
|
|
|
- <span class="text-secondary mr-2 text-nowrap text-sm">({{friendly_date_time($entry->created_at)}})</span>
|
|
|
|
- <span class="text-secondary inline-html-container flex-grow-1">{!! $entry->content_text !!}</span>
|
|
|
|
- </div>
|
|
|
|
- @if($pro->pro_type === 'ADMIN')
|
|
|
|
- <div class="mt-1">
|
|
|
|
- <span class="text-secondary">Pro: </span>
|
|
|
|
- {{$entry->pro ? $entry->pro->displayName() : '-'}}
|
|
|
|
|
|
+ </td>
|
|
|
|
+ <td rowspan="{{count($days[$k])}}" class="px-2">
|
|
|
|
+ @foreach($m->entries as $entry)
|
|
|
|
+ <div class="my-1 d-flex align-items-baseline flex-nowrap">
|
|
|
|
+ <b class="mr-2">{{round($entry->time_in_seconds / 60)}}m {{round($entry->time_in_seconds % 60)}}s</b>
|
|
|
|
+ <span class="text-secondary mr-2 text-nowrap text-sm">({{friendly_date_time($entry->created_at)}})</span>
|
|
|
|
+ <span class="text-secondary inline-html-container flex-grow-1">{!! $entry->content_text !!}</span>
|
|
</div>
|
|
</div>
|
|
- @endif
|
|
|
|
- @endforeach
|
|
|
|
- @if($performerRole === 'MCP' || $performerRole === 'NON-HCP')
|
|
|
|
- <div moe large relative>
|
|
|
|
- <a start show class="py-0 mb-3 text-sm">+ Add</a>
|
|
|
|
- <form url="/api/careMonthEntry/createForRm" right>
|
|
|
|
- <input type="hidden" name="careMonthUid" value="{{ $careMonth->uid }}">
|
|
|
|
- <div class="mb-2">
|
|
|
|
- <div class="row">
|
|
|
|
- <div class="col-4 pr-0">
|
|
|
|
- <select class="form-control form-control-sm w-100" name="proUid" provider-search data-pro-uid="{{ @$pro->uid }}"
|
|
|
|
- required>
|
|
|
|
- <option value="">-- Select Pro --</option>
|
|
|
|
- </select>
|
|
|
|
- </div>
|
|
|
|
- <div class="col-4 pr-0">
|
|
|
|
- <?php
|
|
|
|
- $sD = strtotime($careMonth->start_date);
|
|
|
|
- $y = date('Y', $sD);
|
|
|
|
- $m0 = date('m', $sD);
|
|
|
|
- $d = date('t', $sD);
|
|
|
|
- $yCurrent = date('Y');
|
|
|
|
- $mCurrent = date('m');
|
|
|
|
- ?>
|
|
|
|
- <input autofocus type="date" min="{{ date($y . '-' . $m0 . '-01') }}" max="{{ date($y . '-' . $m0 . '-' . $d) }}"
|
|
|
|
- value="{{$m->dateYMD}}"
|
|
|
|
- class="form-control form-control-sm w-100" name="effectiveDate"
|
|
|
|
- placeholder="Effective Date" required>
|
|
|
|
- </div>
|
|
|
|
- <div class="col-4">
|
|
|
|
- <input type="number" min="0" max="15" class="form-control form-control-sm w-100 cm-time-value" name="timeInSeconds"
|
|
|
|
- value="75" placeholder="Time (secs.)" required>
|
|
|
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
|
+ <div class="mt-1">
|
|
|
|
+ <span class="text-secondary">Pro: </span>
|
|
|
|
+ {{$entry->pro ? $entry->pro->displayName() : '-'}}
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
|
|
+ @endforeach
|
|
|
|
+ @if($performerRole === 'MCP' || $performerRole === 'RMM')
|
|
|
|
+ <div moe large relative>
|
|
|
|
+ <a start show class="py-0 mb-3 text-sm">+ Add</a>
|
|
|
|
+ <form url="/api/careMonthEntry/createForRm" right>
|
|
|
|
+ <input type="hidden" name="careMonthUid" value="{{ $careMonth->uid }}">
|
|
|
|
+ <input type="hidden" name="proUid" value="{{ $pro->uid }}">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <div class="row">
|
|
|
|
+ <div class="col-6 pr-0">
|
|
|
|
+ <?php
|
|
|
|
+ $sD = strtotime($careMonth->start_date);
|
|
|
|
+ $y = date('Y', $sD);
|
|
|
|
+ $m0 = date('m', $sD);
|
|
|
|
+ $d = date('t', $sD);
|
|
|
|
+ $yCurrent = date('Y');
|
|
|
|
+ $mCurrent = date('m');
|
|
|
|
+ ?>
|
|
|
|
+ <input autofocus type="date" min="{{ date($y . '-' . $m0 . '-01') }}" max="{{ date($y . '-' . $m0 . '-' . $d) }}"
|
|
|
|
+ value="{{$m->dateYMD}}"
|
|
|
|
+ class="form-control form-control-sm w-100" name="effectiveDate"
|
|
|
|
+ placeholder="Effective Date" required>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-6">
|
|
|
|
+ <input type="number" min="0" max="15" class="form-control form-control-sm w-100 cm-time-value" name="timeInSeconds"
|
|
|
|
+ value="75" placeholder="Time (secs.)" required>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
- <div class="mb-2">
|
|
|
|
- <div class="row">
|
|
|
|
- <div class="col-12">
|
|
|
|
- <div cm-rte data-content="Reviewed/managed patient measurements" data-name="contentText"></div>
|
|
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <div class="row">
|
|
|
|
+ <div class="col-12">
|
|
|
|
+ <div cm-rte data-content="Reviewed/managed patient measurements" data-name="contentText"></div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- </div>
|
|
|
|
- <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
|
|
|
|
- </td>
|
|
|
|
- @endif
|
|
|
|
- </tr>
|
|
|
|
|
|
+ <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
|
|
|
|
+ </td>
|
|
|
|
+ @endif
|
|
|
|
+ </tr>
|
|
|
|
+ @endforeach
|
|
@endforeach
|
|
@endforeach
|
|
- @endforeach
|
|
|
|
- </tbody>
|
|
|
|
-</table>
|
|
|
|
-<div class="my-3 borde d-none cm-tab cm-tab" tab-key="measurements-graph">
|
|
|
|
- @include('app.patient.care-month._vitals_graph')
|
|
|
|
-</div>
|
|
|
|
-<div class="my-3 border p-3 d-none cm-tab" tab-key="bmi-summary">
|
|
|
|
- <div class="d-flex align-items-baseline mb-2">
|
|
|
|
- <b>BMI/Weight Management</b>
|
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
|
- @include('app.patient.vitals-settings.bmi-management-form')
|
|
|
|
- </div>
|
|
|
|
- @include('app.patient.vitals-settings.bmi-management-summary')
|
|
|
|
-</div>
|
|
|
|
-<div class="my-3 border p-3 d-none cm-tab" tab-key="bp-summary">
|
|
|
|
- <div class="d-flex align-items-baseline mb-2">
|
|
|
|
- <b>BP Management</b>
|
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
|
- @include('app.patient.vitals-settings.bp-management-form')
|
|
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
|
|
+
|
|
|
|
+ <div class="my-3 borde d-none cm-tab cm-tab" tab-key="measurements-graph">
|
|
|
|
+ @include('app.patient.care-month._vitals_graph')
|
|
</div>
|
|
</div>
|
|
- @include('app.patient.vitals-settings.bp-management-summary')
|
|
|
|
-</div>
|
|
|
|
|
|
+
|
|
|
|
+ @if($performerRole === 'MCP' || $performerRole === 'ADMIN')
|
|
|
|
+ <div class="my-3 border p-3 d-none cm-tab" tab-key="bmi-summary">
|
|
|
|
+ <div class="d-flex align-items-baseline mb-2">
|
|
|
|
+ <b>BMI/Weight Management</b>
|
|
|
|
+ <span class="mx-2 text-secondary">|</span>
|
|
|
|
+ @include('app.patient.vitals-settings.bmi-management-form')
|
|
|
|
+ </div>
|
|
|
|
+ @include('app.patient.vitals-settings.bmi-management-summary')
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="my-3 border p-3 d-none cm-tab" tab-key="bp-summary">
|
|
|
|
+ <div class="d-flex align-items-baseline mb-2">
|
|
|
|
+ <b>BP Management</b>
|
|
|
|
+ <span class="mx-2 text-secondary">|</span>
|
|
|
|
+ @include('app.patient.vitals-settings.bp-management-form')
|
|
|
|
+ </div>
|
|
|
|
+ @include('app.patient.vitals-settings.bp-management-summary')
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
</div>
|
|
</div>
|
|
<script>
|
|
<script>
|
|
(function() {
|
|
(function() {
|
|
@@ -482,8 +478,7 @@ $days = $daysWithUnstamped;
|
|
shouldAddEntry: form.find('.shouldAddEntry').prop('checked') ? 1 : 0,
|
|
shouldAddEntry: form.find('.shouldAddEntry').prop('checked') ? 1 : 0,
|
|
entryDate: form.find('[name="entryDate"]').val(),
|
|
entryDate: form.find('[name="entryDate"]').val(),
|
|
entryMemo: form.find('[name="entryMemo"]').val(),
|
|
entryMemo: form.find('[name="entryMemo"]').val(),
|
|
- entryNumberOfSeconds: form.find('[name="entryNumberOfSeconds"]').val() ? +(form.find('[name="entryNumberOfSeconds"]').val()) : 0,
|
|
|
|
- hasAnyoneInteractedWithClientAboutRmOutsideNote: form.find('.hasAnyoneInteractedWithClientAboutRmOutsideNote').prop('checked') ? 1 : 0,
|
|
|
|
|
|
+ entryNumberOfSeconds: form.find('[name="entryNumberOfSeconds"]').val() ? +(form.find('[name="entryNumberOfSeconds"]').val()) : 0
|
|
}
|
|
}
|
|
|
|
|
|
$.ajax({
|
|
$.ajax({
|
|
@@ -525,12 +520,14 @@ $days = $daysWithUnstamped;
|
|
let currentStampAllRow = null;
|
|
let currentStampAllRow = null;
|
|
|
|
|
|
function autoClickNextFirstAll() {
|
|
function autoClickNextFirstAll() {
|
|
- let link = $('#rpm-work-matrix .mcp-stamp-all').first();
|
|
|
|
- if(link.length) {
|
|
|
|
- currentStampAllRow = link.closest('tr');
|
|
|
|
- $('#rpm-work-matrix tr[data-day="' + currentStampAllRow.attr('data-day') + '"]').addClass('bg-warning-mellow');
|
|
|
|
- link.trigger('click');
|
|
|
|
- }
|
|
|
|
|
|
+ @if($performerRole === 'MCP' || $performerRole === 'RMM')
|
|
|
|
+ let link = $('#rpm-work-matrix .pro-stamp-all').first();
|
|
|
|
+ if(link.length) {
|
|
|
|
+ currentStampAllRow = link.closest('tr');
|
|
|
|
+ $('#rpm-work-matrix tr[data-day="' + currentStampAllRow.attr('data-day') + '"]').addClass('bg-warning-mellow');
|
|
|
|
+ link.trigger('click');
|
|
|
|
+ }
|
|
|
|
+ @endif
|
|
}
|
|
}
|
|
|
|
|
|
runMCInitializer('vitalsGraph');
|
|
runMCInitializer('vitalsGraph');
|