You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.5 KiB
60 lines
2.5 KiB
2 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Easipro class
|
||
|
*
|
||
|
* @package OpenEMR
|
||
|
* @link http://www.open-emr.org
|
||
|
* @author Cassian LUP <cassi.lup@gmail.com>
|
||
|
* @author Jerry Padgett <sjpadgett@gmail.com>
|
||
|
* @author Shiqiang Tao <StrongTSQ@gmail.com>
|
||
|
* @author Brady Miller <brady.g.miller@gmail.com>
|
||
|
* @copyright Copyright (c) 2011 Cassian LUP <cassi.lup@gmail.com>
|
||
|
* @copyright Copyright (c) 2016-2017 Jerry Padgett <sjpadgett@gmail.com>
|
||
|
* @copyright Copyright (c) 2018 Shiqiang Tao <StrongTSQ@gmail.com>
|
||
|
* @copyright Copyright (c) 2020 Brady Miller <brady.g.miller@gmail.com>
|
||
|
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
|
||
|
*/
|
||
|
|
||
|
require_once("verify_session.php");
|
||
|
|
||
|
use OpenEMR\Easipro\Easipro;
|
||
|
|
||
|
$records = Easipro::assessmentsForPatient($pid);
|
||
|
|
||
|
if (!empty($records)) { ?>
|
||
|
<div class="font-weight-bold m-1" onclick="$('.assessment-row').toggleClass('d-none');" role="button">
|
||
|
<i class="font-weight-bold fa fa-eye mr-1"></i><?php echo xlt("My Assessments") ?>
|
||
|
</div>
|
||
|
<div class="table-responsive">
|
||
|
<table class="table table-sm table-striped">
|
||
|
<thead class="assessment-row">
|
||
|
<tr>
|
||
|
<th><?php echo xlt('Name'); ?></th>
|
||
|
<th><?php echo xlt('Deadline (CST)'); ?></th>
|
||
|
<th><?php echo xlt('Status'); ?></th>
|
||
|
<th> </th>
|
||
|
</tr>
|
||
|
</thead><tbody>
|
||
|
<?php
|
||
|
foreach ($records as $row) {
|
||
|
echo "<tr class='assessment-row' id='hide_assessment_" . attr($row['assessment_oid']) . "'>";
|
||
|
echo "<td>" . text($row['form_name']) . "</td>";
|
||
|
echo "<td>" . text($row['deadline']) . "</td>";
|
||
|
echo "<td id='asst_status_" . attr($row['assessment_oid']) . "'>" . text($row['status']) . "</td>";
|
||
|
if ($row['status'] == 'ordered') {
|
||
|
echo "<td id='asst_" . attr($row['assessment_oid']) . "'><button class='btn btn-sm btn-primary' onclick=\"startAssessment(this," . attr_js($row['assessment_oid']) . ")\">" . xlt('Start Assessment') . "</button></td>";
|
||
|
} elseif ($row['status'] == 'in-progress') {
|
||
|
echo "<td>" . xlt('Continue Assessment') . "</td>";
|
||
|
} elseif ($row['status'] == 'completed') {
|
||
|
echo "<td><i class='fa fa-check-circle'></i></td>";
|
||
|
}
|
||
|
echo "</tr>";
|
||
|
}
|
||
|
echo "</tbody></table></div>";
|
||
|
} else {
|
||
|
echo xlt("No Assessment to Display.");
|
||
|
}
|
||
|
echo "<div class='form-row mx-2' id='ContentTitle'></div>";
|
||
|
echo "<div class='container-lg' id='Content'></div>" ?>
|