X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_input.inc;h=59a3676ef5664ed7ccc7bd004411ac37c2c824aa;hb=2bcdab793e406bb5a44d2c4e079ec7cc2a1aa857;hp=b239964a062de773e4e20e17d1b8b1d9f9ced269;hpb=fc0693c868a6371cf100423e21ed7906e0980e48;p=fa-stable.git diff --git a/includes/ui/ui_input.inc b/includes/ui/ui_input.inc index b239964a..59a3676e 100644 --- a/includes/ui/ui_input.inc +++ b/includes/ui/ui_input.inc @@ -1,19 +1,14 @@ . + See the License here . ***********************************************************************/ - -function get_post($name, $dflt='') -{ - return ((!isset($_POST[$name]) || $_POST[$name] === '') ? $dflt : $_POST[$name]); -} // // Sets local POST value and adds Value to ajax posting if needed // @@ -42,6 +37,15 @@ function find_submit($prefix, $numeric=true) } return $numeric ? -1 : null; } +/* + Helper function. + Returns true if input $name with $submit_on_change option set is subject to update. +*/ +function input_changed($name) +{ + return isset($_POST['_'.$name.'_changed']); +} + //------------------------------------------------------------------------------ // // Helper function for simple db table editor pages @@ -52,11 +56,12 @@ function simple_page_mode($numeric_id = true) $default = $numeric_id ? -1 : ''; $selected_id = get_post('selected_id', $default); - foreach (array('ADD_ITEM', 'UPDATE_ITEM', 'RESET') as $m) { + foreach (array('ADD_ITEM', 'UPDATE_ITEM', 'RESET', 'CLONE') as $m) { if (isset($_POST[$m])) { $Ajax->activate('_page_body'); - if ($m == 'RESET') + if ($m == 'RESET' || $m == 'CLONE') $selected_id = $default; + unset($_POST['_focus']); $Mode = $m; return; } } @@ -79,7 +84,7 @@ function simple_page_mode($numeric_id = true) // // Read numeric value from user formatted input // -function input_num($postname=null, $dflt=null) +function input_num($postname=null, $dflt=0) { if (!isset($_POST[$postname]) || $_POST[$postname] == "") return $dflt; @@ -88,10 +93,16 @@ function input_num($postname=null, $dflt=null) } //--------------------------------------------------------------------------------- +// +// Thanks to hidden fields buffering hidden() helper can be used in arbitrary places and +// proper html structure is still preserved. Buffered hidden fields are output on the nearest +// table or form closing tag (see output_hidden()). +// +$hidden_fields = array(); function hidden($name, $value=null, $echo=true) { - global $Ajax; + global $Ajax, $hidden_fields; if ($value === null) $value = get_post($name); @@ -99,25 +110,69 @@ function hidden($name, $value=null, $echo=true) $ret = ""; $Ajax->addUpdate($name, $name, $value); if ($echo) - echo $ret."\n"; + $hidden_fields[] = $ret; else return $ret; } - -function submit($name, $value, $echo=true, $title=false, $async=false, $icon=false) +/* + Universal submit form button. + $atype - type of submit: + Normal submit: + false - normal button; optional icon + null - button visible only in fallback mode; optional icon + Ajax submit: + true - standard button; optional icon + + 'default' - default form submit on Ctrl-Enter press; dflt ICON_OK icon + 'selector' - ditto with closing current popup editor window + 'cancel' - cancel form entry on Escape press; dflt ICON_CANCEL + 'process' - displays progress bar during call; optional icon + 'nonajax' - ditto, non-ajax submit + + $atype can contain also multiply type selectors separated by space, + however make sense only combination of 'process' and one of defualt/selector/cancel +*/ +function submit($name, $value, $echo=true, $title=false, $atype=false, $icon=false) { global $path_to_root; - - default_focus($name); + + $aspect=''; + if ($atype === null) { + $aspect = fallback_mode() ? " aspect='fallback'" : " style='display:none;'"; + + } elseif (!is_bool($atype)) { // necessary: switch uses '==' + + $aspect = " aspect='$atype' "; + $types = explode(' ', $atype); + + foreach ($types as $type) { + switch($type) { + case 'selector': + $aspect = " aspect='selector' rel = '$value'"; + $value = _("Select"); + if ($icon===false) $icon=ICON_SUBMIT; break; + + case 'default': + if ($icon===false) $icon=ICON_SUBMIT; break; + + case 'cancel': + if ($icon===false) $icon=ICON_ESCAPE; break; + + case 'nonajax': + case 'download': + $atype = false; + } + } + } $submit_str = "\n"; if ($echo) echo $submit_str; @@ -127,9 +182,9 @@ function submit($name, $value, $echo=true, $title=false, $async=false, $icon=fal function submit_center($name, $value, $echo=true, $title=false, $async=false, $icon=false) { - echo "
"; + if ($echo) echo "
"; submit($name, $value, $echo, $title, $async, $icon); - echo "
"; + if ($echo) echo "
"; } function submit_center_first($name, $value, $title=false, $async=false, $icon=false) @@ -145,39 +200,51 @@ function submit_center_last($name, $value, $title=false, $async=false, $icon=fal submit($name, $value, true, $title, $async, $icon); echo ""; } - -function submit_add_or_update($add=true, $title=false, $async=false) +/* + For following controls: + 'both' - use both Ctrl-Enter and Escape hotkeys + 'upgrade' - use Ctrl-Enter with progress ajax indicator and Escape hotkeys. Nonajax request for OK option is performed. + 'cancel' - apply to 'RESET' button +*/ +function submit_add_or_update($add=true, $title=false, $async=false, $clone=false) { + $cancel = $async; + + if ($async === 'both') { + $async = 'default'; $cancel = 'cancel'; + } + elseif ($async === 'upgrade') { + $async = 'default nonajax process'; $cancel = 'cancel'; + } + elseif ($async === 'default') + $cancel = true; + elseif ($async === 'cancel') + $async = true; + if ($add) submit('ADD_ITEM', _("Add new"), true, $title, $async); else { - submit('UPDATE_ITEM', _("Update"), true, $title, $async); - submit('RESET', _("Cancel"), true, $title, $async); + submit('UPDATE_ITEM', _("Update"), true, _('Submit changes'), $async); + if ($clone) submit('CLONE', _("Clone"), true, + _('Edit new record with current data'), $async); + submit('RESET', _("Cancel"), true, _('Cancel edition'), $cancel); } } -function submit_add_or_update_center($add=true, $title=false, $async=false) +function submit_add_or_update_center($add=true, $title=false, $async=false, $clone=false) { echo "
"; - submit_add_or_update($add, $title, $async); + submit_add_or_update($add, $title, $async, $clone); echo "
"; } -/* -function submit_add_or_update_row($add=true) -{ - echo ""; - submit_add_or_update($add); - echo "\n"; -} -*/ -function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false) +function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false, $clone = false) { echo ""; if ($right) echo " \n"; echo ""; - submit_add_or_update($add, $title, $async); + submit_add_or_update($add, $title, $async, $clone); echo "\n"; } @@ -197,43 +264,69 @@ function submit_row($name, $value, $right=true, $extra="", $title=false, $async= echo "\n"; } -function submit_return($name, $value, $title=false, $async=false) +function submit_return($name, $value, $title=false) { - if (count($_SESSION['Context'])) { - submit($name, $value, true, $title, $async); + if (@$_REQUEST['popup']) { + submit($name, $value, true, $title, 'selector'); } } + +function submit_js_confirm($name, $msg, $set = true) { + global $Ajax; + $js = "_validate.$name=".($set ? "function(){ return confirm('" + . strtr($msg, array("\n"=>'\\n')) . "');};" + : 'null;'); + if (in_ajax()) { + $Ajax->addScript(true, $js); + } else + add_js_source($js); +} //----------------------------------------------------------------------------------- function set_icon($icon, $title=false) { global $path_to_root; - return "\n"; + if (basename($icon) === $icon) // standard icons does not contain path separator + $icon = "$path_to_root/themes/".user_theme()."/images/$icon"; + return "\n"; } -function button($name, $value, $title=false, $icon=false) +function button($name, $value, $title=false, $icon=false, $aspect='') { // php silently changes dots,spaces,'[' and characters 128-159 // to underscore in POST names, to maintain compatibility with register_globals + $rel = ''; + if ($aspect == 'selector') { + $rel = " rel='$value'"; + $value = _("Select"); + } if (user_graphic_links() && $icon) { if ($value == _("Delete")) // Helper during implementation $icon = ICON_DELETE; - return "\n"; } else return "'=2E',' '=>'=20','='=>'=3D','['=>'=5B'))) + .htmlentities(strtr($name, array('.'=>'=2E', '='=>'=3D',// ' '=>'=20','['=>'=5B' + ))) ."' value='$value'" - .($title ? " title='$title'":'')." />\n"; + .($title ? " title='$title'":'') + . ($aspect ? " aspect='$aspect'" : '') + . $rel + ." >\n"; } -function button_cell($name, $value, $title=false, $icon=false) +function button_cell($name, $value, $title=false, $icon=false, $aspect='') { - echo ""; - echo button($name, $value, $title, $icon); + echo ""; + echo button($name, $value, $title, $icon, $aspect); echo ""; } @@ -246,22 +339,32 @@ function edit_button_cell($name, $value, $title=false) { button_cell($name, $value, $title, ICON_EDIT); } + +function select_button_cell($name, $value, $title=false) +{ + button_cell($name, $value, $title, ICON_ADD, 'selector'); +} //----------------------------------------------------------------------------------- function check_value($name) { - if (!isset($_POST[$name])) - return 0; - return 1; + if (is_array($name)) { + $ret = array(); + foreach($name as $key) + $ret[$key] = check_value($key); + return $ret; + } else + return (empty($_POST[$name]) ? 0 : 1); } -function check($label, $name, $value=null, $submit_on_change=false, $title=false) +function checkbox($label, $name, $value=null, $submit_on_change=false, $title=false) { global $Ajax; - - default_focus($name); + + $str = ''; + if ($label) - echo $label . " "; + $str .= $label . " "; if ($submit_on_change !== false) { if ($submit_on_change === true) $submit_on_change = @@ -270,33 +373,55 @@ function check($label, $name, $value=null, $submit_on_change=false, $title=false if ($value === null) $value = get_post($name,0); - echo "\n"; + $str .= "\n"; + $Ajax->addUpdate($name, $name, $value); + return $str; +} + +function check($label, $name, $value=null, $submit_on_change=false, $title=false) +{ + echo checkbox($label, $name, $value, $submit_on_change, $title); } -function check_cells($label, $name, $value, $submit_on_change=false, $title=false) +function check_cells($label, $name, $value=null, $submit_on_change=false, $title=false, + $params='') { if ($label != null) echo "$label\n"; - echo ""; - check(null, $name, $value, $submit_on_change, $title); + echo ""; + echo check(null, $name, $value, $submit_on_change, $title); echo ""; } -function check_row($label, $name, $value, $submit_on_change=false, $title=false) +function check_row($label, $name, $value=null, $submit_on_change=false, $title=false) { - echo ""; - check_cells($label, $name, $value, $submit_on_change, $title); + echo "$label"; + echo check_cells(NULL, $name, $value, $submit_on_change, $title); echo "\n"; } //----------------------------------------------------------------------------------- +function radio($label, $name, $value, $selected=null, $submit_on_change=false) +{ + if (!isset($selected)) + $selected = get_post($name) === (string)$value; + + if ($submit_on_change === true) + $submit_on_change = + "JsHttpRequest.request(\"_{$name}_update\", this.form);"; + + return "".($label ? $label : ''); +} +//----------------------------------------------------------------------------------- function labelheader_cell($label, $params="") { echo "$label\n"; @@ -321,6 +446,12 @@ function email_cell($label, $params="", $id=null) label_cell("$label", $params, $id); } +function amount_decimal_cell($label, $params="", $id=null) +{ + $dec = 0; + label_cell(price_decimal_format($label, $dec), "nowrap align=right ".$params, $id); +} + function amount_cell($label, $bold=false, $params="", $id=null) { if ($bold) @@ -329,6 +460,16 @@ function amount_cell($label, $bold=false, $params="", $id=null) label_cell(price_format($label), "nowrap align=right ".$params, $id); } +//JAM Allow entered unit prices to be fractional +function unit_amount_cell($label, $bold=false, $params="", $id=null) +{ + if ($bold) + label_cell("".unit_price_format($label)."", "nowrap align=right ".$params, $id); + else + label_cell(unit_price_format($label), "nowrap align=right ".$params, $id); +} + + function percent_cell($label, $bold=false, $id=null) { if ($bold) @@ -347,38 +488,50 @@ function qty_cell($label, $bold=false, $dec=null, $id=null) label_cell(number_format2($label, $dec), "nowrap align=right", $id); } -function label_cells($label, $value, $params="", $params2="", $id='') +function label_cells($label, $value, $params="", $params2="", $id=null) { if ($label != null) echo "$label\n"; label_cell($value, $params2, $id); } -function label_row($label, $value, $params="", $params2="", $leftfill=0, $id='') +function label_row($label, $value, $params="", $params2="", $leftfill=0, $id=null) { echo ""; + if ($params == "") + { + echo "$label"; + $label = null; + } label_cells($label, $value, $params, $params2, $id); if ($leftfill!=0) echo ""; echo "\n"; } +function text_input($name, $value=null, $size='', $max='', $title='', $params='') +{ + if ($value === null) + $value = get_post($name); + + return ""; +} + //----------------------------------------------------------------------------------- -function text_cells($label, $name, $value=null, $size="", $max="", $title=false, $params="", $post_label="", $disabled="") +function text_cells($label, $name, $value=null, $size="", $max="", $title=false, + $labparams="", $post_label="", $inparams="") { global $Ajax; default_focus($name); if ($label != null) - label_cell($label, $params); + label_cell($label, $labparams); echo ""; - if ($value === null) - $value = get_post($name); - echo ""; + echo text_input($name, $value, $size, $max, $title, $inparams); if ($post_label != "") echo " " . $post_label; @@ -387,7 +540,8 @@ function text_cells($label, $name, $value=null, $size="", $max="", $title=false, $Ajax->addUpdate($name, $name, $value); } -function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null, $params=null, $post_label=null, $submit_on_change=false) +function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null, + $labparams=null, $post_label=null, $submit_on_change=false) { global $Ajax; @@ -400,7 +554,7 @@ function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null, $_POST[$name] = ""; } if ($label != null) - label_cell($label, $params); + label_cell($label, $labparams); if (!isset($max)) $max = $size; @@ -419,9 +573,8 @@ function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null, function text_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="") { - echo ""; - - text_cells($label, $name, $value, $size, $max, $title, $params, $post_label); + echo "$label"; + text_cells(null, $name, $value, $size, $max, $title, $params, $post_label); echo "\n"; } @@ -430,9 +583,8 @@ function text_row($label, $name, $value, $size, $max, $title=null, $params="", $ function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null) { - echo ""; - - text_cells_ex($label, $name, $size, $max, $value, $title, $params, $post_label); + echo "$label"; + text_cells_ex(null, $name, $size, $max, $value, $title, $params, $post_label); echo "\n"; } @@ -440,81 +592,192 @@ function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, //----------------------------------------------------------------------------------- function email_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="") { - text_row("$label", $name, $value, $size, $max, $title, $params, $post_label); + if (get_post($name)) + $label = "$label"; + text_row($label, $name, $value, $size, $max, $title, $params, $post_label); } function email_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null) { - text_row_ex("$label", $name, $size, $max, $title, $value, $params, $post_label); + if (get_post($name)) + $label = "$label"; + text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label); } function link_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="") { - text_row("$label", $name, $value, $size, $max, $title, $params, $post_label); + $val = get_post($name); + if ($val) { + if (strpos($val,'http://')===false) + $val = 'http://'.$val; + $label = "$label"; + } + text_row($label, $name, $value, $size, $max, $title, $params, $post_label); } function link_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null) { - text_row_ex("$label", $name, $size, $max, $title, $value, $params, $post_label); + $val = get_post($name); + if ($val) { + if (strpos($val,'http://')===false) + $val = 'http://'.$val; + $label = "$label"; + } + text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label); } //----------------------------------------------------------------------------------- - -function date_cells($label, $name, $title = null, $init=null, $inc_days=0, +// +// Since FA 2.2 $init parameter is superseded by $check. +// When $check!=null current date is displayed in red when set to other +// than current date. +// +function date_cells($label, $name, $title = null, $check=null, $inc_days=0, $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false) { - global $use_date_picker, $path_to_root; + global $path_to_root, $Ajax; + if (!isset($_POST[$name]) || $_POST[$name] == "") { - if (!$init) + if ($inc_years == 1001) + $_POST[$name] = null; + else { - if ($inc_years == 1001) - $_POST[$name] = null; - else - { - $dd = Today(); - if ($inc_days != 0) - $dd = add_days($dd, $inc_days); - if ($inc_months != 0) - $dd = add_months($dd, $inc_months); - if ($inc_years != 0) - $dd = add_years($dd, $inc_years); - $_POST[$name] = $dd; - } + $dd = Today(); + if ($inc_days != 0) + $dd = add_days($dd, $inc_days); + if ($inc_months != 0) + $dd = add_months($dd, $inc_months); + if ($inc_years != 0) + $dd = add_years($dd, $inc_years); + $_POST[$name] = $dd; } - else - $_POST[$name] = $init; } - if ($use_date_picker) + if (user_use_date_picker()) + { + $calc_image = (file_exists("$path_to_root/themes/".user_theme()."/images/cal.gif")) ? + "$path_to_root/themes/".user_theme()."/images/cal.gif" : "$path_to_root/themes/default/images/cal.gif"; $post_label = "" - . " "._(\n"; + . " "._(\n"; + } else $post_label = ""; - text_cells_ex($label, $name, 9, 12, $_POST[$name], $title, $params, $post_label, $submit_on_change); + + if ($label != null) + label_cell($label, $params); + + echo ""; + + $class = $submit_on_change ? 'date active' : 'date'; + + $aspect = $check ? 'aspect="cdate"' : ''; + if ($check && (get_post($name) != Today())) + $aspect .= ' style="color:#FF0000"'; + + default_focus($name); + $size = (user_date_format()>3)?11:10; + echo " $post_label"; + echo "\n"; + $Ajax->addUpdate($name, $name, $_POST[$name]); } -function date_row($label, $name, $title=null, $init=null, $inc_days=0, $inc_months=0, +function date_row($label, $name, $title=null, $check=null, $inc_days=0, $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false) { - echo ""; - date_cells($label, $name, $title, $init, $inc_days, $inc_months, + echo "$label"; + date_cells(null, $name, $title, $check, $inc_days, $inc_months, $inc_years, $params, $submit_on_change); echo "\n"; } //----------------------------------------------------------------------------------- +function password_row($label, $name, $value) +{ + echo "$label"; + label_cell(""); + echo "\n"; +} + +//----------------------------------------------------------------------------------- +function file_cells($label, $name, $id="") +{ + if ($id != "") + $id = "id='$id'"; + label_cells($label, ""); +} +function file_row($label, $name, $id = "") +{ + echo "$label"; + file_cells(null, $name, $id); + echo "\n"; +} + +/*----------------------------------------------------------------------------------- -function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false) + Reference number input. + + Optional $context array contains transaction data used in number parsing: + 'data' - data used for month/year codes + 'location' - location code + 'customer' - debtor_no + 'supplier' - supplier id + 'branch' - branch_code +*/ +function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false, $type=null, $context=null) { - text_cells_ex($label, $name, 16, 18, $init, $title, $params, null, $submit_on_change); + global $Ajax, $Refs; + + if (isset($type)) { + if (empty($_POST[$name.'_list'])) // restore refline id + $_POST[$name.'_list'] = $Refs->reflines->find_refline_id(empty($_POST[$name]) ? $init : $_POST[$name], $type); + + if (empty($_POST[$name])) // initialization + { + if (isset($init)) + { + $_POST[$name] = $init; + } else { + $_POST[$name] = $Refs->get_next($type, $_POST[$name.'_list'], $context); + } + $Ajax->addUpdate(true, $name, $_POST[$name]); + } + + if (check_ui_refresh($name)) { // call context changed + $_POST[$name] = $Refs->normalize($_POST[$name], $type, $context, $_POST[$name.'_list']); + $Ajax->addUpdate(true, $name, $_POST[$name]); + } + + if ($Refs->reflines->count($type)>1) { + if (list_updated($name.'_list')) { + $_POST[$name] = $Refs->get_next($type, $_POST[$name.'_list'], $context); + $Ajax->addUpdate(true, $name, $_POST[$name]); + } + $list = refline_list($name.'_list', $type); + } else { + $list = ''; + } + + if (isset($label)) + label_cell($label, $params); + + label_cell($list.""); + } + else // just wildcard ref field (e.g. for global inquires) + { + text_cells_ex($label, $name, 16, 35, $init, $title, $params, null, $submit_on_change); + } } //----------------------------------------------------------------------------------- -function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false) +function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false, $type=null, $context = null) { - echo ""; - ref_cells($label, $name, $title, $init, null, $submit_on_change); + echo "$label"; + ref_cells(null, $name, $title, $init, null, $submit_on_change, $type, $context); echo "\n"; } @@ -545,8 +808,11 @@ function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=nu $_POST[$name] = ''; } if ($label != null) + { + if ($params == null) + $params = "class='label'"; label_cell($label, $params); - + } if (!isset($max)) $max = $size; @@ -574,6 +840,15 @@ function amount_cells($label, $name, $init=null, $params=null, $post_label=null, amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec); } +//JAM Allow entered unit prices to be fractional +function unit_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null) +{ + if (!isset($dec)) + $dec = user_price_dec()+2; + + amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec+2); +} + function amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null) { echo ""; @@ -653,32 +928,101 @@ function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $par function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="") { - echo ""; - textarea_cells($label, $name, $value, $cols, $rows, $title, $params); + echo "$label"; + textarea_cells(null, $name, $value, $cols, $rows, $title, $params); echo "\n"; } //----------------------------------------------------------------------------------- -/* -function text_row_with_submit($label, $name, $value, $size, $max, $input_name, $input_value) +// +// When show_inactive page option is set +// displays value of inactive field as checkbox cell. +// Also updates database record after status change. +// +function inactive_control_cell($id, $value, $table, $key) { - global $Ajax; + global $Ajax; - default_focus($name); - echo "$label\n"; - echo ""; + $name = "Inactive". $id; + $value = $value ? 1:0; - if ($value == null) - $value = (!isset($_POST[$name]) ? "" : $_POST[$name]); - echo " "; + if (check_value('show_inactive')) { + if (isset($_POST['LInact'][$id]) && (get_post('_Inactive'.$id.'_update') || + get_post('Update')) && (check_value('Inactive'.$id) != $value)) { + update_record_status($id, !$value, $table, $key); + } + echo ''. checkbox(null, $name, $value, true, '') + . hidden("LInact[$id]", $value, false) . ''; + } +} +// +// Displays controls for optional display of inactive records +// +function inactive_control_row($th) { + echo "" + ."
" + . checkbox(null, 'show_inactive', null, true). _("Show also Inactive") + ."
" + . submit('Update', _('Update'), false, '', null) + ."
"; +} +// +// Inserts additional column header when display of inactive records is on. +// +function inactive_control_column(&$th) { + global $Ajax; + + if (check_value('show_inactive')) + array_insert($th, count($th)-2 , _("Inactive")); + if (get_post('_show_inactive_update')) { + $Ajax->activate('_page_body'); + } +} - submit($input_name, $input_value); +function customer_credit_row($customer, $credit, $parms='') +{ + global $path_to_root; + + label_row( _("Current Credit:"), + "" + . price_format($credit) + ."", $parms); +} - echo "\n"; - $Ajax->addUpdate($name, $name, $value); +function supplier_credit_row($supplier, $credit, $parms='') +{ + global $path_to_root; + + label_row( _("Current Credit:"), + "" + . price_format($credit) + ."", $parms); +} + +function bank_balance_row($bank_acc, $parms='') +{ + global $path_to_root; + + $to = add_days(Today(), 1); + $bal = get_balance_before_for_bank_account($bank_acc, $to); + label_row( _("Bank Balance:"), + " " + . price_format($bal) + ."", $parms); } -*/ -//----------------------------------------------------------------------------------- +function ahref($label, $href, $target="", $onclick="") { + echo "$label"; +} -?> \ No newline at end of file +function ahref_cell($label, $href, $target="", $onclick="") { + echo "  "; + ahref($label, $href, $target, $onclick); + echo "  "; +}