X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_lists.inc;h=62a7e22a0fb9168373241b1610fba38ee777e779;hb=84e2f869630484bd9380e5c30647a483bce14d1e;hp=d0dd4776b162993e2aa89ee140c627e05ac57fcd;hpb=0ddbffd3121056b6cf10dbd715d72d10fffdf253;p=fa-stable.git diff --git a/includes/ui/ui_lists.inc b/includes/ui/ui_lists.inc index d0dd4776..62a7e22a 100644 --- a/includes/ui/ui_lists.inc +++ b/includes/ui/ui_lists.inc @@ -1,20 +1,28 @@ . +***********************************************************************/ 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"); -$_search_button = " "; +$_search_button = " "; -$_select_button = " "; +$_select_button = " "; -$all_items = reserved_words::get_all(); +$all_items = ALL_TEXT; //---------------------------------------------------------------------------- -// Universal combo generator +// Universal sql combo generator // $sql must return selector values and selector texts in columns 0 & 1 // Options are merged with defaults. @@ -30,6 +38,8 @@ $opts = array( // default options 'spec_option'=>false, // option text or false 'spec_id' => 0, // option id // submit on select parameters + 'default' => '', // default value when $_POST is not set + 'multi' => false, // multiple select 'select_submit' => false, //submit on select: true/false 'async' => true, // select update via ajax (true) vs _page_body reload // search box parameters @@ -43,44 +53,66 @@ $opts = array( // default options 'search_submit' => true, //search submit button: true/false 'size' => 8, // size and max of box tag 'max' => 50, + 'height' => false, // number of lines in select box '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 + 'disabled' => false, + 'box_hint' => null, // box/selectors hints; null = std see below + 'category' => false, // category column name or false + 'show_inactive' => false, // show inactive records. + 'editable' => false // false, or length of editable entry field ); // ------ merge options with defaults ---------- - $opts = array_merge($opts, $options); + if($options != null) + $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']; + // select content filtered by search field: $search_submit = $opts['search_submit']===true ? '_'.$name.'_button' : $opts['search_submit']; - $select_submit = $opts['select_submit']===true ? '_'.$name.'_update' : $opts['select_submit']; + // select set by select content field + $search_button = $opts['editable'] ? '_'.$name.'_button' : ($search_box ? $search_submit : false); + + $select_submit = $opts['select_submit']; $spec_id = $opts['spec_id']; $spec_option = $opts['spec_option']; $by_id = ($opts['type'] == 0); $class = $by_id ? 'combo':'combo2'; - + $disabled = $opts['disabled'] ? "disabled" : ''; + $multi = $opts['multi']; + if(!count($opts['search'])) { $opts['search'] = array($by_id ? $valfield : $namefield); } - if ($opts['sel_hint'] === null) + if ($opts['sel_hint'] === null) $opts['sel_hint'] = $by_id || $search_box==false ? - '' : _('Press Space tab for search pattern entry'); + '' : _('Press Space tab for search pattern entry'); - if ($opts['box_hint'] === null) - $opts['box_hint'] = $search_box ? + if ($opts['box_hint'] === null) // dodaƦ hint dla pustego **** + $opts['box_hint'] = $search_box && $search_submit != false ? ($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, null); + $selected_id = get_post($name, $opts['default']); } + if(!is_array($selected_id)) + $selected_id = array($selected_id); // code is generalized for multiple selection support + $txt = get_post($search_box); $rel = ''; $limit = ''; - if (isset($_POST[$select_submit])) { + if (isset($_POST['_'.$name.'_update'])) { // select list or search box change + if ($by_id) $txt = $_POST[$name]; + + if (!$opts['async']) + $Ajax->activate('_page_body'); + else + $Ajax->activate($name); + } + if (isset($_POST[$search_button])) { if (!$opts['async']) $Ajax->activate('_page_body'); else @@ -89,34 +121,46 @@ $opts = array( // default options 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 != '*') { + $rel = "rel='$search_box'"; // set relation to list + if ($opts['search_submit']) { + if (isset($_POST[$search_button])) { + $selected_id = array(); // ignore selected_id while search + if (!$opts['async']) + $Ajax->activate('_page_body'); + else + $Ajax->activate($name); + } + if ($txt == '') { + if ($spec_option === false && $selected_id == array()) + $limit = ' LIMIT 1'; + else + $opts['where'][] = $valfield . "='". get_post($name, $spec_id)."'"; + } + else + if ($txt != '*') { - foreach($opts['search'] as $i=> $s) - $opts['search'][$i] = $s . " LIKE '%{$txt}%'"; - $opts['where'][] = '('. implode($opts['search'], ' OR ') . ')'; + 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 ') . ')'; + $where = strpos($sql, 'WHERE')==false ? ' WHERE ':' AND '; + $where .= '('. implode($opts['where'], ' AND ') . ')'; + $group_pos = strpos($sql, 'GROUP BY'); + if ($group_pos) { + $group = substr($sql, $group_pos); + $sql = substr($sql, 0, $group_pos) . $where.' '.$group; + } else { + $sql .= $where; + } } if ($opts['order'] != false) { - $sql .= ' ORDER BY '.$opts['order']; + if (!is_array($opts['order'])) + $opts['order'] = array($opts['order']); + $sql .= ' ORDER BY '.implode(',',$opts['order']); } $sql .= $limit; @@ -124,98 +168,254 @@ $opts = array( // default options $selector = $first_opt = ''; $first_id = false; $found = false; -//if($name=='code_id') display_error($sql); + $lastcat = null; + $edit = false; +//if($name=='stock_id') display_notification('
'.print_r($_POST, true).'
'); +//if($name=='curr_default') display_notification($opts['search_submit']); 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); + call_user_func($opts['format'], $contact_row); $sel = ''; - if ($selected_id === $value) { + if (get_post($search_button) && ($txt == $value)) { + $selected_id[] = $value; + } + if (in_array($value, $selected_id)) { $sel = 'selected'; $found = $value; + $edit = $opts['editable'] && $contact_row['editable'] + && (@$_POST[$search_box] == $value) + ? $descr : false; + if ($edit) + break; // selected field is editable - abandon list construction } + // show selected option even if inactive + if (!$opts['show_inactive'] && @$contact_row['inactive'] && $sel==='') { + continue; + } else + $optclass = @$contact_row['inactive'] ? "class='inactive'" : ''; + if ($first_id === false) { $first_id = $value; $first_opt = $descr; } - $selector .= "\n"; + $cat = $contact_row[$opts['category']]; + if ($opts['category'] !== false && $cat != $lastcat){ + $selector .= "\n"; + $lastcat = $cat; + } + $selector .= "\n"; } db_free_result($result); } + // Prepend special option. if ($spec_option !== false) { // if special option used - add it $first_id = $spec_id; $first_opt = $spec_option; +// } +// if($first_id !== false) { $sel = $found===false ? 'selected' : ''; - $selector = "\n" + $optclass = @$contact_row['inactive'] ? "class='inactive'" : ''; + $selector = "\n" . $selector; } - if ($found === false) { - $_POST[$name] = $first_id; - } - - if ($by_id) { - $txt = $_POST[$name]; - if ($search_box) - $Ajax->addUpdate($name, $search_box, $txt); + if ($found===false) { + $selected_id = array($first_id); } + + $_POST[$name] = $multi ? $selected_id : $selected_id[0]; - $selector = "\n"; + if ($by_id && ($search_box != false || $opts['editable']) ) { + // on first display show selector list + if (isset($_POST[$search_box]) && $opts['editable'] && $edit) { + $selector = "" + ."\n"; + set_focus($name.'_text'); // prevent lost focus + } else if (get_post($search_submit ? $search_submit : "_{$name}_button")) + set_focus($name); // prevent lost focus + if (!$opts['editable']) + $txt = $found; + $Ajax->addUpdate($name, $search_box, $txt ? $txt : ''); + } + $Ajax->addUpdate($name, "_{$name}_sel", $selector); - // because of bug which M$ cannot fix since IE 5.0 - // we must embed whole selector in span tags to enable proper ajax update + // span for select list/input field update $selector = "".$selector."\n"; - if ($select_submit != false) { // if submit on change is used - add select button + // if selectable or editable list is used - add select button + if ($select_submit != false || $search_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"; + $selector .= sprintf($_select_button, $disabled, user_theme(), + (fallback_mode() ? '' : 'display:none;'), + '_'.$name.'_update')."\n"; } // ------ make combo ---------- - $edit_entry = ''; if ($search_box != false) { - $edit_entry = "\n"; - if ($search_submit != false) { + if ($search_submit != false || $opts['editable']) { global $_search_button; - $edit_entry .= sprintf($_search_button, user_theme(), - (in_ajax() ? 'display:none;':''), - $search_submit)."\n"; + $edit_entry .= sprintf($_search_button, $disabled, user_theme(), + (fallback_mode() ? '' : 'display:none;'), + $search_submit ? $search_submit : "_{$name}_button")."\n"; } } - default_focus($name); - $str = $selector; + default_focus(($search_box && $by_id) ? $search_box : $name); + if ($search_box && $opts['cells']) - echo ($edit_entry!='' ? "$edit_entry" : '')."$selector"; + $str = ($edit_entry!='' ? "$edit_entry" : '')."$selector"; else - echo $edit_entry.$selector; - + $str = $edit_entry.$selector; return $str; } -function supplier_list($name, $selected_id, $spec_option=false, $submit_on_change=false) +/* + Helper function. + Returns true if selector $name is subject to update. +*/ +function list_updated($name) +{ + return isset($_POST['_'.$name.'_update']) || isset($_POST['_'.$name.'_button']); +} +//---------------------------------------------------------------------------------------------- +// Universal array combo generator +// $items is array of options 'value' => 'description' +// Options is reduced set of combo_selector options and is merged with defaults. + +function array_selector($name, $selected_id, $items, $options=null) +{ + global $Ajax; + +$opts = array( // default options + 'spec_option'=>false, // option text or false + 'spec_id' => 0, // option id + 'select_submit' => false, //submit on select: true/false + 'async' => true, // select update via ajax (true) vs _page_body reload + 'default' => '', // default value when $_POST is not set + 'multi'=>false, // multiple select + // search box parameters + 'height' => false, // number of lines in select box + 'sel_hint' => null, + 'disabled' => false +); +// ------ merge options with defaults ---------- + if($options != null) + $opts = array_merge($opts, $options); + $select_submit = $opts['select_submit']; + $spec_id = $opts['spec_id']; + $spec_option = $opts['spec_option']; + $disabled = $opts['disabled'] ? "disabled" : ''; + $multi = $opts['multi']; + + if ($selected_id == null) { + $selected_id = get_post($name, $opts['default']); + } + if(!is_array($selected_id)) + $selected_id = array($selected_id); // code is generalized for multiple selection support + + if (isset($_POST[ '_'.$name.'_update'])) { + if (!$opts['async']) + $Ajax->activate('_page_body'); + else + $Ajax->activate($name); + } + + // ------ make selector ---------- + $selector = $first_opt = ''; + $first_id = false; + $found = false; +//if($name=='SelectStockFromList') display_error($sql); + foreach($items as $value=>$descr) { + $sel = ''; + if (in_array((string)$value, $selected_id)) { + $sel = 'selected'; + $found = $value; + } + if ($first_id === false) { + $first_id = $value; + $first_opt = $descr; + } + $selector .= "\n"; + } + + // Prepend special option. + if ($spec_option !== false) { // if special option used - add it + $first_id = $spec_id; + $first_opt = $spec_option; + $sel = $found===false ? 'selected' : ''; + $selector = "\n" + . $selector; + } + + if ($found===false) { + $selected_id = array($first_id); + } + $_POST[$name] = $multi ? $selected_id : $selected_id[0]; + $selector = "\n"; + + $Ajax->addUpdate($name, "_{$name}_sel", $selector); + + $selector = "".$selector."\n"; + + if ($select_submit != false) { // if submit on change is used - add select button + global $_select_button; + $selector .= sprintf($_select_button, $disabled, user_theme(), + (fallback_mode() ? '' : 'display:none;'), + '_'.$name.'_update')."\n"; + } + default_focus($name); + + return $selector; +} +//---------------------------------------------------------------------------------------------- + +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($name, $selected_id=null, $spec_option=false, $submit_on_change=false, + $all=false, $editkey = false) { global $all_items; - $sql = "SELECT supplier_id, supp_name, curr_code FROM ".TB_PREF."suppliers "; + $sql = "SELECT supplier_id, supp_ref, curr_code, inactive FROM ".TB_PREF."suppliers "; $mode = get_company_pref('no_supplier_list'); + if ($editkey) + set_editor('supplier', $name, $editkey); + return combo_input($name, $selected_id, $sql, 'supplier_id', 'supp_name', array( 'format' => '_format_add_curr', + 'order' => array('supp_ref'), 'search_box' => $mode!=0, 'type' => 1, 'spec_option' => $spec_option === true ? _("All Suppliers") : $spec_option, @@ -223,51 +423,47 @@ function supplier_list($name, $selected_id, $spec_option=false, $submit_on_chang 'select_submit'=> $submit_on_change, 'async' => false, 'sel_hint' => $mode ? _('Press Space tab to filter by name fragment') : - _('Select supplier') + _('Select supplier'), + 'show_inactive'=>$all )); } -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) +function supplier_list_cells($label, $name, $selected_id=null, $all_option=false, + $submit_on_change=false, $all=false, $editkey = false) { if ($label != null) echo "$label\n"; - $str = supplier_list($name, $selected_id, $all_option, $submit_on_change); + echo supplier_list($name, $selected_id, $all_option, $submit_on_change, + $all, $editkey); 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=null, $all_option = false, + $submit_on_change=false, $all=false, $editkey = false) { -echo "$label"; - $str = supplier_list($name, $selected_id, $all_option, $submit_on_change ); -echo "\n"; -return $str; + echo "$label"; + echo supplier_list($name, $selected_id, $all_option, $submit_on_change, + $all, $editkey); + echo "\n"; } //---------------------------------------------------------------------------------------------- -function customer_list($name, $selected_id, $spec_option=false, $submit_on_change=false) +function customer_list($name, $selected_id=null, $spec_option=false, $submit_on_change=false, + $show_inactive=false, $editkey = false) { global $all_items; - $sql = "SELECT debtor_no, name, curr_code FROM ".TB_PREF."debtors_master "; + $sql = "SELECT debtor_no, debtor_ref, curr_code, inactive FROM ".TB_PREF."debtors_master "; $mode = get_company_pref('no_customer_list'); -return combo_input($name, $selected_id, $sql, 'debtor_no', 'name', + if ($editkey) + set_editor('customer', $name, $editkey); + + return combo_input($name, $selected_id, $sql, 'debtor_no', 'name', array( 'format' => '_format_add_curr', + 'order' => array('debtor_ref'), 'search_box' => $mode!=0, 'type' => 1, 'size' => 20, @@ -275,160 +471,154 @@ return combo_input($name, $selected_id, $sql, 'debtor_no', 'name', 'spec_id' => $all_items, 'select_submit'=> $submit_on_change, 'async' => false, - 'sel_hint' => $mode ? _('Press Space tab to filter by name fragment') : - _('Select customer') + 'sel_hint' => $mode ? _('Press Space tab to filter by name fragment; F2 - entry new customer') : + _('Select customer'), + 'show_inactive' => $show_inactive ) ); } -function customer_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function customer_list_cells($label, $name, $selected_id=null, $all_option=false, + $submit_on_change=false, $show_inactive=false, $editkey = false) { if ($label != null) echo "$label\n"; echo ""; - $str = customer_list($name, $selected_id, $all_option, $submit_on_change); + echo customer_list($name, $selected_id, $all_option, $submit_on_change, + $show_inactive, $editkey); echo "\n"; - return $str; } -function customer_list_row($label, $name, $selected_id, $all_option = false, $submit_on_change=false) +function customer_list_row($label, $name, $selected_id=null, $all_option = false, + $submit_on_change=false, $show_inactive=false, $editkey = false) { -echo "$label"; -$str = customer_list($name, $selected_id, $all_option, $submit_on_change); -echo "\n\n"; -return $str; + echo "$label"; + echo customer_list($name, $selected_id, $all_option, $submit_on_change, + $show_inactive, $editkey); + echo "\n\n"; } //------------------------------------------------------------------------------------------------ -function customer_branches_list($customer_id, $name, $selected_id, - $spec_option = true, $enabled=true, $submit_on_change=false) +function customer_branches_list($customer_id, $name, $selected_id=null, + $spec_option = true, $enabled=true, $submit_on_change=false, $editkey = false) { global $all_items; - $sql = "SELECT branch_code, br_name FROM ".TB_PREF."cust_branch + $sql = "SELECT branch_code, branch_ref FROM ".TB_PREF."cust_branch WHERE debtor_no='" . $customer_id . "' "; + if ($editkey) + set_editor('branch', $name, $editkey); + $where = $enabled ? array("disable_trans = 0") : array(); -return combo_input($name, $selected_id, $sql, 'branch_code', 'br_name', + return combo_input($name, $selected_id, $sql, 'branch_code', 'br_name', array( 'where' => $where, + 'order' => array('branch_ref'), '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) +function customer_branches_list_cells($label,$customer_id, $name, $selected_id=null, + $all_option = true, $enabled=true, $submit_on_change=false, $editkey = false) { if ($label != null) echo "$label\n"; echo ""; - $ret = customer_branches_list($customer_id, $name, $selected_id, $all_option, $enabled, $submit_on_change); + echo customer_branches_list($customer_id, $name, $selected_id, $all_option, $enabled, + $submit_on_change, $editkey); echo "\n"; - return $ret; } -function customer_branches_list_row($label,$customer_id, $name, $selected_id, $all_option = true, $enabled=true, $submit_on_change=false) +function customer_branches_list_row($label, $customer_id, $name, $selected_id=null, + $all_option = true, $enabled=true, $submit_on_change=false, $editkey = false) { echo ""; - $ret = customer_branches_list_cells($label, $customer_id, $name, $selected_id, $all_option, $enabled, $submit_on_change); + customer_branches_list_cells($label, $customer_id, $name, $selected_id, + $all_option, $enabled, $submit_on_change, $editkey); echo ""; - return $ret; } //------------------------------------------------------------------------------------------------ -function locations_list($name, $selected_id, $all_option=false, $submit_on_change=false) +function locations_list($name, $selected_id=null, $all_option=false, $submit_on_change=false) { global $all_items; - $sql = "SELECT loc_code, location_name FROM ".TB_PREF."locations"; + $sql = "SELECT loc_code, location_name, inactive FROM ".TB_PREF."locations"; 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 + 'select_submit'=> $submit_on_change ) ); } -function locations_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function locations_list_cells($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = locations_list($name, $selected_id, $all_option, $submit_on_change); + echo 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) +function locations_list_row($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false) { echo ""; - $str = locations_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + 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=null, $submit_on_change=false) { - $sql = "SELECT curr_abrev, currency FROM ".TB_PREF."currencies"; + $sql = "SELECT curr_abrev, currency, inactive FROM ".TB_PREF."currencies"; // default to the company currency - if ($selected_id == "") - { - $selected_id = get_company_currency(); - $_POST[$name] = $selected_id; - } - return combo_input($name, $selected_id, $sql, 'curr_abrev', 'currency', array( 'select_submit'=> $submit_on_change, - 'async' => false + 'default' => get_company_currency(), + 'async' => false ) ); } -function currencies_list_cells($label, $name, $selected_id) +function currencies_list_cells($label, $name, $selected_id=null, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = currencies_list($name, $selected_id); + echo currencies_list($name, $selected_id, $submit_on_change); echo "\n"; - return $str; } -function currencies_list_row($label, $name, $selected_id) +function currencies_list_row($label, $name, $selected_id=null, $submit_on_change=false) { echo "\n"; - $str = currencies_list_cells($label, $name, $selected_id); + currencies_list_cells($label, $name, $selected_id, $submit_on_change); echo "\n"; - return $str; } //--------------------------------------------------------------------------------------------------- -function fiscalyears_list($name, $selected_id, $submit_on_change=false) +function fiscalyears_list($name, $selected_id=null, $submit_on_change=false) { $sql = "SELECT * FROM ".TB_PREF."fiscal_year"; // default to the company current fiscal year - if ($selected_id == "") - { - $selected_id = get_company_pref('f_year'); - $_POST[$name] = $selected_id; - } return combo_input($name, $selected_id, $sql, 'id', '', array( 'order' => 'begin', + 'default' => get_company_pref('f_year'), 'format' => '_format_fiscalyears', 'select_submit'=> $submit_on_change, 'async' => false @@ -441,26 +631,24 @@ function _format_fiscalyears($row) . "  " . ($row[3] ? _('Closed') : _('Active')) . "\n"; } -function fiscalyears_list_cells($label, $name, $selected_id) +function fiscalyears_list_cells($label, $name, $selected_id=null) { if ($label != null) echo "$label\n"; echo ""; - $str = fiscalyears_list($name, $selected_id); + echo fiscalyears_list($name, $selected_id); echo "\n"; - return $str; } -function fiscalyears_list_row($label, $name, $selected_id) +function fiscalyears_list_row($label, $name, $selected_id=null) { echo "\n"; - $str = fiscalyears_list_cells($label, $name, $selected_id); + fiscalyears_list_cells($label, $name, $selected_id); echo "\n"; - return $str; } //------------------------------------------------------------------------------------ -function dimensions_list($name, $selected_id, $no_option=false, $showname=' ', +function dimensions_list($name, $selected_id=null, $no_option=false, $showname=' ', $submit_on_change=false, $showclosed=false, $showtype=1) { $sql = "SELECT id, CONCAT(reference,' ',name) as ref FROM ".TB_PREF."dimensions"; @@ -473,44 +661,46 @@ $options = array( 'async' => false, ); - if ($showclosed) - $options['where'][] = "closed=0"; + if (!$showclosed) + $options['where'][] = "closed=0"; if($showtype) - $options['where'][] = "type_=$showtype"; + $options['where'][] = "type_=$showtype"; return combo_input($name, $selected_id, $sql, 'id', 'ref', $options); } -function dimensions_list_cells($label, $name, $selected_id, $no_option=false, $showname=null, - $showclosed=false, $showtype=0) +function dimensions_list_cells($label, $name, $selected_id=null, $no_option=false, $showname=null, + $showclosed=false, $showtype=0, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = dimensions_list($name, $selected_id, $no_option, $showname, false, $showclosed, $showtype); + echo dimensions_list($name, $selected_id, $no_option, $showname, $submit_on_change, $showclosed, $showtype); echo "\n"; - return $str; } -function dimensions_list_row($label, $name, $selected_id, $no_option=false, $showname=null, - $showclosed=false, $showtype=0) +function dimensions_list_row($label, $name, $selected_id=null, $no_option=false, $showname=null, + $showclosed=false, $showtype=0, $submit_on_change=false) { echo "\n"; - $str = dimensions_list_cells($label, $name, $selected_id, $no_option, $showname, - $showclosed, $showtype); + dimensions_list_cells($label, $name, $selected_id, $no_option, $showname, + $showclosed, $showtype, $submit_on_change); echo "\n"; - return $str; } //--------------------------------------------------------------------------------------------------- -function stock_items_list($name, $selected_id, $all_option=false, $submit_on_change=false, $opts=array()) +function stock_items_list($name, $selected_id=null, $all_option=false, + $submit_on_change=false, $opts=array(), $editkey = false) { global $all_items; - $sql = "SELECT stock_id, s.description, c.description + $sql = "SELECT stock_id, s.description, c.description, s.inactive, s.editable FROM ".TB_PREF."stock_master s,".TB_PREF."stock_category c WHERE s.category_id=c.category_id"; + if ($editkey) + set_editor('item', $name, $editkey); + return combo_input($name, $selected_id, $sql, 'stock_id', 's.description', array_merge( array( @@ -521,323 +711,314 @@ function stock_items_list($name, $selected_id, $all_option=false, $submit_on_cha 'search' => array("stock_id", "c.description","s.description"), 'search_submit' => get_company_pref('no_item_list')!=0, 'size'=>10, - 'select_submit'=> $submit_on_change + 'select_submit'=> $submit_on_change, + 'category' => 2, + 'order' => array('c.description','stock_id') ), $opts) ); } function _format_stock_items($row) { - return (user_show_codes() ? ($row[0] . " - ") : "") - . $row[2] . " - " . $row[1]; + return (user_show_codes() ? ($row[0] . " - ") : "") . $row[1]; } -function stock_items_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function stock_items_list_cells($label, $name, $selected_id=null, $all_option=false, + $submit_on_change=false, $all=false, $editkey = false) { if ($label != null) echo "$label\n"; - $str = stock_items_list($name, $selected_id, $all_option, $submit_on_change, - array('cells'=>true)); - return $str; + echo stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('cells'=>true, 'show_inactive'=>$all), $editkey); } /* -function stock_items_list_row($label, $name, $selected_id, $all_option=false, $submit_on_change=false) +function stock_items_list_row($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false) { echo "\n"; - $str = stock_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); + stock_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change); echo "\n"; - return $str; } */ -//------------------------------------------------------------------------------------ - -function base_stock_items_list($where, $name, $selected_id, - $all_option=false, $submit_on_change=false) +//--------------------------------------------------------------------------------------------------- +// +// Select item via foreign code. +// +function sales_items_list($name, $selected_id=null, $all_option=false, + $submit_on_change=false, $type='', $opts=array()) { global $all_items; + // all sales codes + $sql = "SELECT i.item_code, i.description, c.description, count(*)>1 as kit, + i.inactive, if(count(*)>1, '0', s.editable) as editable + FROM + ".TB_PREF."stock_master s, + ".TB_PREF."item_codes i + LEFT JOIN + ".TB_PREF."stock_category c + ON i.category_id=c.category_id + WHERE i.stock_id=s.stock_id"; + + + if ($type == 'local') { // exclude foreign codes + $sql .= " AND !i.is_foreign"; + } elseif ($type == 'kits') { // sales kits + $sql .= " AND !i.is_foreign AND i.item_code!=i.stock_id"; + } + $sql .= " AND !i.inactive AND !s.inactive AND !s.no_sale"; + $sql .= " GROUP BY i.item_code"; - $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"; - - return combo_input($name, $selected_id, $sql, 'stock_id', 's.description', - array( + return combo_input($name, $selected_id, $sql, 'i.item_code', 'c.description', + array_merge( + array( 'format' => '_format_stock_items', - 'spec_option' => $all_option==true ? _("All Items") : $all_option, + 'spec_option' => $all_option===true ? _("All Items") : $all_option, 'spec_id' => $all_items, + 'search_box' => true, + 'search' => array("i.item_code", "c.description", "i.description"), + 'search_submit' => get_company_pref('no_item_list')!=0, + 'size'=>15, 'select_submit'=> $submit_on_change, - 'where' => $where - ) ); + 'category' => 2, + 'order' => array('c.description','i.item_code'), + 'editable' => 30, + 'max' => 255 + ), $opts) ); } -//------------------------------------------------------------------------------------ -function stock_bom_items_list($name, $selected_id, $all_option=false, $submit_on_change=false) +function sales_items_list_cells($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false) { + if ($label != null) + echo "$label\n"; + echo sales_items_list($name, $selected_id, $all_option, $submit_on_change, + '', array('cells'=>true)); +} - return base_stock_items_list("(s.mb_flag='M' OR s.mb_flag='K')", - $name, $selected_id, $all_option, $submit_on_change); +function sales_kits_list($name, $selected_id=null, $all_option=false, $submit_on_change=false) +{ + return sales_items_list($name, $selected_id, $all_option, $submit_on_change, + 'kits', array('cells'=>false, 'editable' => false)); } -/* -function stock_bom_items_list_cells($label, $name, $selected_id, $all_option=false, $submit_on_change=false) + +function sales_local_items_list_row($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false) { + echo ""; 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; + echo sales_items_list($name, $selected_id, $all_option, $submit_on_change, + 'local', array('cells'=>false, 'editable' => false)); + echo ""; } -*/ //------------------------------------------------------------------------------------ -function stock_manufactured_items_list($name, $selected_id, +function stock_manufactured_items_list($name, $selected_id=null, $all_option=false, $submit_on_change=false) { - return base_stock_items_list("s.mb_flag='M'", - $name, $selected_id, $all_option, $submit_on_change); + return stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('where'=>array("mb_flag= 'M'"))); } -function stock_manufactured_items_list_cells($label, $name, $selected_id, +function stock_manufactured_items_list_cells($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = stock_manufactured_items_list($name, $selected_id, $all_option, - $submit_on_change); + echo 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, +function stock_manufactured_items_list_row($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false) { echo "\n"; - $str = stock_manufactured_items_list_cells($label, $name, $selected_id, - $all_option, $submit_on_change); + 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, - $all_option=false, $submit_on_change=false) +function stock_component_items_list($name, $parent_stock_id, $selected_id=null, + $all_option=false, $submit_on_change=false, $editkey = false) { - return base_stock_items_list("stock_id != '$parent_stock_id'", $name, $selected_id, - $all_option, $submit_on_change); + return stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('where'=>array("stock_id != '$parent_stock_id'")), $editkey); } -//------------------------------------------------------------------------------------ -function stock_costable_items_list($name, $selected_id, - $all_option=false, $submit_on_change=false) +function stock_component_items_list_cells($label, $name, $parent_stock_id, + $selected_id=null, $all_option=false, $submit_on_change=false, $editkey = false) { - return base_stock_items_list("mb_flag!='D'", $name, $selected_id, - $all_option, $submit_on_change); + if ($label != null) + echo "$label\n"; + echo stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('where'=>array("stock_id != '$parent_stock_id'"), 'cells'=>true), + $editkey); } - //------------------------------------------------------------------------------------ -function stock_purchasable_items_list($name, $selected_id, $all_option=false, - $submit_on_change=false, $opts=array()) +function stock_costable_items_list($name, $selected_id=null, + $all_option=false, $submit_on_change=false) { - global $all_items; - $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' "; - 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) ); - + return stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('where'=>array("mb_flag!='D'"))); } -function stock_purchasable_items_list_cells($label, $name, $selected_id, - $all_option=false, $submit_on_change=false) +function stock_costable_items_list_cells($label, $name, $selected_id=null, + $all_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; - $ret = stock_purchasable_items_list($name, $selected_id, $all_option, - $submit_on_change, array('cells'=>true) ); - return $ret; + echo stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('where'=>array("mb_flag!='D'"), 'cells'=>true)); } -function stock_purchasable_items_list_row($label, $name, $selected_id, - $all_option=false, $submit_on_change=false) +//------------------------------------------------------------------------------------ +function stock_purchasable_items_list($name, $selected_id=null, + $all_option=false, $submit_on_change=false, $all=false, $editkey=false) +{ + return stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('where'=>array("mb_flag!= 'M'"), + 'show_inactive'=>$all), $editkey); +} +// +// This helper is used in PO/GRN/PI entry and supports editable descriptions. +// +function stock_purchasable_items_list_cells($label, $name, $selected_id=null, + $all_option=false, $submit_on_change=false, $editkey=false) +{ + if ($label != null) + echo "$label\n"; + echo stock_items_list($name, $selected_id, $all_option, $submit_on_change, + array('where'=>array("mb_flag!= 'M'"), + 'editable' => 30, + 'cells'=>true), $editkey); +} +/* +function stock_purchasable_items_list_row($label, $name, $selected_id=null, + $all_option=false, $submit_on_change=false, $editkey=false) { echo "\n"; - $ret = stock_purchasable_items_list_cells($label, $name, $selected_id, - $all_option, $submit_on_change); + stock_purchasable_items_list_cells($label, $name, $selected_id=null, + $all_option, $submit_on_change, $editkey); echo "\n"; - return $ret; } - +*/ //------------------------------------------------------------------------------------ -function stock_item_types_list_row($label, $name, $selected_id, $enabled=true) +function stock_item_types_list_row($label, $name, $selected_id=null, $enabled=true) { - default_focus($name); + global $stock_types; + echo ""; - if ($label != NULL) + if ($label != null) echo "$label\n"; echo ""; - if ($enabled) - $sel = "\n"; - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - if ($selected_id == "") - $_POST[$name] = $selected_id = "B"; - $sel .= "\n"; - $sel .= "\n"; - $sel .= "\n"; - $sel .= ""; - echo $sel; + + echo array_selector($name, $selected_id, $stock_types, + array( + 'select_submit'=> true, + 'disabled' => !$enabled) ); echo "\n"; - return $sel; } -function stock_units_list_row($label, $name, $value, $enabled=true) +function stock_units_list_row($label, $name, $value=null, $enabled=true) { - global $stock_units; - - default_focus($name); $result = get_all_item_units(); - echo "$label\n"; - if ($enabled) - echo ""; - - if ($value == null) - $value = (!isset($_POST[$name]) ? "" : $_POST[$name]); + echo ""; + if ($label != null) + echo "$label\n"; + echo ""; while($unit = db_fetch($result)) - { - if ($value == "") - { - $_POST[$name] = $unit['abbr']; - } - $descr = $unit['name']; - if ($value==$unit['abbr']) - { - echo "\n"; - } - else - { - echo "\n"; - } - } - echo "\n"; + $units[$unit['abbr']] = $unit['name']; + + echo array_selector($name, $value, $units, array( 'disabled' => !$enabled) ); + + echo "\n"; } //------------------------------------------------------------------------------------ -function tax_types_list($name, $selected_id, $none_option=false, $submit_on_change=false) +function tax_types_list($name, $selected_id=null, $none_option=false, $submit_on_change=false) { - 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' => 0, + 'spec_id' => ALL_NUMERIC, 'select_submit'=> $submit_on_change, 'async' => false, ) ); } -function tax_types_list_cells($label, $name, $selected_id, $none_option=false, +function tax_types_list_cells($label, $name, $selected_id=null, $none_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = tax_types_list($name, $selected_id, $none_option, $submit_on_change); + echo 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, +function tax_types_list_row($label, $name, $selected_id=null, $none_option=false, $submit_on_change=false) { echo "\n"; - $str = tax_types_list_cells($label, $name, $selected_id, $none_option, $submit_on_change); + tax_types_list_cells($label, $name, $selected_id, $none_option, $submit_on_change); echo "\n"; - return $str; } //------------------------------------------------------------------------------------ -function tax_groups_list($name, $selected_id, +function tax_groups_list($name, $selected_id=null, $none_option=false, $submit_on_change=false) { - 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' => 0, + 'spec_id' => ALL_NUMERIC, 'select_submit'=> $submit_on_change, 'async' => false, ) ); } -function tax_groups_list_cells($label, $name, $selected_id, $submit_on_change=false) +function tax_groups_list_cells($label, $name, $selected_id=null, $none_option=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = tax_groups_list($name, $selected_id, false, $submit_on_change); + echo tax_groups_list($name, $selected_id, $none_option, $submit_on_change); echo "\n"; - return $str; } -function tax_groups_list_row($label, $name, $selected_id, $submit_on_change=false) +function tax_groups_list_row($label, $name, $selected_id=null, $none_option=false, $submit_on_change=false) { echo "\n"; - $str = tax_groups_list_cells($label, $name, $selected_id, false, $submit_on_change); + tax_groups_list_cells($label, $name, $selected_id, $none_option, $submit_on_change); echo "\n"; - return $str; } //------------------------------------------------------------------------------------ -function item_tax_types_list($name, $selected_id) +function item_tax_types_list($name, $selected_id=null) { $sql ="SELECT id, name FROM ".TB_PREF."item_tax_types"; - combo_input($name, $selected_id, $sql, 'id', 'name', array('order' => 'id') ); + return combo_input($name, $selected_id, $sql, 'id', 'name', array('order' => 'id') ); } -function item_tax_types_list_cells($label, $name, $selected_id) +function item_tax_types_list_cells($label, $name, $selected_id=null) { if ($label != null) echo "$label\n"; echo ""; - item_tax_types_list($name, $selected_id); + echo item_tax_types_list($name, $selected_id); echo "\n"; } -function item_tax_types_list_row($label, $name, $selected_id) +function item_tax_types_list_row($label, $name, $selected_id=null) { echo "\n"; item_tax_types_list_cells($label, $name, $selected_id); @@ -846,22 +1027,23 @@ function item_tax_types_list_row($label, $name, $selected_id) //------------------------------------------------------------------------------------ -function shippers_list($name, $selected_id) +function shippers_list($name, $selected_id=null) { - $sql = "SELECT shipper_id, shipper_name FROM ".TB_PREF."shippers"; - combo_input($name, $selected_id, $sql, 'shipper_id', 'shipper_name', array()); + $sql = "SELECT shipper_id, shipper_name, inactive FROM ".TB_PREF."shippers"; + return combo_input($name, $selected_id, $sql, 'shipper_id', 'shipper_name', + array('order'=>array('shipper_name'))); } -function shippers_list_cells($label, $name, $selected_id) +function shippers_list_cells($label, $name, $selected_id=null) { if ($label != null) echo "$label\n"; echo ""; - shippers_list($name, $selected_id); + echo shippers_list($name, $selected_id); echo "\n"; } -function shippers_list_row($label, $name, $selected_id) +function shippers_list_row($label, $name, $selected_id=null) { echo "\n"; shippers_list_cells($label, $name, $selected_id); @@ -870,46 +1052,49 @@ function shippers_list_row($label, $name, $selected_id) //------------------------------------------------------------------------------------- -function sales_persons_list($name, $selected_id) +function sales_persons_list($name, $selected_id=null, $spec_opt=false) { - $sql = "SELECT salesman_code, salesman_name FROM ".TB_PREF."salesman"; - combo_input($name, $selected_id, $sql, 'salesman_code', 'salesman_name', array()); + $sql = "SELECT salesman_code, salesman_name, inactive FROM ".TB_PREF."salesman"; + return combo_input($name, $selected_id, $sql, 'salesman_code', 'salesman_name', + array('order'=>array('salesman_name'), + 'spec_option' => $spec_opt, + 'spec_id' => ALL_NUMERIC)); } -function sales_persons_list_cells($label, $name, $selected_id) +function sales_persons_list_cells($label, $name, $selected_id=null, $spec_opt=false) { if ($label != null) echo "$label\n"; echo "\n"; - sales_persons_list($name, $selected_id); + echo sales_persons_list($name, $selected_id, $spec_opt); echo "\n"; } -function sales_persons_list_row($label, $name, $selected_id, $submit_on_change=false) +function sales_persons_list_row($label, $name, $selected_id=null, $spec_opt=false) { echo "\n"; - sales_persons_list_cells($label, $name, $selected_id, $submit_on_change=false); + sales_persons_list_cells($label, $name, $selected_id, $spec_opt); echo "\n"; } //------------------------------------------------------------------------------------ -function sales_areas_list($name, $selected_id) +function sales_areas_list($name, $selected_id=null) { - $sql = "SELECT area_code, description FROM ".TB_PREF."areas"; - combo_input($name, $selected_id, $sql, 'area_code', 'description', array()); + $sql = "SELECT area_code, description, inactive FROM ".TB_PREF."areas"; + return combo_input($name, $selected_id, $sql, 'area_code', 'description', array()); } -function sales_areas_list_cells($label, $name, $selected_id) +function sales_areas_list_cells($label, $name, $selected_id=null) { if ($label != null) echo "$label\n"; echo ""; - sales_areas_list($name, $selected_id); + echo sales_areas_list($name, $selected_id); echo "\n"; } -function sales_areas_list_row($label, $name, $selected_id) +function sales_areas_list_row($label, $name, $selected_id=null) { echo "\n"; sales_areas_list_cells($label, $name, $selected_id); @@ -918,129 +1103,187 @@ function sales_areas_list_row($label, $name, $selected_id) //------------------------------------------------------------------------------------ -function workorders_list($name, $selected_id) +function sales_groups_list($name, $selected_id=null, $special_option=false) { - $sql = "SELECT id, wo_ref FROM ".TB_PREF."workorders WHERE closed=0"; - combo_input($name, $selected_id, $sql, 'id', 'wo_ref', array()); + $sql = "SELECT id, description, inactive FROM ".TB_PREF."groups"; + return combo_input($name, $selected_id, $sql, 'id', 'description', array( + 'spec_option' => $special_option===true ? ' ' : $special_option, + 'order' => 'description', 'spec_id' => 0, + )); } -function workorders_list_cells($label, $name, $selected_id) +function sales_groups_list_cells($label, $name, $selected_id=null, $special_option=false) { if ($label != null) echo "$label\n"; echo ""; - workorders_list($name, $selected_id); + echo sales_groups_list($name, $selected_id, $special_option); echo "\n"; } -function workorders_list_row($label, $name, $selected_id) +function sales_groups_list_row($label, $name, $selected_id=null, $special_option=false) { echo "\n"; - workorders_list_cells($label, $name, $selected_id); + sales_groups_list_cells($label, $name, $selected_id, $special_option); echo "\n"; } //------------------------------------------------------------------------------------ -function payment_terms_list($name, $selected_id) +function _format_template_items($row) { - $sql = "SELECT terms_indicator, terms FROM ".TB_PREF."payment_terms"; - combo_input($name, $selected_id, $sql, 'terms_indicator', 'terms', array()); + return ($row[0] . " -  " . _("Amount") . " ".$row[1]); } -function payment_terms_list_cells($label, $name, $selected_id) +function templates_list($name, $selected_id=null, $special_option=false) +{ + $sql = "SELECT sorder.order_no, Sum(line.unit_price*line.quantity*(1-line.discount_percent)) AS OrderValue + FROM ".TB_PREF."sales_orders as sorder, ".TB_PREF."sales_order_details as line + WHERE sorder.order_no = line.order_no AND sorder.type = 1 GROUP BY line.order_no"; + return combo_input($name, $selected_id, $sql, 'order_no', 'OrderValue', array( + 'format' => '_format_template_items', + 'spec_option' => $special_option===true ? ' ' : $special_option, + 'order' => 'order_no', 'spec_id' => 0, + )); +} + +function templates_list_cells($label, $name, $selected_id=null, $special_option=false) { if ($label != null) echo "$label\n"; echo ""; - payment_terms_list($name, $selected_id); + echo templates_list($name, $selected_id, $special_option); echo "\n"; } -function payment_terms_list_row($label, $name, $selected_id) +function templates_list_row($label, $name, $selected_id=null, $special_option=false) { echo "\n"; - payment_terms_list_cells($label, $name, $selected_id); + templates_list_cells($label, $name, $selected_id, $special_option); echo "\n"; } //------------------------------------------------------------------------------------ -function credit_status_list($name, $selected_id) +function workorders_list($name, $selected_id=null) { - $sql ="SELECT id, reason_description FROM ".TB_PREF."credit_status"; - combo_input($name, $selected_id, $sql, 'id', 'reason_description', array()); + $sql = "SELECT id, wo_ref FROM ".TB_PREF."workorders WHERE closed=0"; + return combo_input($name, $selected_id, $sql, 'id', 'wo_ref', array()); } -function credit_status_list_cells($label, $name, $selected_id) +function workorders_list_cells($label, $name, $selected_id=null) { if ($label != null) echo "$label\n"; echo ""; - credit_status_list($name, $selected_id); + echo workorders_list($name, $selected_id); echo "\n"; } -function credit_status_list_row($label, $name, $selected_id) +function workorders_list_row($label, $name, $selected_id=null) { echo "\n"; - credit_status_list_cells($label, $name, $selected_id); + workorders_list_cells($label, $name, $selected_id); echo "\n"; } -//----------------------------------------------------------------------------------------------- +//------------------------------------------------------------------------------------ -function sales_types_list($name, $selected_id, $submit_on_change=false, $special_option=false) +function payment_terms_list($name, $selected_id=null) { - global $all_items; - - $sql = "SELECT id, sales_type FROM ".TB_PREF."sales_types"; + $sql = "SELECT terms_indicator, terms, inactive FROM ".TB_PREF."payment_terms"; + return combo_input($name, $selected_id, $sql, 'terms_indicator', 'terms', array()); +} - return combo_input($name, $selected_id, $sql, 'id', 'sales_type', - array( - 'spec_option' => $special_option===true ? _("All Sales Types") : $special_option, - 'spec_id' => 0, +function payment_terms_list_cells($label, $name, $selected_id=null) +{ + if ($label != null) + echo "$label\n"; + echo ""; + echo payment_terms_list($name, $selected_id); + echo "\n"; +} + +function payment_terms_list_row($label, $name, $selected_id=null) +{ + echo "\n"; + payment_terms_list_cells($label, $name, $selected_id); + echo "\n"; +} + +//------------------------------------------------------------------------------------ + +function credit_status_list($name, $selected_id=null) +{ + $sql ="SELECT id, reason_description, inactive FROM ".TB_PREF."credit_status"; + return combo_input($name, $selected_id, $sql, 'id', 'reason_description', array()); +} + +function credit_status_list_cells($label, $name, $selected_id=null) +{ + if ($label != null) + echo "$label\n"; + echo ""; + echo credit_status_list($name, $selected_id); + echo "\n"; +} + +function credit_status_list_row($label, $name, $selected_id=null) +{ + echo "\n"; + credit_status_list_cells($label, $name, $selected_id); + echo "\n"; +} + +//----------------------------------------------------------------------------------------------- + +function sales_types_list($name, $selected_id=null, $submit_on_change=false, $special_option=false) +{ + $sql = "SELECT id, sales_type, inactive 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=false) +function sales_types_list_cells($label, $name, $selected_id=null, $submit_on_change=false, $special_option=false) { if ($label != null) echo "$label\n"; echo ""; - $str = sales_types_list($name, $selected_id, $submit_on_change, $special_option); + echo 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=false) +function sales_types_list_row($label, $name, $selected_id=null, $submit_on_change=false, $special_option=false) { echo "\n"; - $str = sales_types_list_cells($label, $name, $selected_id, $submit_on_change, $special_option); + sales_types_list_cells($label, $name, $selected_id, $submit_on_change, $special_option); echo "\n"; - return $str; } //----------------------------------------------------------------------------------------------- -function movement_types_list($name, $selected_id) +function movement_types_list($name, $selected_id=null) { $sql = "SELECT id, name FROM ".TB_PREF."movement_types"; - combo_input($name, $selected_id, $sql, 'id', 'name', array()); + return combo_input($name, $selected_id, $sql, 'id', 'name', array()); } -function movement_types_list_cells($label, $name, $selected_id) +function movement_types_list_cells($label, $name, $selected_id=null) { if ($label != null) echo "$label\n"; echo ""; - movement_types_list($name, $selected_id); + echo movement_types_list($name, $selected_id); echo "\n"; } -function movement_types_list_row($label, $name, $selected_id) +function movement_types_list_row($label, $name, $selected_id=null) { echo "\n"; movement_types_list_cells($label, $name, $selected_id); @@ -1048,36 +1291,48 @@ function movement_types_list_row($label, $name, $selected_id) } //----------------------------------------------------------------------------------------------- +function _format_date($row) +{ + return sql2date($row['reconciled']); +} -function bank_trans_types_list($name, $selected_id) +function bank_reconciliation_list($account, $name, $selected_id=null, $submit_on_change=false, $special_option=false) { - $sql = "SELECT id, name FROM ".TB_PREF."bank_trans_types"; - combo_input($name, $selected_id, $sql, 'id', 'name', array()); + $sql = "SELECT reconciled, reconciled FROM ".TB_PREF."bank_trans + WHERE bank_act=".db_escape($account)." AND reconciled IS NOT NULL + GROUP BY reconciled"; + return combo_input($name, $selected_id, $sql, 'id', 'reconciled', + array( + 'spec_option' => $special_option, + 'format' => '_format_date', + 'spec_id' => '', + 'select_submit'=> $submit_on_change + ) ); } -function bank_trans_types_list_cells($label, $name, $selected_id) +function bank_reconciliation_list_cells($label,$account, $name, $selected_id=null, $submit_on_change=false, $special_option=false) { if ($label != null) echo "$label\n"; echo ""; - bank_trans_types_list($name, $selected_id); + echo bank_reconciliation_list($account, $name, $selected_id, $submit_on_change, $special_option); echo "\n"; } - -function bank_trans_types_list_row($label, $name, $selected_id) +/* +function bank_reconciliation_list_row($label, $account, $name, $selected_id=null, $submit_on_change=false, $special_option=false) { echo "\n"; - bank_trans_types_list_cells($label, $name, $selected_id); + bank_reconciliation_list_cells($label, $account, $name, $selected_id, $submit_on_change, $special_option); echo "\n"; } - +*/ //----------------------------------------------------------------------------------------------- -function workcenter_list($name, $selected_id, $all_option=false) +function workcenter_list($name, $selected_id=null, $all_option=false) { global $all_items; - $sql = "SELECT id, name FROM ".TB_PREF."workcentres"; + $sql = "SELECT id, name, inactive FROM ".TB_PREF."workcentres"; return combo_input($name, $selected_id, $sql, 'id', 'name', array( @@ -1086,17 +1341,17 @@ function workcenter_list($name, $selected_id, $all_option=false) ) ); } -function workcenter_list_cells($label, $name, $selected_id, $all_option=false) +function workcenter_list_cells($label, $name, $selected_id=null, $all_option=false) { default_focus($name); if ($label != null) echo "$label\n"; echo ""; - workcenter_list($name, $selected_id, $all_option); + echo workcenter_list($name, $selected_id, $all_option); echo "\n"; } -function workcenter_list_row($label, $name, $selected_id, $all_option=false) +function workcenter_list_row($label, $name, $selected_id=null, $all_option=false) { echo "\n"; workcenter_list_cells($label, $name, $selected_id, $all_option); @@ -1105,13 +1360,12 @@ function workcenter_list_row($label, $name, $selected_id, $all_option=false) //----------------------------------------------------------------------------------------------- -function bank_accounts_list($name, $selected_id, $submit_on_change=false) +function bank_accounts_list($name, $selected_id=null, $submit_on_change=false) { - $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"; + $sql = "SELECT ".TB_PREF."bank_accounts.id, bank_account_name, bank_curr_code, inactive + FROM ".TB_PREF."bank_accounts"; - return combo_input($name, $selected_id, $sql, 'account_code', 'bank_account_name', + return combo_input($name, $selected_id, $sql, 'id', 'bank_account_name', array( 'format' => '_format_add_curr', 'select_submit'=> $submit_on_change, @@ -1119,27 +1373,99 @@ function bank_accounts_list($name, $selected_id, $submit_on_change=false) ) ); } -function bank_accounts_list_cells($label, $name, $selected_id, $submit_on_change=false) +function bank_accounts_list_cells($label, $name, $selected_id=null, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = bank_accounts_list($name, $selected_id, $submit_on_change); + echo 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) +function bank_accounts_list_row($label, $name, $selected_id=null, $submit_on_change=false) { echo "\n"; - $str = bank_accounts_list_cells($label, $name, $selected_id, $submit_on_change); + bank_accounts_list_cells($label, $name, $selected_id, $submit_on_change); echo "\n"; - return $str; } +//----------------------------------------------------------------------------------------------- + +function cash_accounts_list_row($label, $name, $selected_id=null, $submit_on_change=false) +{ + $sql = "SELECT ".TB_PREF."bank_accounts.id, bank_account_name, bank_curr_code, inactive + FROM ".TB_PREF."bank_accounts + WHERE ".TB_PREF."bank_accounts.account_type=3"; + if ($label != null) + echo "$label\n"; + echo ""; + echo combo_input($name, $selected_id, $sql, 'id', 'bank_account_name', + array( + 'format' => '_format_add_curr', + 'select_submit'=> $submit_on_change, + 'async' => true + ) ); + echo "\n"; +} //----------------------------------------------------------------------------------------------- -function class_list($name, $selected_id, $submit_on_change=false) +function pos_list_row($label, $name, $selected_id=null, $spec_option=false, $submit_on_change=false) +{ + $sql = "SELECT id, pos_name, inactive FROM ".TB_PREF."sales_pos"; + + default_focus($name); + echo ''; + if ($label != null) + echo "$label\n"; + echo ""; + + echo combo_input($name, $selected_id, $sql, 'id', 'pos_name', + array( + 'select_submit'=> $submit_on_change, + 'async' => true, + 'spec_option' =>$spec_option, + 'spec_id' => -1, + 'order'=> array('pos_name') + ) ); + echo "\n"; + +} +//----------------------------------------------------------------------------------------------- +// Payment type selector for current user. +// +function sale_payment_list($name, $selected_id=null, $submit_on_change=true) +{ + $sql = "SELECT terms_indicator, terms, inactive FROM ".TB_PREF."payment_terms"; + $paym = get_sales_point(user_pos()); + + if (!$paym['cash_sale'] || !$paym['credit_sale']) { + if ($paym['cash_sale']) // only cash + $sql .= " WHERE days_before_due=0 AND day_in_following_month=0"; + else + $sql .= " WHERE days_before_due!=0 OR day_in_following_month!=0"; + } + + return combo_input($name, $selected_id, $sql, 'terms_indicator', 'terms', + array( + 'select_submit'=> $submit_on_change, + 'async' => true + ) ); + +} + +function sale_payment_list_cells($label, $name, $selected_id=null, $submit_on_change=true) +{ + if ($label != null) + echo "$label\n"; + echo ""; + + echo sale_payment_list($name, $selected_id, $submit_on_change); + + echo "\n"; +} +//----------------------------------------------------------------------------------------------- + +function class_list($name, $selected_id=null, $submit_on_change=false) { $sql = "SELECT cid, class_name FROM ".TB_PREF."chart_class"; @@ -1151,76 +1477,78 @@ function class_list($name, $selected_id, $submit_on_change=false) } -function class_list_cells($label, $name, $selected_id, $submit_on_change=false) +function class_list_cells($label, $name, $selected_id=null, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = class_list($name, $selected_id, $submit_on_change); + echo class_list($name, $selected_id, $submit_on_change); echo "\n"; - return $str; } -function class_list_row($label, $name, $selected_id, $submit_on_change=false) +function class_list_row($label, $name, $selected_id=null, $submit_on_change=false) { echo "\n"; - $str = class_list_cells($label, $name, $selected_id, $submit_on_change); + class_list_cells($label, $name, $selected_id, $submit_on_change); echo "\n"; - return $str; } //----------------------------------------------------------------------------------------------- - -function stock_categories_list($name, $selected_id) +function stock_categories_list($name, $selected_id=null, $spec_opt=false, $submit_on_change=false) { - $sql = "SELECT category_id, description FROM ".TB_PREF."stock_category"; - combo_input($name, $selected_id, $sql, 'category_id', 'description', - array('order'=>'category_id')); + $sql = "SELECT category_id, description, inactive FROM ".TB_PREF."stock_category"; + return combo_input($name, $selected_id, $sql, 'category_id', 'description', + array('order'=>'category_id', + 'spec_option' => $spec_opt, + 'spec_id' => -1, + 'select_submit'=> $submit_on_change, + 'async' => true + )); } -function stock_categories_list_cells($label, $name, $selected_id) +function stock_categories_list_cells($label, $name, $selected_id=null, $spec_opt=false, $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - stock_categories_list($name, $selected_id); + echo stock_categories_list($name, $selected_id, $spec_opt, $submit_on_change); echo "\n"; } -function stock_categories_list_row($label, $name, $selected_id) +function stock_categories_list_row($label, $name, $selected_id=null, $spec_opt=false, $submit_on_change=false) { echo "\n"; - stock_categories_list_cells($label, $name, $selected_id); + stock_categories_list_cells($label, $name, $selected_id, $spec_opt, $submit_on_change); echo "\n"; } //----------------------------------------------------------------------------------------------- -function gl_account_types_list($name, $selected_id, $all_option, $all_option_numeric) +function gl_account_types_list($name, $selected_id=null, $all_option=false, $all_option_numeric=true) { global $all_items; $sql = "SELECT id, name FROM ".TB_PREF."chart_types"; - combo_input($name, $selected_id, $sql, 'id', 'name', + return combo_input($name, $selected_id, $sql, 'id', 'name', array( - 'order' => 'id', + 'order' => 'class_id', '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, +function gl_account_types_list_cells($label, $name, $selected_id=null, $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_numeric); + echo 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, +function gl_account_types_list_row($label, $name, $selected_id=null, $all_option=false, $all_option_numeric=false) { echo "\n"; @@ -1230,32 +1558,36 @@ function gl_account_types_list_row($label, $name, $selected_id, $all_option=fals } //----------------------------------------------------------------------------------------------- -function gl_all_accounts_list($name, $selected_id, $skip_bank_accounts=false, - $show_group=false, $cells=false, $all_option=false) +function gl_all_accounts_list($name, $selected_id=null, $skip_bank_accounts=false, + $cells=false, $all_option=false, $submit_on_change=false, $all=false) { if ($skip_bank_accounts) - $sql = "SELECT chart.account_code, chart.account_name, type.name + $sql = "SELECT chart.account_code, chart.account_name, type.name, chart.inactive, type.id FROM (".TB_PREF."chart_master chart,".TB_PREF."chart_types type) " ."LEFT JOIN ".TB_PREF."bank_accounts acc " ."ON chart.account_code=acc.account_code - WHERE acc.account_code IS NULL + WHERE acc.account_code IS NULL AND chart.account_type=type.id"; else - $sql = "SELECT chart.account_code, chart.account_name, type.name + $sql = "SELECT chart.account_code, chart.account_name, type.name, chart.inactive, type.id FROM ".TB_PREF."chart_master chart,".TB_PREF."chart_types type WHERE chart.account_type=type.id"; - combo_input($name, $selected_id, $sql, 'chart.account_code', 'chart.account_name', + return combo_input($name, $selected_id, $sql, 'chart.account_code', 'chart.account_name', array( - 'format' => '_format_account' . ($show_group ? '2' : ''), + 'format' => '_format_account', 'spec_option' => $all_option===true ? _("Use Item Sales Accounts") : $all_option, 'spec_id' => '', - 'order' => 'account_code', + 'order' => array('type.class_id','type.id','account_code'), 'search_box' => $cells, 'search_submit' => false, 'size' => 12, 'max' => 10, - 'cells' => true + 'cells' => true, + 'select_submit'=> $submit_on_change, + 'async' => false, + 'category' => 2, + 'show_inactive' => $all ) ); } @@ -1265,116 +1597,78 @@ function _format_account($row) return $row[0] . "    " . $row[1]; } -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, $cells=false, $all_option=false) +function gl_all_accounts_list_cells($label, $name, $selected_id=null, + $skip_bank_accounts=false, $cells=false, $all_option=false, + $submit_on_change=false, $all=false) { if ($label != null) echo "$label\n"; echo ""; - gl_all_accounts_list($name, $selected_id, $skip_bank_accounts, $show_group, $cells, $all_option); + echo gl_all_accounts_list($name, $selected_id, + $skip_bank_accounts, $cells, $all_option, $submit_on_change, $all); echo "\n"; } -function gl_all_accounts_list_row($label, $name, $selected_id, $skip_bank_accounts=false, - $show_group=false, $cells=false, $all_option=false) +function gl_all_accounts_list_row($label, $name, $selected_id=null, + $skip_bank_accounts=false, $cells=false, $all_option=false) { echo "\n"; - gl_all_accounts_list_cells($label, $name, $selected_id, $skip_bank_accounts, - $show_group, $cells, $all_option); + gl_all_accounts_list_cells($label, $name, $selected_id, + $skip_bank_accounts, $cells, $all_option); echo "\n"; } -function yesno_list($name, $selected_id, $name_yes="", $name_no="", $submit_on_change=false) +function yesno_list($name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false) { - default_focus($name); - if ($submit_on_change == true) - echo ""; - - if (strlen($name_yes) == 0) - { - unset($name_yes); - } - if (strlen($name_no) == 0) - { - unset($name_no); - } + $items = array(); + $items['0'] = strlen($name_no) ? $name_no : _("No"); + $items['1'] = strlen($name_yes) ? $name_yes : _("Yes"); - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? 0 : $_POST[$name]); - if ($selected_id == 0) - echo "\n"; - else - echo $name_yes . "\n"; - if ($selected_id == 0) - echo "\n"; - else - echo $name_no . "\n"; - echo ""; + return array_selector($name, $selected_id, $items, + array( + 'select_submit'=> $submit_on_change, + 'async' => false ) ); // FIX? } -function yesno_list_cells($label, $name, $selected_id, $name_yes="", $name_no="", $submit_on_change=false) +function yesno_list_cells($label, $name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false) { if ($label != null) echo "$label\n"; echo ""; - $str = yesno_list($name, $selected_id, $name_yes, $name_no, $submit_on_change); + echo yesno_list($name, $selected_id, $name_yes, $name_no, $submit_on_change); echo "\n"; - return $str; } -function yesno_list_row($label, $name, $selected_id, $name_yes="", $name_no="", $submit_on_change=false) +function yesno_list_row($label, $name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false) { echo "\n"; - $str = yesno_list_cells($label, $name, $selected_id, $name_yes, $name_no, $submit_on_change); + yesno_list_cells($label, $name, $selected_id, $name_yes, $name_no, $submit_on_change); echo "\n"; - return $str; } //------------------------------------------------------------------------------------------------ -function languages_list($name, $selected_id) +function languages_list($name, $selected_id=null) { global $installed_languages; - default_focus($name); - echo ""; + global $bank_account_types; - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - foreach ($bank_account_types as $type) - { - echo "\n"; - } + return array_selector($name, $selected_id, $bank_account_types); } -function bank_account_types_list_cells($label, $name, $selected_id) +function bank_account_types_list_cells($label, $name, $selected_id=null) { if ($label != null) echo "$label\n"; echo ""; - bank_account_types_list($name, $selected_id); + echo bank_account_types_list($name, $selected_id); echo "\n"; } -function bank_account_types_list_row($label, $name, $selected_id) +function bank_account_types_list_row($label, $name, $selected_id=null) { echo "\n"; bank_account_types_list_cells($label, $name, $selected_id); @@ -1418,195 +1701,95 @@ function bank_account_types_list_row($label, $name, $selected_id) } //------------------------------------------------------------------------------------------------ - -function payment_person_types_list($name, $selected_id, $related=null) +function payment_person_types_list($name, $selected_id=null, $submit_on_change=false) { - $types = payment_person_types::get_all(); + global $payment_person_types; - default_focus($name); - echo ""; - - if ($selected_id == null) - $selected_id = (!isset($_POST[$name]) ? "" : $_POST[$name]); - foreach ($types as $type) - { - echo "\n"; - } - echo ""; + global $wo_types_array; + + return array_selector($name, $selected_id, $wo_types_array, + array( 'select_submit'=> true, 'async' => true ) ); } -function wo_types_list_row($label, $name, $selected_id) +function wo_types_list_row($label, $name, $selected_id=null) { echo "$label\n"; - $str = wo_types_list($name, $selected_id); + echo wo_types_list($name, $selected_id); echo "\n"; - return $str; } //------------------------------------------------------------------------------------------------ -function dateformats_list_row($label, $name, $value) +function dateformats_list_row($label, $name, $value=null) { global $dateformats; - default_focus($name); - echo "$label\n"; - echo "\n"; + echo "$label\n"; + echo array_selector( $name, $value, $dateformats ); + echo "\n"; } -function dateseps_list_row($label, $name, $value) +function dateseps_list_row($label, $name, $value=null) { global $dateseps; - default_focus($name); - echo "$label\n"; - echo "\n"; + echo "$label\n"; + echo array_selector( $name, $value, $dateseps ); + echo "\n"; } -function thoseps_list_row($label, $name, $value) +function thoseps_list_row($label, $name, $value=null) { global $thoseps; - default_focus($name); - echo "$label\n"; - echo "\n"; + echo "$label\n"; + echo array_selector( $name, $value, $thoseps ); + echo "\n"; } -function decseps_list_row($label, $name, $value) +function decseps_list_row($label, $name, $value=null) { global $decseps; - default_focus($name); - echo "$label\n"; - echo "\n"; + echo "$label\n"; + echo array_selector( $name, $value, $decseps ); + echo "\n"; } -function themes_list_row($label, $name, $value) +function themes_list_row($label, $name, $value=null) { global $path_to_root; - default_focus($name); $path = $path_to_root.'/themes/'; $themes = array(); $themedir = opendir($path); @@ -1614,248 +1797,418 @@ function themes_list_row($label, $name, $value) { if($fname!='.' && $fname!='..' && $fname!='CVS' && is_dir($path.$fname)) { - $themes[] = $fname; + $themes[$fname] = $fname; } } - sort($themes); - echo "$label\n"; - echo "\n"; + echo "$label\n"; + echo array_selector( $name, $value, $themes ); + echo "\n"; } -function pagesizes_list_row($label, $name, $value) +function pagesizes_list_row($label, $name, $value=null) { global $pagesizes; - default_focus($name); - echo "$label\n"; - echo "\n"; + echo "$label\n"; + echo array_selector( $name, $value, $items ); + echo "\n"; } -function security_headings_list_row($label, $name, $value) +function systypes_list($name, $value=null, $spec_opt=false, $submit_on_change=false) { - global $security_headings; + global $systypes_array; - default_focus($name); - echo "$label\n"; - echo "\n"; +function systypes_list_row($label, $name, $value=null, $submit_on_change=false) +{ + echo "\n"; + systypes_list_cells($label, $name, $value, false, $submit_on_change); + echo "\n"; } -function systypes_list_cells($label, $name, $value, $submit_on_change=false) +function journal_types_list_cells($label, $name, $value=null, $submit_on_change=false) { global $systypes_array; - default_focus($name); if ($label != null) echo "$label\n"; - echo "\n"; + $items = $systypes_array; + + // exclude quotes, orders and dimensions + foreach (array(ST_PURCHORDER, ST_WORKORDER, ST_SALESORDER, ST_DIMENSION, + ST_SALESQUOTE) as $excl) + unset($items[$excl]); + + echo array_selector($name, $value, $items, + array( + 'spec_option'=> _("All"), + 'spec_id' => -1, + 'select_submit'=> $submit_on_change, + 'async' => false + ) + ); + echo "\n"; +} + +function cust_allocations_list_cells($label, $name, $selected=null) +{ + global $all_items; + + if ($label != null) + label_cell($label); + echo "\n"; + $allocs = array( + $all_items=>_("All Types"), + '1'=> _("Sales Invoices"), + '2'=> _("Overdue Invoices"), + '3' => _("Payments"), + '4' => _("Credit Notes"), + '5' => _("Delivery Notes") + ); + echo array_selector($name, $selected, $allocs); + echo "\n"; +} + +function supp_allocations_list_cell($name, $selected=null) +{ + global $all_items; + + echo "\n"; + $allocs = array( + $all_items=>_("All Types"), + '1'=> _("Invoices"), + '2'=> _("Overdue Invoices"), + '3' => _("Payments"), + '4' => _("Credit Notes"), + '5' => _("Overdue Credit Notes") + ); + echo array_selector($name, $selected, $allocs); + echo "\n"; +} + +function policy_list_cells($label, $name, $selected=null) +{ + if ($label != null) + label_cell($label); + echo "\n"; + echo array_selector($name, $selected, + array( '' => _("Automatically put balance on back order"), + 'CAN' => _("Cancel any quantites not delivered")) ); + echo "\n"; } -function systypes_list_row($label, $name, $value, $submit_on_change=false) +function policy_list_row($label, $name, $selected=null) { echo "\n"; - $str = systypes_list_cells($label, $name, $value, $submit_on_change); + policy_list_cells($label, $name, $selected); echo "\n"; - return $str; } -function cust_allocations_list_cells($label, $name, $selected) +function credit_type_list_cells($label, $name, $selected=null, $submit_on_change=false) { - global $all_items; - default_focus($name); if ($label != null) label_cell($label); - if ($selected == null) - $selected = (!isset($_POST[$name]) ? "" : $_POST[$name]); - echo "\n"; + echo "\n"; + echo array_selector($name, $selected, + array( 'Return' => _("Items Returned to Inventory Location"), + 'WriteOff' => _("Items Written Off")), + array( 'select_submit'=> $submit_on_change ) ); + echo "\n"; } -function supp_allocations_list_cells($name, $selected) +function credit_type_list_row($label, $name, $selected=null, $submit_on_change=false) { - global $all_items; + echo "\n"; + credit_type_list_cells($label, $name, $selected, $submit_on_change); + echo "\n"; +} - default_focus($name); - if ($selected == null) - $selected = (!isset($_POST[$name]) ? "" : $_POST[$name]); - echo "\n"; +function number_list($name, $selected, $from, $to, $no_option=false) +{ + $items = array(); + for ($i = $from; $i <= $to; $i++) + $items[$i] = "$i"; + + return array_selector($name, $selected, $items, + array( 'spec_option' => $no_option, + 'spec_id' => ALL_NUMERIC) ); } -function policy_list_cells($label, $name, $selected) +function number_list_cells($label, $name, $selected, $from, $to, $no_option=false) { - default_focus($name); - if ($selected == null) - { - $selected = (!isset($_POST[$name]) ? "" : $_POST[$name]); - if ($selected == "") - $_POST[$name] = $selected; - } if ($label != null) label_cell($label); - echo "\n"; + echo "\n"; + echo number_list($name, $selected, $from, $to, $no_option); + echo "\n"; } -function policy_list_row($label, $name, $selected) +function number_list_row($label, $name, $selected, $from, $to, $no_option=false) { echo "\n"; - policy_list_cells($label, $name, $selected); + echo number_list_cells($label, $name, $selected, $from, $to, $no_option); echo "\n"; } -function credit_type_list_cells($label, $name, $selected, $submit_on_change=false) +function print_profiles_list_row($label, $name, $selected_id=null, $spec_opt=false, + $submit_on_change=true) { - default_focus($name); - if ($selected == null) - { - $selected = (!isset($_POST[$name]) ? "Return" : $_POST[$name]); - if ($selected == "Return") - $_POST[$name] = $selected; + $sql = "SELECT profile FROM ".TB_PREF."print_profiles" + ." GROUP BY profile"; + $result = db_query($sql, 'cannot get all profile names'); + $profiles = array(); + while($myrow=db_fetch($result)) { + $profiles[$myrow['profile']] = $myrow['profile']; } + + echo ""; if ($label != null) - label_cell($label); - echo "\n"; + echo "$label\n"; + echo ""; + + echo array_selector($name, $selected_id, $profiles, + array( 'select_submit'=> $submit_on_change, + 'spec_option'=>$spec_opt, + 'spec_id' => '' + )); + + echo "\n"; +} + +function printers_list($name, $selected_id=null, $spec_opt=false, $submit_on_change=false) +{ + static $printers; // query only once for page display + + if (!$printers) { + $sql = "SELECT id, name, description FROM ".TB_PREF."printers"; + $result = db_query($sql, 'cannot get all printers'); + $printers = array(); + while($myrow=db_fetch($result)) { + $printers[$myrow['id']] = $myrow['name'].' - '.$myrow['description']; + } + } + return array_selector($name, $selected_id, $printers, + array( 'select_submit'=> $submit_on_change, + 'spec_option'=>$spec_opt, + 'spec_id' => '' + )); } -function credit_type_list_row($label, $name, $selected, $submit_on_change=false) +//------------------------------------------------------------------------------------------------ + +function quick_entries_list($name, $selected_id=null, $type=null, $submit_on_change=false) +{ + $where = false; + $sql = "SELECT id, description FROM ".TB_PREF."quick_entries"; + if ($type != null) + $sql .= " WHERE type=$type"; + + return combo_input($name, $selected_id, $sql, 'id', 'description', + array( + 'spec_id' => '', + 'order' => 'description', + 'select_submit'=> $submit_on_change, + 'async' => false + ) ); + +} + +function quick_entries_list_cells($label, $name, $selected_id=null, $type, $submit_on_change=false) +{ + echo "$label\n"; + echo quick_entries_list($name, $selected_id, $type, $submit_on_change); + echo ""; +} + +function quick_entries_list_row($label, $name, $selected_id=null, $type, $submit_on_change=false) { echo "\n"; - $str = credit_type_list_cells($label, $name, $selected, $submit_on_change); + quick_entries_list_cells($label, $name, $selected_id, $type, $submit_on_change); echo "\n"; - return $str; } -function number_list($name, $selected, $from, $to, $firstlabel="") + +function quick_actions_list_row($label, $name, $selected_id=null, $submit_on_change=false) { - default_focus($name); - if ($selected == null) - { - $selected = (!isset($_POST[$name]) ? $from : $_POST[$name]); - if ($selected == $from) - $_POST[$name] = $selected; + global $quick_actions; + + echo "$label"; + echo array_selector($name, $selected_id, $quick_actions, + array( + 'select_submit'=> $submit_on_change + ) ); + echo "\n"; +} + +function quick_entry_types_list_row($label, $name, $selected_id=null, $submit_on_change=false) +{ + global $quick_entry_types; + + echo "$label"; + echo array_selector($name, $selected_id, $quick_entry_types, + array( + 'select_submit'=> $submit_on_change + ) ); + echo "\n"; +} + +function record_status_list_row($label, $name) { + return yesno_list_row($label, $name, null, _('Inactive'), _('Active')); +} + +function class_types_list_row($label, $name, $selected_id=null, $submit_on_change=false) +{ + global $class_types; + + echo "$label"; + echo array_selector($name, $selected_id, $class_types, + array( + 'select_submit'=> $submit_on_change + ) ); + echo "\n"; +} + +//------------------------------------------------------------------------------------------------ + +function security_roles_list($name, $selected_id=null, $new_item=false, $submit_on_change=false, + $show_inactive = false) +{ + global $all_items; + + $sql = "SELECT id, role, inactive FROM ".TB_PREF."security_roles"; + +return combo_input($name, $selected_id, $sql, 'id', 'description', + array( + 'spec_option'=>$new_item ? _("New role") : false, + 'spec_id' => '', + 'select_submit'=> $submit_on_change, + 'show_inactive' => $show_inactive + ) ); +} + +function security_roles_list_cells($label, $name, $selected_id=null, $new_item=false, $submit_on_change=false, + $show_inactive = false) +{ + if ($label != null) + echo "$label\n"; + echo ""; + echo security_roles_list($name, $selected_id, $new_item, $submit_on_change, $show_inactive); + echo "\n"; +} + +function security_roles_list_row($label, $name, $selected_id=null, $new_item=false, $submit_on_change=false, + $show_inactive = false) +{ + echo ""; + security_roles_list_cells($label, $name, $selected_id, $new_item, $submit_on_change, $show_inactive); + echo "\n"; +} + +function tab_list_row($label, $name, $selected_id=null, $all = false) +{ + global $installed_extensions; + + $tabs = array(); + foreach ($_SESSION['App']->applications as $app) { + $tabs[$app->id] = access_string($app->name, true); } - echo "\n"; + echo "\n"; + echo "$label\n"; + echo array_selector($name, $selected_id, $tabs); + echo "\n"; } -function number_list_cells($label, $name, $selected, $from, $to) +//----------------------------------------------------------------------------------------------- + +function tag_list($name, $height, $type, $multi=false, $all=false, $spec_opt = false) +{ + // Get tags + global $path_to_root; + include_once($path_to_root . "/admin/db/tags_db.inc"); + $results = get_tags($type, $all); + + while ($tag = db_fetch($results)) + $tags[$tag['id']] = $tag['name']; + + if (!isset($tags)) { + $tags[''] = $all ? _("No tags defined.") : _("No active tags defined."); + $spec_opt = false; + } + return array_selector($name, null, $tags, + array( + 'multi' => $multi, + 'height' => $height, + 'spec_option'=> $spec_opt, + 'spec_id' => -1, + ) ); +} + +function tag_list_cells($label, $name, $height, $type, $mult=false, $all=false, $spec_opt = false) { if ($label != null) - label_cell($label); + echo "$label\n"; echo "\n"; - number_list($name, $selected, $from, $to); + echo tag_list($name, $height, $type, $mult, $all, $spec_opt); echo "\n"; + } -function number_list_row($label, $name, $selected, $from, $to) +function tag_list_row($label, $name, $height, $type, $mult=false, $all=false, $spec_opt = false) { echo "\n"; - number_list_cells($label, $name, $selected, $from, $to); - echo "\n"; + tag_list_cells($label, $name, $height, $type, $mult, $all, $spec_opt); + echo "\n"; +} + +//--------------------------------------------------------------------------------------------- +// List of sets of active extensions +// +function extset_list($name, $value=null, $submit_on_change=false) +{ + global $db_connections; + + $items = array(); + foreach ($db_connections as $comp) + $items[] = sprintf(_("Activated for '%s'"), $comp['name']); + return array_selector( $name, $value, $items, + array( + 'spec_option'=> _("Available and/or installed"), + 'spec_id' => -1, + 'select_submit'=> $submit_on_change, + 'async' => true + )); } + ?> \ No newline at end of file