Revert "Merge branch 'fmc-custom' of github.com:tmccormi/openemr"
[openemr.git] / interface / main / left_nav.php
blob346f58012715d6675fd554802e3d88fc7dca6dc5
1 <?php
2 // Copyright (C) 2006-2010 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // This provides the left navigation frame when $GLOBALS['concurrent_layout']
10 // is true. Following are notes as to what else was changed for this feature:
12 // * interface/main/main_screen.php: the top-level frameset.
13 // * interface/main/finder/patient_select.php: loads stuff when a new patient
14 // is selected.
15 // * interface/patient_file/summary/demographics.php: this is the first frame
16 // loaded when a new patient is chosen, and in turn sets the current pid and
17 // then loads the initial bottom frame.
18 // * interface/patient_file/summary/demographics_full.php: added support for
19 // setting a new pid, needed for going to demographics from billing.
20 // * interface/patient_file/summary/demographics_save.php: redisplay
21 // demographics.php and not the frameset.
22 // * interface/patient_file/summary/summary_bottom.php: new frameset for the
23 // summary, prescriptions and notes for a selected patient, cloned from
24 // patient_summary.php.
25 // * interface/patient_file/encounter/encounter_bottom.php: new frameset for
26 // the selected encounter, mosting coding/billing stuff, cloned from
27 // patient_encounter.php. This will also self-load the superbill pages
28 // as requested.
29 // * interface/usergroup/user_info.php: removed Back link.
30 // * interface/usergroup/admin_frameset.php: new frameset for Admin pages,
31 // cloned from usergroup.php.
32 // * interface/main/onotes/office_comments.php: removed Back link target.
33 // * interface/main/onotes/office_comments_full.php: changed Back link.
34 // * interface/billing/billing_report.php: removed Back link; added logic
35 // to properly go to demographics or to an encounter when requested.
36 // * interface/new/new.php: removed Back link and revised form target.
37 // * interface/new/new_patient_save.php: modified to load the demographics
38 // page to the current frame instead of loading a new frameset.
39 // * interface/patient_file/history/history.php: target change.
40 // * interface/patient_file/history/history_full.php: target changes.
41 // * interface/patient_file/history/history_save.php: target change.
42 // * interface/patient_file/history/encounters.php: link/target changes.
43 // * interface/patient_file/encounter/encounter_top.php: another new frameset
44 // cloned from patient_encounter.php.
45 // * interface/patient_file/encounter/forms.php: link target removal.
46 // * interface/patient_file/encounter/new_form.php: target change.
47 // * interface/forms/newpatient/new.php, view.php, save.php: link/target
48 // changes.
49 // * interface/patient_file/summary/immunizations.php: removed back link.
50 // * interface/patient_file/summary/pnotes.php: changed link targets.
51 // * interface/patient_file/summary/pnotes_full.php: changed back link and
52 // added set_pid logic.
53 // * interface/patient_file/transaction/transactions.php: various changes.
54 // * interface/patient_file/transaction/add_transaction.php: new return js.
55 // * interface/patient_file/encounter/superbill_codes.php: target and link
56 // changes.
57 // * interface/patient_file/encounter/superbill_custom_full.php: target and
58 // link changes.
59 // * interface/patient_file/encounter/diagnosis.php: target changes.
60 // * interface/patient_file/encounter/diagnosis_full.php: target and link
61 // changes.
62 // * interface/main/authorizations/authorizations.php: link and target changes.
63 // * library/api.inc: url change.
64 // * interface/patient_file/summary/rx_frameset.php: new frameset.
65 // * interface/patient_file/summary/rx_left.php: new for prescriptions.
66 // * all encounter forms: remove all instances of "target=Main" and change
67 // all instances of "patient_encounter.php" to "encounter_top.php".
69 // Our find_patient form, when submitted, invokes patient_select.php in the
70 // upper frame. When the patient is selected, demographics.php is invoked
71 // with the set_pid parameter, which establishes the new session pid and also
72 // calls the setPatient() function (below). In this case demographics.php
73 // will also load the summary frameset into the bottom frame, invoking our
74 // loadFrame() and setRadio() functions.
76 // Similarly, we have the concept of selecting an encounter from the
77 // Encounters list, and then having that "stick" until some other encounter
78 // or a new encounter is chosen. We also have a navigation item for creating
79 // a new encounter. interface/patient_file/encounter/encounter_top.php
80 // supports set_encounter to establish an encounter.
82 // TBD: Include active_pid and/or active_encounter in relevant submitted
83 // form data, and add logic to the save routines to make sure they match
84 // the corresponding session values.
86 include_once("../globals.php");
87 include_once($GLOBALS['fileroot']."/library/acl.inc");
88 include_once($GLOBALS['fileroot']."/custom/code_types.inc.php");
89 include_once($GLOBALS['fileroot']."/library/patient.inc");
91 // This array defines the list of primary documents that may be
92 // chosen. Each element value is an array of 3 values:
94 // * Name to appear in the navigation table
95 // * Usage: 0 = global, 1 = patient-specific, 2 = encounter-specific
96 // * The URL relative to the interface directory
99 $primary_docs = array(
100 'ros' => array(xl('Roster') , 0, 'reports/players_report.php?embed=1'),
101 'cal' => array(xl('Calendar') , 0, 'main/main_info.php'),
102 'msg' => array(xl('Messages') , 0, 'main/messages/messages.php'),
103 'pwd' => array(xl('Password') , 0, 'usergroup/user_info.php'),
104 'adm' => array(xl('Admin') , 0, 'usergroup/admin_frameset.php'),
105 'rep' => array(xl('Reports') , 0, 'reports/index.php'),
106 'ono' => array(xl('Ofc Notes') , 0, 'main/onotes/office_comments.php'),
107 'fax' => array(xl('Fax/Scan') , 0, 'fax/faxq.php'),
108 'adb' => array(xl('Addr Bk') , 0, 'usergroup/addrbook_list.php'),
109 'ort' => array(xl('Proc Cat') , 0, 'orders/types.php'),
110 'orb' => array(xl('Proc Bat') , 0, 'orders/orders_results.php?batch=1'),
111 'cht' => array(xl('Chart Trk') , 0, '../custom/chart_tracker.php'),
112 'imp' => array(xl('Import') , 0, '../custom/import.php'),
113 'bil' => array(xl('Billing') , 0, 'billing/billing_report.php'),
114 'sup' => array(xl('Superbill') , 0, 'patient_file/encounter/superbill_custom_full.php'),
115 'aun' => array(xl('Authorizations'), 0, 'main/authorizations/authorizations.php'),
116 'new' => array(xl('New Pt') , 0, 'new/new.php'),
117 'dem' => array(xl('Patient') , 1, "patient_file/summary/demographics.php"),
118 'his' => array(xl('History') , 1, 'patient_file/history/history.php'),
119 'ens' => array(xl('Visit History'), 1, 'patient_file/history/encounters.php'),
120 'nen' => array(xl('Create Visit'), 1, 'forms/newpatient/new.php?autoloaded=1&calenc='),
121 'pre' => array(xl('Rx') , 1, 'patient_file/summary/rx_frameset.php'),
122 'iss' => array(xl('Issues') , 1, 'patient_file/summary/stats_full.php?active=all'),
123 'imm' => array(xl('Immunize') , 1, 'patient_file/summary/immunizations.php'),
124 'doc' => array(xl('Documents') , 1, '../controller.php?document&list&patient_id={PID}'),
125 'orp' => array(xl('Proc Pending Rev'), 1, 'orders/orders_results.php?review=1'),
126 'orr' => array(xl('Proc Res') , 1, 'orders/orders_results.php'),
127 'prp' => array(xl('Pt Report') , 1, 'patient_file/report/patient_report.php'),
128 'pno' => array(xl('Pt Notes') , 1, 'patient_file/summary/pnotes.php'),
129 'tra' => array(xl('Transact') , 1, 'patient_file/transaction/transactions.php'),
130 'sum' => array(xl('Summary') , 1, 'patient_file/summary/summary_bottom.php'),
131 'enc' => array(xl('Encounter') , 2, 'patient_file/encounter/encounter_top.php'),
133 if ($GLOBALS['use_charges_panel'] || $GLOBALS['concurrent_layout'] == 2) {
134 $primary_docs['cod'] = array(xl('Charges'), 2, 'patient_file/encounter/encounter_bottom.php');
137 // This section decides which navigation items will not appear.
139 $disallowed = array();
141 $disallowed['adm'] = !(acl_check('admin', 'calendar') ||
142 acl_check('admin', 'database') || acl_check('admin', 'forms') ||
143 acl_check('admin', 'practice') || acl_check('admin', 'users') ||
144 acl_check('admin', 'acl') || acl_check('admin', 'super') ||
145 acl_check('admin', 'superbill'));
147 $disallowed['bil'] = !(acl_check('acct', 'rep') || acl_check('acct', 'eob') ||
148 acl_check('acct', 'bill'));
150 $tmp = acl_check('patients', 'demo');
151 $disallowed['new'] = !($tmp == 'write' || $tmp == 'addonly');
153 if ( isset ($GLOBALS['hylafax_server']) && isset ($GLOBALS['scanner_output_directory']) ) {
154 $disallowed['fax'] = !($GLOBALS['hylafax_server'] || $GLOBALS['scanner_output_directory']);
157 $disallowed['ros'] = !$GLOBALS['athletic_team'];
159 $disallowed['iss'] = !((acl_check('encounters', 'notes') == 'write' ||
160 acl_check('encounters', 'notes_a') == 'write') &&
161 acl_check('patients', 'med') == 'write');
163 $disallowed['imp'] = $disallowed['new'] ||
164 !is_readable("$webserver_root/custom/import.php");
166 $disallowed['cht'] = !is_readable("$webserver_root/custom/chart_tracker.php");
168 $disallowed['pre'] = !(acl_check('patients', 'med'));
170 // Helper functions for treeview generation.
171 function genTreeLink($frame, $name, $title, $mono=false) {
172 global $primary_docs, $disallowed;
173 if (empty($disallowed[$name])) {
174 $id = $name . $primary_docs[$name][1];
175 echo "<li><a href='' id='$id' onclick=\"";
176 if ($mono) {
177 if ($frame == 'RTop')
178 echo "forceSpec(true,false);";
179 else
180 echo "forceSpec(false,true);";
182 echo "return loadFrame2('$id','$frame','" .
183 $primary_docs[$name][2] . "')\">" . $title . "</a></li>";
186 function genMiscLink($frame, $name, $level, $title, $url, $mono=false) {
187 global $disallowed;
188 if (empty($disallowed[$name])) {
189 $id = $name . $level;
190 echo "<li><a href='' id='$id' onclick=\"";
191 if ($mono) {
192 if ($frame == 'RTop')
193 echo "forceSpec(true,false);";
194 else
195 echo "forceSpec(false,true);";
197 echo "return loadFrame2('$id','$frame','" .
198 $url . "')\">" . $title . "</a></li>";
201 function genPopLink($title, $url, $linkid='') {
202 echo "<li><a href='' ";
203 if ($linkid) echo "id='$linkid' ";
204 echo "onclick=\"return repPopup('$url')\"" .
205 ">" . $title . "</a></li>";
207 function genDualLink($topname, $botname, $title) {
208 global $primary_docs, $disallowed;
209 if (empty($disallowed[$topname]) && empty($disallowed[$botname])) {
210 $topid = $topname . $primary_docs[$topname][1];
211 $botid = $botname . $primary_docs[$botname][1];
212 echo "<li><a href='' id='$topid' " .
213 "onclick=\"return loadFrameDual('$topid','$botid','" .
214 $primary_docs[$topname][2] . "','" .
215 $primary_docs[$botname][2] . "')\">" . $title . "</a></li>";
219 function genPopupsList($style='') {
220 global $disallowed, $webserver_root;
222 <select name='popups' onchange='selpopup(this)' style='background-color:transparent;font-size:9pt;<?php echo $style; ?>'>
223 <option value=''><?php xl('Popups','e'); ?></option>
224 <?php if (!$disallowed['iss']) { ?>
225 <option value='../patient_file/problem_encounter.php'><?php xl('Issues','e'); ?></option>
226 <?php } ?>
227 <?php if (!$GLOBALS['ippf_specific']) { ?>
228 <option value='../../custom/export_xml.php'><?php xl('Export','e'); ?></option>
229 <option value='../../custom/import_xml.php'><?php xl('Import','e'); ?></option>
230 <?php } ?>
231 <?php if ($GLOBALS['athletic_team']) { ?>
232 <option value='../reports/players_report.php'><?php xl('Roster','e'); ?></option>
233 <?php } ;
234 if (!$GLOBALS['disable_calendar']) { ?>
235 <option value='../reports/appointments_report.php?patient=<?php echo $pid ?>'><?php xl('Appts','e'); ?></option>
236 <?php } ;
237 if (file_exists("$webserver_root/custom/refer.php")) { ?>
238 <option value='../../custom/refer.php'><?php xl('Refer','e'); ?></option>
239 <?php } ?>
240 <?php // if (file_exists("$webserver_root/custom/fee_sheet_codes.php")) { ?>
241 <option value='../patient_file/printed_fee_sheet.php?fill=1'><?php xl('Superbill','e'); ?></option>
242 <?php // } ?>
243 <?php if ($GLOBALS['inhouse_pharmacy']) { ?>
244 <option value='../patient_file/front_payment.php'><?php xl('Prepay','e'); ?></option>
245 <option value='../patient_file/pos_checkout.php'><?php xl('Checkout','e'); ?></option>
246 <?php } else { ?>
247 <option value='../patient_file/front_payment.php'><?php xl('Payment','e'); ?></option>
248 <?php } ?>
249 <?php if (is_dir("$webserver_root/custom/letter_templates")) { ?>
250 <option value='../patient_file/letter.php'><?php xl('Letter','e'); ?></option>
251 <?php } ?>
252 </select>
253 <?php
257 <html>
258 <head>
259 <title>Navigation</title>
260 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
262 <style type="text/css">
263 body {
264 font-size:8pt;
265 font-weight:normal;
266 padding: 5px 3px 5px 3px;
268 .smalltext {
269 font-family:sans-serif;
270 font-size:8pt;
271 font-weight:normal;
273 a.navitem, a.navitem:visited {
274 color:#0000ff;
275 font-family:sans-serif;
276 font-size:8pt;
277 font-weight:bold;
279 .inputtext {
280 font-size:9pt;
281 font-weight:normal;
282 border-style:solid;
283 border-width:1px;
284 padding-left:2px;
285 padding-right:2px;
286 border-color: #000000;
287 background-color:transparent;
290 #navigation ul {
291 background-color:transparent;
293 </style>
295 <link rel="stylesheet" href="../../library/js/jquery.treeview-1.3/jquery.treeview.css" />
296 <script src="../../library/js/jquery-1.2.2.min.js" type="text/javascript"></script>
297 <script src="../../library/js/jquery.treeview-1.3/jquery.treeview.min.js" type="text/javascript"></script>
299 <script type="text/javascript" src="../../library/dialog.js"></script>
301 <script language='JavaScript'>
303 // Master values for current pid and encounter.
304 var active_pid = 0;
305 var active_encounter = 0;
307 // Current selections in the top and bottom frames.
308 var topName = '';
309 var botName = '';
311 // Expand and/or collapse frames in response to checkbox clicks.
312 // fnum indicates which checkbox was clicked (1=left, 2=right).
313 function toggleFrame(fnum) {
314 var f = document.forms[0];
315 var fset = top.document.getElementById('fsright');
316 if (!f.cb_top.checked && !f.cb_bot.checked) {
317 if (fnum == 1) f.cb_bot.checked = true;
318 else f.cb_top.checked = true;
320 var rows = f.cb_top.checked ? '*' : '0';
321 rows += f.cb_bot.checked ? ',*' : ',0';
322 fset.rows = rows;
323 fset.rows = rows;
326 // Load the specified url into the specified frame (RTop or RBot).
327 // The URL provided must be relative to interface.
328 function loadFrame(fname, frame, url) {
329 top.restoreSession();
330 var i = url.indexOf('{PID}');
331 if (i >= 0) url = url.substring(0,i) + active_pid + url.substring(i+5);
332 top.frames[frame].location = '<?php echo "$web_root/interface/" ?>' + url;
333 if (frame == 'RTop') topName = fname; else botName = fname;
336 // Load the specified url into a frame to be determined, with the specified
337 // frame as the default; the url must be relative to interface.
338 function loadFrame2(fname, frame, url) {
339 var usage = fname.substring(3);
340 if (active_pid == 0 && usage > '0') {
341 alert('<?php xl('You must first select or add a patient.','e') ?>');
342 return false;
344 if (active_encounter == 0 && usage > '1') {
345 alert('<?php xl('You must first select or create an encounter.','e') ?>');
346 return false;
348 var f = document.forms[0];
349 top.restoreSession();
350 var i = url.indexOf('{PID}');
351 if (i >= 0) url = url.substring(0,i) + active_pid + url.substring(i+5);
352 var fi = f.sel_frame.selectedIndex;
353 if (fi == 1) frame = 'RTop'; else if (fi == 2) frame = 'RBot';
354 if (!f.cb_bot.checked) frame = 'RTop'; else if (!f.cb_top.checked) frame = 'RBot';
355 top.frames[frame].location = '<?php echo "$web_root/interface/" ?>' + url;
356 if (frame == 'RTop') topName = fname; else botName = fname;
357 return false;
360 // Make sure the the top and bottom frames are open or closed, as specified.
361 function forceSpec(istop, isbot) {
362 var f = document.forms[0];
363 if (f.cb_top.checked != istop) {
364 f.cb_top.checked = istop;
365 toggleFrame(1);
367 if (f.cb_bot.checked != isbot) {
368 f.cb_bot.checked = isbot;
369 toggleFrame(2);
373 // Make sure both frames are open.
374 function forceDual() {
375 forceSpec(true, true);
378 // Load the specified url into a frame to be determined, with the specified
379 // frame as the default; the url must be relative to interface.
380 function loadFrameDual(tname, bname, topurl, boturl) {
381 var topusage = tname.substring(3);
382 var botusage = bname.substring(3);
383 if (active_pid == 0 && (topusage > '0' || botusage > '0')) {
384 alert('<?php xl('You must first select or add a patient.','e') ?>');
385 return false;
387 if (active_encounter == 0 && (topusage > '1' || botusage > '1')) {
388 alert('<?php xl('You must first select or create an encounter.','e') ?>');
389 return false;
391 var f = document.forms[0];
392 forceDual();
393 top.restoreSession();
394 var i = topurl.indexOf('{PID}');
395 if (i >= 0) topurl = topurl.substring(0,i) + active_pid + topurl.substring(i+5);
396 i = boturl.indexOf('{PID}');
397 if (i >= 0) boturl = boturl.substring(0,i) + active_pid + boturl.substring(i+5);
398 top.frames.RTop.location = '<?php echo "$web_root/interface/" ?>' + topurl;
399 top.frames.RBot.location = '<?php echo "$web_root/interface/" ?>' + boturl;
400 topName = tname;
401 botName = bname;
402 return false;
405 // Select a designated radio button. raname may be either the radio button
406 // array name (rb_top or rb_bot), or the frame name (RTop or RBot).
407 // You should call this if you directly load a document that does not
408 // correspond to the current radio button setting.
409 function setRadio(raname, rbid) {
410 <?php if ($GLOBALS['concurrent_layout'] != 2) { ?>
411 var f = document.forms[0];
412 if (raname == 'RTop') raname = 'rb_top';
413 if (raname == 'RBot') raname = 'rb_bot';
414 for (var i = 0; i < f[raname].length; ++i) {
415 if (f[raname][i].value.substring(0,3) == rbid) {
416 f[raname][i].checked = true;
417 return true;
420 <?php } ?>
421 return false;
424 // Set disabled/enabled state of radio buttons and associated labels
425 // depending on whether there is an active patient or encounter.
426 function syncRadios() {
427 var f = document.forms[0];
428 <?php if ($GLOBALS['concurrent_layout'] == 2) { ?>
429 var nlinks = document.links.length;
430 for (var i = 0; i < nlinks; ++i) {
431 var lnk = document.links[i];
432 if (lnk.id.length != 4) continue;
433 var usage = lnk.id.substring(3);
434 if (usage == '1' || usage == '2') {
435 var da = false;
436 if (active_pid == 0) da = true;
437 if (active_encounter == 0 && usage > '1') da = true;
438 lnk.style.color = da ? '#888888' : '#0000ff';
441 <?php } else { ?>
442 for (var i = 0; i < f.rb_top.length; ++i) {
443 var da = false;
444 var rb1 = f.rb_top[i];
445 var rb2 = f.rb_bot[i];
446 var rbid = rb1.value.substring(0,3);
447 var usage = rb1.value.substring(3);
448 if (active_pid == 0 && usage > '0') da = true;
449 if (active_encounter == 0 && usage > '1') da = true;
450 // daemon_frame can also set special label colors, so don't mess with
451 // them unless we have to.
452 if (rb1.disabled != da) {
453 rb1.disabled = da;
454 rb2.disabled = da;
455 document.getElementById('lbl_' + rbid).style.color = da ? '#888888' : '#000000';
458 <?php } ?>
459 f.popups.disabled = (active_pid == 0);
462 function goHome() {
463 top.frames['RTop'].location='<?php echo $GLOBALS['default_top_pane']?>';
464 top.frames['RBot'].location='messages/messages.php';
468 var my_window;
469 function initFilter() {
470 my_window = window.open("../../custom/search.php", "mywindow","status=1");
473 function processFilter( fieldString ) {
474 document.getElementById('searchFields').value=fieldString;
475 findPatient( "Filter" );
476 my_window.close();
480 // Process the click to find a patient by name, id, ssn or dob.
481 function findPatient(findby) {
482 var f = document.forms[0];
483 if (! f.cb_top.checked) {
484 f.cb_top.checked = true;
485 toggleFrame(1);
487 f.findBy.value = findby;
488 setRadio('rb_top', 'dem');
489 top.restoreSession();
490 document.find_patient.submit();
493 // Helper function to set the contents of a div.
494 function setSomeContent(id, content, doc) {
495 if (doc.getElementById) {
496 var x = doc.getElementById(id);
497 x.innerHTML = '';
498 x.innerHTML = content;
500 else if (doc.all) {
501 var x = doc.all[id];
502 x.innerHTML = content;
505 function setDivContent(id, content) {
506 setSomeContent(id, content, document);
508 function setTitleContent(id, content) {
509 setSomeContent(id, content, parent.Title.document);
512 // This is called automatically when a new patient is set, to make sure
513 // there are no patient-specific documents showing stale data. If a frame
514 // was just loaded with data for the correct patient, its name is passed so
515 // that it will not be zapped. At this point the new server-side pid is not
516 // assumed to be set, so this function will only load global data.
517 function reloadPatient(frname) {
518 var f = document.forms[0];
519 if (topName.length > 3 && topName.substring(3) > '0' && frname != 'RTop') {
520 loadFrame('cal0','RTop', '<?php echo $primary_docs['cal'][2]; ?>');
521 setRadio('rb_top', 'cal');
523 if (botName.length > 3 && botName.substring(3) > '0' && frname != 'RBot') {
524 loadFrame('ens0','RBot', '<?php echo $primary_docs['ens'][2]; ?>');
525 setRadio('rb_bot', 'ens');
529 // Reload encounter-specific frames, excluding a specified frame. At this
530 // point the new server-side encounter ID may not be set and loading the same
531 // document for the new encounter will not work, so load patient info instead.
532 function reloadEncounter(frname) {
533 var f = document.forms[0];
534 if (topName.length > 3 && topName.substring(3) > '1' && frname != 'RTop') {
535 loadFrame('dem1','RTop', '<?php echo $primary_docs['dem'][2]; ?>');
536 setRadio('rb_top', 'dem');
538 if (botName.length > 3 && botName.substring(3) > '1' && frname != 'RBot') {
539 loadFrame('ens1','RBot', '<?php echo $primary_docs['ens'][2]; ?>');
540 setRadio('rb_bot', 'ens');
544 // Call this to announce that the patient has changed. You must call this
545 // if you change the session PID, so that the navigation frame will show the
546 // correct patient and so that the other frame will be reloaded if it contains
547 // patient-specific information from the previous patient. frname is the name
548 // of the frame that the call came from, so we know to only reload content
549 // from the *other* frame if it is patient-specific.
550 function setPatient(pname, pid, pubpid, frname, str_dob) {
551 var str = '<a href=\'javascript:;\' onclick="parent.left_nav.loadCurrentPatientFromTitle()"><b>' + pname + ' (' + pubpid + ')</b></a>';
552 setDivContent('current_patient', str);
553 setTitleContent('current_patient', str + str_dob);
554 if (pid == active_pid) return;
555 setDivContent('current_encounter', '<b><?php xl('None','e'); ?></b>');
556 active_pid = pid;
557 active_encounter = 0;
558 if (frname) reloadPatient(frname);
559 syncRadios();
560 $(parent.Title.document.getElementById('current_patient_block')).show();
561 var encounter_block = $(parent.Title.document.getElementById('current_encounter_block'));
562 $(encounter_block).hide();
564 // zero out the encounter frame, replace it with the encounter list frame
565 var f = document.forms[0];
566 if ( f.cb_top.checked && f.cb_bot.checked ) {
567 var encounter_frame = getEncounterTargetFrame('enc');
568 if ( encounter_frame != undefined ) {
569 loadFrame('ens0',encounter_frame, '<?php echo $primary_docs['ens'][2]; ?>');
570 setRadio(encounter_frame, 'ens');
575 function loadCurrentPatientFromTitle() {
576 top.frames['RTop'].location='../patient_file/summary/demographics.php';
579 function getEncounterTargetFrame( name ) {
580 var bias = <?php echo $primary_docs[ 'enc' ][ 1 ]?>;
581 var f = document.forms[0];
582 var r = 'RTop';
583 if (f.cb_top.checked && f.cb_bot.checked) {
584 if ( bias == 2 ) {
585 r = 'RBot';
586 } else {
587 r = 'RTop';
589 } else {
590 if ( f.cb_top.checked ) {
591 r = 'RTop';
592 } else if ( f.cb_bot.checked ) {
593 r = 'RBot';
596 return r;
599 // Call this to announce that the encounter has changed. You must call this
600 // if you change the session encounter, so that the navigation frame will
601 // show the correct encounter and so that the other frame will be reloaded if
602 // it contains encounter-specific information from the previous encounter.
603 // frname is the name of the frame that the call came from, so we know to only
604 // reload encounter-specific content from the *other* frame.
605 function setEncounter(edate, eid, frname) {
606 if (eid == active_encounter) return;
607 if (!eid) edate = '<?php xl('None','e'); ?>';
608 var str = '<b>' + edate + '</b>';
609 setDivContent('current_encounter', str);
610 active_encounter = eid;
611 reloadEncounter(frname);
612 syncRadios();
613 var encounter_block = $(parent.Title.document.getElementById('current_encounter_block'));
614 var encounter = $(parent.Title.document.getElementById('current_encounter'));
615 var estr = '<a href=\'javascript:;\' onclick="parent.left_nav.loadCurrentEncounterFromTitle()"><b>' + edate + ' (' + eid + ')</b></a>';
616 encounter.html( estr );
617 encounter_block.show();
620 function loadCurrentEncounterFromTitle() {
621 top.frames[ parent.left_nav.getEncounterTargetFrame('enc') ].location='../patient_file/encounter/encounter_top.php';
624 // You must call this if you delete the active patient (or if for any other
625 // reason you "close" the active patient without opening a new one), so that
626 // the appearance of the navigation frame will be correct and so that any
627 // stale content will be reloaded.
628 function clearPatient() {
629 if (active_pid == 0) return;
630 var f = document.forms[0];
631 active_pid = 0;
632 active_encounter = 0;
633 setDivContent('current_encounter', '<b><?php xl('None','e'); ?></b>');
634 setDivContent('current_patient', '<b><?php xl('None','e'); ?></b>');
635 setTitleContent('current_patient', '<b><?php xl('None','e'); ?></b>');
636 reloadPatient('');
637 syncRadios();
640 // You must call this if you delete the active encounter (or if for any other
641 // reason you "close" the active encounter without opening a new one), so that
642 // the appearance of the navigation frame will be correct and so that any
643 // stale content will be reloaded.
644 function clearEncounter() {
645 if (active_encounter == 0) return;
646 setDivContent('current_encounter', '<b><?php xl('None','e'); ?></b>');
647 active_encounter = 0;
648 reloadEncounter('');
649 syncRadios();
652 // You can call this to make sure the session pid is what we expect.
653 function pidSanityCheck(pid) {
654 if (pid != active_pid) {
655 alert('Session patient ID is ' + pid + ', expecting ' + active_pid +
656 '. This session is unstable and should be abandoned. Do not use ' +
657 'OpenEMR in multiple browser windows!');
658 return false;
660 return true;
663 // You can call this to make sure the session encounter is what we expect.
664 function encounterSanityCheck(eid) {
665 if (eid != active_encounter) {
666 alert('Session encounter ID is ' + eid + ', expecting ' + active_encounter +
667 '. This session is unstable and should be abandoned. Do not use ' +
668 'OpenEMR in multiple browser windows!');
669 return false;
671 return true;
674 // Pop up a report.
675 function repPopup(aurl) {
676 top.restoreSession();
677 window.open('<?php echo "$web_root/interface/reports/" ?>' + aurl, '_blank', 'width=750,height=550,resizable=1,scrollbars=1');
678 return false;
681 // This is invoked to pop up some window when a popup item is selected.
682 function selpopup(selobj) {
683 var i = selobj.selectedIndex;
684 var opt = selobj.options[i];
685 if (i > 0) {
686 var width = 750;
687 var height = 550;
688 if (opt.text == 'Export' || opt.text == 'Import') {
689 width = 500;
690 height = 400;
692 else if (opt.text == 'Refer') {
693 width = 700;
694 height = 500;
696 dlgopen(opt.value, '_blank', width, height);
698 selobj.selectedIndex = 0;
701 // Treeview activation stuff:
702 $(document).ready(function(){
703 $("#navigation").treeview({
704 animated: "fast",
705 collapsed: true,
706 unique: <?php echo $GLOBALS['athletic_team'] ? 'false' : 'true' ?>,
707 toggle: function() {
708 window.console && console.log("%o was toggled", this);
713 </script>
715 </head>
717 <body class="body_nav">
719 <form method='post' name='find_patient' target='RTop'
720 action='<?php echo $rootdir ?>/main/finder/patient_select.php'>
722 <?php if ($GLOBALS['concurrent_layout'] == 2) { ?>
724 <center>
725 <select name='sel_frame' style='background-color:transparent;font-size:9pt;width:<?php echo $GLOBALS['athletic_team'] ? 47 : 100; ?>%;'>
726 <option value='0'><?php xl('Default','e'); ?></option>
727 <option value='1'><?php xl('Top','e'); ?></option>
728 <option value='2'><?php xl('Bottom','e'); ?></option>
729 </select>
730 <?php if ($GLOBALS['athletic_team']) genPopupsList('width:47%'); ?>
731 </center>
733 <table cellpadding='0' cellspacing='0' border='0' width='100%'>
734 <tr>
735 <td class='smalltext' nowrap>
736 <input type='checkbox' name='cb_top' onclick='toggleFrame(1)' checked />
737 <b><?php xl('Top','e') ?></b>
738 </td>
739 <td class='smalltext' align='right' nowrap>
740 <b><?php xl('Bot','e') ?></b>
741 <input type='checkbox' name='cb_bot' onclick='toggleFrame(2)' <?php if (empty($GLOBALS['athletic_team'])) echo 'checked '; ?>/>
742 </td>
743 </tr>
744 </table>
746 <?php if ($GLOBALS['athletic_team']) { // Tree menu for athletic teams ?>
748 <ul id="navigation">
749 <li class="open"><span><?php xl('Patient/Client','e') ?></span>
750 <ul>
751 <li class="open"><span><?php xl('Demographics','e') ?></span>
752 <ul>
753 <?php genTreeLink('RTop','new',($GLOBALS['full_new_patient_form'] ? xl('New/Search') : xl('New'))); ?>
754 <?php genTreeLink('RTop','dem',xl('Current')); ?>
755 </ul>
756 </li>
757 <li class="open"><span><?php xl('Medical Records','e') ?></span>
758 <ul>
759 <?php // genPopLink (xl('Team Roster'),'players_report.php'); ?>
761 <?php genTreeLink('RTop','ros',xl('Weekly Exposures'),true); ?>
762 <?php genMiscLink('RTop','ros','0',xl('Team Roster'),'reports/old_players_report.php?embed=1',true); ?>
763 <?php if (!$GLOBALS['disable_calendar']) genTreeLink('RTop','cal',xl('Calendar'),true); ?>
765 <?php genDualLink('nen','ens',xl('New Consultation')); // with ens on bottom ?>
767 <?php // genDualLink('enc','ens','Current Consultation'); // with ens on bottom ?>
768 <?php genTreeLink('RTop','enc',xl('Current Consultation')); // encounter_top will itself load ens on bottom ?>
770 <?php // genDualLink('dem','ens',xl('Previous Consultations')); // with dem on top ?>
771 <?php genTreeLink('RBot','ens',xl('Previous Consultations'),true); ?>
772 <?php genDualLink('his','ens',xl('Prev Med/Surg Hx')); // with ens on bottom ?>
774 <?php // genTreeLink('RBot','nen',xl('New Allergy')); // nen with Allergy in chief complaint ?>
775 <?php genPopLink(xl('New Allergy'),'../patient_file/summary/add_edit_issue.php?thistype=allergy','xxx1'); ?>
777 <?php genTreeLink('RTop','iss',xl('View/Edit Allergies')); // somehow emphasizing allergies...? ?>
778 <?php genDualLink('iss','ens',xl('Problems/Issues')); // with ens on bottom ?>
779 <?php genDualLink('tra','ens',xl('Transactions/Referrals')); // new transaction form on top and tra list on bottom (or ens if no tra) ?>
780 <?php if (!$GLOBALS['disable_immunizations']) genDualLink('his','imm',xl('Immunizations')); // imm on bottom, his on top ?>
781 <?php if (acl_check('patients', 'med') && !$GLOBALS['disable_prescriptions']) genDualLink('his','pre',xl('Prescriptions')); // pre on bottom, his on top ?>
782 <?php genTreeLink('RTop','doc',xl('Document/Imaging Store'),true); ?>
783 <?php genTreeLink('RTop','prp',xl('Patient Printed Report')); ?>
784 <?php genDualLink('dem','pno',xl('Additional Notes')); // with dem on top ?>
785 <li><a href='' onClick="return repPopup('../patient_file/letter.php')" id='prp1'>Letter</a></li>
786 <?php genPopLink(xl('Address Book'),'../usergroup/addrbook_list.php?popup=1'); ?>
787 </ul>
788 </li>
789 </ul>
790 </li>
791 <li class="open"><span><?php xl('Reports','e') ?></span>
792 <ul>
793 <li class="open"><span><?php xl('Athletic/Injury','e') ?></span>
794 <ul>
795 <?php genTreeLink('RTop','prp',xl('Patient Printed Report')); // also appears above ?>
796 <?php genPopLink(xl('Games/Events Missed'),'absences_report.php'); ?>
797 <?php genPopLink(xl('Injury Surveillance'),'football_injury_report.php'); ?>
798 <?php genPopLink(xl('Team Injury Overview'),'injury_overview_report.php'); ?>
799 </ul>
800 </li>
801 <li><span><?php xl('Patient/Client','e') ?></span>
802 <ul>
803 <?php genPopLink(xl('List'),'patient_list.php'); ?>
804 <?php if (acl_check('patients', 'med') && !$GLOBALS['disable_prescriptions']) genPopLink(xl('Prescriptions'),'prescriptions_report.php'); ?>
805 <?php genPopLink(xl('Referrals'),'referrals_report.php'); ?>
806 </ul>
807 </li>
808 <li><span><?php xl('Visits','e') ?></span>
809 <ul>
810 <?php if (!$GLOBALS['disable_calendar']) genPopLink(xl('Appointments'),'appointments_report.php'); ?>
811 <?php genPopLink(xl('Encounters'),'encounters_report.php'); ?>
812 <?php if (!$GLOBALS['disable_calendar']) genPopLink(xl('Appt-Enc'),'appt_encounter_report.php'); ?>
813 </ul>
814 </li>
815 <li><span><?php xl('General','e') ?></span>
816 <ul>
817 <?php genPopLink(xl('Services'),'services_by_category.php'); ?>
818 <?php if ($GLOBALS['inhouse_pharmacy']) genPopLink(xl('Inventory'),'inventory_list.php'); ?>
819 <?php if ($GLOBALS['inhouse_pharmacy']) genPopLink(xl('Destroyed'),'destroyed_drugs_report.php'); ?>
820 </ul>
821 </li>
822 </ul>
823 </li>
824 <li><span><?php xl('Fees','e') ?></span>
825 <ul>
826 <?php genMiscLink('RBot','cod','2',xl('Fee Sheet'),'patient_file/encounter/load_form.php?formname=fee_sheet'); ?>
827 <?php genMiscLink('RBot','bil','1',xl('Checkout'),'patient_file/pos_checkout.php?framed=1'); ?>
828 </ul>
829 </li>
830 <?php if ($GLOBALS['inhouse_pharmacy'] && acl_check('admin', 'drugs')) genMiscLink('RTop','adm','0',xl('Inventory'),'drugs/drug_inventory.php'); ?>
831 <li><span><?php xl('Administration','e') ?></span>
832 <ul>
833 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Globals'),'super/edit_globals.php'); ?>
834 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Facilities'),'usergroup/facilities.php'); ?>
835 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Users'),'usergroup/usergroup_admin.php'); ?>
836 <?php genTreeLink('RTop','pwd','Users Password Change'); ?>
837 <?php if (acl_check('admin', 'practice' )) genMiscLink('RTop','adm','0',xl('Practice'),'../controller.php?practice_settings'); ?>
838 <?php if (acl_check('admin', 'superbill')) genTreeLink('RTop','sup',xl('Services')); ?>
839 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Layouts'),'super/edit_layout.php'); ?>
840 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Lists'),'super/edit_list.php'); ?>
841 <?php if (acl_check('admin', 'acl' )) genMiscLink('RTop','adm','0',xl('ACL'),'usergroup/adminacl.php'); ?>
842 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('De Identification'),'de_identification_forms/de_identification_screen1.php'); ?>
843 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('Re Identification'),'de_identification_forms/re_identification_input_screen.php'); ?>
844 <li><span><?php xl('Other','e') ?></span>
845 <ul>
846 <?php if (acl_check('admin', 'forms' )) genMiscLink('RTop','adm','0',xl('Forms'),'forms_admin/forms_admin.php'); ?>
847 <?php if (acl_check('admin', 'calendar') && !$GLOBALS['disable_calendar']) genMiscLink('RTop','adm','0',xl('Calendar'),'main/calendar/index.php?module=PostCalendar&type=admin&func=modifyconfig'); ?>
848 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Logs'),'logview/logview.php'); ?>
849 <?php if ( (!$GLOBALS['disable_phpmyadmin_link']) && (acl_check('admin', 'database')) ) genMiscLink('RTop','adm','0',xl('Database'),'../phpmyadmin/index.php'); ?>
850 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Backup'),'main/backup.php'); ?>
851 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Certificates'),'usergroup/ssl_certificates_admin.php'); ?>
852 </ul>
853 </li>
854 </ul>
855 </li>
856 <li><span><?php xl('Miscellaneous','e') ?></span>
857 <ul>
858 <?php genTreeLink('RBot','aun',xl('Authorizations')); ?>
859 <?php genTreeLink('RTop','fax',xl('Fax/Scan')); ?>
860 <?php genTreeLink('RTop','adb',xl('Addr Book')); ?>
861 <?php genTreeLink('RTop','ono',xl('Ofc Notes')); ?>
862 <?php genMiscLink('RTop','adm','0',xl('BatchCom'),'batchcom/batchcom.php'); ?>
863 </ul>
864 </li>
865 </ul>
867 <?php } else { // not athletic team ?>
869 <ul id="navigation">
870 <?php if (!$GLOBALS['disable_calendar'] && !$GLOBALS['ippf_specific']) genTreeLink('RTop','cal',xl('Calendar')); ?>
871 <?php genTreeLink('RBot','msg',xl('Messages')); ?>
872 <li class="open"><span><?php xl('Patient/Client','e') ?></span>
873 <ul>
874 <?php genTreeLink('RTop','new',($GLOBALS['full_new_patient_form'] ? xl('New/Search') : xl('New'))); ?>
875 <?php genTreeLink('RTop','dem',xl('Summary')); ?>
876 <li class="open"><span><?php xl('Visits','e') ?></span>
877 <ul>
878 <?php if ($GLOBALS['ippf_specific'] && !$GLOBALS['disable_calendar']) genTreeLink('RTop','cal',xl('Calendar')); ?>
879 <?php genTreeLink('RBot','nen',xl('Create Visit')); ?>
880 <?php genTreeLink('RBot','enc',xl('Current')); ?>
881 <?php genTreeLink('RBot','ens',xl('Visit History')); ?>
882 </ul>
883 </li>
884 <li><span><?php xl('Visit Forms','e') ?></span>
885 <ul>
886 <?php
887 // Generate the items for visit forms, both traditional and LBF.
889 $lres = sqlStatement("SELECT * FROM list_options " .
890 "WHERE list_id = 'lbfnames' ORDER BY seq, title");
891 if (sqlNumRows($lres)) {
892 while ($lrow = sqlFetchArray($lres)) {
893 $option_id = $lrow['option_id']; // should start with LBF
894 $title = $lrow['title'];
895 genMiscLink('RBot','cod','2',xl_form_title($title),
896 "patient_file/encounter/load_form.php?formname=$option_id");
899 include_once("$srcdir/registry.inc");
900 $reg = getRegistered();
901 if (!empty($reg)) {
902 foreach ($reg as $entry) {
903 $option_id = $entry['directory'];
904 $title = trim($entry['nickname']);
905 if ($option_id == 'fee_sheet' ) continue;
906 if ($option_id == 'newpatient') continue;
907 if (empty($title)) $title = $entry['name'];
908 genMiscLink('RBot','cod','2',xl_form_title($title),
909 "patient_file/encounter/load_form.php?formname=" .
910 urlencode($option_id));
914 </ul>
915 </li>
916 </ul>
917 </li>
918 <li><span><?php xl('Fees','e') ?></span>
919 <ul>
920 <?php genMiscLink('RBot','cod','2',xl('Fee Sheet'),'patient_file/encounter/load_form.php?formname=fee_sheet'); ?>
921 <?php if ($GLOBALS['use_charges_panel']) genTreeLink('RBot','cod',xl('Charges')); ?>
922 <?php genMiscLink('RBot','bil','1',xl('Checkout'),'patient_file/pos_checkout.php?framed=1'); ?>
923 <?php if (! $GLOBALS['simplified_demographics']) genTreeLink('RTop','bil',xl('Billing')); ?>
924 </ul>
925 </li>
926 <?php // if ($GLOBALS['inhouse_pharmacy'] && acl_check('admin', 'drugs')) genMiscLink('RTop','adm','0',xl('Inventory'),'drugs/drug_inventory.php'); ?>
927 <?php if ($GLOBALS['inhouse_pharmacy'] && acl_check('admin', 'drugs')) { ?>
928 <li><span><?php xl('Inventory','e') ?></span>
929 <ul>
930 <?php genMiscLink('RTop','adm','0',xl('Management'),'drugs/drug_inventory.php'); ?>
931 <?php genPopLink(xl('Destroyed'),'destroyed_drugs_report.php'); ?>
932 </ul>
933 </li>
934 <?php } ?>
935 <li><span><?php xl('Procedures','e') ?></span>
936 <ul>
937 <?php genTreeLink('RTop','ort',xl('Configuration')); ?>
938 <?php genTreeLink('RTop','orp',xl('Pending Review')); ?>
939 <?php genTreeLink('RTop','orr',xl('Patient Results')); ?>
940 <?php genTreeLink('RTop','orb',xl('Batch Results')); ?>
941 </ul>
942 </li>
943 <?php if (!$disallowed['adm']) { ?>
944 <li><span><?php xl('Administration','e') ?></span>
945 <ul>
946 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Globals'),'super/edit_globals.php'); ?>
947 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Facilities'),'usergroup/facilities.php'); ?>
948 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Users'),'usergroup/usergroup_admin.php'); ?>
949 <?php
950 // Changed the target URL from practice settings -> Practice Settings - Pharmacy... Dec 09,09 .. Visolve ... This replaces empty frame with Pharmacy window
951 if (acl_check('admin', 'practice' )) genMiscLink('RTop','adm','0',xl('Practice'),'../controller.php?practice_settings&pharmacy&action=list'); ?>
952 <?php if (acl_check('admin', 'superbill')) genTreeLink('RTop','sup',xl('Services')); ?>
953 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Layouts'),'super/edit_layout.php'); ?>
954 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Lists'),'super/edit_list.php'); ?>
955 <?php if (acl_check('admin', 'acl' )) genMiscLink('RTop','adm','0',xl('ACL'),'usergroup/adminacl.php'); ?>
956 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Backup'),'main/backup.php'); ?>
957 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('De Identification'),'de_identification_forms/de_identification_screen1.php'); ?>
958 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('Re Identification'),'de_identification_forms/re_identification_input_screen.php'); ?>
959 <?php if (acl_check('admin', 'super') && !empty($GLOBALS['code_types']['IPPF'])) genMiscLink('RTop','adm','0',xl('Export'),'main/ippf_export.php'); ?>
960 <li><span><?php xl('Other','e') ?></span>
961 <ul>
962 <?php if (acl_check('admin', 'language')) genMiscLink('RTop','adm','0',xl('Language'),'language/language.php'); ?>
963 <?php if (acl_check('admin', 'forms' )) genMiscLink('RTop','adm','0',xl('Forms'),'forms_admin/forms_admin.php'); ?>
964 <?php if (acl_check('admin', 'calendar') && !$GLOBALS['disable_calendar']) genMiscLink('RTop','adm','0',xl('Calendar'),'main/calendar/index.php?module=PostCalendar&type=admin&func=modifyconfig'); ?>
965 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Logs'),'logview/logview.php'); ?>
966 <?php if ( (!$GLOBALS['disable_phpmyadmin_link']) && (acl_check('admin', 'database')) ) genMiscLink('RTop','adm','0',xl('Database'),'../phpmyadmin/index.php'); ?>
967 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Certificates'),'usergroup/ssl_certificates_admin.php'); ?>
968 </ul>
969 </li>
970 </ul>
971 </li>
972 <?php } ?>
973 <li><span><?php xl('Reports','e') ?></span>
974 <ul>
975 <li><span><?php xl('Clients','e') ?></span>
976 <ul>
977 <?php genMiscLink('RTop','rep','0',xl('List'),'reports/patient_list.php'); ?>
978 <?php if (acl_check('patients', 'med') && !$GLOBALS['disable_prescriptions']) genMiscLink('RTop','rep','0',xl('Rx'),'reports/prescriptions_report.php'); ?>
979 <?php genMiscLink('RTop','rep','0',xl('Referrals'),'reports/referrals_report.php'); ?>
980 </ul>
981 </li>
982 <li class="open"><span><?php xl('Visits','e') ?></span>
983 <ul>
984 <?php if (!$GLOBALS['disable_calendar']) genMiscLink('RTop','rep','0',xl('Appointments'),'reports/appointments_report.php'); ?>
985 <?php genMiscLink('RTop','rep','0',xl('Encounters'),'reports/encounters_report.php'); ?>
986 <?php if (!$GLOBALS['disable_calendar']) genMiscLink('RTop','rep','0',xl('Appt-Enc'),'reports/appt_encounter_report.php'); ?>
987 <?php if (empty($GLOBALS['code_types']['IPPF'])) { ?>
988 <?php genMiscLink('RTop','rep','0',xl('Superbill'),'reports/custom_report_range.php'); ?>
989 <?php } ?>
990 <?php if (!$GLOBALS['disable_chart_tracker']) genMiscLink('RTop','rep','0',xl('Chart Activity'),'reports/chart_location_activity.php'); ?>
991 <?php if (!$GLOBALS['disable_chart_tracker']) genMiscLink('RTop','rep','0',xl('Charts Out'),'reports/charts_checked_out.php'); ?>
992 <?php genMiscLink('RTop','rep','0',xl('Services'), 'reports/services_by_category.php'); ?>
993 <?php genMiscLink('RTop','rep','0',xl('Syndromic Surveillance'),'reports/non_reported.php'); ?>
994 </ul>
995 </li>
996 <?php if (acl_check('acct', 'rep_a')) { ?>
997 <li><span><?php xl('Financial','e') ?></span>
998 <ul>
999 <?php genMiscLink('RTop','rep','0',xl('Sales'),'reports/sales_by_item.php'); ?>
1000 <?php genMiscLink('RTop','rep','0',xl('Cash Rec'), 'billing/sl_receipts_report.php'); ?>
1001 <?php genMiscLink('RTop','rep','0',xl('Front Rec'), 'reports/front_receipts_report.php'); ?>
1002 <?php genMiscLink('RTop','rep','0',xl('Pmt Method'), 'reports/receipts_by_method_report.php'); ?>
1003 <?php genMiscLink('RTop','rep','0',xl('Collections'), 'reports/collections_report.php'); ?>
1004 </ul>
1005 </li>
1006 <?php } ?>
1007 <?php if ($GLOBALS['inhouse_pharmacy']) { ?>
1008 <li><span><?php xl('Inventory','e') ?></span>
1009 <ul>
1010 <?php genPopLink(xl('List'),'inventory_list.php'); ?>
1011 <?php genPopLink(xl('Activity'),'inventory_activity.php'); ?>
1012 </ul>
1013 </li>
1014 <?php } ?>
1015 <li><span><?php xl('Procedures','e') ?></span>
1016 <ul>
1017 <?php genPopLink(xl('Pending Res'),'../orders/pending_orders.php'); ?>
1018 <?php if (!empty($GLOBALS['code_types']['IPPF'])) genPopLink(xl('Pending F/U'),'../orders/pending_followup.php'); ?>
1019 <?php genPopLink(xl('Statistics'),'../orders/procedure_stats.php'); ?>
1020 </ul>
1021 </li>
1022 <?php if (! $GLOBALS['simplified_demographics']) { ?>
1023 <li><span><?php xl('Insurance','e') ?></span>
1024 <ul>
1025 <?php genMiscLink('RTop','rep','0',xl('Distribution'),'reports/insurance_allocation_report.php'); ?>
1026 <?php genMiscLink('RTop','rep','0',xl('Indigents'),'billing/indigent_patients_report.php'); ?>
1027 <?php genMiscLink('RTop','rep','0',xl('Unique SP'),'reports/unique_seen_patients_report.php'); ?>
1028 </ul>
1029 </li>
1030 <?php } ?>
1031 <?php if (!empty($GLOBALS['code_types']['IPPF'])) { ?>
1032 <li><span><?php xl('Statistics','e') ?></span>
1033 <ul>
1034 <?php genPopLink(xl('IPPF Stats'),'ippf_statistics.php?t=i'); ?>
1035 <?php genPopLink(xl('GCAC Stats'),'ippf_statistics.php?t=g'); ?>
1036 <?php genPopLink(xl('MA Stats'),'ippf_statistics.php?t=m'); ?>
1037 <?php genPopLink(xl('CYP'),'ippf_cyp_report.php'); ?>
1038 <?php genPopLink(xl('Daily Record'),'ippf_daily.php'); ?>
1039 </ul>
1040 </li>
1041 <?php } // end ippf-specific ?>
1042 <li><span><?php xl('Blank Forms','e') ?></span>
1043 <ul>
1044 <?php genPopLink(xl('Demographics'),'../patient_file/summary/demographics_print.php'); ?>
1045 <?php genPopLink(xl('Fee Sheet'),'../patient_file/printed_fee_sheet.php'); ?>
1046 <?php genPopLink(xl('Referral'),'../patient_file/transaction/print_referral.php'); ?>
1047 <?php
1048 $lres = sqlStatement("SELECT * FROM list_options " .
1049 "WHERE list_id = 'lbfnames' ORDER BY seq, title");
1050 while ($lrow = sqlFetchArray($lres)) {
1051 $option_id = $lrow['option_id']; // should start with LBF
1052 $title = $lrow['title'];
1053 genPopLink($title, "../forms/LBF/printable.php?formname=$option_id");
1056 </ul>
1057 </li>
1058 <?php // genTreeLink('RTop','rep','Other'); ?>
1059 </ul>
1060 </li>
1061 <li><span><?php xl('Miscellaneous','e') ?></span>
1062 <ul>
1063 <?php genTreeLink('RBot','aun',xl('Authorizations')); ?>
1064 <?php genTreeLink('RTop','fax',xl('Fax/Scan')); ?>
1065 <?php genTreeLink('RTop','adb',xl('Addr Book')); ?>
1066 <?php genTreeLink('RTop','ort',xl('Order Catalog')); ?>
1067 <?php if (!$GLOBALS['disable_chart_tracker']) genTreeLink('RTop','cht',xl('Chart Tracker')); ?>
1068 <?php genTreeLink('RTop','ono',xl('Ofc Notes')); ?>
1069 <?php genMiscLink('RTop','adm','0',xl('BatchCom'),'batchcom/batchcom.php'); ?>
1070 <?php genTreeLink('RTop','pwd',xl('Password')); ?>
1071 </ul>
1072 </li>
1073 </ul>
1075 <?php } // end not athletic team ?>
1077 <?php } else { // end ($GLOBALS['concurrent_layout'] == 2) ?>
1079 <table cellpadding='0' cellspacing='0' border='0'>
1080 <tr>
1081 <td colspan='3'>
1082 <table cellpadding='0' cellspacing='0' border='0' width='100%'>
1083 <tr>
1084 <td class='smalltext' nowrap>
1085 <input type='checkbox' name='cb_top' onclick='toggleFrame(1)' checked /><b><?php xl('Top','e') ?></b>
1086 </td>
1087 <td class='smalltext' align='right' nowrap>
1088 <b><?php xl('Bot','e') ?></b><input type='checkbox' name='cb_bot' onclick='toggleFrame(2)' checked />
1089 </td>
1090 </tr>
1091 </table>
1092 </td>
1093 </tr>
1094 <?php
1095 // Builds the table of radio buttons and their labels. Radio button values
1096 // are comprised of the 3-character document id and the 1-digit usage type,
1097 // so that JavaScript can easily access this information.
1098 $default_top_rbid = $GLOBALS['athletic_team'] ? 'ros' : 'cal';
1099 foreach ($primary_docs as $key => $varr) {
1100 if (!empty($disallowed[$key])) continue;
1101 $label = $varr[0];
1102 $usage = $varr[1];
1103 $url = $varr[2];
1104 echo " <tr>\n";
1105 echo " <td class='smalltext'><input type='radio' name='rb_top' value='$key$usage' " .
1106 "onclick=\"loadFrame('$key$usage','RTop','$url')\"";
1107 if ($key == $default_top_rbid) echo " checked";
1108 echo " /></td>\n";
1109 echo " <td class='smalltext' id='lbl_$key'>$label</td>\n";
1110 echo " <td class='smalltext'><input type='radio' name='rb_bot' value='$key$usage' " .
1111 "onclick=\"loadFrame('$key$usage','RBot','$url')\"";
1112 if ($key == 'msg') echo " checked";
1113 echo " /></td>\n";
1114 echo " </tr>\n";
1117 </table>
1119 <?php } ?>
1121 <br /><hr />
1123 <?php
1124 // To use RelayHealth, see comments and parameters in includes/config.php.
1125 if (!empty($GLOBALS['ssi']['rh'])) {
1126 include_once("../../library/ssi.inc");
1127 echo getRelayHealthLink() ."<br /><hr />\n";
1131 <div id='current_patient' style = 'display:none'>
1132 <b><?php xl('None','e'); ?></b>
1133 </div>
1135 <div id='current_encounter' style = 'display:none'>
1136 <b><?php xl('None','e'); ?></b>
1137 </div>
1139 <?php if (!$GLOBALS['athletic_team']) genPopupsList(); ?>
1141 <hr />
1143 <table cellpadding='0' cellspacing='0' border='0'>
1144 <tr>
1145 <td class='smalltext'><?php xl('Find','e') ?>:&nbsp;</td>
1146 <td class='smalltext' colspan='2'>
1147 <input type="entry" size="7" name="patient" class='inputtext' style='width:65px;' />
1148 </td>
1149 </tr>
1150 <tr>
1151 <td class='smalltext'><?php xl('by','e') ?>:</td>
1152 <td class='smalltext'>
1153 <a href="javascript:findPatient('Last');" class="navitem"><?php xl('Name','e'); ?></a>
1154 </td>
1155 <td class='smalltext' align='right'>
1156 <a href="javascript:findPatient('ID');" class="navitem"><?php xl('ID','e'); ?></a>
1157 </td>
1158 </tr>
1159 <tr>
1160 <td class='smalltext'>&nbsp;</td>
1161 <td class='smalltext'>
1162 <a href="javascript:findPatient('SSN');" class="navitem"><?php xl('SSN','e'); ?></a>
1163 </td>
1164 <td class='smalltext' align='right'>
1165 <a href="javascript:findPatient('DOB');" class="navitem"><?php xl('DOB','e'); ?></a>
1166 </td>
1167 </tr>
1169 <tr>
1170 <td class='smalltext'>&nbsp;</td>
1171 <td class='smalltext'>
1172 <a href="javascript:findPatient('Any');" class="navitem"><?php xl('Any', 'e'); ?></a>
1173 </td>
1174 <td class='smalltext' align='right'>
1175 <a href="javascript:initFilter();" class="navitem"><?php xl('Filter', 'e'); ?></a>
1176 </td>
1177 </tr>
1179 </table>
1181 <hr />
1182 <?php if (!empty($GLOBALS['online_support_link'])) { ?>
1183 <a href='<?php echo $GLOBALS["online_support_link"]; ?>' target="_blank" id="support_link" class='css_button' onClick="top.restoreSession()"><span><?php xl('Online Support','e'); ?></span></a>
1184 <?php } ?>
1186 <input type='hidden' name='findBy' value='Last' />
1187 <input type="hidden" name="searchFields" id="searchFields"/>
1189 </form>
1191 <script language='JavaScript'>
1192 syncRadios();
1193 </script>
1195 </body>
1196 </html>