X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_lists.inc;h=4b2294e314e9c95313afe8b090d9733a398f4601;hb=c7a6b173102b5df624ce18780e057b3d61953ce6;hp=6e5bde4005f760cdc943c12c32211d3108c37f5e;hpb=e5f646ec41162ae13c3117e28d444658ec06dbf7;p=fa-stable.git diff --git a/includes/ui/ui_lists.inc b/includes/ui/ui_lists.inc index 6e5bde40..4b2294e3 100644 --- a/includes/ui/ui_lists.inc +++ b/includes/ui/ui_lists.inc @@ -3,304 +3,363 @@ include_once($path_to_root . "/includes/banking.inc"); include_once($path_to_root . "/includes/reserved.inc"); include_once($path_to_root . "/includes/types.inc"); +include_once($path_to_root . "/includes/current_user.inc"); -define("DEFVAL", "--"); -$search_button = " "; -//$search_button = " "; +$_search_button = " "; -$all_items = reserved_words::get_all(); +$_select_button = " "; -// TDB for all list functions : if there is no data, display a link to the releveant -// page to add an item, eg. for locations, if no locations, link to Add Location +$all_items = reserved_words::get_all(); -function supplier_list($name, $selected_id, $all_option=false, $submit_on_change=false) -{ - global $all_items; +//---------------------------------------------------------------------------- +// Universal combo generator +// $sql must return selector values and selector texts in columns 0 & 1 +// Options are merged with defaults. + +function combo_input($name, $selected_id, $sql, $valfield, $namefield, + $options=null) +{ +global $Ajax; + +$opts = array( // default options + 'where'=> array(), // additional constraints + 'order' => $namefield, // list sort order + // special option parameters + 'spec_option'=>false, // option text or false + 'spec_id' => 0, // option id + // submit on select parameters + 'select_submit' => false, //submit on select: true/false + 'async' => true, // select update via ajax (true) vs _page_body reload + // search box parameters + 'sel_hint' => null, + 'search_box' => false, // name or true/false + 'type' => 0, // type of extended selector: + // 0 - with (optional) visible search box, search by id + // 1 - with hidden search box, search by option text + // 2 - TODO reverse: box with hidden selector available via enter; this + // would be convenient for optional ad hoc adding of new item + 'search_submit' => true, //search submit button: true/false + 'size' => 8, // size and max of box tag + 'max' => 50, + 'cells' => false, // combo displayed as 2 cells + 'search' => array(), // sql field names to search + 'format' => null, // format functions for regular options + 'disabled' => false, // FIX todo + 'box_hint' => null // box/selectors hints; null = std see below +); +// ------ merge options with defaults ---------- + $opts = array_merge($opts, $options); + if (!is_array($opts['where'])) $opts['where'] = array($opts['where']); + + $search_box = $opts['search_box']===true ? '_'.$name.'_edit' : $opts['search_box']; + $search_submit = $opts['search_submit']===true ? '_'.$name.'_button' : $opts['search_submit']; + $select_submit = $opts['select_submit']===true ? '_'.$name.'_update' : $opts['select_submit']; + $spec_id = $opts['spec_id']; + $spec_option = $opts['spec_option']; + $by_id = ($opts['type'] == 0); + $class = $by_id ? 'combo':'combo2'; + + if(!count($opts['search'])) { + $opts['search'] = array($by_id ? $valfield : $namefield); + } + if ($opts['sel_hint'] === null) + $opts['sel_hint'] = $by_id || $search_box==false ? + '' : _('Press Space tab for search pattern entry'); - default_focus($name); - if ($selected_id == null) - $selected_id = ((!isset($_POST[$name]) || $_POST[$name] == "") ? "" : $_POST[$name]); + if ($opts['box_hint'] === null) + $opts['box_hint'] = $search_box ? + ($by_id ? _('Enter code fragment to search or * for all') + : _('Enter description fragment to search or * for all')) :''; + if ($selected_id == null) { + $selected_id = get_post($name); + } + $txt = get_post($search_box); + $rel = ''; + $limit = ''; - $supplier_sql = "SELECT supplier_id, supp_name, curr_code FROM ".TB_PREF."suppliers "; - if (get_company_pref('no_supplier_list')) - { - global $search_button; - $edit_name = $name."_edit"; - $edit_button = $name."_button"; + if (isset($_POST[$select_submit])) { + if (!$opts['async']) + $Ajax->activate('_page_body'); + else + $Ajax->activate($name); + } + if ($search_box) { + // search related sql modifications + + $rel = "rel='$search_box'"; // set relation to list + if ($opts['search_submit']) { + // if selected from list - set focus on next field + if (isset($_POST[$search_submit])) { + $Ajax->activate($name); + } + if ($txt == '') { + if ($spec_option === false) + $limit = ' LIMIT 1'; + else + $opts['where'][] = $valfield . "='". get_post($name, $spec_id)."'"; + } + else + if ($txt != '*') { - $val = (isset($_POST[$edit_name]) && $_POST[$edit_name] != "" ? $_POST[$edit_name] : ""); - if (isset($_POST[$edit_button])) - { - $selected_id = $_POST[$name] = ""; - set_focus($name); + foreach($opts['search'] as $i=> $s) + $opts['search'][$i] = $s . " LIKE '%{$txt}%'"; + $opts['where'][] = '('. implode($opts['search'], ' OR ') . ')'; } + } + } + // sql completion + if (count($opts['where'])) { + $sql .= strpos($sql, 'WHERE')==false ? ' WHERE ':' AND '; + $sql .= '('. implode($opts['where'], ' AND ') . ')'; + } + if ($opts['order'] != false) { + $sql .= ' ORDER BY '.$opts['order']; + } - if ($selected_id != "") - { - $val = DEFVAL; - $supplier_sql .= "WHERE supplier_id=$selected_id"; - } - elseif ($val != "" && $val != DEFVAL) - { - $supplier_sql .= "WHERE supp_name LIKE '%{$val}%' ORDER BY supp_name"; - } - else - $supplier_sql .= "ORDER BY supp_name LIMIT 1"; + $sql .= $limit; + // ------ make selector ---------- + $selector = $first_opt = ''; + $first_id = false; + $found = false; +//if($name=='code_id') display_error($sql); + if($result = db_query($sql)) { + while ($contact_row = db_fetch($result)) { + $value = $contact_row[0]; + $descr = $opts['format']==null ? $contact_row[1] : + call_user_func($opts['format'], $contact_row); + $sel = ''; + if (isset($_POST[$search_submit])) { + if (($by_id ? $value : $contact_row[1]) === $txt) + $selected_id = $value; + } + // if no initial selection - set the first item + if ($selected_id === "") { + $selected_id = $value; + } + if ($selected_id == $value) { + $sel = 'selected'; + $found = $value; + $_POST[$name] = $selected_id; + } + if ($first_opt == false) { + $first_id = $value; + $first_opt = $descr; + continue; + } + $selector .= "\n"; + } + db_free_result($result); + } + if ($first_id !== false) { + // add first option - selected also if no match for selected_id was found + // and no special option defined + $sel = $spec_option===false || $found === $first_id ? 'selected' : ''; + $selector = "\n" + . $selector; + } + // Prepend special option. + if ($spec_option !== false) { // if special option used - add it + $first_id = $spec_id; + $first_opt = $spec_option; + if (isset($_POST[$search_submit])) { + if ($txt == '') + $selected_id = $spec_id; + } + $sel = $found===false ? 'selected' : ''; + $selector = "\n" + . $selector; + $first_id = $spec_id; + } + + if ($found === false) { + $_POST[$name] = $first_id; + } - echo " "; - echo sprintf($search_button, $edit_button); + if ($by_id) { + $txt = $_POST[$name]; + if ($search_box) + $Ajax->addUpdate($name, $search_box, $txt); } - $supplier_result = db_query($supplier_sql); + $selector = "\n"; - if ($submit_on_change==true) - echo ""; + $Ajax->addUpdate($name, "_{$name}_sel", $selector); - $company_currency = get_company_currency(); + // because of bug which M$ cannot fix since IE 5.0 + // we must embed whole selector in span tags to enable proper ajax update + $selector = "".$selector."\n"; - if ($all_option == true) - { - if ($selected_id == $all_items) - { - echo "\n"; - } - else - { - echo "\n"; - } - if ($selected_id == "") - { - $selected_id = $all_items; + if ($select_submit != false) { // if submit on change is used - add select button + global $_select_button; + // button class selects form reload/ajax selector update + $selector .= sprintf($_select_button, user_theme(), + (in_ajax() ? 'display:none;':''), + $select_submit)."\n"; + } +// ------ make combo ---------- + +$edit_entry = ''; + if ($search_box != false) { + $edit_entry = "\n"; + if ($search_submit != false) { + global $_search_button; + $edit_entry .= sprintf($_search_button, user_theme(), + (in_ajax() ? 'display:none;':''), + $search_submit)."\n"; } } + default_focus($name); + $str = $selector; + if ($search_box && $opts['cells']) + echo ($edit_entry!='' ? "$edit_entry" : '')."$selector"; + else + echo $edit_entry.$selector; - while ($supplier_row = db_fetch_row($supplier_result)) - { - if ($selected_id==$supplier_row[0]) - { - echo "\n"; - if ($selected_id == "") - { - $selected_id = $supplier_row[0]; - $_POST[$name] = $selected_id; - } - } +function supplier_list($name, $selected_id, $spec_option=false, $submit_on_change=false) +{ + global $all_items; - echo ""; + $sql = "SELECT supplier_id, supp_name, curr_code FROM ".TB_PREF."suppliers "; + + $mode = get_company_pref('no_supplier_list'); - db_free_result($supplier_result); + return combo_input($name, $selected_id, $sql, 'supplier_id', 'supp_name', + array( + 'format' => '_format_add_curr', + 'search_box' => $mode!=0, + 'type' => 1, + 'spec_option' => $spec_option === true ? _("All Suppliers") : $spec_option, + 'spec_id' => $all_items, + 'select_submit'=> $submit_on_change, + 'async' => false, + 'sel_hint' => $mode ? _('Press Space tab to filter by name fragment') : + _('Select supplier') + )); +} + +function _format_add_curr($row) +{ +static $company_currency; + +if ($company_currency == null) +{ + $company_currency = get_company_currency(); +} +return $row[1] . ($row[2] == $company_currency ? + '' : (" - " . $row[2])); } function supplier_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) { if ($label != null) - echo "$label\n"; - echo ""; - supplier_list($name, $selected_id, $all_option, $submit_on_change); - echo "\n"; + echo "$label\n"; + $str = supplier_list($name, $selected_id, $all_option, $submit_on_change); + echo "\n"; + return $str; } -function supplier_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function supplier_list_row($label, $name, $selected_id, $all_option = false, $submit_on_change=false) { - echo "\n"; - supplier_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); - echo "\n"; +echo "$label"; + $str = supplier_list($name, $selected_id, $all_option, $submit_on_change ); +echo "\n"; +return $str; } - //---------------------------------------------------------------------------------------------- -function customer_list($name, $selected_id, $all_option=false, $submit_on_change=false) +function customer_list($name, $selected_id, $spec_option=false, $submit_on_change=false) { global $all_items; - default_focus($name); - if ($selected_id == null) - $selected_id = ((!isset($_POST[$name]) || $_POST[$name] == "") ? "" : $_POST[$name]); - - $customer_sql = "SELECT debtor_no, name, curr_code FROM ".TB_PREF."debtors_master "; - if (get_company_pref('no_customer_list')) - { - global $search_button; - $edit_name = $name."_edit"; - $edit_button = $name."_button"; - - $val = (isset($_POST[$edit_name]) && $_POST[$edit_name] != "" ? $_POST[$edit_name] : ""); - if (isset($_POST[$edit_button])) - { - $selected_id = $_POST[$name] = ""; - $_POST['branch_id'] = ""; - set_focus($name); - } - if ($selected_id != "") - { - $val = DEFVAL; - $customer_sql .= "WHERE debtor_no=$selected_id"; - } - elseif ($val != "" && $val != DEFVAL) - { - $customer_sql .= "WHERE name LIKE '%{$val}%' ORDER BY name"; - } - else - $customer_sql .= "ORDER BY name LIMIT 1"; - echo " "; - - echo sprintf($search_button, $edit_button); - } - - $customer_result = db_query($customer_sql); + $sql = "SELECT debtor_no, name, curr_code FROM ".TB_PREF."debtors_master "; - if ($submit_on_change==true) - echo ""; - - $company_currency = get_company_currency(); + $mode = get_company_pref('no_customer_list'); - if (($all_option == true)) - { - if ($selected_id == $all_items) - { - echo "\n"; - } - else - { - echo "\n"; - } - if ($selected_id == "") - { - $selected_id = $all_items; - } - } - while ($customer_row = db_fetch_row($customer_result)) - { - if ($selected_id == $customer_row[0]) - { - echo "\n"; - // if no initial selection - set the first item - // do we want to do this for all lists ???? probably - if ($selected_id == "") - { - $selected_id = $customer_row[0]; - $_POST[$name] = $selected_id; - } - } - - echo ""; - db_free_result($customer_result); +return combo_input($name, $selected_id, $sql, 'debtor_no', 'name', + array( + 'format' => '_format_add_curr', + 'search_box' => $mode!=0, + 'type' => 1, + 'size' => 20, + 'spec_option' => $spec_option === true ? _("All Customers") : $spec_option, + 'spec_id' => $all_items, + 'select_submit'=> $submit_on_change, + 'async' => false, + 'sel_hint' => $mode ? _('Press Space tab to filter by name fragment') : + _('Select customer') + ) ); } -function customer_list_cells($label, $name, $selected_id, $all_option = false, $submit_on_change=false) +function customer_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - customer_list($name, $selected_id, $all_option, $submit_on_change); + $str = customer_list($name, $selected_id, $all_option, $submit_on_change); echo "\n"; + return $str; } function customer_list_row($label, $name, $selected_id, $all_option = false, $submit_on_change=false) { - echo "\n"; - customer_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); - echo "\n"; +echo "$label"; +$str = customer_list($name, $selected_id, $all_option, $submit_on_change); +echo "\n\n"; +return $str; } //------------------------------------------------------------------------------------------------ function customer_branches_list($customer_id, $name, $selected_id, - $all_option = true, $enabled=true, $submit_on_change=false) + $spec_option = true, $enabled=true, $submit_on_change=false) { global $all_items; - default_focus($name); - if ($submit_on_change==true) - echo ""; - $sql = "SELECT branch_code, br_name FROM ".TB_PREF."cust_branch - WHERE debtor_no='" . $customer_id . "'"; - if ($enabled) - $sql .= " AND disable_trans = 0"; - $result = db_query($sql); - - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - if ($all_option == true) - { - echo "\n"; - - if ($selected_id == "") - { - $selected_id = $all_items; - } - } - - while ($row = db_fetch_row($result)) - { - if ($selected_id == $row[0]) - { - echo "\n"; - - if ($selected_id == "") - { - $selected_id = $row[0]; - $_POST[$name] = $selected_id; - } - } - - echo ""; - db_free_result($result); + WHERE debtor_no='" . $customer_id . "' "; + + $where = $enabled ? array("disable_trans = 0") : array(); +return combo_input($name, $selected_id, $sql, 'branch_code', 'br_name', + array( + 'where' => $where, + 'spec_option' => $spec_option === true ? _('All branches') : $spec_option, + 'spec_id' => $all_items, + 'select_submit'=> $submit_on_change, + 'sel_hint' => _('Select customer branch') +// 'async' => false + ) ); } +//------------------------------------------------------------------------------------------------ function customer_branches_list_cells($label,$customer_id, $name, $selected_id, $all_option = true, $enabled=true, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - customer_branches_list($customer_id, $name, $selected_id, $all_option, $enabled, $submit_on_change); + $ret = customer_branches_list($customer_id, $name, $selected_id, $all_option, $enabled, $submit_on_change); echo "\n"; + return $ret; } function customer_branches_list_row($label,$customer_id, $name, $selected_id, $all_option = true, $enabled=true, $submit_on_change=false) { echo ""; - customer_branches_list_cells($label, $customer_id, $name, $selected_id, $all_option, $enabled, $submit_on_change); + $ret = customer_branches_list_cells($label, $customer_id, $name, $selected_id, $all_option, $enabled, $submit_on_change); echo ""; + return $ret; } //------------------------------------------------------------------------------------------------ @@ -309,56 +368,15 @@ function locations_list($name, $selected_id, $all_option=false, $submit_on_chang { global $all_items; - default_focus($name); - if ($submit_on_change == true) - echo ""; - -// if ($selected_id =="" AND isset($_SESSION['UserStockLocation']) AND $_SESSION['UserStockLocation'] !="") { -// $selected_id = $_SESSION['UserStockLocation']; -// } - $sql = "SELECT loc_code, location_name FROM ".TB_PREF."locations"; - $result = db_query($sql); - - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - if ($all_option == true) - { - echo "\n"; - - if ($selected_id == "") - { - $selected_id = $all_items; - } - } - while ($row = db_fetch_row($result)) - { - if ($selected_id == $row[0]) - { - echo "\n"; - - if ($selected_id == "") - { - $selected_id = $row[0]; - $_POST[$name] = $selected_id; - } - } - - echo ""; - - db_free_result($result); +return combo_input($name, $selected_id, $sql, 'loc_code', 'location_name', + array( + 'spec_option' => $all_option === true ? _("All Locations") : $all_option, + 'spec_id' => $all_items, + 'select_submit'=> $submit_on_change, + 'async' => false + ) ); } function locations_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) @@ -366,56 +384,37 @@ function locations_list_cells($label, $name, $selected_id, $all_option=false, $s if ($label != null) echo "$label\n"; echo ""; - locations_list($name, $selected_id, $all_option, $submit_on_change); + $str = locations_list($name, $selected_id, $all_option, $submit_on_change); echo "\n"; + return $str; } function locations_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) { echo ""; - locations_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + $str = locations_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); echo "\n"; + return $str; } //----------------------------------------------------------------------------------------------- -function currencies_list($name, &$selected_id, $submit_on_change=false) +function currencies_list($name, $selected_id, $submit_on_change=false) { - default_focus($name); - if ($submit_on_change==true) - echo ""; - - $company_currency = get_company_currency(); - $sql = "SELECT curr_abrev, currency FROM ".TB_PREF."currencies"; - $result = db_query($sql); - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - while ($row = db_fetch_row($result)) +// default to the company currency + if ($selected_id == "") { - // default to the company currency - if ($selected_id == "" && ($row[0] == $company_currency)) - { - $selected_id = $row[0]; + $selected_id = get_company_currency(); $_POST[$name] = $selected_id; - } - - if ($selected_id == $row[0]) - { - echo "\n"; } - echo ""; - db_free_result($result); +return combo_input($name, $selected_id, $sql, 'curr_abrev', 'currency', + array( + 'select_submit'=> $submit_on_change, + 'async' => false + ) ); } function currencies_list_cells($label, $name, $selected_id) @@ -423,62 +422,46 @@ function currencies_list_cells($label, $name, $selected_id) if ($label != null) echo "$label\n"; echo ""; - currencies_list($name, $selected_id); + $str = currencies_list($name, $selected_id); echo "\n"; + return $str; } function currencies_list_row($label, $name, $selected_id) { echo "\n"; - currencies_list_cells($label, $name, $selected_id); + $str = currencies_list_cells($label, $name, $selected_id); echo "\n"; + return $str; } //--------------------------------------------------------------------------------------------------- -function fiscalyears_list($name, &$selected_id, $submit_on_change=false) +function fiscalyears_list($name, $selected_id, $submit_on_change=false) { - default_focus($name); - if ($submit_on_change == true) - echo ""; - - $company_year = get_company_pref('f_year'); - $sql = "SELECT * FROM ".TB_PREF."fiscal_year ORDER BY begin"; - $result = db_query($sql); + $sql = "SELECT * FROM ".TB_PREF."fiscal_year"; - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - while ($row = db_fetch_row($result)) +// default to the company current fiscal year + if ($selected_id == "") { - // default to the company current fiscal year - if ($selected_id == "" && ($row[0] == $company_year)) - { - $selected_id = $row[0]; + $selected_id = get_company_pref('f_year'); $_POST[$name] = $selected_id; - } - - if ($selected_id == $row[0]) - { - echo "\n"; } - echo ""; - db_free_result($result); +return combo_input($name, $selected_id, $sql, 'id', '', + array( + 'order' => 'begin', + 'format' => '_format_fiscalyears', + 'select_submit'=> $submit_on_change, + 'async' => false + ) ); +} + +function _format_fiscalyears($row) +{ + return sql2date($row[1]) . " - " . sql2date($row[2]) + . "  " . ($row[3] ? _('Closed') : _('Active')) . "\n"; } function fiscalyears_list_cells($label, $name, $selected_id) @@ -486,522 +469,244 @@ function fiscalyears_list_cells($label, $name, $selected_id) if ($label != null) echo "$label\n"; echo ""; - fiscalyears_list($name, $selected_id); + $str = fiscalyears_list($name, $selected_id); echo "\n"; + return $str; } function fiscalyears_list_row($label, $name, $selected_id) { echo "\n"; - fiscalyears_list_cells($label, $name, $selected_id); + $str = fiscalyears_list_cells($label, $name, $selected_id); echo "\n"; + return $str; } - -//--------------------------------------------------------------------------------------------------- - -function simple_codeandname_list($sql, $name, &$selected_id, - $all_option=false, $all_option_name=null, $all_option_numeric=false, - $submit_on_change=false, $returnzero=false) -{ - global $all_items; - - default_focus($name); - if ($submit_on_change == true) - echo ""; - - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - if ($all_option == true) - { - if ($returnzero) - $reserved_word = 0; - elseif ($all_option_numeric) - $reserved_word = reserved_words::get_all_numeric(); - else - $reserved_word = $all_items; - - if ($selected_id == $reserved_word) - { - echo "\n"; - } - else - { - echo "\n"; - } - if ($selected_id == "") - { - $selected_id = $reserved_word; - } - } - - $result = db_query($sql); - - while ($row = db_fetch_row($result)) - { - if ($selected_id == $row[0]) - { - echo "\n"; - - if (!$returnzero && $selected_id == "") - { - $selected_id = $row[0]; - $_POST[$name] = $selected_id; - } - } - - echo ""; - db_free_result($result); -} - //------------------------------------------------------------------------------------ -function dimensions_list($name, &$selected_id, $no_option=false, $showname=null, +function dimensions_list($name, $selected_id, $no_option=false, $showname=' ', $submit_on_change=false, $showclosed=false, $showtype=1) { - default_focus($name); - $sql = "SELECT id, CONCAT(reference,' ',name) FROM ".TB_PREF."dimensions"; - if ($showclosed || $showtype) - { - $sql .= " WHERE"; - if ($showclosed) - $sql .= " closed=0"; - if ($showclosed && $showtype) - $sql .= " AND type_=$showtype"; - else if ($showtype) - $sql .= " type_=$showtype"; - } - $sql .= " ORDER BY reference"; - simple_codeandname_list($sql, $name, $selected_id, $no_option, $showname, - true, $submit_on_change, true); -} - -function dimensions_list_cells($label, $name, $selected_id, $no_option=false, $showname=null, - $showclosed=false, $showtype=0) -{ - if ($label != null) - echo "$label\n"; - echo ""; - dimensions_list($name, $selected_id, $no_option, $showname, false, $showclosed, $showtype); - echo "\n"; -} - -function dimensions_list_row($label, $name, $selected_id, $no_option=false, $showname=null, - $showclosed=false, $showtype=0) -{ - echo "\n"; - dimensions_list_cells($label, $name, $selected_id, $no_option, $showname, - $showclosed, $showtype); - echo "\n"; -} - -//--------------------------------------------------------------------------------------------------- - -function stock_items_list($name, $selected_id, $all_option=false, $submit_on_change=false, $extra="") -{ - global $all_items; - - default_focus($name); - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - - - $sql = "SELECT stock_id, ".TB_PREF."stock_master.description, ".TB_PREF."stock_category.description - FROM ".TB_PREF."stock_master,".TB_PREF."stock_category WHERE ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id"; - - if (get_company_pref('no_item_list')) - { - global $search_button; - $edit_name = $name."_edit"; - $edit_button = $name."_button"; - - $val = (isset($_POST[$edit_name]) && $_POST[$edit_name] != "" ? $_POST[$edit_name] : ""); - - if (isset($_POST[$edit_button])) - { - $selected_id = $_POST[$name] = ""; - set_focus($name); - } - if ($selected_id != "") - { - $val = DEFVAL; - $sql .= " AND stock_id='$selected_id'"; - } - elseif ($val != "" && $val != DEFVAL) - { - $sql .= " AND - (stock_id LIKE '%{$val}%' OR ".TB_PREF."stock_category.description LIKE '%{$val}%' OR " - .TB_PREF."stock_master.description LIKE '%{$val}%')"; - } - else - $sql .= " LIMIT 1"; - echo " "; - - echo sprintf($search_button, $edit_button); - } - $result = db_query($sql); +$sql = "SELECT id, CONCAT(reference,' ',name) as ref FROM ".TB_PREF."dimensions"; +$options = array( + 'order' => 'reference', + 'spec_option'=>$no_option ? $showname : false, + 'spec_id' => 0, + 'select_submit'=> $submit_on_change, + 'async' => false, + ); - echo ""; - db_free_result($result); + if ($showclosed) + $options['where'][] = "closed=0"; + if($showtype) + $options['where'][] = "type_=$showtype"; + + return combo_input($name, $selected_id, $sql, 'id', 'ref', $options); } -function stock_items_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false, $extra="") +function dimensions_list_cells($label, $name, $selected_id, $no_option=false, $showname=null, + $showclosed=false, $showtype=0) { if ($label != null) echo "$label\n"; - echo ""; - stock_items_list($name, $selected_id, $all_option, $submit_on_change, $extra); + echo ""; + $str = dimensions_list($name, $selected_id, $no_option, $showname, false, $showclosed, $showtype); echo "\n"; + return $str; } -function stock_items_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function dimensions_list_row($label, $name, $selected_id, $no_option=false, $showname=null, + $showclosed=false, $showtype=0) { echo "\n"; - stock_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + $str = dimensions_list_cells($label, $name, $selected_id, $no_option, $showname, + $showclosed, $showtype); echo "\n"; + return $str; } -//------------------------------------------------------------------------------------ +//--------------------------------------------------------------------------------------------------- -function stock_bom_items_list($name, $selected_id, $all_option=false, $submit_on_change=false) +function stock_items_list($name, $selected_id, $all_option=false, $submit_on_change=false, $opts=array()) { global $all_items; - default_focus($name); - if ($submit_on_change==true) - echo ""; - - $sql = "SELECT stock_id, ".TB_PREF."stock_master.description, ".TB_PREF."stock_category.description - FROM ".TB_PREF."stock_master,".TB_PREF."stock_category WHERE ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id - AND (".TB_PREF."stock_master.mb_flag='M' OR ".TB_PREF."stock_master.mb_flag='K')"; - $result = db_query($sql); + $sql = "SELECT stock_id, s.description, c.description + FROM ".TB_PREF."stock_master s,".TB_PREF."stock_category c WHERE s.category_id=c.category_id"; - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - if (($all_option == true)) - { - if ($selected_id == $all_items) - { - echo "\n"; - } - else - { - echo "\n"; - } - if ($selected_id == "") - { - $selected_id = $all_items; - } - } - - while ($row = db_fetch_row($result)) - { - if ($selected_id==$row[0]) - { - echo "\n"; - - if ($selected_id == "") - { - $selected_id = $row[0]; - $_POST[$name] = $selected_id; - } - } + return combo_input($name, $selected_id, $sql, 'stock_id', 's.description', + array_merge( + array( + 'format' => '_format_stock_items', + 'spec_option' => $all_option===true ? _("All Items") : $all_option, + 'spec_id' => $all_items, + 'search_box' => true, + 'search' => array("stock_id", "c.description","s.description"), + 'search_submit' => get_company_pref('no_item_list')!=0, + 'size'=>10, + 'select_submit'=> $submit_on_change + ), $opts) ); +} - echo ""; - db_free_result($result); +function _format_stock_items($row) +{ + return (user_show_codes() ? ($row[0] . " - ") : "") + . $row[2] . " - " . $row[1]; } -function stock_bom_items_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function stock_items_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; - echo ""; - stock_bom_items_list($name, $selected_id, $all_option, $submit_on_change); - echo "\n"; + $str = stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('cells'=>true)); + return $str; } - -function stock_bom_items_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +/* +function stock_items_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) { echo "\n"; - stock_bom_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + $str = stock_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); echo "\n"; + return $str; } - +*/ //------------------------------------------------------------------------------------ -function base_stock_items_list($sql, $name, &$selected_id, - $all_option=false, $all_option_name="", $submit_on_change=false, $extra="") +function base_stock_items_list($where, $name, $selected_id, + $all_option=false, $submit_on_change=false) { global $all_items; - default_focus($name); - if ($submit_on_change==true) - echo ""; - else - echo ""; - db_free_result($result); + return base_stock_items_list("(s.mb_flag='M' OR s.mb_flag='K')", + $name, $selected_id, $all_option, $submit_on_change); +} +/* +function stock_bom_items_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +{ + if ($label != null) + echo "$label\n"; + echo ""; + $str = stock_bom_items_list($name, $selected_id, $all_option, $submit_on_change); + echo "\n"; + return $str; } +function stock_bom_items_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +{ + echo "\n"; + $str = stock_bom_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + echo "\n"; + return $str; +} +*/ //------------------------------------------------------------------------------------ -function stock_manufactured_items_list($name, &$selected_id, +function stock_manufactured_items_list($name, $selected_id, $all_option=false, $submit_on_change=false) { - $sql = "SELECT stock_id, ".TB_PREF."stock_master.description, ".TB_PREF."stock_category.description - FROM ".TB_PREF."stock_master,".TB_PREF."stock_category WHERE ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id - AND (".TB_PREF."stock_master.mb_flag='M')"; - - base_stock_items_list($sql, $name, $selected_id, $all_option, _("All Items"), - $submit_on_change); + return base_stock_items_list("s.mb_flag='M'", + $name, $selected_id, $all_option, $submit_on_change); } -function stock_manufactured_items_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function stock_manufactured_items_list_cells($label, $name, $selected_id, + $all_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - stock_manufactured_items_list($name, $selected_id, $all_option, $submit_on_change); + $str = stock_manufactured_items_list($name, $selected_id, $all_option, + $submit_on_change); echo "\n"; + return $str; } -function stock_manufactured_items_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function stock_manufactured_items_list_row($label, $name, $selected_id, + $all_option=false, $submit_on_change=false) { echo "\n"; - stock_manufactured_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + $str = stock_manufactured_items_list_cells($label, $name, $selected_id, + $all_option, $submit_on_change); echo "\n"; + return $str; } - //------------------------------------------------------------------------------------ -function stock_component_items_list($name, $parent_stock_id, &$selected_id, +function stock_component_items_list($name, $parent_stock_id, $selected_id, $all_option=false, $submit_on_change=false) { - $sql = "SELECT stock_id, ".TB_PREF."stock_master.description, ".TB_PREF."stock_category.description - FROM ".TB_PREF."stock_master,".TB_PREF."stock_category WHERE - ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id - AND stock_id != '$parent_stock_id'"; + return base_stock_items_list("stock_id != '$parent_stock_id'", $name, $selected_id, + $all_option, $submit_on_change); +} +//------------------------------------------------------------------------------------ - base_stock_items_list($sql, $name, $selected_id, - $all_option, _("All Items"), $submit_on_change); +function stock_costable_items_list($name, $selected_id, + $all_option=false, $submit_on_change=false) +{ + return base_stock_items_list("mb_flag!='D'", $name, $selected_id, + $all_option, $submit_on_change); } //------------------------------------------------------------------------------------ -function stock_purchasable_items_list($name, &$selected_id, $all_option=false, $submit_on_change=false, $extra="") +function stock_purchasable_items_list($name, $selected_id, $all_option=false, + $submit_on_change=false, $opts=array()) { - global $all_items; - - default_focus($name); - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - $sql = "SELECT stock_id, ".TB_PREF."stock_master.description, ".TB_PREF."stock_category.description - FROM ".TB_PREF."stock_master,".TB_PREF."stock_category WHERE ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id + $sql = "SELECT stock_id, s.description, c.description + FROM ".TB_PREF."stock_master s,".TB_PREF."stock_category c + WHERE s.category_id=c.category_id AND mb_flag !='M' "; - if (get_company_pref('no_item_list')) - { - global $search_button; - $edit_name = $name."_edit"; - $edit_button = $name."_button"; - - $val = (isset($_POST[$edit_name]) && $_POST[$edit_name] != "" ? $_POST[$edit_name] : ""); - if (isset($_POST[$edit_button])) - { - $selected_id = $_POST[$name] = ""; - set_focus($name); - } - - if ($selected_id != "") - { - $val = DEFVAL; - $sql .= "AND stock_id='$selected_id'"; - } - elseif ($val != "" && $val != DEFVAL) - { - $sql .= "AND - (stock_id LIKE '%{$val}%' OR ".TB_PREF."stock_category.description LIKE '%{$val}%' OR " - .TB_PREF."stock_master.description LIKE '%{$val}%')"; - } - else - $sql .= "LIMIT 1"; - echo " "; - - echo sprintf($search_button, $edit_button); - } - - $result = db_query($sql); - - if ($submit_on_change==true) - echo ""; - else - echo ""; - db_free_result($result); } -function stock_purchasable_items_list_cells($label, $name, &$selected_id, $all_option=false, $submit_on_change=false, $extra = "") +function stock_purchasable_items_list_cells($label, $name, $selected_id, + $all_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; - echo ""; - stock_purchasable_items_list($name, $selected_id, $all_option, $submit_on_change, $extra); - echo "\n"; + $ret = stock_purchasable_items_list($name, $selected_id, $all_option, + $submit_on_change, array('cells'=>true) ); + return $ret; } -function stock_purchasable_items_list_row($label, $name, &$selected_id, $all_option=false, $submit_on_change=false) +function stock_purchasable_items_list_row($label, $name, $selected_id, + $all_option=false, $submit_on_change=false) { echo "\n"; - stock_purchasable_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + $ret = stock_purchasable_items_list_cells($label, $name, $selected_id, + $all_option, $submit_on_change); echo "\n"; -} - -//------------------------------------------------------------------------------------ - -function stock_costable_items_list($name, &$selected_id, - $all_option=false, $submit_on_change=false) -{ - $sql = "SELECT stock_id, ".TB_PREF."stock_master.description, ".TB_PREF."stock_category.description - FROM ".TB_PREF."stock_master,".TB_PREF."stock_category WHERE ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id - AND mb_flag !='D'"; - - base_stock_items_list($sql, $name, $selected_id, - $all_option, _("All Items"), $submit_on_change); + return $ret; } //------------------------------------------------------------------------------------ @@ -1014,22 +719,25 @@ function stock_item_types_list_row($label, $name, $selected_id, $enabled=true) echo "$label\n"; echo ""; if ($enabled) - echo "\n"; else - echo "\n"; if ($selected_id == null) $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); if ($selected_id == "") $_POST[$name] = $selected_id = "B"; - echo "\n"; - echo "\n"; - echo "\n"; - echo "\n"; + $sel .= "\n"; + $sel .= "\n"; + $sel .= "\n"; + $sel .= ""; + echo $sel; + echo "\n"; + return $sel; } function stock_units_list_row($label, $name, $value, $enabled=true) { - global $stock_units; + global $stock_units; default_focus($name); $result = get_all_item_units(); @@ -1044,7 +752,8 @@ function stock_units_list_row($label, $name, $value, $enabled=true) while($unit = db_fetch($result)) { - if ($value == "") { + if ($value == "") + { $_POST[$name] = $unit['abbr']; } $descr = $unit['name']; @@ -1062,38 +771,58 @@ function stock_units_list_row($label, $name, $value, $enabled=true) //------------------------------------------------------------------------------------ -function tax_types_list($name, $selected_id, - $none_option=false, $none_option_name=null, $submit_on_change=false) +function tax_types_list($name, $selected_id, $none_option=false, $submit_on_change=false) { - simple_codeandname_list("SELECT id, CONCAT(name, ' (',rate,'%)') as name FROM ".TB_PREF."tax_types", - $name, $selected_id, $none_option, $none_option_name, true, $submit_on_change); + global $all_items; + + $sql = "SELECT id, CONCAT(name, ' (',rate,'%)') as name FROM ".TB_PREF."tax_types"; + + return combo_input($name, $selected_id, $sql, 'id', 'name', + array( + 'spec_option' => $none_option, + 'spec_id' => $all_items, + 'select_submit'=> $submit_on_change, + 'async' => false, + ) ); } function tax_types_list_cells($label, $name, $selected_id, $none_option=false, - $none_option_name=null, $submit_on_change=false) + $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - tax_types_list($name, $selected_id, $none_option, $none_option_name, $submit_on_change); + $str = tax_types_list($name, $selected_id, $none_option, $submit_on_change); echo "\n"; + return $str; } function tax_types_list_row($label, $name, $selected_id, $none_option=false, - $none_option_name=null, $submit_on_change=false) + $submit_on_change=false) { echo "\n"; - tax_types_list_cells($label, $name, $selected_id, $none_option, $none_option_name, $submit_on_change); + $str = tax_types_list_cells($label, $name, $selected_id, $none_option, $submit_on_change); echo "\n"; + return $str; } //------------------------------------------------------------------------------------ function tax_groups_list($name, $selected_id, - $none_option=false, $none_option_name=null, $submit_on_change=false) + $none_option=false, $submit_on_change=false) { - simple_codeandname_list("SELECT id, name FROM ".TB_PREF."tax_groups ORDER BY id", - $name, $selected_id, $none_option, $none_option_name, true, $submit_on_change); + global $all_items; + + $sql = "SELECT id, name FROM ".TB_PREF."tax_groups"; + + return combo_input($name, $selected_id, $sql, 'id', 'name', + array( + 'order' => 'id', + 'spec_option' => $none_option, + 'spec_id' => $all_items, + 'select_submit'=> $submit_on_change, + 'async' => false, + ) ); } function tax_groups_list_cells($label, $name, $selected_id, $submit_on_change=false) @@ -1101,23 +830,25 @@ function tax_groups_list_cells($label, $name, $selected_id, $submit_on_change=fa if ($label != null) echo "$label\n"; echo ""; - tax_groups_list($name, $selected_id, false, null, $submit_on_change); + $str = tax_groups_list($name, $selected_id, false, $submit_on_change); echo "\n"; + return $str; } function tax_groups_list_row($label, $name, $selected_id, $submit_on_change=false) { echo "\n"; - tax_groups_list_cells($label, $name, $selected_id, false, null, $submit_on_change); + $str = tax_groups_list_cells($label, $name, $selected_id, false, $submit_on_change); echo "\n"; + return $str; } //------------------------------------------------------------------------------------ function item_tax_types_list($name, $selected_id) { - simple_codeandname_list("SELECT id, name FROM ".TB_PREF."item_tax_types ORDER BY id", - $name, $selected_id); + $sql ="SELECT id, name FROM ".TB_PREF."item_tax_types"; + combo_input($name, $selected_id, $sql, 'id', 'name', array('order' => 'id') ); } function item_tax_types_list_cells($label, $name, $selected_id) @@ -1140,8 +871,8 @@ function item_tax_types_list_row($label, $name, $selected_id) function shippers_list($name, $selected_id) { - simple_codeandname_list("SELECT shipper_id, shipper_name FROM ".TB_PREF."shippers", - $name, $selected_id); + $sql = "SELECT shipper_id, shipper_name FROM ".TB_PREF."shippers"; + combo_input($name, $selected_id, $sql, 'shipper_id', 'shipper_name', array()); } function shippers_list_cells($label, $name, $selected_id) @@ -1164,8 +895,8 @@ function shippers_list_row($label, $name, $selected_id) function sales_persons_list($name, $selected_id) { - simple_codeandname_list("SELECT salesman_code, salesman_name FROM ".TB_PREF."salesman", - $name, $selected_id); + $sql = "SELECT salesman_code, salesman_name FROM ".TB_PREF."salesman"; + combo_input($name, $selected_id, $sql, 'salesman_code', 'salesman_name', array()); } function sales_persons_list_cells($label, $name, $selected_id) @@ -1188,8 +919,8 @@ function sales_persons_list_row($label, $name, $selected_id, $submit_on_change=f function sales_areas_list($name, $selected_id) { - simple_codeandname_list("SELECT area_code, description FROM ".TB_PREF."areas", - $name, $selected_id); + $sql = "SELECT area_code, description FROM ".TB_PREF."areas"; + combo_input($name, $selected_id, $sql, 'area_code', 'description', array()); } function sales_areas_list_cells($label, $name, $selected_id) @@ -1212,8 +943,8 @@ function sales_areas_list_row($label, $name, $selected_id) function workorders_list($name, $selected_id) { - simple_codeandname_list("SELECT id, wo_ref FROM ".TB_PREF."workorders WHERE closed=0", - $name, $selected_id); + $sql = "SELECT id, wo_ref FROM ".TB_PREF."workorders WHERE closed=0"; + combo_input($name, $selected_id, $sql, 'id', 'wo_ref', array()); } function workorders_list_cells($label, $name, $selected_id) @@ -1236,8 +967,8 @@ function workorders_list_row($label, $name, $selected_id) function payment_terms_list($name, $selected_id) { - simple_codeandname_list("SELECT terms_indicator, terms FROM ".TB_PREF."payment_terms", - $name, $selected_id); + $sql = "SELECT terms_indicator, terms FROM ".TB_PREF."payment_terms"; + combo_input($name, $selected_id, $sql, 'terms_indicator', 'terms', array()); } function payment_terms_list_cells($label, $name, $selected_id) @@ -1260,8 +991,8 @@ function payment_terms_list_row($label, $name, $selected_id) function credit_status_list($name, $selected_id) { - simple_codeandname_list("SELECT id, reason_description FROM ".TB_PREF."credit_status", - $name, $selected_id); + $sql ="SELECT id, reason_description FROM ".TB_PREF."credit_status"; + combo_input($name, $selected_id, $sql, 'id', 'reason_description', array()); } function credit_status_list_cells($label, $name, $selected_id) @@ -1282,35 +1013,45 @@ function credit_status_list_row($label, $name, $selected_id) //----------------------------------------------------------------------------------------------- -function sales_types_list($name, $selected_id, $submit_on_change=false, $special_option=null) +function sales_types_list($name, $selected_id, $submit_on_change=false, $special_option=false) { - simple_codeandname_list("SELECT id, sales_type FROM ".TB_PREF."sales_types", - $name, $selected_id, - isset($special_option), $special_option, true, $submit_on_change); + global $all_items; + + $sql = "SELECT id, sales_type FROM ".TB_PREF."sales_types"; + + return combo_input($name, $selected_id, $sql, 'id', 'sales_type', + array( + 'spec_option' => $special_option===true ? _("All Sales Types") : $special_option, + 'spec_id' => 0, + 'select_submit'=> $submit_on_change, + // 'async' => false, + ) ); } -function sales_types_list_cells($label, $name, $selected_id, $submit_on_change=false, $special_option=null) +function sales_types_list_cells($label, $name, $selected_id, $submit_on_change=false, $special_option=false) { if ($label != null) echo "$label\n"; echo ""; - sales_types_list($name, $selected_id, $submit_on_change, $special_option); + $str = sales_types_list($name, $selected_id, $submit_on_change, $special_option); echo "\n"; + return $str; } -function sales_types_list_row($label, $name, $selected_id, $submit_on_change=false, $special_option=null) +function sales_types_list_row($label, $name, $selected_id, $submit_on_change=false, $special_option=false) { echo "\n"; - sales_types_list_cells($label, $name, $selected_id, $submit_on_change, $special_option); + $str = sales_types_list_cells($label, $name, $selected_id, $submit_on_change, $special_option); echo "\n"; + return $str; } //----------------------------------------------------------------------------------------------- function movement_types_list($name, $selected_id) { - simple_codeandname_list("SELECT id, name FROM ".TB_PREF."movement_types", - $name, $selected_id); + $sql = "SELECT id, name FROM ".TB_PREF."movement_types"; + combo_input($name, $selected_id, $sql, 'id', 'name', array()); } function movement_types_list_cells($label, $name, $selected_id) @@ -1333,8 +1074,8 @@ function movement_types_list_row($label, $name, $selected_id) function bank_trans_types_list($name, $selected_id) { - simple_codeandname_list("SELECT id, name FROM ".TB_PREF."bank_trans_types", - $name, $selected_id); + $sql = "SELECT id, name FROM ".TB_PREF."bank_trans_types"; + combo_input($name, $selected_id, $sql, 'id', 'name', array()); } function bank_trans_types_list_cells($label, $name, $selected_id) @@ -1359,41 +1100,13 @@ function workcenter_list($name, $selected_id, $all_option=false) { global $all_items; - default_focus($name); - echo ""; - db_free_result($result); + return combo_input($name, $selected_id, $sql, 'id', 'name', + array( + 'spec_option' =>$all_option===true ? _("All Suppliers") : $all_option, + 'spec_id' => $all_items, + ) ); } function workcenter_list_cells($label, $name, $selected_id, $all_option=false) @@ -1417,44 +1130,16 @@ function workcenter_list_row($label, $name, $selected_id, $all_option=false) function bank_accounts_list($name, $selected_id, $submit_on_change=false) { - default_focus($name); - if ($submit_on_change==true) - echo ""; - - $company_currency = get_company_currency(); - $sql = "SELECT ".TB_PREF."bank_accounts.account_code, bank_account_name, bank_curr_code FROM ".TB_PREF."bank_accounts, ".TB_PREF."chart_master WHERE ".TB_PREF."bank_accounts.account_code=".TB_PREF."chart_master.account_code"; - $result = db_query($sql); - - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - while ($row = db_fetch_row($result)) - { - if ($selected_id == $row[0]) - { - echo "\n"; - if ($selected_id == "") - { - $selected_id = $row[0]; - $_POST[$name] = $selected_id; - } - } - echo ""; - db_free_result($result); + return combo_input($name, $selected_id, $sql, 'account_code', 'bank_account_name', + array( + 'format' => '_format_add_curr', + 'select_submit'=> $submit_on_change, + 'async' => false + ) ); } function bank_accounts_list_cells($label, $name, $selected_id, $submit_on_change=false) @@ -1462,52 +1147,31 @@ function bank_accounts_list_cells($label, $name, $selected_id, $submit_on_change if ($label != null) echo "$label\n"; echo ""; - bank_accounts_list($name, $selected_id, $submit_on_change); + $str = bank_accounts_list($name, $selected_id, $submit_on_change); echo "\n"; + return $str; } function bank_accounts_list_row($label, $name, $selected_id, $submit_on_change=false) { echo "\n"; - bank_accounts_list_cells($label, $name, $selected_id, $submit_on_change); + $str = bank_accounts_list_cells($label, $name, $selected_id, $submit_on_change); echo "\n"; + return $str; } //----------------------------------------------------------------------------------------------- function class_list($name, $selected_id, $submit_on_change=false) { - default_focus($name); - if ($submit_on_change==true) - echo ""; - $sql = "SELECT cid, class_name FROM ".TB_PREF."chart_class"; - $result = db_query($sql); - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - while ($row = db_fetch_row($result)) - { - if ($selected_id == $row[0]) - { - echo "\n"; - if ($selected_id == "") - { - $selected_id = $row[0]; - $_POST[$name] = $selected_id; - } - } + return combo_input($name, $selected_id, $sql, 'cid', 'class_name', + array( + 'select_submit'=> $submit_on_change, + 'async' => false + ) ); - echo ""; - db_free_result($result); } function class_list_cells($label, $name, $selected_id, $submit_on_change=false) @@ -1515,23 +1179,26 @@ function class_list_cells($label, $name, $selected_id, $submit_on_change=false) if ($label != null) echo "$label\n"; echo ""; - class_list($name, $selected_id, $submit_on_change); + $str = class_list($name, $selected_id, $submit_on_change); echo "\n"; + return $str; } function class_list_row($label, $name, $selected_id, $submit_on_change=false) { echo "\n"; - class_list_cells($label, $name, $selected_id, $submit_on_change); + $str = class_list_cells($label, $name, $selected_id, $submit_on_change); echo "\n"; + return $str; } //----------------------------------------------------------------------------------------------- function stock_categories_list($name, $selected_id) { - simple_codeandname_list("SELECT category_id, description FROM ".TB_PREF."stock_category - ORDER BY category_id", $name, $selected_id); + $sql = "SELECT category_id, description FROM ".TB_PREF."stock_category"; + combo_input($name, $selected_id, $sql, 'category_id', 'description', + array('order'=>'category_id')); } function stock_categories_list_cells($label, $name, $selected_id) @@ -1552,102 +1219,94 @@ function stock_categories_list_row($label, $name, $selected_id) //----------------------------------------------------------------------------------------------- -function gl_account_types_list($name, $selected_id, $all_option, $all_option_name, - $all_option_numeric) +function gl_account_types_list($name, $selected_id, $all_option, $all_option_numeric) { - simple_codeandname_list("SELECT id, name FROM ".TB_PREF."chart_types ORDER BY id", - $name, $selected_id, $all_option, $all_option_name, $all_option_numeric); + global $all_items; + + $sql = "SELECT id, name FROM ".TB_PREF."chart_types"; + + combo_input($name, $selected_id, $sql, 'id', 'name', + array( + 'order' => 'id', + 'spec_option' =>$all_option, + 'spec_id' => $all_option_numeric ? 0 : $all_items + ) ); } -function gl_account_types_list_cells($label, $name, $selected_id, $all_option=false, $all_option_name=null, +function gl_account_types_list_cells($label, $name, $selected_id, $all_option=false, $all_option_numeric=false) { if ($label != null) echo "$label\n"; echo ""; - gl_account_types_list($name, $selected_id, $all_option, $all_option_name, $all_option_numeric); + gl_account_types_list($name, $selected_id, $all_option, $all_option_numeric); echo "\n"; } -function gl_account_types_list_row($label, $name, $selected_id, $all_option=false, $all_option_name=null, +function gl_account_types_list_row($label, $name, $selected_id, $all_option=false, $all_option_numeric=false) { echo "\n"; gl_account_types_list_cells($label, $name, $selected_id, $all_option, - $all_option_name, $all_option_numeric); + $all_option_numeric); echo "\n"; } //----------------------------------------------------------------------------------------------- - function gl_all_accounts_list($name, $selected_id, $skip_bank_accounts=false, - $show_group=false, $params="") + $show_group=false, $cells=false) { - default_focus($name); - echo ""; - db_free_result($result); +function _format_account2($row) +{ + return $row[0] . "    " . $row[2] . "      " . $row[1]; } function gl_all_accounts_list_cells($label, $name, $selected_id, $skip_bank_accounts=false, - $show_group=false, $params="") + $show_group=false, $cells=false) { if ($label != null) echo "$label\n"; echo ""; - gl_all_accounts_list($name, $selected_id, $skip_bank_accounts, $show_group, $params); + gl_all_accounts_list($name, $selected_id, $skip_bank_accounts, $show_group, $cells); echo "\n"; } function gl_all_accounts_list_row($label, $name, $selected_id, $skip_bank_accounts=false, - $show_group=false, $params="") + $show_group=false, $cells=false) { echo "\n"; gl_all_accounts_list_cells($label, $name, $selected_id, $skip_bank_accounts, - $show_group, $params); + $show_group, $cells); echo "\n"; } @@ -1655,7 +1314,7 @@ function yesno_list($name, $selected_id, $name_yes="", $name_no="", $submit_on_c { default_focus($name); if ($submit_on_change == true) - echo ""; // FIX ajax else echo ""; @@ -1718,7 +1379,7 @@ function languages_list($name, &$selected_id) $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); foreach ($installed_languages as $lang) { - echo "\n"; @@ -1743,22 +1404,22 @@ function languages_list_row($label, $name, $selected_id) //------------------------------------------------------------------------------------------------ -function bank_account_types_list($name, &$selected_id) +function bank_account_types_list($name, $selected_id) { - $bank_account_types = bank_account_types::get_all(); + $bank_account_types = bank_account_types::get_all(); default_focus($name); - echo ""; if ($selected_id == null) $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - foreach ($bank_account_types as $type) - { - echo "\n"; - } + foreach ($bank_account_types as $type) + { + echo "\n"; + } } function bank_account_types_list_cells($label, $name, $selected_id) @@ -1781,28 +1442,28 @@ function bank_account_types_list_row($label, $name, $selected_id) function payment_person_types_list($name, $selected_id, $related=null) { - $types = payment_person_types::get_all(); + $types = payment_person_types::get_all(); default_focus($name); - echo ""; if ($selected_id == null) $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - foreach ($types as $type) - { + foreach ($types as $type) + { if (payment_person_types::has_items($type['id'])) { if ($selected_id == "") $_POST[$name] = $selected_id = $type['id']; - echo "\n"; + echo "\n"; } - } + } } function payment_person_types_list_cells($label, $name, $selected_id, $related=null) @@ -1810,50 +1471,53 @@ function payment_person_types_list_cells($label, $name, $selected_id, $related=n if ($label != null) echo "$label\n"; echo ""; - payment_person_types_list($name, $selected_id, $related); + $str = payment_person_types_list($name, $selected_id, $related); echo "\n"; + return $str; } function payment_person_types_list_row($label, $name, $selected_id, $related=null) { echo "\n"; - payment_person_types_list_cells($label, $name, $selected_id, $related); + $str = payment_person_types_list_cells($label, $name, $selected_id, $related); echo "\n"; + return $str; } //------------------------------------------------------------------------------------------------ -function wo_types_list($name, &$selected_id) +function wo_types_list($name, $selected_id) { - $types = wo_types::get_all(); + $types = wo_types::get_all(); - default_focus($name); - echo ""; if ($selected_id == null) $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - foreach ($types as $type) - { - echo "\n"; - } + foreach ($types as $type) + { + echo "\n"; + } echo ""; } -function wo_types_list_row($label, $name, &$selected_id) +function wo_types_list_row($label, $name, $selected_id) { echo "$label\n"; - wo_types_list($name, $selected_id); + $str = wo_types_list($name, $selected_id); echo "\n"; + return $str; } //------------------------------------------------------------------------------------------------ function dateformats_list_row($label, $name, $value) { - global $dateformats; + global $dateformats; default_focus($name); echo "$label\n"; @@ -1880,7 +1544,7 @@ function dateformats_list_row($label, $name, $value) function dateseps_list_row($label, $name, $value) { - global $dateseps; + global $dateseps; default_focus($name); echo "$label\n"; @@ -1907,7 +1571,7 @@ function dateseps_list_row($label, $name, $value) function thoseps_list_row($label, $name, $value) { - global $thoseps; + global $thoseps; default_focus($name); echo "$label\n"; @@ -1934,7 +1598,7 @@ function thoseps_list_row($label, $name, $value) function decseps_list_row($label, $name, $value) { - global $decseps; + global $decseps; default_focus($name); echo "$label\n"; @@ -1967,10 +1631,12 @@ function themes_list_row($label, $name, $value) $path = $path_to_root.'/themes/'; $themes = array(); $themedir = opendir($path); - while(false !== ($fname = readdir($themedir))) { - if($fname!='.' && $fname!='..' && $fname!='CVS' && is_dir($path.$fname)) { + while(false !== ($fname = readdir($themedir))) + { + if($fname!='.' && $fname!='..' && $fname!='CVS' && is_dir($path.$fname)) + { $themes[] = $fname; - } + } } sort($themes); echo "$label\n"; @@ -1995,7 +1661,7 @@ function themes_list_row($label, $name, $value) function pagesizes_list_row($label, $name, $value) { - global $pagesizes; + global $pagesizes; default_focus($name); echo "$label\n"; @@ -2020,7 +1686,7 @@ function pagesizes_list_row($label, $name, $value) function security_headings_list_row($label, $name, $value) { - global $security_headings; + global $security_headings; default_focus($name); echo "$label\n"; @@ -2047,20 +1713,20 @@ function security_headings_list_row($label, $name, $value) function systypes_list_cells($label, $name, $value, $submit_on_change=false) { - global $systypes_array; + global $systypes_array; default_focus($name); if ($label != null) echo "$label\n"; - echo ""; // FIX ajax + else + echo ">"; if ($value == null) $value = (!isset($_POST[$name]) ? "" : $_POST[$name]); - foreach ($systypes_array as $key=>$type) - { + foreach ($systypes_array as $key=>$type) + { if ($value==$key) { @@ -2070,15 +1736,16 @@ function systypes_list_cells($label, $name, $value, $submit_on_change=false) { echo "\n"; } - } - echo "\n"; + } + echo "\n"; } function systypes_list_row($label, $name, $value, $submit_on_change=false) { echo "\n"; - systypes_list_cells($label, $name, $value, $submit_on_change); + $str = systypes_list_cells($label, $name, $value, $submit_on_change); echo "\n"; + return $str; } function cust_allocations_list_cells($label, $name, $selected) @@ -2151,11 +1818,11 @@ function credit_type_list_cells($label, $name, $selected, $submit_on_change=fals } if ($label != null) label_cell($label); - echo ""; // FIX ajax + else + echo ">"; echo "\n"; echo "\n"; echo "\n"; @@ -2164,8 +1831,9 @@ function credit_type_list_cells($label, $name, $selected, $submit_on_change=fals function credit_type_list_row($label, $name, $selected, $submit_on_change=false) { echo "\n"; - credit_type_list_cells($label, $name, $selected, $submit_on_change); + $str = credit_type_list_cells($label, $name, $selected, $submit_on_change); echo "\n"; + return $str; } function number_list($name, $selected, $from, $to, $firstlabel="") @@ -2179,7 +1847,7 @@ function number_list($name, $selected, $from, $to, $firstlabel="") } echo "\n"; }