|
@@ -50,9 +50,9 @@ foreach ($medications as $medication) {
|
|
|
<div class="ml-auto d-inline-flex align-items-baseline pr-2">
|
|
|
<?php if ($medication->is_removed): ?>
|
|
|
<?php if ($medication->is_removed_due_to_entry_error): ?>
|
|
|
- <span class="font-weight-bold text-secondary" class="mr-2">Entry error</span>
|
|
|
+ <span class="font-weight-bold text-secondary mr-2">Entry error</span>
|
|
|
<?php else: ?>
|
|
|
- <span class="font-weight-bold text-secondary" class="mr-2">Removed on intake</span>
|
|
|
+ <span class="font-weight-bold text-secondary mr-2">Removed on intake</span>
|
|
|
<?php endif; ?>
|
|
|
<div visit-moe>
|
|
|
<form show url="/api/visitPoint/undoMarkRemoved" class="mcp-theme-1">
|
|
@@ -108,9 +108,18 @@ foreach ($medications as $medication) {
|
|
|
|
|
|
</div>
|
|
|
</td>
|
|
|
- <td></td>
|
|
|
- <td></td>
|
|
|
- <td></td>
|
|
|
+ <td>
|
|
|
+ <?php
|
|
|
+ $point = $medication;
|
|
|
+ include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
|
|
|
+ ?>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <?php
|
|
|
+ $point = $medication;
|
|
|
+ include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
|
|
|
+ ?>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
<?php endforeach; ?>
|
|
|
</table>
|