From 0c48a468bde27c625e38ad679fc463af7781af30 Mon Sep 17 00:00:00 2001 From: sunsetsystems Date: Thu, 22 May 2008 03:49:36 +0000 Subject: [PATCH] added support for entry of multiple billing codes --- library/options.inc.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/library/options.inc.php b/library/options.inc.php index ccc066a45..853803996 100644 --- a/library/options.inc.php +++ b/library/options.inc.php @@ -169,6 +169,19 @@ function generate_form_field($frow, $currvalue) { echo ""; } + // a billing code (only one of these allowed!) + else if ($data_type == 15) { + echo ""; + } + // a set of labeled checkboxes else if ($data_type == 21) { $avalue = explode('|', $currvalue); @@ -319,6 +332,11 @@ function generate_display_field($frow, $currvalue) { $s = $uname; } + // billing code + else if ($data_type == 15) { + $s = $currvalue; + } + // a set of labeled checkboxes else if ($data_type == 21) { $avalue = explode('|', $currvalue); -- 2.11.4.GIT