Even more improvements to make code types flexible
[openemr.git] / interface / super / edit_list.php
blob3c1ba3d70343da2d4ba4c9bee8d452727c74a2b0
1 <?php
2 // Copyright (C) 2007-2011 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 require_once("../globals.php");
10 require_once("$srcdir/acl.inc");
11 require_once("$srcdir/formdata.inc.php");
12 require_once("../../custom/code_types.inc.php");
14 $list_id = empty($_REQUEST['list_id']) ? 'language' : $_REQUEST['list_id'];
16 // Check authorization.
17 $thisauth = acl_check('admin', 'super');
18 if (!$thisauth) die(xl('Not authorized'));
20 // If we are saving, then save.
22 if ($_POST['formaction']=='save' && $list_id) {
23 $opt = $_POST['opt'];
24 if ($list_id == 'feesheet') {
25 // special case for the feesheet list
26 sqlStatement("DELETE FROM fee_sheet_options");
27 for ($lino = 1; isset($opt["$lino"]['category']); ++$lino) {
28 $iter = $opt["$lino"];
29 $category = formTrim($iter['category']);
30 $option = formTrim($iter['option']);
31 $codes = formTrim($iter['codes']);
32 if (strlen($category) > 0 && strlen($option) > 0) {
33 sqlInsert("INSERT INTO fee_sheet_options ( " .
34 "fs_category, fs_option, fs_codes " .
35 ") VALUES ( " .
36 "'$category', " .
37 "'$option', " .
38 "'$codes' " .
39 ")");
43 else if ($list_id == 'code_types') {
44 // special case for code types
45 sqlStatement("DELETE FROM code_types");
46 for ($lino = 1; isset($opt["$lino"]['ct_key']); ++$lino) {
47 $iter = $opt["$lino"];
48 $ct_key = formTrim($iter['ct_key']);
49 $ct_id = formTrim($iter['ct_id']) + 0;
50 $ct_seq = formTrim($iter['ct_seq']) + 0;
51 $ct_mod = formTrim($iter['ct_mod']) + 0;
52 $ct_just = formTrim($iter['ct_just']);
53 $ct_mask = formTrim($iter['ct_mask']);
54 $ct_fee = empty($iter['ct_fee' ]) ? 0 : 1;
55 $ct_rel = empty($iter['ct_rel' ]) ? 0 : 1;
56 $ct_nofs = empty($iter['ct_nofs']) ? 0 : 1;
57 $ct_diag = empty($iter['ct_diag']) ? 0 : 1;
58 $ct_active = empty($iter['ct_active' ]) ? 0 : 1;
59 $ct_label = formTrim($iter['ct_label']);
60 $ct_external = formTrim($iter['ct_external']) + 0;
61 $ct_claim = empty($iter['ct_claim']) ? 0 : 1;
62 $ct_proc = empty($iter['ct_proc']) ? 0 : 1;
63 if (strlen($ct_key) > 0 && $ct_id > 0) {
64 sqlInsert("INSERT INTO code_types ( " .
65 "ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_mask, ct_fee, ct_rel, ct_nofs, ct_diag, ct_active, ct_label, ct_external, ct_claim, ct_proc " .
66 ") VALUES ( " .
67 "'$ct_key' , " .
68 "'$ct_id' , " .
69 "'$ct_seq' , " .
70 "'$ct_mod' , " .
71 "'$ct_just', " .
72 "'$ct_mask', " .
73 "'$ct_fee' , " .
74 "'$ct_rel' , " .
75 "'$ct_nofs', " .
76 "'$ct_diag', " .
77 "'$ct_active', " .
78 "'$ct_label', " .
79 "'$ct_external', " .
80 "'$ct_claim', " .
81 "'$ct_proc' " .
82 ")");
86 else {
87 // all other lists
89 // erase lists options and recreate them from the submitted form data
90 sqlStatement("DELETE FROM list_options WHERE list_id = '$list_id'");
91 for ($lino = 1; isset($opt["$lino"]['id']); ++$lino) {
92 $iter = $opt["$lino"];
93 $value = empty($iter['value']) ? 0 : (formTrim($iter['value']) + 0);
94 $id = formTrim($iter['id']);
95 if (strlen($id) > 0) {
97 // Special processing for the immunizations list
98 // Map the entered cvx codes into the immunizations table cvx_code
99 sqlStatement ("UPDATE `immunizations` " .
100 "SET `cvx_code`='".$value."' " .
101 "WHERE `immunization_id`='".$id."'");
103 // Force List Based Form names to start with LBF.
104 if ($list_id == 'lbfnames' && substr($id,0,3) != 'LBF')
105 $id = "LBF$id";
106 sqlInsert("INSERT INTO list_options ( " .
107 "list_id, option_id, title, seq, is_default, option_value, mapping, notes " .
108 ") VALUES ( " .
109 "'$list_id', " .
110 "'" . $id . "', " .
111 "'" . formTrim($iter['title']) . "', " .
112 "'" . formTrim($iter['seq']) . "', " .
113 "'" . formTrim($iter['default']) . "', " .
114 "'" . $value . "', " .
115 "'" . formTrim($iter['mapping']) . "', " .
116 "'" . formTrim($iter['notes']) . "' " .
117 ")");
122 else if ($_POST['formaction']=='addlist') {
123 // make a new list ID from the new list name
124 $newlistID = $_POST['newlistname'];
125 $newlistID = preg_replace("/\W/", "_", $newlistID);
127 // determine the position of this new list
128 $row = sqlQuery("SELECT max(seq) as maxseq FROM list_options WHERE list_id= 'lists'");
130 // add the new list to the list-of-lists
131 sqlInsert("INSERT INTO list_options ( " .
132 "list_id, option_id, title, seq, is_default, option_value " .
133 ") VALUES ( " .
134 "'lists',". // the master list-of-lists
135 "'".$newlistID."',".
136 "'".$_POST['newlistname']."', ".
137 "'".($row['maxseq']+1)."',".
138 "'1', '0')"
141 else if ($_POST['formaction']=='deletelist') {
142 // delete the lists options
143 sqlStatement("DELETE FROM list_options WHERE list_id = '".$_POST['list_id']."'");
144 // delete the list from the master list-of-lists
145 sqlStatement("DELETE FROM list_options WHERE list_id = 'lists' and option_id='".$_POST['list_id']."'");
148 $opt_line_no = 0;
150 // Given a string of multiple instances of code_type|code|selector,
151 // make a description for each.
152 // @TODO Instead should use a function from custom/code_types.inc.php and need to remove casing functions
153 function getCodeDescriptions($codes) {
154 global $code_types;
155 $arrcodes = explode('~', $codes);
156 $s = '';
157 foreach ($arrcodes as $codestring) {
158 if ($codestring === '') continue;
159 $arrcode = explode('|', $codestring);
160 $code_type = $arrcode[0];
161 $code = $arrcode[1];
162 $selector = $arrcode[2];
163 $desc = '';
164 if ($code_type == 'PROD') {
165 $row = sqlQuery("SELECT name FROM drugs WHERE drug_id = '$code' ");
166 $desc = "$code:$selector " . $row['name'];
168 else {
169 $row = sqlQuery("SELECT code_text FROM codes WHERE " .
170 "code_type = '" . $code_types[$code_type]['id'] . "' AND " .
171 "code = '$code' ORDER BY modifier LIMIT 1");
172 $desc = "$code_type:$code " . ucfirst(strtolower($row['code_text']));
174 $desc = str_replace('~', ' ', $desc);
175 if ($s) $s .= '~';
176 $s .= $desc;
178 return $s;
181 // Write one option line to the form.
183 function writeOptionLine($option_id, $title, $seq, $default, $value, $mapping='', $notes='') {
184 global $opt_line_no, $list_id;
185 ++$opt_line_no;
186 $bgcolor = "#" . (($opt_line_no & 1) ? "ddddff" : "ffdddd");
187 $checked = $default ? " checked" : "";
189 echo " <tr bgcolor='$bgcolor'>\n";
191 echo " <td align='center' class='optcell'>";
192 echo "<input type='text' name='opt[$opt_line_no][id]' value='" .
193 htmlspecialchars($option_id, ENT_QUOTES) . "' size='12' maxlength='63' class='optin' />";
194 echo "</td>\n";
196 echo " <td align='center' class='optcell'>";
197 echo "<input type='text' name='opt[$opt_line_no][title]' value='" .
198 htmlspecialchars($title, ENT_QUOTES) . "' size='20' maxlength='63' class='optin' />";
199 echo "</td>\n";
201 // if not english and translating lists then show the translation
202 if ($GLOBALS['translate_lists'] && $_SESSION['language_choice'] > 1) {
203 echo " <td align='center' class='translation'>" . (htmlspecialchars( xl($title), ENT_QUOTES)) . "</td>\n";
206 echo " <td align='center' class='optcell'>";
207 echo "<input type='text' name='opt[$opt_line_no][seq]' value='" .
208 htmlspecialchars($seq, ENT_QUOTES) . "' size='4' maxlength='10' class='optin' />";
209 echo "</td>\n";
211 echo " <td align='center' class='optcell'>";
212 echo "<input type='checkbox' name='opt[$opt_line_no][default]' value='1' " .
213 "onclick='defClicked($opt_line_no)' class='optin'$checked />";
214 echo "</td>\n";
216 // Tax rates, contraceptive methods and LBF names have an additional attribute.
218 if ($list_id == 'taxrate' || $list_id == 'contrameth' || $list_id == 'lbfnames') {
219 echo " <td align='center' class='optcell'>";
220 echo "<input type='text' name='opt[$opt_line_no][value]' value='" .
221 htmlspecialchars($value, ENT_QUOTES) . "' size='8' maxlength='15' class='optin' />";
222 echo "</td>\n";
225 // Adjustment reasons use option_value as a reason category. This is
226 // needed to distinguish between adjustments that change the invoice
227 // balance and those that just shift responsibility of payment or
228 // are used as comments.
230 else if ($list_id == 'adjreason') {
231 echo " <td align='center' class='optcell'>";
232 echo "<select name='opt[$opt_line_no][value]' class='optin'>";
233 foreach (array(
234 1 => xl('Charge adjustment'),
235 2 => xl('Coinsurance'),
236 3 => xl('Deductible'),
237 4 => xl('Other pt resp'),
238 5 => xl('Comment'),
239 ) as $key => $desc) {
240 echo "<option value='$key'";
241 if ($key == $value) echo " selected";
242 echo ">" . htmlspecialchars($desc) . "</option>";
244 echo "</select>";
245 echo "</td>\n";
248 // Address book categories use option_value to flag category as a
249 // person-centric vs company-centric vs indifferent.
251 else if ($list_id == 'abook_type') {
252 echo " <td align='center' class='optcell'>";
253 echo "<select name='opt[$opt_line_no][value]' class='optin'>";
254 foreach (array(
255 1 => xl('Unassigned'),
256 2 => xl('Person'),
257 3 => xl('Company'),
258 ) as $key => $desc) {
259 echo "<option value='$key'";
260 if ($key == $value) echo " selected";
261 echo ">" . htmlspecialchars($desc) . "</option>";
263 echo "</select>";
264 echo "</td>\n";
267 // Immunization categories use option_value to map list items
268 // to CVX codes.
270 else if ($list_id == 'immunizations') {
271 echo " <td align='center' class='optcell'>";
272 echo "<input type='text' size='10' name='opt[$opt_line_no][value]' " .
273 "value='" . htmlspecialchars($value,ENT_QUOTES) . "' onclick='sel_cvxcode(this)' " .
274 "title='" . htmlspecialchars( xl('Click to select or change CVX code'), ENT_QUOTES) . "'/>";
275 echo "</td>\n";
278 // IPPF includes the ability to map each list item to a "master" identifier.
279 // Sports teams use this for some extra info for fitness levels.
281 if ($GLOBALS['ippf_specific'] || $list_id == 'fitness') {
282 echo " <td align='center' class='optcell'>";
283 echo "<input type='text' name='opt[$opt_line_no][mapping]' value='" .
284 htmlspecialchars($mapping, ENT_QUOTES) . "' size='12' maxlength='15' class='optin' />";
285 echo "</td>\n";
288 echo " <td align='center' class='optcell'>";
289 echo "<input type='text' name='opt[$opt_line_no][notes]' value='" .
290 htmlspecialchars($notes, ENT_QUOTES) . "' size='25' maxlength='255' class='optin' />";
291 echo "</td>\n";
293 echo " </tr>\n";
296 // Write a form line as above but for the special case of the Fee Sheet.
298 function writeFSLine($category, $option, $codes) {
299 global $opt_line_no;
301 ++$opt_line_no;
302 $bgcolor = "#" . (($opt_line_no & 1) ? "ddddff" : "ffdddd");
304 $descs = getCodeDescriptions($codes);
306 echo " <tr bgcolor='$bgcolor'>\n";
308 echo " <td align='center' class='optcell'>";
309 echo "<input type='text' name='opt[$opt_line_no][category]' value='" .
310 htmlspecialchars($category, ENT_QUOTES) . "' size='20' maxlength='63' class='optin' />";
311 echo "</td>\n";
313 echo " <td align='center' class='optcell'>";
314 echo "<input type='text' name='opt[$opt_line_no][option]' value='" .
315 htmlspecialchars($option, ENT_QUOTES) . "' size='20' maxlength='63' class='optin' />";
316 echo "</td>\n";
318 echo " <td align='left' class='optcell'>";
319 echo " <div id='codelist_$opt_line_no'>";
320 if (strlen($descs)) {
321 $arrdescs = explode('~', $descs);
322 $i = 0;
323 foreach ($arrdescs as $desc) {
324 echo "<a href='' onclick='return delete_code($opt_line_no,$i)' title='" . xl('Delete') . "'>";
325 echo "[x]&nbsp;</a>$desc<br />";
326 ++$i;
329 echo "</div>";
330 echo "<a href='' onclick='return select_code($opt_line_no)'>";
331 echo "[" . xl('Add') . "]</a>";
333 echo "<input type='hidden' name='opt[$opt_line_no][codes]' value='" .
334 htmlspecialchars($codes, ENT_QUOTES) . "' />";
335 echo "<input type='hidden' name='opt[$opt_line_no][descs]' value='" .
336 htmlspecialchars($descs, ENT_QUOTES) . "' />";
337 echo "</td>\n";
339 echo " </tr>\n";
342 // Helper functions for writeCTLine():
344 function ctGenCell($opt_line_no, $ct_array, $name, $size, $maxlength, $title='') {
345 $value = isset($ct_array[$name]) ? $ct_array[$name] : '';
346 $s = " <td align='center' class='optcell'";
347 if ($title) $s .= " title='" . addslashes($title) . "'";
348 $s .= ">";
349 $s .= "<input type='text' name='opt[$opt_line_no][$name]' value='";
350 $s .= htmlspecialchars($value, ENT_QUOTES);
351 $s .= "' size='$size' maxlength='$maxlength' class='optin' />";
352 $s .= "</td>\n";
353 return $s;
356 function ctGenCbox($opt_line_no, $ct_array, $name, $title='') {
357 $checked = empty($ct_array[$name]) ? '' : 'checked ';
358 $s = " <td align='center' class='optcell'";
359 if ($title) $s .= " title='" . addslashes($title) . "'";
360 $s .= ">";
361 $s .= "<input type='checkbox' name='opt[$opt_line_no][$name]' value='1' ";
362 $s .= "$checked/>";
363 $s .= "</td>\n";
364 return $s;
367 // Write a form line as above but for the special case of Code Types.
369 function writeCTLine($ct_array) {
370 global $opt_line_no,$cd_external_options;
372 ++$opt_line_no;
373 $bgcolor = "#" . (($opt_line_no & 1) ? "ddddff" : "ffdddd");
375 echo " <tr bgcolor='$bgcolor'>\n";
377 echo ctGenCBox($opt_line_no, $ct_array, 'ct_active',
378 xl('Is this code type active?'));
379 echo ctGenCell($opt_line_no, $ct_array, 'ct_key' , 6, 15,
380 xl('Unique human-readable identifier for this type'));
381 echo ctGenCell($opt_line_no, $ct_array, 'ct_id' , 2, 11,
382 xl('Unique numeric identifier for this type'));
383 echo ctGenCell($opt_line_no, $ct_array, 'ct_label' , 6, 30,
384 xl('Label for this type'));
385 echo ctGenCell($opt_line_no, $ct_array, 'ct_seq' , 2, 3,
386 xl('Numeric display order'));
387 echo ctGenCell($opt_line_no, $ct_array, 'ct_mod' , 1, 2,
388 xl('Length of modifier, 0 if none'));
389 echo ctGenCell($opt_line_no, $ct_array, 'ct_just', 4, 15,
390 xl('If billing justification is used enter the name of the diagnosis code type.'));
391 echo ctGenCell($opt_line_no, $ct_array, 'ct_mask', 6, 9,
392 xl('Specifies formatting for codes. # = digit, @ = alpha, * = any character. Empty if not used.'));
393 echo ctGenCBox($opt_line_no, $ct_array, 'ct_claim',
394 xl('Is this code type used in claims?'));
395 echo ctGenCBox($opt_line_no, $ct_array, 'ct_fee',
396 xl('Are fees charged for this type?'));
397 echo ctGenCBox($opt_line_no, $ct_array, 'ct_rel',
398 xl('Does this type allow related codes?'));
399 echo ctGenCBox($opt_line_no, $ct_array, 'ct_nofs',
400 xl('Is this type hidden in the fee sheet?'));
401 echo ctGenCBox($opt_line_no, $ct_array, 'ct_proc',
402 xl('Is this a procedure/service type?'));
403 echo ctGenCBox($opt_line_no, $ct_array, 'ct_diag',
404 xl('Is this a diagnosis type?'));
405 // Show the external code types selector
406 $value_ct_external = isset($ct_array['ct_external']) ? $ct_array['ct_external'] : '';
407 echo " <td title='" . xla('Is this using external sql tables? If it is, then choose the format.') . "' align='center' class='optcell'>";
408 echo "<select name='opt[$opt_line_no][ct_external]' class='optin'>";
409 foreach ( $cd_external_options as $key => $desc) {
410 echo "<option value='" . attr($key) . "'";
411 if ($key == $value_ct_external) echo " selected";
412 echo ">" . text($desc) . "</option>";
414 echo "</select>";
415 echo "</td>\n";
416 echo " </tr>\n";
419 <html>
421 <head>
422 <?php html_header_show();?>
424 <!-- supporting javascript code -->
425 <script type="text/javascript" src="<?php echo $GLOBALS['webroot'] ?>/library/js/jquery.js"></script>
427 <link rel="stylesheet" href='<?php echo $css_header ?>' type='text/css'>
428 <title><?php xl('List Editor','e'); ?></title>
430 <style>
431 tr.head { font-size:10pt; background-color:#cccccc; text-align:center; }
432 tr.detail { font-size:10pt; }
433 td { font-size:10pt; }
434 input { font-size:10pt; }
435 a, a:visited, a:hover { color:#0000cc; }
436 .optcell { }
437 .optin { background-color:transparent; }
438 .help { cursor:help; }
439 .translation { color:green; }
440 </style>
442 <script type="text/javascript" src="../../library/dialog.js"></script>
444 <script language="JavaScript">
446 var current_lino = 0;
448 // Helper function to set the contents of a div.
449 // This is for Fee Sheet administration.
450 function setDivContent(id, content) {
451 if (document.getElementById) {
452 var x = document.getElementById(id);
453 x.innerHTML = '';
454 x.innerHTML = content;
456 else if (document.all) {
457 var x = document.all[id];
458 x.innerHTML = content;
462 // Given a line number, redisplay its descriptive list of codes.
463 // This is for Fee Sheet administration.
464 function displayCodes(lino) {
465 var f = document.forms[0];
466 var s = '';
467 var descs = f['opt[' + lino + '][descs]'].value;
468 if (descs.length) {
469 var arrdescs = descs.split('~');
470 for (var i = 0; i < arrdescs.length; ++i) {
471 s += "<a href='' onclick='return delete_code(" + lino + "," + i + ")' title='<?php xl('Delete','e'); ?>'>";
472 s += "[x]&nbsp;</a>" + arrdescs[i] + "<br />";
475 setDivContent('codelist_' + lino, s);
478 // Helper function to remove a Fee Sheet code.
479 function dc_substring(s, i) {
480 var r = '';
481 var j = s.indexOf('~', i);
482 if (j < 0) { // deleting last segment
483 if (i > 0) r = s.substring(0, i-1); // omits trailing ~
485 else { // not last segment
486 r = s.substring(0, i) + s.substring(j + 1);
488 return r;
491 // Remove a generated Fee Sheet code.
492 function delete_code(lino, seqno) {
493 var f = document.forms[0];
494 var celem = f['opt[' + lino + '][codes]'];
495 var delem = f['opt[' + lino + '][descs]'];
496 var ci = 0;
497 var di = 0;
498 for (var i = 0; i < seqno; ++i) {
499 ci = celem.value.indexOf('~', ci) + 1;
500 di = delem.value.indexOf('~', di) + 1;
502 celem.value = dc_substring(celem.value, ci);
503 delem.value = dc_substring(delem.value, di);
504 displayCodes(lino);
505 return false;
508 // This invokes the find-code popup.
509 // For Fee Sheet administration.
510 function select_code(lino) {
511 current_lino = lino;
512 dlgopen('../patient_file/encounter/find_code_popup.php', '_blank', 700, 400);
513 return false;
516 // This is for callback by the find-code popup.
517 function set_related(codetype, code, selector, codedesc) {
518 if (typeof(current_sel_name) == 'undefined')
520 // Coming from Fee Sheet edit
521 var f = document.forms[0];
522 var celem = f['opt[' + current_lino + '][codes]'];
523 var delem = f['opt[' + current_lino + '][descs]'];
524 var i = 0;
525 while ((i = codedesc.indexOf('~')) >= 0) {
526 codedesc = codedesc.substring(0, i) + ' ' + codedesc.substring(i+1);
528 if (code) {
529 if (celem.value) {
530 celem.value += '~';
531 delem.value += '~';
533 celem.value += codetype + '|' + code + '|' + selector;
534 if (codetype == 'PROD') delem.value += code + ':' + selector + ' ' + codedesc;
535 else delem.value += codetype + ':' + code + ' ' + codedesc;
536 } else {
537 celem.value = '';
538 delem.value = '';
540 displayCodes(current_lino);
542 else
544 // Coming from Immunizations edit
545 var f = document.forms[0][current_sel_name];
546 var s = f.value;
547 if (code) {
548 s = code;
550 else {
551 s = '0';
553 f.value = s;
557 // Called when a "default" checkbox is clicked. Clears all the others.
558 function defClicked(lino) {
559 var f = document.forms[0];
560 for (var i = 1; f['opt[' + i + '][default]']; ++i) {
561 if (i != lino) f['opt[' + i + '][default]'].checked = false;
565 // Form validation and submission.
566 // This needs more validation.
567 function mysubmit() {
568 var f = document.forms[0];
569 if (f.list_id.value == 'code_types') {
570 for (var i = 1; f['opt[' + i + '][ct_key]'].value; ++i) {
571 var ikey = 'opt[' + i + ']';
572 for (var j = i+1; f['opt[' + j + '][ct_key]'].value; ++j) {
573 var jkey = 'opt[' + j + ']';
574 if (f[ikey+'[ct_key]'].value == f[jkey+'[ct_key]'].value) {
575 alert('<?php echo xl('Error: duplicated name on line') ?>' + ' ' + j);
576 return;
578 if (parseInt(f[ikey+'[ct_id]'].value) == parseInt(f[jkey+'[ct_id]'].value)) {
579 alert('<?php echo xl('Error: duplicated ID on line') ?>' + ' ' + j);
580 return;
585 f.submit();
588 // This invokes the find-code popup.
589 function sel_cvxcode(e) {
590 current_sel_name = e.name;
591 dlgopen('../patient_file/encounter/find_code_popup.php?codetype=CVX', '_blank', 500, 400);
594 </script>
596 </head>
598 <body class="body_top">
600 <form method='post' name='theform' id='theform' action='edit_list.php'>
601 <input type="hidden" name="formaction" id="formaction">
603 <p><b><?php xl('Edit list','e'); ?>:</b>&nbsp;
604 <select name='list_id' id="list_id">
605 <?php
607 // List order depends on language translation options.
608 $lang_id = empty($_SESSION['language_choice']) ? '1' : $_SESSION['language_choice'];
610 if (($lang_id == '1' && !empty($GLOBALS['skip_english_translation'])) ||
611 !$GLOBALS['translate_lists'])
613 $res = sqlStatement("SELECT option_id, title FROM list_options WHERE " .
614 "list_id = 'lists' ORDER BY title, seq");
616 else {
617 // Use and sort by the translated list name.
618 $res = sqlStatement("SELECT lo.option_id, " .
619 "IF(LENGTH(ld.definition),ld.definition,lo.title) AS title " .
620 "FROM list_options AS lo " .
621 "LEFT JOIN lang_constants AS lc ON lc.constant_name = lo.title " .
622 "LEFT JOIN lang_definitions AS ld ON ld.cons_id = lc.cons_id AND " .
623 "ld.lang_id = '$lang_id' " .
624 "WHERE lo.list_id = 'lists' " .
625 "ORDER BY IF(LENGTH(ld.definition),ld.definition,lo.title), lo.seq");
628 while ($row = sqlFetchArray($res)) {
629 $key = $row['option_id'];
630 echo "<option value='$key'";
631 if ($key == $list_id) echo " selected";
632 echo ">" . $row['title'] . "</option>\n";
636 </select>
637 <input type="button" id="<?php echo $list_id; ?>" class="deletelist" value=<?php xl('Delete List','e','\'','\''); ?>>
638 <input type="button" id="newlist" class="newlist" value=<?php xl('New List','e','\'','\''); ?>>
639 </p>
641 <center>
643 <table cellpadding='2' cellspacing='0'>
644 <tr class='head'>
645 <?php if ($list_id == 'feesheet') { ?>
646 <td><b><?php xl('Group' ,'e'); ?></b></td>
647 <td><b><?php xl('Option' ,'e'); ?></b></td>
648 <td><b><?php xl('Generates','e'); ?></b></td>
649 <?php } else if ($list_id == 'code_types') { ?>
650 <td><b><?php xl('Active' ,'e'); ?></b></td>
651 <td><b><?php xl('Key' ,'e'); ?></b></td>
652 <td><b><?php xl('ID' ,'e'); ?></b></td>
653 <td><b><?php xl('Label' ,'e'); ?></b></td>
654 <td><b><?php xl('Seq' ,'e'); ?></b></td>
655 <td><b><?php xl('ModLength' ,'e'); ?></b></td>
656 <td><b><?php xl('Justify' ,'e'); ?></b></td>
657 <td><b><?php xl('Mask' ,'e'); ?></b></td>
658 <td><b><?php xl('Claims' ,'e'); ?></b></td>
659 <td><b><?php xl('Fees' ,'e'); ?></b></td>
660 <td><b><?php xl('Relations' ,'e'); ?></b></td>
661 <td><b><?php xl('Hide' ,'e'); ?></b></td>
662 <td><b><?php xl('Procedure' ,'e'); ?></b></td>
663 <td><b><?php xl('Diagnosis' ,'e'); ?></b></td>
664 <td><b><?php xl('External' ,'e'); ?></b></td>
665 <?php } else { ?>
666 <td title=<?php xl('Click to edit','e','\'','\''); ?>><b><?php xl('ID','e'); ?></b></td>
667 <td><b><?php xl('Title' ,'e'); ?></b></td>
668 <?php //show translation column if not english and the translation lists flag is set
669 if ($GLOBALS['translate_lists'] && $_SESSION['language_choice'] > 1) {
670 echo "<td><b>".xl('Translation')."</b><span class='help' title='".xl('The translated Title that will appear in current language')."'> (?)</span></td>";
671 } ?>
672 <td><b><?php xl('Order' ,'e'); ?></b></td>
673 <td><b><?php xl('Default','e'); ?></b></td>
674 <?php if ($list_id == 'taxrate') { ?>
675 <td><b><?php xl('Rate' ,'e'); ?></b></td>
676 <?php } else if ($list_id == 'contrameth') { ?>
677 <td><b><?php xl('Effectiveness','e'); ?></b></td>
678 <?php } else if ($list_id == 'lbfnames') { ?>
679 <td title='<?php xl('Number of past history columns','e'); ?>'><b><?php xl('Repeats','e'); ?></b></td>
680 <?php } else if ($list_id == 'fitness') { ?>
681 <td><b><?php xl('Color:Abbr','e'); ?></b></td>
682 <?php } else if ($list_id == 'adjreason' || $list_id == 'abook_type') { ?>
683 <td><b><?php xl('Type','e'); ?></b></td>
684 <?php } else if ($list_id == 'immunizations') { ?>
685 <td><b>&nbsp;&nbsp;&nbsp;&nbsp;<?php xl('CVX Code Mapping','e'); ?></b></td>
686 <?php } if ($GLOBALS['ippf_specific']) { ?>
687 <td><b><?php xl('Global ID','e'); ?></b></td>
688 <?php } ?>
689 <td><b><?php xl('Notes','e'); ?></b></td>
690 <?php } // end not fee sheet ?>
691 </tr>
693 <?php
694 // Get the selected list's elements.
695 if ($list_id) {
696 if ($list_id == 'feesheet') {
697 $res = sqlStatement("SELECT * FROM fee_sheet_options " .
698 "ORDER BY fs_category, fs_option");
699 while ($row = sqlFetchArray($res)) {
700 writeFSLine($row['fs_category'], $row['fs_option'], $row['fs_codes']);
702 for ($i = 0; $i < 3; ++$i) {
703 writeFSLine('', '', '');
706 else if ($list_id == 'code_types') {
707 $res = sqlStatement("SELECT * FROM code_types " .
708 "ORDER BY ct_seq, ct_key");
709 while ($row = sqlFetchArray($res)) {
710 writeCTLine($row);
712 for ($i = 0; $i < 3; ++$i) {
713 writeCTLine(array());
716 else {
717 $res = sqlStatement("SELECT * FROM list_options WHERE " .
718 "list_id = '$list_id' ORDER BY seq,title");
719 while ($row = sqlFetchArray($res)) {
720 writeOptionLine($row['option_id'], $row['title'], $row['seq'],
721 $row['is_default'], $row['option_value'], $row['mapping'],
722 $row['notes']);
724 for ($i = 0; $i < 3; ++$i) {
725 writeOptionLine('', '', '', '', 0);
731 </table>
734 <input type='button' name='form_save' id='form_save' value='<?php xl('Save','e'); ?>' />
735 </p>
736 </center>
738 </form>
740 <!-- template DIV that appears when user chooses to make a new list -->
741 <div id="newlistdetail" style="border: 1px solid black; padding: 3px; display: none; visibility: hidden; background-color: lightgrey;">
742 <?php xl('List Name','e'); ?>: <input type="textbox" size="20" maxlength="30" name="newlistname" id="newlistname">
743 <br>
744 <input type="button" class="savenewlist" value=<?php xl('Save New List','e','\'','\''); ?>>
745 <input type="button" class="cancelnewlist" value=<?php xl('Cancel','e','\'','\''); ?>>
746 </div>
747 </body>
748 <script language="javascript">
749 // jQuery stuff to make the page a little easier to use
751 $(document).ready(function(){
752 $("#form_save").click(function() { SaveChanges(); });
753 $("#list_id").change(function() { $('#theform').submit(); });
755 $(".newlist").click(function() { NewList(this); });
756 $(".savenewlist").click(function() { SaveNewList(this); });
757 $(".deletelist").click(function() { DeleteList(this); });
758 $(".cancelnewlist").click(function() { CancelNewList(this); });
760 var SaveChanges = function() {
761 $("#formaction").val("save");
762 // $('#theform').submit();
763 mysubmit();
766 // show the DIV to create a new list
767 var NewList = function(btnObj) {
768 // show the field details DIV
769 $('#newlistdetail').css('visibility', 'visible');
770 $('#newlistdetail').css('display', 'block');
771 $(btnObj).parent().append($("#newlistdetail"));
772 $('#newlistdetail > #newlistname').focus();
774 // save the new list
775 var SaveNewList = function() {
776 // the list name can only have letters, numbers, spaces and underscores
777 // AND it cannot start with a number
778 if ($("#newlistname").val().match(/^\d+/)) {
779 alert("<?php xl('List names cannot start with numbers.','e'); ?>");
780 return false;
782 var validname = $("#newlistname").val().replace(/[^A-za-z0-9 -]/g, "_"); // match any non-word characters and replace them
783 if (validname != $("#newlistname").val()) {
784 if (! confirm("<?php xl('Your list name has been changed to meet naming requirements.','e','','\n') . xl('Please compare the new name','e','',', \''); ?>"+validname+"<?php xl('with the old name','e','\' ',', \''); ?>"+$("#newlistname").val()+"<?php xl('Do you wish to continue with the new name?','e','\'.\n',''); ?>"))
786 return false;
789 $("#newlistname").val(validname);
791 // submit the form to add a new field to a specific group
792 $("#formaction").val("addlist");
793 $("#theform").submit();
795 // actually delete an entire list from the database
796 var DeleteList = function(btnObj) {
797 var listid = $(btnObj).attr("id");
798 if (confirm("<?php xl('WARNING','e','',' - ') . xl('This action cannot be undone.','e','','\n') . xl('Are you sure you wish to delete the entire list','e',' ','('); ?>"+listid+")?")) {
799 // submit the form to add a new field to a specific group
800 $("#formaction").val("deletelist");
801 $("#deletelistname").val(listid);
802 $("#theform").submit();
806 // just hide the new list DIV
807 var CancelNewList = function(btnObj) {
808 // hide the list details DIV
809 $('#newlistdetail').css('visibility', 'hidden');
810 $('#newlistdetail').css('display', 'none');
811 // reset the new group values to a default
812 $('#newlistdetail > #newlistname').val("");
816 </script>
818 </html>