|
@@ -14,6 +14,7 @@
|
|
<th class="border-0">MCP</th>
|
|
<th class="border-0">MCP</th>
|
|
<th class="border-0">NA</th>
|
|
<th class="border-0">NA</th>
|
|
<th class="border-0">Initiative</th>
|
|
<th class="border-0">Initiative</th>
|
|
|
|
+ <th class="border-9">Status</th>
|
|
<th class="border-0">Source</th>
|
|
<th class="border-0">Source</th>
|
|
@endif
|
|
@endif
|
|
<th class="border-0">Mailing Address State</th>
|
|
<th class="border-0">Mailing Address State</th>
|
|
@@ -42,6 +43,10 @@
|
|
<th class="border-0">Assigned On</th>
|
|
<th class="border-0">Assigned On</th>
|
|
|
|
|
|
<th class="border-0">Email Address</th>
|
|
<th class="border-0">Email Address</th>
|
|
|
|
+ <th class="border-0">Temparature Gun Delivery Status</th>
|
|
|
|
+ <th class="border-0">Pulse Oximeter Delivery Status</th>
|
|
|
|
+ <th class="border-0">Cellular Bp Delivery Status</th>
|
|
|
|
+ <th class="border-0">Weight Scale Delivery Status</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@@ -61,6 +66,7 @@
|
|
<td>{{@$patient->mcp ? $patient->mcp->displayName() : '--'}}</td>
|
|
<td>{{@$patient->mcp ? $patient->mcp->displayName() : '--'}}</td>
|
|
<td>{{@$patient->defaultNaPro ? $patient->defaultNaPro->displayName() : '--'}}</td>
|
|
<td>{{@$patient->defaultNaPro ? $patient->defaultNaPro->displayName() : '--'}}</td>
|
|
<td>{{$patient->initiative}}</td>
|
|
<td>{{$patient->initiative}}</td>
|
|
|
|
+ <td>{{$patient->client_engagement_status_category == 'DUMMY'? 'Test Record': $patient->client_engagement_status_category}}</td>
|
|
<td>{{$patient->source}}</td>
|
|
<td>{{$patient->source}}</td>
|
|
@endif
|
|
@endif
|
|
<td>{{$patient->mailing_address_state}}</td>
|
|
<td>{{$patient->mailing_address_state}}</td>
|
|
@@ -76,8 +82,8 @@
|
|
{{$patient->nextMcpAppointment ? $patient->nextMcpAppointment->status : '-'}}
|
|
{{$patient->nextMcpAppointment ? $patient->nextMcpAppointment->status : '-'}}
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</td>
|
|
- <td>{{ friendlier_date_time($patient->most_recent_cellular_bp_measurement_at, false) }}</td>
|
|
|
|
- <td>{{ friendlier_date_time($patient->most_recent_cellular_weight_measurement_at, false) }}</td>
|
|
|
|
|
|
+ <td>{{ friendlier_date_time($patient->most_recent_cellular_bp_measurement_at) }}</td>
|
|
|
|
+ <td>{{ friendlier_date_time($patient->most_recent_cellular_weight_measurement_at) }}</td>
|
|
<td>
|
|
<td>
|
|
<div title="{{friendly_date_time($patient->created_at)}}">{{friendly_date_time($patient->created_at, false)}}</div>
|
|
<div title="{{friendly_date_time($patient->created_at)}}">{{friendly_date_time($patient->created_at, false)}}</div>
|
|
<div class="mt-1" if-details-view>
|
|
<div class="mt-1" if-details-view>
|
|
@@ -320,6 +326,10 @@
|
|
<td>{{count($patient->cellularMeasurements)}}</td>
|
|
<td>{{count($patient->cellularMeasurements)}}</td>
|
|
<td>{{$patient->getMcpAssignedOn()}}</td>
|
|
<td>{{$patient->getMcpAssignedOn()}}</td>
|
|
<td>{{$patient->email_address}}</td>
|
|
<td>{{$patient->email_address}}</td>
|
|
|
|
+ <td>{{$patient->temparatureGunDeliveryStatus()}}</td>
|
|
|
|
+ <td>{{$patient->pulseOximeterDeliveryStatus()}}</td>
|
|
|
|
+ <td>{{$patient->hasBPDevice()?'DELIVERED':''}}</td>
|
|
|
|
+ <td>{{$patient->hasWeightScaleDevice()?'DELIVERED':''}}</td>
|
|
</tr>
|
|
</tr>
|
|
@endforeach
|
|
@endforeach
|
|
|
|
|