Skip to content

Commit

Permalink
CDR module: Clinical plans feature added and more...
Browse files Browse the repository at this point in the history
1. Clinical plans feature was added. Database tables and
   code added. Can be found in Patient Summary screen Edit
   button for Clinical Reminders at the Plans tab (recommend
   giving your patient a diabetes diagnosis to get a clearer
   idea of what this does). Also note the plan data was added to
   support "Measure Groups" for the CQM/PQMI stuff.
2. Added a feature that shows pertinent clinical reminders that
   are not due. This is not shown on the clinical widget in the
   patient summary screen, but can be seen in the Edit button
   for Clinical Reminders at the Main tab (note the Plans tab
   also shows this).

Both of the above features are useful, and are building blocks
towards support of CQM/PQRI.
  • Loading branch information
bradymiller committed Feb 4, 2011
1 parent 6057eb0 commit 9241d1e
Show file tree
Hide file tree
Showing 4 changed files with 342 additions and 26 deletions.
40 changes: 35 additions & 5 deletions interface/patient_file/reminder/clinical_reminders.php
Expand Up @@ -23,17 +23,16 @@
<head>
<?php html_header_show();?>
<link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">

<link rel="stylesheet" type="text/css" href="../../../library/js/fancybox/jquery.fancybox-1.2.6.css" media="screen" />
<style type="text/css">@import url(../../../library/dynarch_calendar.css);</style>
<script type="text/javascript" src="../../../library/dialog.js"></script>
<script type="text/javascript" src="../../../library/textformat.js"></script>
<script type="text/javascript" src="../../../library/dynarch_calendar.js"></script>
<?php include_once("{$GLOBALS['srcdir']}/dynarch_calendar_en.inc.php"); ?>
<script type="text/javascript" src="../../../library/dynarch_calendar_setup.js"></script>
<script type="text/javascript" src="../../../library/js/jquery.1.3.2.js"></script>
<script type="text/javascript" src="../../../library/js/common.js"></script>
<script type="text/javascript" src="../../../library/js/fancybox/jquery.fancybox-1.2.6.js"></script>
<link rel="stylesheet" type="text/css" href="../../../library/js/fancybox/jquery.fancybox-1.2.6.css" media="screen" />
<script type="text/javascript" src="../../../library/js/jquery.1.3.2.js"></script>
</head>

<?php
Expand Down Expand Up @@ -66,11 +65,25 @@
?>

<ul class="tabNav">
<li class='current'><a href='/play/javascript-tabbed-navigation/'><?php echo htmlspecialchars( xl('Rules'), ENT_NOQUOTES); ?></a></li>
<li class='current'><a href='/play/javascript-tabbed-navigation/'><?php echo htmlspecialchars( xl('Main'), ENT_NOQUOTES); ?></a></li>
<li><a href='/play/javascript-tabbed-navigation/'><?php echo htmlspecialchars( xl('Plans'), ENT_NOQUOTES); ?></a></li>
<li><a href='/play/javascript-tabbed-navigation/'><?php echo htmlspecialchars( xl('Admin'), ENT_NOQUOTES); ?></a></li>
</ul>

<div class="tabContainer">
<div class="tab current" style="height:auto;width:97%;">
<div class="tab current text" style="height:auto;width:97%;">
<?php
clinical_summary_widget($pid,"reminders-all");
?>
</div>

<div class="tab text" style="height:auto;width:97%;">
<?php
clinical_summary_widget($pid,"reminders-all",'',"plans");
?>
</div>

<div class="tab" style="height:auto;width:97%;">
<div id='report_results'>
<table>
<tr>
Expand Down Expand Up @@ -160,6 +173,8 @@
<script type="text/javascript">
$(document).ready(function() {

enable_modals();

tabbify();

$(".passive_alert").change(function() {
Expand All @@ -182,6 +197,21 @@
});
});

$(".medium_modal").fancybox( {
'overlayOpacity' : 0.0,
'showCloseButton' : true,
'frameHeight' : 500,
'frameWidth' : 800,
'centerOnScroll' : false,
'callbackOnClose' : function() {
refreshme();
}
});

function refreshme() {
top.restoreSession();
location.reload();
}

});
</script>
Expand Down
Expand Up @@ -21,7 +21,7 @@
require_once( dirname(__FILE__) . "/../../globals.php");
require_once("$srcdir/clinical_rules.php");

clinical_summary_widget($pid);
clinical_summary_widget($pid,"reminders-due");

?>

0 comments on commit 9241d1e

Please sign in to comment.