New combo3 class searchable from start of the code (used in gl accounts list).
[fa-stable.git] / includes / ui / ui_lists.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 include_once($path_to_root . "/includes/banking.inc");
13 include_once($path_to_root . "/includes/types.inc");
14 include_once($path_to_root . "/includes/current_user.inc");
15
16 $_search_button = "<input %s type='submit' class='combo_submit' style='border:0;background:url($path_to_root/themes/"
17         ."%s/images/locate.png) no-repeat;%s' aspect='fallback' name='%s' value=' ' title='"._("Set filter")."'> ";
18
19 $_select_button = "<input %s type='submit' class='combo_select' style='border:0;background:url($path_to_root/themes/"
20         ."%s/images/button_ok.png) no-repeat;%s' aspect='fallback' name='%s' value=' ' title='"._("Select")."'> ";
21
22 $all_items = ALL_TEXT;
23
24 //----------------------------------------------------------------------------
25 //      Universal sql combo generator
26 //      $sql must return selector values and selector texts in columns 0 & 1
27 //      Options are merged with defaults.
28
29 function combo_input($name, $selected_id, $sql, $valfield, $namefield,
30         $options=null)
31 {
32 global $Ajax;
33
34 $opts = array(          // default options
35         'where'=> array(),              // additional constraints
36         'order' => $namefield,  // list sort order
37                 // special option parameters
38         'spec_option'=>false,   // option text or false
39         'spec_id' => 0,         // option id
40                 // submit on select parameters
41         'default' => '', // default value when $_POST is not set
42         'multi' => false,       // multiple select
43         'select_submit' => false, //submit on select: true/false
44         'async' => true,        // select update via ajax (true) vs _page_body reload
45                 // search box parameters
46         'sel_hint' => null,
47         'search_box' => false,  // name or true/false
48         'type' => 0,    // type of extended selector:
49                 // 0 - with (optional) visible search box, search by fragment inside id
50                 // 1 - with hidden search box, search by option text
51                 // 2 - with (optional) visible search box, search by fragment at the start of id
52                 // 3 - TODO reverse: box with hidden selector available via enter; this
53                 // would be convenient for optional ad hoc adding of new item
54         'search_submit' => true, //search submit button: true/false
55         'size' => 8,    // size and max of box tag
56         'max' => 50,
57         'height' => false,      // number of lines in select box
58         'cells' => false,       // combo displayed as 2 <td></td> cells
59         'search' => array(), // sql field names to search
60         'format' => null,        // format functions for regular options
61         'disabled' => false,
62         'box_hint' => null, // box/selectors hints; null = std see below
63         'category' => false, // category column name or false
64         'show_inactive' => false, // show inactive records. 
65         'editable' => false // false, or length of editable entry field
66 );
67 // ------ merge options with defaults ----------
68         if($options != null)
69                 $opts = array_merge($opts, $options);
70         if (!is_array($opts['where']))  $opts['where'] = array($opts['where']);
71
72         $search_box = $opts['search_box']===true ? '_'.$name.'_edit' : $opts['search_box'];
73         // select content filtered by search field:
74         $search_submit = $opts['search_submit']===true ? '_'.$name.'_button' : $opts['search_submit'];
75         // select set by select content field
76         $search_button = $opts['editable'] ? '_'.$name.'_button' : ($search_box ? $search_submit : false);
77
78         $select_submit =  $opts['select_submit'];
79         $spec_id = $opts['spec_id'];
80         $spec_option = $opts['spec_option'];
81         if ($opts['type'] == 0) {
82                 $by_id = true;
83                 $class = 'combo';
84         } elseif($opts['type'] == 1) {
85                 $by_id = false;
86                 $class = 'combo2';
87         } else {
88                 $by_id = true;
89                 $class = 'combo3';
90         }
91
92         $disabled = $opts['disabled'] ? "disabled" : '';
93         $multi = $opts['multi'];
94         
95         if(!count($opts['search'])) {
96                 $opts['search'] = array($by_id ? $valfield : $namefield);
97         }
98         if ($opts['sel_hint'] === null) 
99                 $opts['sel_hint'] = $by_id || $search_box==false ?
100                         '' : _('Press Space tab for search pattern entry');
101
102         if ($opts['box_hint'] === null)
103                 $opts['box_hint'] = $search_box && $search_submit != false ?
104                         ($by_id ? _('Enter code fragment to search or * for all')
105                         : _('Enter description fragment to search or * for all')) :'';
106
107         if ($selected_id == null) {
108                 $selected_id = get_post($name, (string)$opts['default']);
109         }
110         if(!is_array($selected_id))
111                 $selected_id = array((string)$selected_id); // code is generalized for multiple selection support
112
113         $txt = get_post($search_box);
114         $rel = '';
115         $limit = '';
116         if (isset($_POST['_'.$name.'_update'])) { // select list or search box change
117                 if ($by_id) $txt = $_POST[$name];
118
119                 if (!$opts['async'])
120                         $Ajax->activate('_page_body');
121                 else
122                         $Ajax->activate($name);
123         }
124         if (isset($_POST[$search_button])) {
125                 if (!$opts['async'])
126                         $Ajax->activate('_page_body');
127                 else
128                         $Ajax->activate($name);
129         }
130         if ($search_box) {
131                 // search related sql modifications
132
133                 $rel = "rel='$search_box'"; // set relation to list
134                 if ($opts['search_submit']) {
135                         if (isset($_POST[$search_button])) {
136                                 $selected_id = array(); // ignore selected_id while search
137                                 if (!$opts['async'])
138                                         $Ajax->activate('_page_body');
139                                 else
140                                         $Ajax->activate($name);
141                         }
142                         if ($txt == '') {
143                                 if ($spec_option === false && $selected_id == array())
144                                         $limit = ' LIMIT 1';
145                                 else
146                                         $opts['where'][] = $valfield . "=". db_escape(get_post($name, $spec_id));
147                         }
148                         else
149                                 if ($txt != '*') {
150
151                                         foreach($opts['search'] as $i=> $s)
152                                                 $opts['search'][$i] = $s . " LIKE "
153                                                         .db_escape(($class=='combo3' ? '' : '%').$txt.'%');
154                                         $opts['where'][] = '('. implode($opts['search'], ' OR ') . ')';
155                                 }
156                 }
157         }
158
159         // sql completion
160         if (count($opts['where'])) {
161                 $where = strpos($sql, 'WHERE')==false ? ' WHERE ':' AND ';
162                 $where .= '('. implode($opts['where'], ' AND ') . ')';
163                 $group_pos = strpos($sql, 'GROUP BY');
164                 if ($group_pos) {
165                         $group = substr($sql, $group_pos);
166                         $sql = substr($sql, 0, $group_pos) . $where.' '.$group;
167                 } else {
168                         $sql .= $where;
169                 }
170         }
171         if ($opts['order'] != false) {
172                 if (!is_array($opts['order']))
173                         $opts['order'] = array($opts['order']);
174                 $sql .= ' ORDER BY '.implode(',',$opts['order']);
175         }
176
177         $sql .= $limit;
178         // ------ make selector ----------
179         $selector = $first_opt = '';
180         $first_id = false;
181         $found = false;
182         $lastcat = null;
183         $edit = false;
184 //if($name=='stock_id') display_notification('<pre>'.print_r($_POST, true).'</pre>');
185 //if($name=='curr_default') display_notification($opts['search_submit']);
186         if($result = db_query($sql)) {
187                 while ($contact_row = db_fetch($result)) {
188                         $value = $contact_row[0];
189                         $descr = $opts['format']==null ?  $contact_row[1] :
190                                 call_user_func($opts['format'], $contact_row);
191                         $sel = '';
192                         if (get_post($search_button) && ($txt == $value)) {
193                                 $selected_id[] = $value;
194                         }
195
196                         if (in_array((string)$value, $selected_id, true)) {
197                                 $sel = 'selected';
198                                 $found = $value;
199                                 $edit = $opts['editable'] && $contact_row['editable'] 
200                                         && (@$_POST[$search_box] == $value)
201                                         ? $contact_row[1] : false; // get non-formatted description
202                                 if ($edit)
203                                         break;  // selected field is editable - abandon list construction
204                         }
205                         // show selected option even if inactive 
206                         if (!$opts['show_inactive'] && @$contact_row['inactive'] && $sel==='') {
207                                 continue;
208                         } else 
209                                 $optclass = @$contact_row['inactive'] ? "class='inactive'" : '';
210
211                         if ($first_id === false) {
212                                 $first_id = $value;
213                                 $first_opt = $descr;
214                         }
215                         $cat = $contact_row[$opts['category']];
216                         if ($opts['category'] !== false && $cat != $lastcat){
217                                 $selector .= "<optgroup label='".$cat."'>\n";
218                                 $lastcat = $cat;
219                         }
220                         $selector .= "<option $sel $optclass value='$value'>$descr</option>\n";
221                 }
222                 db_free_result($result);
223         }
224
225         // Prepend special option.
226         if ($spec_option !== false) { // if special option used - add it
227                 $first_id = $spec_id;
228                 $first_opt = $spec_option;
229 //      }
230 //      if($first_id !== false) {
231                 $sel = $found===false ? 'selected' : '';
232                 $optclass = @$contact_row['inactive'] ? "class='inactive'" : '';
233                 $selector = "<option $sel value='$first_id'>$first_opt</option>\n"
234                         . $selector;
235         }
236
237         if ($found===false) {
238                 $selected_id = array($first_id);
239         }
240         
241         $_POST[$name] = $multi ? $selected_id : $selected_id[0];
242
243         $selector = "<select autocomplete='off' ".($multi ? "multiple" : '')
244                 . ($opts['height']!==false ? ' size="'.$opts['height'].'"' : '')
245                 . "$disabled name='$name".($multi ? '[]':'')."' class='$class' title='"
246                 . $opts['sel_hint']."' $rel>".$selector."</select>\n";
247
248         if ($by_id && ($search_box != false || $opts['editable']) ) {
249                 // on first display show selector list
250                 if (isset($_POST[$search_box]) && $opts['editable'] && $edit) {
251                         $selector = "<input type='hidden' name='$name' value='".$_POST[$name]."'>"
252                         ."<input type='text' $disabled name='{$name}_text' id='{$name}_text' size='".
253                                 $opts['editable']."' maxlength='".$opts['max']."' $rel value='$edit'>\n";
254                                 set_focus($name.'_text'); // prevent lost focus
255                 } else if (get_post($search_submit ? $search_submit : "_{$name}_button"))
256                         set_focus($name); // prevent lost focus
257                 if (!$opts['editable'])
258                         $txt = $found;
259                 $Ajax->addUpdate($name, $search_box, $txt ? $txt : '');
260         }
261
262         $Ajax->addUpdate($name, "_{$name}_sel", $selector);
263
264         // span for select list/input field update
265         $selector = "<span id='_{$name}_sel'>".$selector."</span>\n";
266
267          // if selectable or editable list is used - add select button
268         if ($select_submit != false || $search_button) {
269                 global $_select_button;
270         // button class selects form reload/ajax selector update
271                 $selector .= sprintf($_select_button, $disabled, user_theme(),
272                         (fallback_mode() ? '' : 'display:none;'),
273                          '_'.$name.'_update')."\n";
274         }
275 // ------ make combo ----------
276         $edit_entry = '';
277         if ($search_box != false) {
278                 $edit_entry = "<input $disabled type='text' name='$search_box' id='$search_box' size='".
279                         $opts['size']."' maxlength='".$opts['max'].
280                         "' value='$txt' class='$class' rel='$name' autocomplete='off' title='"
281                         .$opts['box_hint']."'"
282                         .(!fallback_mode() && !$by_id ? " style=display:none;":'')
283                         .">\n";
284                 if ($search_submit != false || $opts['editable']) {
285                         global $_search_button;
286                         $edit_entry .= sprintf($_search_button, $disabled, user_theme(),
287                                 (fallback_mode() ? '' : 'display:none;'),
288                                 $search_submit ? $search_submit : "_{$name}_button")."\n";
289                 }
290         }
291         default_focus(($search_box && $by_id) ? $search_box : $name);
292
293         if ($search_box && $opts['cells'])
294                 $str = ($edit_entry!='' ? "<td>$edit_entry</td>" : '')."<td>$selector</td>";
295         else
296                 $str = $edit_entry.$selector;
297         return $str;
298 }
299
300 /*
301         Helper function.
302         Returns true if selector $name is subject to update.
303 */
304 function list_updated($name)
305 {
306         return isset($_POST['_'.$name.'_update']) || isset($_POST['_'.$name.'_button']);
307 }
308 //----------------------------------------------------------------------------------------------
309 //      Universal array combo generator
310 //      $items is array of options 'value' => 'description'
311 //      Options is reduced set of combo_selector options and is merged with defaults.
312
313 function array_selector($name, $selected_id, $items, $options=null)
314 {
315         global $Ajax;
316
317 $opts = array(          // default options
318         'spec_option'=>false,   // option text or false
319         'spec_id' => 0,         // option id
320         'select_submit' => false, //submit on select: true/false
321         'async' => true,        // select update via ajax (true) vs _page_body reload
322         'default' => '', // default value when $_POST is not set
323         'multi'=>false, // multiple select
324                 // search box parameters
325         'height' => false,      // number of lines in select box
326         'sel_hint' => null,
327         'disabled' => false
328 );
329 // ------ merge options with defaults ----------
330         if($options != null)
331                 $opts = array_merge($opts, $options);
332         $select_submit =  $opts['select_submit'];
333         $spec_id = $opts['spec_id'];
334         $spec_option = $opts['spec_option'];
335         $disabled = $opts['disabled'] ? "disabled" : '';
336         $multi = $opts['multi'];
337
338         if ($selected_id == null) {
339                 $selected_id = get_post($name, $opts['default']);
340         }
341         if(!is_array($selected_id))
342                 $selected_id = array((string)$selected_id); // code is generalized for multiple selection support
343
344         if (isset($_POST[ '_'.$name.'_update'])) {
345                 if (!$opts['async'])
346                         $Ajax->activate('_page_body');
347                 else
348                         $Ajax->activate($name);
349         }
350
351         // ------ make selector ----------
352         $selector = $first_opt = '';
353         $first_id = false;
354         $found = false;
355 //if($name=='SelectStockFromList') display_error($sql);
356                 foreach($items as $value=>$descr) {
357                         $sel = '';
358                         if (in_array((string)$value, $selected_id, true)) {
359                                 $sel = 'selected';
360                                 $found = $value;
361                         }
362                         if ($first_id === false) {
363                                 $first_id = $value;
364                                 $first_opt = $descr;
365                         }
366                         $selector .= "<option $sel value='$value'>$descr</option>\n";
367                 }
368
369         if ($first_id!==false) {
370                 $sel = ($found===$first_id) || ($found===false && ($spec_option===false)) ? "selected='selected'" : '';
371                 $selector = sprintf($first_opt, $sel).$selector;
372         }
373         // Prepend special option.
374         if ($spec_option !== false) { // if special option used - add it
375                 $first_id = $spec_id;
376                 $first_opt = $spec_option;
377                 $sel = $found===false ? 'selected' : '';
378                 $selector = "<option $sel value='$spec_id'>$spec_option</option>\n"
379                         . $selector;
380         }
381
382         if ($found===false) {
383                 $selected_id = array($first_id);
384         }
385         $_POST[$name] = $multi ? $selected_id : $selected_id[0];
386
387         $selector = "<select autocomplete='off' ".($multi  ? "multiple" : '')
388                 . ($opts['height']!==false ? ' size="'.$opts['height'].'"' : '')
389                 . "$disabled name='$name".($multi ? '[]' : '')."' class='combo' title='"
390                 . $opts['sel_hint']."'>".$selector."</select>\n";
391
392         $Ajax->addUpdate($name, "_{$name}_sel", $selector);
393
394         $selector = "<span id='_{$name}_sel'>".$selector."</span>\n";
395
396         if ($select_submit != false) { // if submit on change is used - add select button
397                 global $_select_button;
398                 $selector .= sprintf($_select_button, $disabled, user_theme(),
399                         (fallback_mode() ? '' : 'display:none;'),
400                          '_'.$name.'_update')."\n";
401         }
402         default_focus($name);
403
404         return $selector;
405 }
406 //----------------------------------------------------------------------------------------------
407
408 function _format_add_curr($row)
409 {
410         static $company_currency;
411
412         if ($company_currency == null)
413         {
414                 $company_currency = get_company_currency();
415         }
416         return $row[1] . ($row[2] == $company_currency ?
417                 '' : ("&nbsp;-&nbsp;" . $row[2]));
418 }
419
420 function supplier_list($name, $selected_id=null, $spec_option=false, $submit_on_change=false,
421         $all=false, $editkey = false)
422 {
423         global $all_items;
424
425         $sql = "SELECT supplier_id, supp_ref, curr_code, inactive FROM ".TB_PREF."suppliers ";
426
427         $mode = get_company_pref('no_supplier_list');
428
429         if ($editkey)
430                 set_editor('supplier', $name, $editkey);
431                 
432         return combo_input($name, $selected_id, $sql, 'supplier_id', 'supp_name',
433         array(
434                 'format' => '_format_add_curr',
435             'order' => array('supp_ref'),
436                 'search_box' => $mode!=0,
437                 'type' => 1,
438                 'spec_option' => $spec_option === true ? _("All Suppliers") : $spec_option,
439                 'spec_id' => $all_items,
440                 'select_submit'=> $submit_on_change,
441                 'async' => false,
442                 'sel_hint' => $mode ? _('Press Space tab to filter by name fragment') :
443                 _('Select supplier'),
444                 'show_inactive'=>$all
445                 ));
446 }
447
448 function supplier_list_cells($label, $name, $selected_id=null, $all_option=false, 
449         $submit_on_change=false, $all=false, $editkey = false)
450 {
451         if ($label != null)
452                 echo "<td>$label</td><td>\n";
453                 echo supplier_list($name, $selected_id, $all_option, $submit_on_change, 
454                 $all, $editkey);
455                 echo "</td>\n";
456 }
457
458 function supplier_list_row($label, $name, $selected_id=null, $all_option = false, 
459         $submit_on_change=false, $all=false, $editkey = false)
460 {
461         echo "<tr><td class='label'>$label</td><td>";
462         echo supplier_list($name, $selected_id, $all_option, $submit_on_change,
463                 $all, $editkey);
464         echo "</td></tr>\n";
465 }
466 //----------------------------------------------------------------------------------------------
467
468 function customer_list($name, $selected_id=null, $spec_option=false, $submit_on_change=false, 
469         $show_inactive=false, $editkey = false)
470 {
471         global $all_items;
472
473         $sql = "SELECT debtor_no, debtor_ref, curr_code, inactive FROM ".TB_PREF."debtors_master ";
474
475         $mode = get_company_pref('no_customer_list');
476
477         if ($editkey)
478                 set_editor('customer', $name, $editkey);
479
480         return combo_input($name, $selected_id, $sql, 'debtor_no', 'name',
481         array(
482             'format' => '_format_add_curr',
483             'order' => array('debtor_ref'),
484                 'search_box' => $mode!=0,
485                 'type' => 1,
486                 'size' => 20,
487                 'spec_option' => $spec_option === true ? _("All Customers") : $spec_option,
488                 'spec_id' => $all_items,
489                 'select_submit'=> $submit_on_change,
490                 'async' => false,
491                 'sel_hint' => $mode ? _('Press Space tab to filter by name fragment; F2 - entry new customer') :
492                 _('Select customer'),
493                 'show_inactive' => $show_inactive
494         ) );
495 }
496
497 function customer_list_cells($label, $name, $selected_id=null, $all_option=false, 
498         $submit_on_change=false, $show_inactive=false, $editkey = false)
499 {
500         if ($label != null)
501                 echo "<td>$label</td>\n";
502         echo "<td nowrap>";
503         echo customer_list($name, $selected_id, $all_option, $submit_on_change,
504                 $show_inactive, $editkey);
505         echo "</td>\n";
506 }
507
508 function customer_list_row($label, $name, $selected_id=null, $all_option = false, 
509         $submit_on_change=false, $show_inactive=false, $editkey = false)
510 {
511         echo "<tr><td class='label'>$label</td><td nowrap>";
512         echo customer_list($name, $selected_id, $all_option, $submit_on_change,
513                 $show_inactive, $editkey);
514         echo "</td>\n</tr>\n";
515 }
516
517 //------------------------------------------------------------------------------------------------
518
519 function customer_branches_list($customer_id, $name, $selected_id=null,
520         $spec_option = true, $enabled=true, $submit_on_change=false, $editkey = false)
521 {
522         global $all_items;
523
524         $sql = "SELECT branch_code, branch_ref FROM ".TB_PREF."cust_branch
525                 WHERE debtor_no=" . db_escape($customer_id)." ";
526
527         if ($editkey)
528                 set_editor('branch', $name, $editkey);
529
530         $where = $enabled ? array("disable_trans = 0") : array();
531         return  combo_input($name, $selected_id, $sql, 'branch_code', 'br_name',
532         array(
533                 'where' => $where,
534                 'order' => array('branch_ref'),
535                 'spec_option' => $spec_option === true ? _('All branches') : $spec_option,
536                 'spec_id' => $all_items,
537                 'select_submit'=> $submit_on_change,
538                 'sel_hint' => _('Select customer branch')
539         ) );
540 }
541 //------------------------------------------------------------------------------------------------
542
543 function customer_branches_list_cells($label,$customer_id, $name, $selected_id=null, 
544         $all_option = true, $enabled=true, $submit_on_change=false, $editkey = false)
545 {
546         if ($label != null)
547                 echo "<td>$label</td>\n";
548         echo "<td>";
549         echo customer_branches_list($customer_id, $name, $selected_id, $all_option, $enabled, 
550                 $submit_on_change, $editkey);
551         echo "</td>\n";
552 }
553
554 function customer_branches_list_row($label, $customer_id, $name, $selected_id=null, 
555         $all_option = true, $enabled=true, $submit_on_change=false, $editkey = false)
556 {
557         echo "<tr><td class='label'>$label</td>";
558         customer_branches_list_cells(null, $customer_id, $name, $selected_id, 
559                 $all_option, $enabled, $submit_on_change, $editkey);
560         echo "</tr>";
561 }
562
563 //------------------------------------------------------------------------------------------------
564
565 function locations_list($name, $selected_id=null, $all_option=false, $submit_on_change=false)
566 {
567         global $all_items;
568
569         $sql = "SELECT loc_code, location_name, inactive FROM ".TB_PREF."locations";
570
571 return combo_input($name, $selected_id, $sql, 'loc_code', 'location_name',
572         array(
573                 'spec_option' => $all_option === true ? _("All Locations") : $all_option,
574                 'spec_id' => $all_items,
575                 'select_submit'=> $submit_on_change
576         ) );
577 }
578
579 function locations_list_cells($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false)
580 {
581         if ($label != null)
582                 echo "<td>$label</td>\n";
583         echo "<td>";
584         echo locations_list($name, $selected_id, $all_option, $submit_on_change);
585         echo "</td>\n";
586 }
587
588 function locations_list_row($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false)
589 {
590         echo "<tr><td class='label'>$label</td>";
591         locations_list_cells(null, $name, $selected_id, $all_option, $submit_on_change);
592         echo "</tr>\n";
593 }
594
595 //-----------------------------------------------------------------------------------------------
596
597 function currencies_list($name, $selected_id=null, $submit_on_change=false)
598 {
599         $sql = "SELECT curr_abrev, currency, inactive FROM ".TB_PREF."currencies";
600
601 // default to the company currency
602 return combo_input($name, $selected_id, $sql, 'curr_abrev', 'currency',
603         array(
604                 'select_submit'=> $submit_on_change,
605                 'default' => get_company_currency(),
606                 'async' => false                
607         ) );
608 }
609
610 function currencies_list_cells($label, $name, $selected_id=null, $submit_on_change=false)
611 {
612         if ($label != null)
613                 echo "<td>$label</td>\n";
614         echo "<td>";
615         echo currencies_list($name, $selected_id, $submit_on_change);
616         echo "</td>\n";
617 }
618
619 function currencies_list_row($label, $name, $selected_id=null, $submit_on_change=false)
620 {
621         echo "<tr><td class='label'>$label</td>";
622         currencies_list_cells(null, $name, $selected_id, $submit_on_change);
623         echo "</tr>\n";
624 }
625
626 //---------------------------------------------------------------------------------------------------
627
628 function fiscalyears_list($name, $selected_id=null, $submit_on_change=false)
629 {
630
631         $sql = "SELECT * FROM ".TB_PREF."fiscal_year";
632
633 // default to the company current fiscal year
634
635 return combo_input($name, $selected_id, $sql, 'id', '',
636         array(
637                 'order' => 'begin',
638                 'default' => get_company_pref('f_year'),
639                 'format' => '_format_fiscalyears',
640                 'select_submit'=> $submit_on_change,
641                 'async' => false
642         ) );
643 }
644
645 function _format_fiscalyears($row)
646 {
647         return sql2date($row[1]) . "&nbsp;-&nbsp;" . sql2date($row[2])
648         . "&nbsp;&nbsp;" . ($row[3] ? _('Closed') : _('Active')) . "</option>\n";
649 }
650
651 function fiscalyears_list_cells($label, $name, $selected_id=null)
652 {
653         if ($label != null)
654                 echo "<td>$label</td>\n";
655         echo "<td>";
656         echo fiscalyears_list($name, $selected_id);
657         echo "</td>\n";
658 }
659
660 function fiscalyears_list_row($label, $name, $selected_id=null)
661 {
662         echo "<tr><td class='label'>$label</td>";
663         fiscalyears_list_cells(null, $name, $selected_id);
664         echo "</tr>\n";
665 }
666 //------------------------------------------------------------------------------------
667
668 function dimensions_list($name, $selected_id=null, $no_option=false, $showname=' ',
669         $submit_on_change=false, $showclosed=false, $showtype=1)
670 {
671 $sql = "SELECT id, CONCAT(reference,'  ',name) as ref FROM ".TB_PREF."dimensions";
672
673 $options = array(
674         'order' => 'reference',
675         'spec_option'=>$no_option ? $showname : false,
676         'spec_id' => 0,
677         'select_submit'=> $submit_on_change,
678         'async' => false,
679         );
680
681         if (!$showclosed)
682                 $options['where'][] = "closed=0";
683         if($showtype)
684                 $options['where'][] = "type_=$showtype";
685
686         return combo_input($name, $selected_id, $sql, 'id', 'ref', $options);
687 }
688
689 function dimensions_list_cells($label, $name, $selected_id=null, $no_option=false, $showname=null,
690         $showclosed=false, $showtype=0, $submit_on_change=false)
691 {
692         if ($label != null)
693                 echo "<td>$label</td>\n";
694         echo "<td>";
695         echo dimensions_list($name, $selected_id, $no_option, $showname, $submit_on_change, $showclosed, $showtype);
696         echo "</td>\n";
697 }
698
699 function dimensions_list_row($label, $name, $selected_id=null, $no_option=false, $showname=null,
700         $showclosed=false, $showtype=0, $submit_on_change=false)
701 {
702         echo "<tr><td class='label'>$label</td>";
703         dimensions_list_cells(null, $name, $selected_id, $no_option, $showname,
704                 $showclosed, $showtype, $submit_on_change);
705         echo "</tr>\n";
706 }
707
708 //---------------------------------------------------------------------------------------------------
709
710 function stock_items_list($name, $selected_id=null, $all_option=false, 
711         $submit_on_change=false, $opts=array(), $editkey = false)
712 {
713         global $all_items;
714
715         $sql = "SELECT stock_id, s.description, c.description, s.inactive, s.editable
716                         FROM ".TB_PREF."stock_master s,".TB_PREF."stock_category c WHERE s.category_id=c.category_id";
717
718         if ($editkey)
719                 set_editor('item', $name, $editkey);
720
721         return combo_input($name, $selected_id, $sql, 'stock_id', 's.description',
722         array_merge(
723           array(
724                 'format' => '_format_stock_items',
725                 'spec_option' => $all_option===true ?  _("All Items") : $all_option,
726                 'spec_id' => $all_items,
727                 'search_box' => true,
728                 'search' => array("stock_id", "c.description","s.description"),
729                 'search_submit' => get_company_pref('no_item_list')!=0,
730                 'size'=>10,
731                 'select_submit'=> $submit_on_change,
732                 'category' => 2,
733                 'order' => array('c.description','stock_id')
734           ), $opts) );
735 }
736
737 function _format_stock_items($row)
738 {
739         return (user_show_codes() ?  ($row[0] . "&nbsp;-&nbsp;") : "") . $row[1];
740 }
741
742 function stock_items_list_cells($label, $name, $selected_id=null, $all_option=false, 
743         $submit_on_change=false, $all=false, $editkey = false)
744 {
745         if ($label != null)
746                 echo "<td>$label</td>\n";
747         echo stock_items_list($name, $selected_id, $all_option, $submit_on_change,
748                 array('cells'=>true, 'show_inactive'=>$all), $editkey);
749 }
750 /*
751 function stock_items_list_row($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false)
752 {
753         echo "<tr>\n";
754         stock_items_list_cells($label, $name, $selected_id, $all_option, $submit_on_change);
755         echo "</tr>\n";
756 }
757 */
758 //---------------------------------------------------------------------------------------------------
759 //
760 // Select item via foreign code.
761 //
762 function sales_items_list($name, $selected_id=null, $all_option=false, 
763         $submit_on_change=false, $type='', $opts=array())
764 {
765         global $all_items;
766         // all sales codes
767         $sql = "SELECT i.item_code, i.description, c.description, count(*)>1 as kit,
768                          i.inactive, if(count(*)>1, '0', s.editable) as editable
769                         FROM
770                         ".TB_PREF."stock_master s,
771                         ".TB_PREF."item_codes i
772                         LEFT JOIN
773                         ".TB_PREF."stock_category c
774                         ON i.category_id=c.category_id
775                         WHERE i.stock_id=s.stock_id";
776
777         
778         if ($type == 'local')   { // exclude foreign codes
779                 $sql .= " AND !i.is_foreign"; 
780         } elseif ($type == 'kits') { // sales kits
781                 $sql .= " AND !i.is_foreign AND i.item_code!=i.stock_id";
782         }
783         $sql .= " AND !i.inactive AND !s.inactive AND !s.no_sale";
784         $sql .= " GROUP BY i.item_code";
785
786         return combo_input($name, $selected_id, $sql, 'i.item_code', 'c.description',
787         array_merge(
788           array(
789                 'format' => '_format_stock_items',
790                 'spec_option' => $all_option===true ?  _("All Items") : $all_option,
791                 'spec_id' => $all_items,
792                 'search_box' => true,
793                 'search' => array("i.item_code", "c.description", "i.description"),
794                 'search_submit' => get_company_pref('no_item_list')!=0,
795                 'size'=>15,
796                 'select_submit'=> $submit_on_change,
797                 'category' => 2,
798                 'order' => array('c.description','i.item_code'),
799                 'editable' => 30,
800                 'max' => 255
801           ), $opts) );
802 }
803
804 function sales_items_list_cells($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false)
805 {
806         if ($label != null)
807                 echo "<td>$label</td>\n";
808         echo sales_items_list($name, $selected_id, $all_option, $submit_on_change,
809                 '', array('cells'=>true));
810 }
811
812 function sales_kits_list($name, $selected_id=null, $all_option=false, $submit_on_change=false)
813 {
814         return sales_items_list($name, $selected_id, $all_option, $submit_on_change,
815                 'kits', array('cells'=>false, 'editable' => false));
816 }
817
818 function sales_local_items_list_row($label, $name, $selected_id=null, $all_option=false, $submit_on_change=false)
819 {
820         echo "<tr>";
821         if ($label != null)
822                 echo "<td class='label'>$label</td>\n";
823         echo "<td>";
824         echo sales_items_list($name, $selected_id, $all_option, $submit_on_change,
825                 'local', array('cells'=>false, 'editable' => false));
826         echo "</td></tr>";
827 }
828 //------------------------------------------------------------------------------------
829
830 function stock_manufactured_items_list($name, $selected_id=null,
831         $all_option=false, $submit_on_change=false)
832 {
833         return stock_items_list($name, $selected_id, $all_option, $submit_on_change,
834                 array('where'=>array("mb_flag= 'M'")));
835 }
836
837 function stock_manufactured_items_list_cells($label, $name, $selected_id=null,
838                                 $all_option=false, $submit_on_change=false)
839 {
840         if ($label != null)
841                 echo "<td>$label</td>\n";
842         echo "<td>";
843         echo stock_manufactured_items_list($name, $selected_id, $all_option, $submit_on_change);
844         echo "</td>\n";
845 }
846
847 function stock_manufactured_items_list_row($label, $name, $selected_id=null,
848                 $all_option=false, $submit_on_change=false)
849 {
850         echo "<tr><td class='label'>$label</td>";
851         stock_manufactured_items_list_cells(null, $name, $selected_id, $all_option, $submit_on_change);
852         echo "</tr>\n";
853 }
854 //------------------------------------------------------------------------------------
855
856 function stock_component_items_list($name, $parent_stock_id, $selected_id=null,
857         $all_option=false, $submit_on_change=false, $editkey = false)
858 {
859         return stock_items_list($name, $selected_id, $all_option, $submit_on_change,
860                 array('where'=>array("stock_id != '$parent_stock_id'")), $editkey);
861 }
862
863 function stock_component_items_list_cells($label, $name, $parent_stock_id, 
864         $selected_id=null, $all_option=false, $submit_on_change=false, $editkey = false)
865 {
866         if ($label != null)
867                 echo "<td>$label</td>\n";
868         echo stock_items_list($name, $selected_id, $all_option, $submit_on_change,
869                 array('where'=>array("stock_id != '$parent_stock_id'"), 'cells'=>true),
870                 $editkey);
871 }
872 //------------------------------------------------------------------------------------
873
874 function stock_costable_items_list($name, $selected_id=null,
875         $all_option=false, $submit_on_change=false)
876 {
877         return stock_items_list($name, $selected_id, $all_option, $submit_on_change,
878                 array('where'=>array("mb_flag!='D'")));
879 }
880
881 function stock_costable_items_list_cells($label, $name, $selected_id=null, 
882         $all_option=false, $submit_on_change=false)
883 {
884         if ($label != null)
885                 echo "<td>$label</td>\n";
886         echo stock_items_list($name, $selected_id, $all_option, $submit_on_change,
887                 array('where'=>array("mb_flag!='D'"), 'cells'=>true));
888 }
889
890 //------------------------------------------------------------------------------------
891 function stock_purchasable_items_list($name, $selected_id=null, 
892         $all_option=false, $submit_on_change=false, $all=false, $editkey=false)
893 {
894         return stock_items_list($name, $selected_id, $all_option, $submit_on_change,
895                 array('where'=>array("mb_flag!= 'M'"), 
896                         'show_inactive'=>$all), $editkey);
897 }
898 //
899 //      This helper is used in PO/GRN/PI entry and supports editable descriptions.
900 //
901 function stock_purchasable_items_list_cells($label, $name, $selected_id=null,
902                         $all_option=false, $submit_on_change=false, $editkey=false)
903 {
904         if ($label != null)
905                 echo "<td>$label</td>\n";
906         echo stock_items_list($name, $selected_id, $all_option, $submit_on_change,
907                 array('where'=>array("mb_flag!= 'M'"), 
908                          'editable' => 30,
909                          'cells'=>true), $editkey);
910 }
911 /*
912 function stock_purchasable_items_list_row($label, $name, $selected_id=null,
913                         $all_option=false, $submit_on_change=false, $editkey=false)
914 {
915         echo "<tr><td class='label'>$label</td>";
916         stock_purchasable_items_list_cells(null, $name, $selected_id=null,
917                 $all_option, $submit_on_change, $editkey);
918         echo "</tr>\n";
919 }
920 */
921 //------------------------------------------------------------------------------------
922
923 function stock_item_types_list_row($label, $name, $selected_id=null, $enabled=true)
924 {
925         global $stock_types;
926
927         echo "<tr>";
928         if ($label != null)
929                 echo "<td class='label'>$label</td>\n";
930         echo "<td>";
931
932         echo array_selector($name, $selected_id, $stock_types, 
933                 array( 
934                         'select_submit'=> true, 
935                         'disabled' => !$enabled) );
936         echo "</td></tr>\n";
937 }
938
939 function stock_units_list_row($label, $name, $value=null, $enabled=true)
940 {
941         $result = get_all_item_units();
942         echo "<tr>";
943         if ($label != null)
944                 echo "<td class='label'>$label</td>\n";
945         echo "<td>";
946
947         while($unit = db_fetch($result))
948                 $units[$unit['abbr']] = $unit['name'];
949
950         echo array_selector($name, $value, $units, array( 'disabled' => !$enabled) );
951
952         echo "</td></tr>\n";
953 }
954
955 //------------------------------------------------------------------------------------
956
957 function tax_types_list($name, $selected_id=null, $none_option=false, $submit_on_change=false)
958 {
959         $sql = "SELECT id, CONCAT(name, ' (',rate,'%)') as name FROM ".TB_PREF."tax_types";
960
961         return combo_input($name, $selected_id, $sql, 'id', 'name',
962         array(
963                 'spec_option' => $none_option,
964                 'spec_id' => ALL_NUMERIC,
965                 'select_submit'=> $submit_on_change,
966                 'async' => false,
967         ) );
968 }
969
970 function tax_types_list_cells($label, $name, $selected_id=null, $none_option=false,
971         $submit_on_change=false)
972 {
973         if ($label != null)
974                 echo "<td>$label</td>\n";
975         echo "<td>";
976         echo tax_types_list($name, $selected_id, $none_option, $submit_on_change);
977         echo "</td>\n";
978 }
979
980 function tax_types_list_row($label, $name, $selected_id=null, $none_option=false,
981         $submit_on_change=false)
982 {
983         echo "<tr><td class='label'>$label</td>";
984         tax_types_list_cells(null, $name, $selected_id, $none_option, $submit_on_change);
985         echo "</tr>\n";
986 }
987
988 //------------------------------------------------------------------------------------
989
990 function tax_groups_list($name, $selected_id=null,
991         $none_option=false, $submit_on_change=false)
992 {
993         $sql = "SELECT id, name FROM ".TB_PREF."tax_groups";
994
995         return combo_input($name, $selected_id, $sql, 'id', 'name',
996         array(
997                 'order' => 'id',
998                 'spec_option' => $none_option,
999                 'spec_id' => ALL_NUMERIC,
1000                 'select_submit'=> $submit_on_change,
1001                 'async' => false,
1002         ) );
1003 }
1004
1005 function tax_groups_list_cells($label, $name, $selected_id=null, $none_option=false, $submit_on_change=false)
1006 {
1007         if ($label != null)
1008                 echo "<td>$label</td>\n";
1009         echo "<td>";
1010         echo tax_groups_list($name, $selected_id, $none_option, $submit_on_change);
1011         echo "</td>\n";
1012 }
1013
1014 function tax_groups_list_row($label, $name, $selected_id=null, $none_option=false, $submit_on_change=false)
1015 {
1016         echo "<tr><td class='label'>$label</td>";
1017         tax_groups_list_cells(null, $name, $selected_id, $none_option, $submit_on_change);
1018         echo "</tr>\n";
1019 }
1020
1021 //------------------------------------------------------------------------------------
1022
1023 function item_tax_types_list($name, $selected_id=null)
1024 {
1025         $sql ="SELECT id, name FROM ".TB_PREF."item_tax_types";
1026         return combo_input($name, $selected_id, $sql, 'id', 'name', array('order' => 'id') );
1027 }
1028
1029 function item_tax_types_list_cells($label, $name, $selected_id=null)
1030 {
1031         if ($label != null)
1032                 echo "<td>$label</td>\n";
1033         echo "<td>";
1034         echo item_tax_types_list($name, $selected_id);
1035         echo "</td>\n";
1036 }
1037
1038 function item_tax_types_list_row($label, $name, $selected_id=null)
1039 {
1040         echo "<tr><td class='label'>$label</td>";
1041         item_tax_types_list_cells(null, $name, $selected_id);
1042         echo "</tr>\n";
1043 }
1044
1045 //------------------------------------------------------------------------------------
1046
1047 function shippers_list($name, $selected_id=null)
1048 {
1049         $sql = "SELECT shipper_id, shipper_name, inactive FROM ".TB_PREF."shippers";
1050         return combo_input($name, $selected_id, $sql, 'shipper_id', 'shipper_name', 
1051                 array('order'=>array('shipper_name')));
1052 }
1053
1054 function shippers_list_cells($label, $name, $selected_id=null)
1055 {
1056         if ($label != null)
1057                 echo "<td>$label</td>\n";
1058         echo "<td>";
1059         echo shippers_list($name, $selected_id);
1060         echo "</td>\n";
1061 }
1062
1063 function shippers_list_row($label, $name, $selected_id=null)
1064 {
1065         echo "<tr><td class='label'>$label</td>";
1066         shippers_list_cells(null, $name, $selected_id);
1067         echo "</tr>\n";
1068 }
1069
1070 //-------------------------------------------------------------------------------------
1071
1072 function sales_persons_list($name, $selected_id=null, $spec_opt=false)
1073 {
1074         $sql = "SELECT salesman_code, salesman_name, inactive FROM ".TB_PREF."salesman";
1075         return combo_input($name, $selected_id, $sql, 'salesman_code', 'salesman_name', 
1076                 array('order'=>array('salesman_name'),
1077                         'spec_option' => $spec_opt,
1078                         'spec_id' => ALL_NUMERIC));
1079 }
1080
1081 function sales_persons_list_cells($label, $name, $selected_id=null, $spec_opt=false)
1082 {
1083         if ($label != null)
1084                 echo "<td>$label</td>\n";
1085         echo "<td>\n";
1086         echo sales_persons_list($name, $selected_id, $spec_opt);
1087         echo "</td>\n";
1088 }
1089
1090 function sales_persons_list_row($label, $name, $selected_id=null, $spec_opt=false)
1091 {
1092         echo "<tr><td class='label'>$label</td>";
1093         sales_persons_list_cells(null, $name, $selected_id, $spec_opt);
1094         echo "</tr>\n";
1095 }
1096
1097 //------------------------------------------------------------------------------------
1098
1099 function sales_areas_list($name, $selected_id=null)
1100 {
1101         $sql = "SELECT area_code, description, inactive FROM ".TB_PREF."areas";
1102         return combo_input($name, $selected_id, $sql, 'area_code', 'description', array());
1103 }
1104
1105 function sales_areas_list_cells($label, $name, $selected_id=null)
1106 {
1107         if ($label != null)
1108                 echo "<td>$label</td>\n";
1109         echo "<td>";
1110         echo sales_areas_list($name, $selected_id);
1111         echo "</td>\n";
1112 }
1113
1114 function sales_areas_list_row($label, $name, $selected_id=null)
1115 {
1116         echo "<tr><td class='label'>$label</td>";
1117         sales_areas_list_cells(null, $name, $selected_id);
1118         echo "</tr>\n";
1119 }
1120
1121 //------------------------------------------------------------------------------------
1122
1123 function sales_groups_list($name, $selected_id=null, $special_option=false)
1124 {
1125         $sql = "SELECT id, description, inactive FROM ".TB_PREF."groups";
1126         return combo_input($name, $selected_id, $sql, 'id', 'description', array(
1127                 'spec_option' => $special_option===true ? ' ' : $special_option,
1128                 'order' => 'description', 'spec_id' => 0,
1129         ));
1130 }
1131
1132 function sales_groups_list_cells($label, $name, $selected_id=null, $special_option=false)
1133 {
1134         if ($label != null)
1135                 echo "<td>$label</td>\n";
1136         echo "<td>";
1137         echo sales_groups_list($name, $selected_id, $special_option);
1138         echo "</td>\n";
1139 }
1140
1141 function sales_groups_list_row($label, $name, $selected_id=null, $special_option=false)
1142 {
1143         echo "<tr><td class='label'>$label</td>";
1144         sales_groups_list_cells(null, $name, $selected_id, $special_option);
1145         echo "</tr>\n";
1146 }
1147
1148 //------------------------------------------------------------------------------------
1149
1150 function _format_template_items($row)
1151 {
1152         return ($row[0] . "&nbsp;- &nbsp;" . _("Amount") . "&nbsp;".$row[1]);
1153 }
1154
1155 function templates_list($name, $selected_id=null, $special_option=false)
1156 {
1157         $sql = "SELECT sorder.order_no, Sum(line.unit_price*line.quantity*(1-line.discount_percent)) AS OrderValue
1158                 FROM ".TB_PREF."sales_orders as sorder, ".TB_PREF."sales_order_details as line
1159                 WHERE sorder.order_no = line.order_no AND sorder.type = 1 GROUP BY line.order_no";
1160         return combo_input($name, $selected_id, $sql, 'order_no', 'OrderValue', array(
1161                 'format' => '_format_template_items',
1162                 'spec_option' => $special_option===true ? ' ' : $special_option,
1163                 'order' => 'order_no', 'spec_id' => 0,
1164         ));
1165 }
1166
1167 function templates_list_cells($label, $name, $selected_id=null, $special_option=false)
1168 {
1169         if ($label != null)
1170                 echo "<td>$label</td>\n";
1171         echo "<td>";
1172         echo templates_list($name, $selected_id, $special_option);
1173         echo "</td>\n";
1174 }
1175
1176 function templates_list_row($label, $name, $selected_id=null, $special_option=false)
1177 {
1178         echo "<tr><td class='label'>$label</td>";
1179         templates_list_cells(null, $name, $selected_id, $special_option);
1180         echo "</tr>\n";
1181 }
1182
1183 //------------------------------------------------------------------------------------
1184
1185 function workorders_list($name, $selected_id=null)
1186 {
1187         $sql = "SELECT id, wo_ref FROM ".TB_PREF."workorders WHERE closed=0";
1188         return combo_input($name, $selected_id, $sql, 'id', 'wo_ref', array());
1189 }
1190
1191 function workorders_list_cells($label, $name, $selected_id=null)
1192 {
1193         if ($label != null)
1194                 echo "<td>$label</td>\n";
1195         echo "<td>";
1196         echo workorders_list($name, $selected_id);
1197         echo "</td>\n";
1198 }
1199
1200 function workorders_list_row($label, $name, $selected_id=null)
1201 {
1202         echo "<tr><td class='label'>$label</td>";
1203         workorders_list_cells(null, $name, $selected_id);
1204         echo "</tr>\n";
1205 }
1206
1207 //------------------------------------------------------------------------------------
1208
1209 function payment_terms_list($name, $selected_id=null)
1210 {
1211         $sql = "SELECT terms_indicator, terms, inactive FROM ".TB_PREF."payment_terms";
1212         return combo_input($name, $selected_id, $sql, 'terms_indicator', 'terms', array());
1213 }
1214
1215 function payment_terms_list_cells($label, $name, $selected_id=null)
1216 {
1217         if ($label != null)
1218                 echo "<td>$label</td>\n";
1219         echo "<td>";
1220         echo payment_terms_list($name, $selected_id);
1221         echo "</td>\n";
1222 }
1223
1224 function payment_terms_list_row($label, $name, $selected_id=null)
1225 {
1226         echo "<tr><td class='label'>$label</td>";
1227         payment_terms_list_cells(null, $name, $selected_id);
1228         echo "</tr>\n";
1229 }
1230
1231 //------------------------------------------------------------------------------------
1232
1233 function credit_status_list($name, $selected_id=null)
1234 {
1235         $sql ="SELECT id, reason_description, inactive FROM ".TB_PREF."credit_status";
1236         return combo_input($name, $selected_id, $sql, 'id', 'reason_description', array());
1237 }
1238
1239 function credit_status_list_cells($label, $name, $selected_id=null)
1240 {
1241         if ($label != null)
1242                 echo "<td>$label</td>\n";
1243         echo "<td>";
1244         echo credit_status_list($name, $selected_id);
1245         echo "</td>\n";
1246 }
1247
1248 function credit_status_list_row($label, $name, $selected_id=null)
1249 {
1250         echo "<tr><td class='label'>$label</td>";
1251         credit_status_list_cells(null, $name, $selected_id);
1252         echo "</tr>\n";
1253 }
1254
1255 //-----------------------------------------------------------------------------------------------
1256
1257 function sales_types_list($name, $selected_id=null, $submit_on_change=false, $special_option=false)
1258 {
1259         $sql = "SELECT id, sales_type, inactive FROM ".TB_PREF."sales_types";
1260
1261         return combo_input($name, $selected_id, $sql, 'id', 'sales_type',
1262         array(
1263                 'spec_option' => $special_option===true ? _("All Sales Types") : $special_option,
1264                 'spec_id' => 0,
1265                 'select_submit'=> $submit_on_change,
1266         //        'async' => false,
1267         ) );
1268 }
1269
1270 function sales_types_list_cells($label, $name, $selected_id=null, $submit_on_change=false, $special_option=false)
1271 {
1272         if ($label != null)
1273                 echo "<td>$label</td>\n";
1274         echo "<td>";
1275         echo sales_types_list($name, $selected_id, $submit_on_change, $special_option);
1276         echo "</td>\n";
1277 }
1278
1279 function sales_types_list_row($label, $name, $selected_id=null, $submit_on_change=false, $special_option=false)
1280 {
1281         echo "<tr><td class='label'>$label</td>";
1282         sales_types_list_cells(null, $name, $selected_id, $submit_on_change, $special_option);
1283         echo "</tr>\n";
1284 }
1285
1286 //-----------------------------------------------------------------------------------------------
1287
1288 function movement_types_list($name, $selected_id=null)
1289 {
1290         $sql = "SELECT id, name FROM ".TB_PREF."movement_types";
1291         return combo_input($name, $selected_id, $sql, 'id', 'name', array());
1292 }
1293
1294 function movement_types_list_cells($label, $name, $selected_id=null)
1295 {
1296         if ($label != null)
1297                 echo "<td>$label</td>\n";
1298         echo "<td>";
1299         echo movement_types_list($name, $selected_id);
1300         echo "</td>\n";
1301 }
1302
1303 function movement_types_list_row($label, $name, $selected_id=null)
1304 {
1305         echo "<tr><td class='label'>$label</td>";
1306         movement_types_list_cells(null, $name, $selected_id);
1307         echo "</tr>\n";
1308 }
1309
1310 //-----------------------------------------------------------------------------------------------
1311 function _format_date($row)
1312 {
1313         return sql2date($row['reconciled']);
1314 }
1315
1316 function bank_reconciliation_list($account, $name, $selected_id=null, $submit_on_change=false, $special_option=false)
1317 {
1318         $sql = "SELECT reconciled, reconciled FROM ".TB_PREF."bank_trans
1319                 WHERE bank_act=".db_escape($account)." AND reconciled IS NOT NULL
1320                 GROUP BY reconciled";
1321         return combo_input($name, $selected_id, $sql, 'id', 'reconciled',
1322         array(
1323                 'spec_option' => $special_option,
1324                 'format' => '_format_date',
1325                 'spec_id' => '',
1326                 'select_submit'=> $submit_on_change
1327         ) );
1328 }
1329
1330 function bank_reconciliation_list_cells($label,$account, $name, $selected_id=null, $submit_on_change=false, $special_option=false)
1331 {
1332         if ($label != null)
1333                 echo "<td>$label</td>\n";
1334         echo "<td>";
1335         echo bank_reconciliation_list($account, $name, $selected_id, $submit_on_change, $special_option);
1336         echo "</td>\n";
1337 }
1338 /*
1339 function bank_reconciliation_list_row($label, $account, $name, $selected_id=null, $submit_on_change=false, $special_option=false)
1340 {
1341         echo "<tr>\n";
1342         bank_reconciliation_list_cells($label, $account, $name, $selected_id, $submit_on_change, $special_option);
1343         echo "</tr>\n";
1344 }
1345 */
1346 //-----------------------------------------------------------------------------------------------
1347
1348 function workcenter_list($name, $selected_id=null, $all_option=false)
1349 {
1350         global $all_items;
1351
1352         $sql = "SELECT id, name, inactive FROM ".TB_PREF."workcentres";
1353
1354         return combo_input($name, $selected_id, $sql, 'id', 'name',
1355         array(
1356                 'spec_option' =>$all_option===true ? _("All Suppliers") : $all_option,
1357                 'spec_id' => $all_items,
1358         ) );
1359 }
1360
1361 function workcenter_list_cells($label, $name, $selected_id=null, $all_option=false)
1362 {
1363         default_focus($name);
1364         if ($label != null)
1365                 echo "<td>$label</td>\n";
1366         echo "<td>";
1367         echo workcenter_list($name, $selected_id, $all_option);
1368         echo "</td>\n";
1369 }
1370
1371 function workcenter_list_row($label, $name, $selected_id=null, $all_option=false)
1372 {
1373         echo "<tr><td class='label'>$label</td>";
1374         workcenter_list_cells(null, $name, $selected_id, $all_option);
1375         echo "</tr>\n";
1376 }
1377
1378 //-----------------------------------------------------------------------------------------------
1379
1380 function bank_accounts_list($name, $selected_id=null, $submit_on_change=false)
1381 {
1382         $sql = "SELECT ".TB_PREF."bank_accounts.id, bank_account_name, bank_curr_code, inactive
1383                 FROM ".TB_PREF."bank_accounts";
1384
1385         return combo_input($name, $selected_id, $sql, 'id', 'bank_account_name',
1386         array(
1387                 'format' => '_format_add_curr',
1388                 'select_submit'=> $submit_on_change,
1389                 'async' => false
1390         ) );
1391 }
1392
1393 function bank_accounts_list_cells($label, $name, $selected_id=null, $submit_on_change=false)
1394 {
1395         if ($label != null)
1396                 echo "<td>$label</td>\n";
1397         echo "<td>";
1398         echo bank_accounts_list($name, $selected_id, $submit_on_change);
1399         echo "</td>\n";
1400 }
1401
1402 function bank_accounts_list_row($label, $name, $selected_id=null, $submit_on_change=false)
1403 {
1404         echo "<tr><td class='label'>$label</td>";
1405         bank_accounts_list_cells(null, $name, $selected_id, $submit_on_change);
1406         echo "</tr>\n";
1407 }
1408 //-----------------------------------------------------------------------------------------------
1409
1410 function cash_accounts_list_row($label, $name, $selected_id=null, $submit_on_change=false)
1411 {
1412         $sql = "SELECT ".TB_PREF."bank_accounts.id, bank_account_name, bank_curr_code, inactive
1413                 FROM ".TB_PREF."bank_accounts
1414                 WHERE ".TB_PREF."bank_accounts.account_type=3";
1415
1416         if ($label != null)
1417                 echo "<tr><td class='label'>$label</td>\n";
1418         echo "<td>";
1419         echo combo_input($name, $selected_id, $sql, 'id', 'bank_account_name',
1420         array(
1421                 'format' => '_format_add_curr',
1422                 'select_submit'=> $submit_on_change,
1423                 'async' => true
1424         ) );
1425         echo "</td></tr>\n";
1426 }
1427 //-----------------------------------------------------------------------------------------------
1428
1429 function pos_list_row($label, $name, $selected_id=null, $spec_option=false, $submit_on_change=false)
1430 {
1431         $sql = "SELECT id, pos_name, inactive FROM ".TB_PREF."sales_pos";
1432
1433         default_focus($name);
1434         echo '<tr>';
1435         if ($label != null)
1436                 echo "<td class='label'>$label</td>\n";
1437         echo "<td>";
1438
1439         echo combo_input($name, $selected_id, $sql, 'id', 'pos_name',
1440         array(
1441                 'select_submit'=> $submit_on_change,
1442                 'async' => true,
1443                 'spec_option' =>$spec_option,
1444                 'spec_id' => -1,
1445                 'order'=> array('pos_name')
1446         ) );
1447         echo "</td></tr>\n";
1448
1449 }
1450 //-----------------------------------------------------------------------------------------------
1451 // Payment type selector for current user.
1452 //
1453 function sale_payment_list($name, $category, $selected_id=null, $submit_on_change=true)
1454 {
1455         $sql = "SELECT terms_indicator, terms, inactive FROM ".TB_PREF."payment_terms";
1456         
1457         if ($category == PM_CASH) // only cash
1458                         $sql .= " WHERE days_before_due=0 AND day_in_following_month=0";
1459         if ($category == PM_CREDIT) // only delayed payments
1460                         $sql .= " WHERE days_before_due!=0 OR day_in_following_month!=0";
1461
1462         return combo_input($name, $selected_id, $sql, 'terms_indicator', 'terms',
1463         array(
1464                 'select_submit'=> $submit_on_change,
1465                 'async' => true
1466         ) );
1467
1468 }
1469
1470 function sale_payment_list_cells($label, $name, $category, $selected_id=null, $submit_on_change=true)
1471 {
1472         if ($label != null)
1473                 echo "<td class='label'>$label</td>\n";
1474         echo "<td>";
1475
1476         echo sale_payment_list($name, $category, $selected_id, $submit_on_change);
1477
1478         echo "</td>\n";
1479 }
1480 //-----------------------------------------------------------------------------------------------
1481
1482 function class_list($name, $selected_id=null, $submit_on_change=false)
1483 {
1484         $sql = "SELECT cid, class_name FROM ".TB_PREF."chart_class";
1485
1486         return combo_input($name, $selected_id, $sql, 'cid', 'class_name',
1487         array(
1488                 'select_submit'=> $submit_on_change,
1489                 'async' => false
1490         ) );
1491
1492 }
1493
1494 function class_list_cells($label, $name, $selected_id=null, $submit_on_change=false)
1495 {
1496         if ($label != null)
1497                 echo "<td>$label</td>\n";
1498         echo "<td>";
1499         echo class_list($name, $selected_id, $submit_on_change);
1500         echo "</td>\n";
1501 }
1502
1503 function class_list_row($label, $name, $selected_id=null, $submit_on_change=false)
1504 {
1505         echo "<tr><td class='label'>$label</td>";
1506         class_list_cells(null, $name, $selected_id, $submit_on_change);
1507         echo "</tr>\n";
1508 }
1509
1510 //-----------------------------------------------------------------------------------------------
1511 function stock_categories_list($name, $selected_id=null, $spec_opt=false, $submit_on_change=false)
1512 {
1513         $sql = "SELECT category_id, description, inactive FROM ".TB_PREF."stock_category";
1514         return combo_input($name, $selected_id, $sql, 'category_id', 'description',
1515         array('order'=>'category_id',
1516                 'spec_option' => $spec_opt,
1517                 'spec_id' => -1,
1518                 'select_submit'=> $submit_on_change,
1519                 'async' => true
1520         ));
1521 }
1522
1523 function stock_categories_list_cells($label, $name, $selected_id=null, $spec_opt=false, $submit_on_change=false)
1524 {
1525         if ($label != null)
1526                 echo "<td>$label</td>\n";
1527         echo "<td>";
1528         echo stock_categories_list($name, $selected_id, $spec_opt, $submit_on_change);
1529         echo "</td>\n";
1530 }
1531
1532 function stock_categories_list_row($label, $name, $selected_id=null, $spec_opt=false, $submit_on_change=false)
1533 {
1534         echo "<tr><td class='label'>$label</td>";
1535         stock_categories_list_cells(null, $name, $selected_id, $spec_opt, $submit_on_change);
1536         echo "</tr>\n";
1537 }
1538
1539 //-----------------------------------------------------------------------------------------------
1540
1541 function gl_account_types_list($name, $selected_id=null, $all_option=false, $all=true)
1542 {
1543         global $all_items;
1544
1545         $sql = "SELECT id, name FROM ".TB_PREF."chart_types";
1546
1547         return combo_input($name, $selected_id, $sql, 'id', 'name',
1548         array(
1549                 'order' => array('class_id', 'id', 'parent'),
1550                 'spec_option' =>$all_option,
1551                 'spec_id' => $all_items
1552         ) );
1553 }
1554
1555 function gl_account_types_list_cells($label, $name, $selected_id=null, $all_option=false, $all=false)
1556 {
1557         if ($label != null)
1558                 echo "<td>$label</td>\n";
1559         echo "<td>";
1560         echo gl_account_types_list($name, $selected_id, $all_option, $all);
1561         echo "</td>\n";
1562 }
1563
1564 function gl_account_types_list_row($label, $name, $selected_id=null, $all_option=false, $all=false)
1565 {
1566         echo "<tr><td class='label'>$label</td>";
1567         gl_account_types_list_cells(null, $name, $selected_id, $all_option,
1568                 $all);
1569         echo "</tr>\n";
1570 }
1571
1572 //-----------------------------------------------------------------------------------------------
1573 function gl_all_accounts_list($name, $selected_id=null, $skip_bank_accounts=false,
1574         $cells=false, $all_option=false, $submit_on_change=false, $all=false)
1575 {
1576         if ($skip_bank_accounts)
1577                 $sql = "SELECT chart.account_code, chart.account_name, type.name, chart.inactive, type.id
1578                         FROM (".TB_PREF."chart_master chart,".TB_PREF."chart_types type) "
1579                         ."LEFT JOIN ".TB_PREF."bank_accounts acc "
1580                         ."ON chart.account_code=acc.account_code
1581                                 WHERE acc.account_code  IS NULL
1582                         AND chart.account_type=type.id";
1583         else
1584                 $sql = "SELECT chart.account_code, chart.account_name, type.name, chart.inactive, type.id
1585                         FROM ".TB_PREF."chart_master chart,".TB_PREF."chart_types type
1586                         WHERE chart.account_type=type.id";
1587
1588         return combo_input($name, $selected_id, $sql, 'chart.account_code', 'chart.account_name',
1589         array(
1590                 'format' => '_format_account',
1591                 'spec_option' => $all_option===true ?  _("Use Item Sales Accounts") : $all_option,
1592                 'spec_id' => '',
1593                 'type' => 2,
1594                 'order' => array('type.class_id','type.id','account_code'),
1595                 'search_box' => $cells,
1596                         'search_submit' => false,
1597                         'size' => 12,
1598                         'max' => 10,
1599                         'cells' => true,
1600                 'select_submit'=> $submit_on_change,
1601                 'async' => false,
1602                 'category' => 2,
1603                 'show_inactive' => $all
1604         ) );
1605
1606 }
1607
1608 function _format_account($row)
1609 {
1610                 return $row[0] .  "&nbsp;&nbsp;&nbsp;&nbsp;" . $row[1];
1611 }
1612
1613 function gl_all_accounts_list_cells($label, $name, $selected_id=null, 
1614         $skip_bank_accounts=false, $cells=false, $all_option=false, 
1615         $submit_on_change=false, $all=false)
1616 {
1617         if ($label != null)
1618                 echo "<td>$label</td>\n";
1619         echo "<td>";
1620         echo gl_all_accounts_list($name, $selected_id, 
1621                 $skip_bank_accounts, $cells, $all_option, $submit_on_change, $all);
1622         echo "</td>\n";
1623 }
1624
1625 function gl_all_accounts_list_row($label, $name, $selected_id=null, 
1626         $skip_bank_accounts=false, $cells=false, $all_option=false)
1627 {
1628         echo "<tr><td class='label'>$label</td>";
1629         gl_all_accounts_list_cells(null, $name, $selected_id, 
1630                 $skip_bank_accounts, $cells, $all_option);
1631         echo "</tr>\n";
1632 }
1633
1634 function yesno_list($name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false)
1635 {
1636         $items = array();
1637         $items['0'] = strlen($name_no) ? $name_no : _("No");
1638         $items['1'] = strlen($name_yes) ? $name_yes : _("Yes");
1639
1640         return array_selector($name, $selected_id, $items, 
1641                 array( 
1642                         'select_submit'=> $submit_on_change,
1643                         'async' => false ) ); // FIX?
1644 }
1645
1646 function yesno_list_cells($label, $name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false)
1647 {
1648         if ($label != null)
1649                 echo "<td>$label</td>\n";
1650         echo "<td>";
1651         echo yesno_list($name, $selected_id, $name_yes, $name_no, $submit_on_change);
1652         echo "</td>\n";
1653 }
1654
1655 function yesno_list_row($label, $name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false)
1656 {
1657         echo "<tr><td class='label'>$label</td>";
1658         yesno_list_cells(null, $name, $selected_id, $name_yes, $name_no, $submit_on_change);
1659         echo "</tr>\n";
1660 }
1661
1662 //------------------------------------------------------------------------------------------------
1663
1664 function languages_list($name, $selected_id=null, $all_option=false)
1665 {
1666         global $installed_languages;
1667
1668         $items = array();
1669         if ($all_option)
1670                 $items[''] = $all_option;
1671         foreach ($installed_languages as $lang)
1672                         $items[$lang['code']] = $lang['name'];
1673         return array_selector($name, $selected_id, $items);
1674 }
1675
1676 function languages_list_cells($label, $name, $selected_id=null, $all_option=false)
1677 {
1678         if ($label != null)
1679                 echo "<td>$label</td>\n";
1680         echo "<td>";
1681         echo languages_list($name, $selected_id, $all_option);
1682         echo "</td>\n";
1683 }
1684
1685 function languages_list_row($label, $name, $selected_id=null, $all_option=false)
1686 {
1687         echo "<tr><td class='label'>$label</td>";
1688         languages_list_cells(null, $name, $selected_id, $all_option);
1689         echo "</tr>\n";
1690 }
1691
1692 //------------------------------------------------------------------------------------------------
1693
1694 function bank_account_types_list($name, $selected_id=null)
1695 {
1696         global $bank_account_types;
1697
1698         return array_selector($name, $selected_id, $bank_account_types);
1699 }
1700
1701 function bank_account_types_list_cells($label, $name, $selected_id=null)
1702 {
1703         if ($label != null)
1704                 echo "<td>$label</td>\n";
1705         echo "<td>";
1706         echo bank_account_types_list($name, $selected_id);
1707         echo "</td>\n";
1708 }
1709
1710 function bank_account_types_list_row($label, $name, $selected_id=null)
1711 {
1712         echo "<tr><td class='label'>$label</td>";
1713         bank_account_types_list_cells(null, $name, $selected_id);
1714         echo "</tr>\n";
1715 }
1716
1717 //------------------------------------------------------------------------------------------------
1718 function payment_person_types_list($name, $selected_id=null, $submit_on_change=false)
1719 {
1720         global $payment_person_types;
1721
1722         $items = array();
1723         foreach ($payment_person_types as $key=>$type)
1724         {
1725                 if ($key != PT_WORKORDER)
1726                         $items[$key] = $type;
1727         }               
1728         return array_selector($name, $selected_id, $items, 
1729                 array( 'select_submit'=> $submit_on_change ) );
1730 }
1731
1732 function payment_person_types_list_cells($label, $name, $selected_id=null, $related=null)
1733 {
1734         if ($label != null)
1735                 echo "<td>$label</td>\n";
1736         echo "<td>";
1737         echo payment_person_types_list($name, $selected_id, $related);
1738         echo "</td>\n";
1739 }
1740
1741 function payment_person_types_list_row($label, $name, $selected_id=null, $related=null)
1742 {
1743         echo "<tr><td class='label'>$label</td>";
1744         payment_person_types_list_cells(null, $name, $selected_id, $related);
1745         echo "</tr>\n";
1746 }
1747
1748 //------------------------------------------------------------------------------------------------
1749
1750 function wo_types_list($name, $selected_id=null)
1751 {
1752         global $wo_types_array;
1753         
1754         return array_selector($name, $selected_id, $wo_types_array, 
1755                 array( 'select_submit'=> true, 'async' => true ) );
1756 }
1757
1758 function wo_types_list_row($label, $name, $selected_id=null)
1759 {
1760         echo "<tr><td class='label'>$label</td><td>\n";
1761         echo wo_types_list($name, $selected_id);
1762         echo "</td></tr>\n";
1763 }
1764
1765 //------------------------------------------------------------------------------------------------
1766
1767 function dateformats_list_row($label, $name, $value=null)
1768 {
1769         global $dateformats;
1770
1771         echo "<tr><td class='label'>$label</td>\n<td>";
1772         echo array_selector( $name, $value, $dateformats );
1773         echo "</td></tr>\n";
1774 }
1775
1776 function dateseps_list_row($label, $name, $value=null)
1777 {
1778         global $dateseps;
1779
1780         echo "<tr><td class='label'>$label</td>\n<td>";
1781         echo array_selector( $name, $value, $dateseps );
1782         echo "</td></tr>\n";
1783 }
1784
1785 function thoseps_list_row($label, $name, $value=null)
1786 {
1787         global $thoseps;
1788
1789         echo "<tr><td class='label'>$label</td>\n<td>";
1790         echo array_selector( $name, $value, $thoseps );
1791         echo "</td></tr>\n";
1792 }
1793
1794 function decseps_list_row($label, $name, $value=null)
1795 {
1796         global $decseps;
1797
1798         echo "<tr><td class='label'>$label</td>\n<td>";
1799         echo array_selector( $name, $value, $decseps );
1800         echo "</td></tr>\n";
1801 }
1802
1803 function themes_list_row($label, $name, $value=null)
1804 {
1805         global $path_to_root;
1806
1807         $path = $path_to_root.'/themes/';
1808         $themes = array();
1809         $themedir = opendir($path);
1810         while(false !== ($fname = readdir($themedir)))
1811         {
1812                 if($fname!='.' && $fname!='..' && $fname!='CVS' && is_dir($path.$fname))
1813                 {
1814                         $themes[$fname] =  $fname;
1815                 }
1816         }
1817         ksort($themes);
1818
1819         echo "<tr><td class='label'>$label</td>\n<td>";
1820         echo array_selector( $name, $value, $themes );
1821         echo "</td></tr>\n";
1822 }
1823
1824 function pagesizes_list_row($label, $name, $value=null)
1825 {
1826         global $pagesizes;
1827
1828         $items = array();
1829         foreach ($pagesizes as $pz)
1830                 $items[$pz] = $pz;
1831
1832         echo "<tr><td class='label'>$label</td>\n<td>";
1833         echo array_selector( $name, $value, $items );
1834         echo "</td></tr>\n";
1835 }
1836
1837 function systypes_list($name, $value=null, $spec_opt=false, $submit_on_change=false)
1838 {
1839         global $systypes_array;
1840
1841         return array_selector($name, $value, $systypes_array, 
1842                 array( 
1843                         'spec_option'=> $spec_opt,
1844                         'spec_id' => ALL_NUMERIC,
1845                         'select_submit'=> $submit_on_change,
1846                         'async' => false,
1847                         )
1848         );
1849 }
1850
1851 function systypes_list_cells($label, $name, $value=null, $submit_on_change=false)
1852 {
1853         if ($label != null)
1854                 echo "<td>$label</td>\n";
1855         echo "<td>";
1856         echo systypes_list($name, $value, false, $submit_on_change);
1857         echo "</td>\n";
1858 }
1859
1860 function systypes_list_row($label, $name, $value=null, $submit_on_change=false)
1861 {
1862         echo "<tr><td class='label'>$label</td>";
1863         systypes_list_cells(null, $name, $value, $submit_on_change);
1864         echo "</tr>\n";
1865 }
1866
1867 function journal_types_list_cells($label, $name, $value=null, $submit_on_change=false)
1868 {
1869         global $systypes_array;
1870
1871         if ($label != null)
1872                 echo "<td>$label</td>\n";
1873         echo "<td>";
1874
1875         $items = $systypes_array;
1876
1877         // exclude quotes, orders and dimensions
1878         foreach (array(ST_PURCHORDER, ST_WORKORDER, ST_SALESORDER, ST_DIMENSION, 
1879                                 ST_SALESQUOTE) as $excl)
1880                         unset($items[$excl]);
1881         
1882         echo array_selector($name, $value, $items, 
1883                 array( 
1884                         'spec_option'=> _("All"),
1885                         'spec_id' => -1,
1886                         'select_submit'=> $submit_on_change,
1887                         'async' => false
1888                         )
1889         );
1890         echo "</td>\n";
1891 }
1892
1893 function cust_allocations_list_cells($label, $name, $selected=null)
1894 {
1895         global $all_items;
1896
1897         if ($label != null)
1898                 label_cell($label);
1899         echo "<td>\n";
1900         $allocs = array( 
1901                 $all_items=>_("All Types"),
1902                 '1'=> _("Sales Invoices"),
1903                 '2'=> _("Overdue Invoices"),
1904                 '3' => _("Payments"),
1905                 '4' => _("Credit Notes"),
1906                 '5' => _("Delivery Notes")
1907         );
1908         echo array_selector($name, $selected, $allocs);
1909         echo "</td>\n";
1910 }
1911
1912 function supp_allocations_list_cell($name, $selected=null)
1913 {
1914         global $all_items;
1915
1916         echo "<td>\n";
1917         $allocs = array( 
1918                 $all_items=>_("All Types"),
1919                 '1'=> _("Invoices"),
1920                 '2'=> _("Overdue Invoices"),
1921                 '3' => _("Payments"),
1922                 '4' => _("Credit Notes"),
1923                 '5' => _("Overdue Credit Notes")
1924         );
1925         echo array_selector($name, $selected, $allocs);
1926         echo "</td>\n";
1927 }
1928
1929 function supp_transactions_list_cell($name, $selected=null)
1930 {
1931         global $all_items;
1932
1933         echo "<td>\n";
1934         $allocs = array( 
1935                 $all_items=>_("All Types"),
1936                 '6'=>_("GRNs"),
1937                 '1'=> _("Invoices"),
1938                 '2'=> _("Overdue Invoices"),
1939                 '3' => _("Payments"),
1940                 '4' => _("Credit Notes"),
1941                 '5' => _("Overdue Credit Notes")
1942         );
1943
1944         echo array_selector($name, $selected, $allocs);
1945         echo "</td>\n";
1946 }
1947
1948 function policy_list_cells($label, $name, $selected=null)
1949 {
1950         if ($label != null)
1951                 label_cell($label);
1952         echo "<td>\n";
1953         echo array_selector($name, $selected, 
1954                                 array( '' => _("Automatically put balance on back order"),
1955                                         'CAN' => _("Cancel any quantites not delivered")) );
1956         echo "</td>\n";
1957 }
1958
1959 function policy_list_row($label, $name, $selected=null)
1960 {
1961         echo "<tr><td class='label'>$label</td>";
1962         policy_list_cells(null, $name, $selected);
1963         echo "</tr>\n";
1964 }
1965
1966 function credit_type_list_cells($label, $name, $selected=null, $submit_on_change=false)
1967 {
1968         if ($label != null)
1969                 label_cell($label);
1970         echo "<td>\n";
1971         echo array_selector($name, $selected, 
1972                                 array( 'Return' => _("Items Returned to Inventory Location"),
1973                                         'WriteOff' => _("Items Written Off")),
1974                                 array( 'select_submit'=> $submit_on_change ) );
1975         echo "</td>\n";
1976 }
1977
1978 function credit_type_list_row($label, $name, $selected=null, $submit_on_change=false)
1979 {
1980         echo "<tr><td class='label'>$label</td>";
1981         credit_type_list_cells(null, $name, $selected, $submit_on_change);
1982         echo "</tr>\n";
1983 }
1984
1985 function number_list($name, $selected, $from, $to, $no_option=false)
1986 {
1987         $items = array();
1988         for ($i = $from; $i <= $to; $i++)
1989                 $items[$i] = "$i";
1990
1991         return array_selector($name, $selected, $items,
1992                                 array(  'spec_option' => $no_option,
1993                                                 'spec_id' => ALL_NUMERIC) );
1994 }
1995
1996 function number_list_cells($label, $name, $selected, $from, $to, $no_option=false)
1997 {
1998         if ($label != null)
1999                 label_cell($label);
2000         echo "<td>\n";
2001         echo number_list($name, $selected, $from, $to, $no_option);
2002         echo "</td>\n";
2003 }
2004
2005 function number_list_row($label, $name, $selected, $from, $to, $no_option=false)
2006 {
2007         echo "<tr><td class='label'>$label</td>";
2008         echo number_list_cells(null, $name, $selected, $from, $to, $no_option);
2009         echo "</tr>\n";
2010 }
2011
2012 function print_profiles_list_row($label, $name, $selected_id=null, $spec_opt=false,
2013         $submit_on_change=true)
2014 {
2015         $sql = "SELECT profile FROM ".TB_PREF."print_profiles"
2016                 ." GROUP BY profile";
2017         $result = db_query($sql, 'cannot get all profile names');
2018         $profiles = array();
2019         while($myrow=db_fetch($result)) {
2020                 $profiles[$myrow['profile']] = $myrow['profile'];
2021         }
2022
2023         echo "<tr>";
2024         if ($label != null)
2025                 echo "<td class='label'>$label</td>\n";
2026         echo "<td>";
2027
2028         echo array_selector($name, $selected_id, $profiles, 
2029                 array( 'select_submit'=> $submit_on_change,
2030                         'spec_option'=>$spec_opt,
2031                         'spec_id' => ''
2032                  ));
2033
2034         echo "</td></tr>\n";
2035 }
2036
2037 function printers_list($name, $selected_id=null, $spec_opt=false, $submit_on_change=false)
2038 {
2039         static $printers; // query only once for page display
2040
2041         if (!$printers) {
2042                 $sql = "SELECT id, name, description FROM ".TB_PREF."printers"; 
2043                 $result = db_query($sql, 'cannot get all printers');
2044                 $printers = array();
2045                 while($myrow=db_fetch($result)) {
2046                         $printers[$myrow['id']] = $myrow['name'].'&nbsp;-&nbsp;'.$myrow['description'];
2047                 }
2048         }
2049         return array_selector($name, $selected_id, $printers, 
2050                 array( 'select_submit'=> $submit_on_change,
2051                         'spec_option'=>$spec_opt,
2052                         'spec_id' => ''
2053                  ));
2054 }
2055
2056 //------------------------------------------------------------------------------------------------
2057
2058 function quick_entries_list($name, $selected_id=null, $type=null, $submit_on_change=false)
2059 {
2060         $where = false;
2061         $sql = "SELECT id, description FROM ".TB_PREF."quick_entries";
2062         if ($type != null)
2063                 $sql .= " WHERE type=$type";
2064
2065         return combo_input($name, $selected_id, $sql, 'id', 'description',
2066                 array(
2067                         'spec_id' => '',
2068                         'order' => 'description',
2069                         'select_submit'=> $submit_on_change,
2070                         'async' => false
2071                 ) );
2072
2073 }
2074
2075 function quick_entries_list_cells($label, $name, $selected_id=null, $type, $submit_on_change=false)
2076 {
2077         if ($label != null)
2078                 echo "<td>$label</td>\n";
2079         echo "<td>";    
2080         echo quick_entries_list($name, $selected_id, $type, $submit_on_change);
2081         echo "</td>";
2082 }
2083
2084 function quick_entries_list_row($label, $name, $selected_id=null, $type, $submit_on_change=false)
2085 {
2086         echo "<tr><td class='label'>$label</td>";
2087         quick_entries_list_cells(null, $name, $selected_id, $type, $submit_on_change);
2088         echo "</tr>\n";
2089 }
2090
2091
2092 function quick_actions_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2093 {
2094         global $quick_actions;
2095         
2096         echo "<tr><td class='label'>$label</td><td>";
2097         echo array_selector($name, $selected_id, $quick_actions, 
2098                 array( 
2099                         'select_submit'=> $submit_on_change
2100                 ) );
2101         echo "</td></tr>\n";
2102 }
2103
2104 function quick_entry_types_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2105 {
2106         global $quick_entry_types;
2107                 
2108         echo "<tr><td class='label'>$label</td><td>";
2109         echo array_selector($name, $selected_id, $quick_entry_types, 
2110                 array( 
2111                         'select_submit'=> $submit_on_change
2112                         ) );
2113         echo "</td></tr>\n";
2114 }
2115
2116 function record_status_list_row($label, $name) {
2117         return yesno_list_row($label, $name, null,      _('Inactive'), _('Active'));
2118 }
2119
2120 function class_types_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2121 {
2122         global $class_types;
2123         
2124         echo "<tr><td class='label'>$label</td><td>";
2125         echo array_selector($name, $selected_id, $class_types, 
2126                 array( 
2127                         'select_submit'=> $submit_on_change
2128                 ) );
2129         echo "</td></tr>\n";
2130 }
2131
2132 //------------------------------------------------------------------------------------------------
2133
2134 function security_roles_list($name, $selected_id=null, $new_item=false, $submit_on_change=false,
2135         $show_inactive = false)
2136 {
2137         global $all_items;
2138
2139         $sql = "SELECT id, role, inactive FROM ".TB_PREF."security_roles";
2140
2141 return combo_input($name, $selected_id, $sql, 'id', 'description',
2142         array(
2143                 'spec_option'=>$new_item ? _("New role") : false,
2144                 'spec_id' => '',
2145                 'select_submit'=> $submit_on_change,
2146                 'show_inactive' => $show_inactive
2147         ) );
2148 }
2149
2150 function security_roles_list_cells($label, $name, $selected_id=null, $new_item=false, $submit_on_change=false,
2151         $show_inactive = false)
2152 {
2153         if ($label != null)
2154                 echo "<td>$label</td>\n";
2155         echo "<td>";
2156         echo security_roles_list($name, $selected_id, $new_item, $submit_on_change, $show_inactive);
2157         echo "</td>\n";
2158 }
2159
2160 function security_roles_list_row($label, $name, $selected_id=null, $new_item=false, $submit_on_change=false,
2161         $show_inactive = false)
2162 {
2163         echo "<tr><td class='label'>$label</td>";
2164         security_roles_list_cells(null, $name, $selected_id, $new_item, $submit_on_change, $show_inactive);
2165         echo "</tr>\n";
2166 }
2167
2168 function tab_list_row($label, $name, $selected_id=null, $all = false)
2169 {
2170         global $installed_extensions;
2171         
2172         $tabs = array();
2173         foreach ($_SESSION['App']->applications as $app) {
2174                 $tabs[$app->id] = access_string($app->name, true);
2175         }
2176         if ($all) {     // add also not active ext. modules
2177                 foreach ($installed_extensions as $ext) {
2178                         if ($ext['type'] == 'module' && !$ext['active'])
2179                                 $tabs[$ext['tab']] = access_string($ext['title'], true);
2180                 }
2181         }
2182         echo "<tr>\n";
2183         echo "<td class='label'>$label</td><td>\n";
2184         echo array_selector($name, $selected_id, $tabs);
2185         echo "</td></tr>\n";
2186 }
2187
2188 //-----------------------------------------------------------------------------------------------
2189
2190 function tag_list($name, $height, $type, $multi=false, $all=false, $spec_opt = false)
2191 {
2192         // Get tags
2193         global $path_to_root;
2194         include_once($path_to_root . "/admin/db/tags_db.inc");
2195         $results = get_tags($type, $all);
2196
2197         while ($tag = db_fetch($results))
2198                 $tags[$tag['id']] = $tag['name'];
2199         
2200         if (!isset($tags)) {
2201                 $tags[''] = $all ? _("No tags defined.") : _("No active tags defined.");
2202                 $spec_opt = false;
2203         }
2204         return array_selector($name, null, $tags,
2205                 array(
2206                         'multi' => $multi,
2207                         'height' => $height,
2208                         'spec_option'=> $spec_opt,
2209                         'spec_id' => -1,
2210                 ) );
2211 }
2212
2213 function tag_list_cells($label, $name, $height, $type, $mult=false, $all=false, $spec_opt = false)
2214 {
2215         if ($label != null)
2216                 echo "<td>$label</td>\n";
2217         echo "<td>\n";
2218         echo tag_list($name, $height, $type, $mult, $all, $spec_opt);
2219         echo "</td>\n";
2220         
2221 }
2222
2223 function tag_list_row($label, $name, $height, $type, $mult=false, $all=false, $spec_opt = false)
2224 {
2225         echo "<tr><td class='label'>$label</td>";
2226         tag_list_cells(null, $name, $height, $type, $mult, $all, $spec_opt);
2227         echo "</tr>\n"; 
2228 }
2229
2230 //---------------------------------------------------------------------------------------------
2231 //      List of sets of active extensions 
2232 //
2233 function extset_list($name, $value=null, $submit_on_change=false)
2234 {
2235         global $db_connections;
2236
2237         $items = array();
2238         foreach ($db_connections as $comp)
2239                 $items[] = sprintf(_("Activated for '%s'"), $comp['name']);
2240         return array_selector( $name, $value, $items,
2241                 array(
2242                         'spec_option'=> _("Available and/or installed"),
2243                         'spec_id' => -1,
2244                         'select_submit'=> $submit_on_change,
2245                         'async' => true
2246                 ));
2247 }
2248
2249 function crm_category_types_list($name, $selected_id=null, $filter=array(), $submit_on_change=true)
2250 {
2251
2252         $sql = "SELECT id, name, type, inactive FROM ".TB_PREF."crm_categories";
2253
2254         $multi = false;
2255         $groups = false;
2256         $where = array();
2257         if (@$filter['class']) {
2258                 $where[] = 'type='.db_escape($filter['class']);
2259         } else
2260                 $groups = 'type';
2261         if (@$filter['subclass']) $where[] = 'action='.db_escape($filter['subclass']);
2262         if (@$filter['entity']) $where[] = 'entity_id='.db_escape($filter['entity']);
2263         if (@$filter['multi']) { // contact category selector for person
2264                 $multi = true;
2265         }
2266
2267         return combo_input($name, $selected_id, $sql, 'id', 'name',
2268                 array(
2269                         'multi' => $multi,
2270                         'height' => $multi ? 5:1,
2271                         'category' => $groups,
2272                         'select_submit'=> $submit_on_change,
2273                         'async' => true,
2274                         'where' => $where
2275                 ));
2276 }
2277
2278 function crm_category_types_list_row($label, $name, $selected_id=null, $filter=array(), $submit_on_change=true)
2279 {
2280         echo "<tr><td class='label'>$label</td><td>";
2281         echo crm_category_types_list($name, $selected_id, $filter, $submit_on_change);
2282         echo "</td></tr>\n";
2283 }
2284
2285 function payment_type_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2286 {
2287         global $pterm_types;
2288         
2289         echo "<tr><td class='label'>$label</td><td>";
2290         echo array_selector($name, $selected_id, $pterm_types, 
2291                 array( 
2292                         'select_submit'=> $submit_on_change
2293                 ) );
2294         echo "</td></tr>\n";
2295 }
2296
2297 function coa_list_row($label, $name, $value=null)
2298 {
2299         global $path_to_root, $installed_extensions;
2300
2301         $path = $path_to_root.'/sql/';
2302         $coas = array();
2303         $sqldir = opendir($path);
2304         while (false !== ($fname = readdir($sqldir)))
2305         {
2306                 if (is_file($path.$fname) && substr($fname,-4)=='.sql' && @($fname[2] == '_'))
2307                 {
2308                         $ext = array_search_value($fname, $installed_extensions, 'sql');
2309                         if ($ext!=null) {
2310                                 $descr = $ext['name'];
2311                         } elseif ($fname == 'en_US-new.sql') { // two standard COAs
2312                                 $descr = _("Standard new company American COA (4 digit)");
2313                         } elseif ($fname == 'en_US-demo.sql') {
2314                                 $descr = _("Standard American COA (4 digit) with demo data");
2315                         } else
2316                                 $descr = $fname;
2317
2318                         $coas[$fname] =  $descr;
2319                 }
2320         }
2321         ksort($coas);
2322
2323         echo "<tr><td class='label'>$label</td>\n<td>";
2324         echo array_selector( $name, $value, $coas );
2325         echo "</td></tr>\n";
2326 }
2327 ?>