Non-voidable transactions removed from selector on voiding page.
[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=".BT_CASH;
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                 'format' => '_format_account',
1550                 'order' => array('class_id', 'id', 'parent'),
1551                 'spec_option' =>$all_option,
1552                 'spec_id' => $all_items
1553         ) );
1554 }
1555
1556 function gl_account_types_list_cells($label, $name, $selected_id=null, $all_option=false, $all=false)
1557 {
1558         if ($label != null)
1559                 echo "<td>$label</td>\n";
1560         echo "<td>";
1561         echo gl_account_types_list($name, $selected_id, $all_option, $all);
1562         echo "</td>\n";
1563 }
1564
1565 function gl_account_types_list_row($label, $name, $selected_id=null, $all_option=false, $all=false)
1566 {
1567         echo "<tr><td class='label'>$label</td>";
1568         gl_account_types_list_cells(null, $name, $selected_id, $all_option,
1569                 $all);
1570         echo "</tr>\n";
1571 }
1572
1573 //-----------------------------------------------------------------------------------------------
1574 function gl_all_accounts_list($name, $selected_id=null, $skip_bank_accounts=false,
1575         $cells=false, $all_option=false, $submit_on_change=false, $all=false)
1576 {
1577         if ($skip_bank_accounts)
1578                 $sql = "SELECT chart.account_code, chart.account_name, type.name, chart.inactive, type.id
1579                         FROM (".TB_PREF."chart_master chart,".TB_PREF."chart_types type) "
1580                         ."LEFT JOIN ".TB_PREF."bank_accounts acc "
1581                         ."ON chart.account_code=acc.account_code
1582                                 WHERE acc.account_code  IS NULL
1583                         AND chart.account_type=type.id";
1584         else
1585                 $sql = "SELECT chart.account_code, chart.account_name, type.name, chart.inactive, type.id
1586                         FROM ".TB_PREF."chart_master chart,".TB_PREF."chart_types type
1587                         WHERE chart.account_type=type.id";
1588
1589         return combo_input($name, $selected_id, $sql, 'chart.account_code', 'chart.account_name',
1590         array(
1591                 'format' => '_format_account',
1592                 'spec_option' => $all_option===true ?  _("Use Item Sales Accounts") : $all_option,
1593                 'spec_id' => '',
1594                 'type' => 2,
1595                 'order' => array('type.class_id','type.id','account_code'),
1596                 'search_box' => $cells,
1597                         'search_submit' => false,
1598                         'size' => 12,
1599                         'max' => 10,
1600                         'cells' => true,
1601                 'select_submit'=> $submit_on_change,
1602                 'async' => false,
1603                 'category' => 2,
1604                 'show_inactive' => $all
1605         ) );
1606
1607 }
1608
1609 function _format_account($row)
1610 {
1611                 return $row[0] .  "&nbsp;&nbsp;&nbsp;&nbsp;" . $row[1];
1612 }
1613
1614 function gl_all_accounts_list_cells($label, $name, $selected_id=null, 
1615         $skip_bank_accounts=false, $cells=false, $all_option=false, 
1616         $submit_on_change=false, $all=false)
1617 {
1618         if ($label != null)
1619                 echo "<td>$label</td>\n";
1620         echo "<td>";
1621         echo gl_all_accounts_list($name, $selected_id, 
1622                 $skip_bank_accounts, $cells, $all_option, $submit_on_change, $all);
1623         echo "</td>\n";
1624 }
1625
1626 function gl_all_accounts_list_row($label, $name, $selected_id=null, 
1627         $skip_bank_accounts=false, $cells=false, $all_option=false)
1628 {
1629         echo "<tr><td class='label'>$label</td>";
1630         gl_all_accounts_list_cells(null, $name, $selected_id, 
1631                 $skip_bank_accounts, $cells, $all_option);
1632         echo "</tr>\n";
1633 }
1634
1635 function yesno_list($name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false)
1636 {
1637         $items = array();
1638         $items['0'] = strlen($name_no) ? $name_no : _("No");
1639         $items['1'] = strlen($name_yes) ? $name_yes : _("Yes");
1640
1641         return array_selector($name, $selected_id, $items, 
1642                 array( 
1643                         'select_submit'=> $submit_on_change,
1644                         'async' => false ) ); // FIX?
1645 }
1646
1647 function yesno_list_cells($label, $name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false)
1648 {
1649         if ($label != null)
1650                 echo "<td>$label</td>\n";
1651         echo "<td>";
1652         echo yesno_list($name, $selected_id, $name_yes, $name_no, $submit_on_change);
1653         echo "</td>\n";
1654 }
1655
1656 function yesno_list_row($label, $name, $selected_id=null, $name_yes="", $name_no="", $submit_on_change=false)
1657 {
1658         echo "<tr><td class='label'>$label</td>";
1659         yesno_list_cells(null, $name, $selected_id, $name_yes, $name_no, $submit_on_change);
1660         echo "</tr>\n";
1661 }
1662
1663 //------------------------------------------------------------------------------------------------
1664
1665 function languages_list($name, $selected_id=null, $all_option=false)
1666 {
1667         global $installed_languages;
1668
1669         $items = array();
1670         if ($all_option)
1671                 $items[''] = $all_option;
1672         foreach ($installed_languages as $lang)
1673                         $items[$lang['code']] = $lang['name'];
1674         return array_selector($name, $selected_id, $items);
1675 }
1676
1677 function languages_list_cells($label, $name, $selected_id=null, $all_option=false)
1678 {
1679         if ($label != null)
1680                 echo "<td>$label</td>\n";
1681         echo "<td>";
1682         echo languages_list($name, $selected_id, $all_option);
1683         echo "</td>\n";
1684 }
1685
1686 function languages_list_row($label, $name, $selected_id=null, $all_option=false)
1687 {
1688         echo "<tr><td class='label'>$label</td>";
1689         languages_list_cells(null, $name, $selected_id, $all_option);
1690         echo "</tr>\n";
1691 }
1692
1693 //------------------------------------------------------------------------------------------------
1694
1695 function bank_account_types_list($name, $selected_id=null)
1696 {
1697         global $bank_account_types;
1698
1699         return array_selector($name, $selected_id, $bank_account_types);
1700 }
1701
1702 function bank_account_types_list_cells($label, $name, $selected_id=null)
1703 {
1704         if ($label != null)
1705                 echo "<td>$label</td>\n";
1706         echo "<td>";
1707         echo bank_account_types_list($name, $selected_id);
1708         echo "</td>\n";
1709 }
1710
1711 function bank_account_types_list_row($label, $name, $selected_id=null)
1712 {
1713         echo "<tr><td class='label'>$label</td>";
1714         bank_account_types_list_cells(null, $name, $selected_id);
1715         echo "</tr>\n";
1716 }
1717
1718 //------------------------------------------------------------------------------------------------
1719 function payment_person_types_list($name, $selected_id=null, $submit_on_change=false)
1720 {
1721         global $payment_person_types;
1722
1723         $items = array();
1724         foreach ($payment_person_types as $key=>$type)
1725         {
1726                 if ($key != PT_WORKORDER)
1727                         $items[$key] = $type;
1728         }               
1729         return array_selector($name, $selected_id, $items, 
1730                 array( 'select_submit'=> $submit_on_change ) );
1731 }
1732
1733 function payment_person_types_list_cells($label, $name, $selected_id=null, $related=null)
1734 {
1735         if ($label != null)
1736                 echo "<td>$label</td>\n";
1737         echo "<td>";
1738         echo payment_person_types_list($name, $selected_id, $related);
1739         echo "</td>\n";
1740 }
1741
1742 function payment_person_types_list_row($label, $name, $selected_id=null, $related=null)
1743 {
1744         echo "<tr><td class='label'>$label</td>";
1745         payment_person_types_list_cells(null, $name, $selected_id, $related);
1746         echo "</tr>\n";
1747 }
1748
1749 //------------------------------------------------------------------------------------------------
1750
1751 function wo_types_list($name, $selected_id=null)
1752 {
1753         global $wo_types_array;
1754         
1755         return array_selector($name, $selected_id, $wo_types_array, 
1756                 array( 'select_submit'=> true, 'async' => true ) );
1757 }
1758
1759 function wo_types_list_row($label, $name, $selected_id=null)
1760 {
1761         echo "<tr><td class='label'>$label</td><td>\n";
1762         echo wo_types_list($name, $selected_id);
1763         echo "</td></tr>\n";
1764 }
1765
1766 //------------------------------------------------------------------------------------------------
1767
1768 function dateformats_list_row($label, $name, $value=null)
1769 {
1770         global $dateformats;
1771
1772         echo "<tr><td class='label'>$label</td>\n<td>";
1773         echo array_selector( $name, $value, $dateformats );
1774         echo "</td></tr>\n";
1775 }
1776
1777 function dateseps_list_row($label, $name, $value=null)
1778 {
1779         global $dateseps;
1780
1781         echo "<tr><td class='label'>$label</td>\n<td>";
1782         echo array_selector( $name, $value, $dateseps );
1783         echo "</td></tr>\n";
1784 }
1785
1786 function thoseps_list_row($label, $name, $value=null)
1787 {
1788         global $thoseps;
1789
1790         echo "<tr><td class='label'>$label</td>\n<td>";
1791         echo array_selector( $name, $value, $thoseps );
1792         echo "</td></tr>\n";
1793 }
1794
1795 function decseps_list_row($label, $name, $value=null)
1796 {
1797         global $decseps;
1798
1799         echo "<tr><td class='label'>$label</td>\n<td>";
1800         echo array_selector( $name, $value, $decseps );
1801         echo "</td></tr>\n";
1802 }
1803
1804 function themes_list_row($label, $name, $value=null)
1805 {
1806         global $path_to_root;
1807
1808         $path = $path_to_root.'/themes/';
1809         $themes = array();
1810         $themedir = opendir($path);
1811         while(false !== ($fname = readdir($themedir)))
1812         {
1813                 if($fname!='.' && $fname!='..' && $fname!='CVS' && is_dir($path.$fname))
1814                 {
1815                         $themes[$fname] =  $fname;
1816                 }
1817         }
1818         ksort($themes);
1819
1820         echo "<tr><td class='label'>$label</td>\n<td>";
1821         echo array_selector( $name, $value, $themes );
1822         echo "</td></tr>\n";
1823 }
1824
1825 function pagesizes_list_row($label, $name, $value=null)
1826 {
1827         global $pagesizes;
1828
1829         $items = array();
1830         foreach ($pagesizes as $pz)
1831                 $items[$pz] = $pz;
1832
1833         echo "<tr><td class='label'>$label</td>\n<td>";
1834         echo array_selector( $name, $value, $items );
1835         echo "</td></tr>\n";
1836 }
1837
1838 function systypes_list($name, $value=null, $spec_opt=false, $submit_on_change=false, $exclude=array())
1839 {
1840         global $systypes_array;
1841
1842         // emove non-voidable transactions if needed
1843         $systypes = array_diff_key($systypes_array, array_flip($exclude));
1844         return array_selector($name, $value, $systypes, 
1845                 array( 
1846                         'spec_option'=> $spec_opt,
1847                         'spec_id' => ALL_NUMERIC,
1848                         'select_submit'=> $submit_on_change,
1849                         'async' => false,
1850                         )
1851         );
1852 }
1853
1854 function systypes_list_cells($label, $name, $value=null, $submit_on_change=false, $exclude=array())
1855 {
1856         if ($label != null)
1857                 echo "<td>$label</td>\n";
1858         echo "<td>";
1859         echo systypes_list($name, $value, false, $submit_on_change, $exclude);
1860         echo "</td>\n";
1861 }
1862
1863 function systypes_list_row($label, $name, $value=null, $submit_on_change=false, $exclude=array())
1864 {
1865         echo "<tr><td class='label'>$label</td>";
1866         systypes_list_cells(null, $name, $value, $submit_on_change, $exclude);
1867         echo "</tr>\n";
1868 }
1869
1870 function journal_types_list_cells($label, $name, $value=null, $submit_on_change=false)
1871 {
1872         global $systypes_array;
1873
1874         if ($label != null)
1875                 echo "<td>$label</td>\n";
1876         echo "<td>";
1877
1878         $items = $systypes_array;
1879
1880         // exclude quotes, orders and dimensions
1881         foreach (array(ST_PURCHORDER, ST_WORKORDER, ST_SALESORDER, ST_DIMENSION, 
1882                                 ST_SALESQUOTE) as $excl)
1883                         unset($items[$excl]);
1884         
1885         echo array_selector($name, $value, $items, 
1886                 array( 
1887                         'spec_option'=> _("All"),
1888                         'spec_id' => -1,
1889                         'select_submit'=> $submit_on_change,
1890                         'async' => false
1891                         )
1892         );
1893         echo "</td>\n";
1894 }
1895
1896 function cust_allocations_list_cells($label, $name, $selected=null)
1897 {
1898         global $all_items;
1899
1900         if ($label != null)
1901                 label_cell($label);
1902         echo "<td>\n";
1903         $allocs = array( 
1904                 $all_items=>_("All Types"),
1905                 '1'=> _("Sales Invoices"),
1906                 '2'=> _("Overdue Invoices"),
1907                 '3' => _("Payments"),
1908                 '4' => _("Credit Notes"),
1909                 '5' => _("Delivery Notes")
1910         );
1911         echo array_selector($name, $selected, $allocs);
1912         echo "</td>\n";
1913 }
1914
1915 function supp_allocations_list_cell($name, $selected=null)
1916 {
1917         global $all_items;
1918
1919         echo "<td>\n";
1920         $allocs = array( 
1921                 $all_items=>_("All Types"),
1922                 '1'=> _("Invoices"),
1923                 '2'=> _("Overdue Invoices"),
1924                 '3' => _("Payments"),
1925                 '4' => _("Credit Notes"),
1926                 '5' => _("Overdue Credit Notes")
1927         );
1928         echo array_selector($name, $selected, $allocs);
1929         echo "</td>\n";
1930 }
1931
1932 function supp_transactions_list_cell($name, $selected=null)
1933 {
1934         global $all_items;
1935
1936         echo "<td>\n";
1937         $allocs = array( 
1938                 $all_items=>_("All Types"),
1939                 '6'=>_("GRNs"),
1940                 '1'=> _("Invoices"),
1941                 '2'=> _("Overdue Invoices"),
1942                 '3' => _("Payments"),
1943                 '4' => _("Credit Notes"),
1944                 '5' => _("Overdue Credit Notes")
1945         );
1946
1947         echo array_selector($name, $selected, $allocs);
1948         echo "</td>\n";
1949 }
1950
1951 function policy_list_cells($label, $name, $selected=null)
1952 {
1953         if ($label != null)
1954                 label_cell($label);
1955         echo "<td>\n";
1956         echo array_selector($name, $selected, 
1957                                 array( '' => _("Automatically put balance on back order"),
1958                                         'CAN' => _("Cancel any quantites not delivered")) );
1959         echo "</td>\n";
1960 }
1961
1962 function policy_list_row($label, $name, $selected=null)
1963 {
1964         echo "<tr><td class='label'>$label</td>";
1965         policy_list_cells(null, $name, $selected);
1966         echo "</tr>\n";
1967 }
1968
1969 function credit_type_list_cells($label, $name, $selected=null, $submit_on_change=false)
1970 {
1971         if ($label != null)
1972                 label_cell($label);
1973         echo "<td>\n";
1974         echo array_selector($name, $selected, 
1975                                 array( 'Return' => _("Items Returned to Inventory Location"),
1976                                         'WriteOff' => _("Items Written Off")),
1977                                 array( 'select_submit'=> $submit_on_change ) );
1978         echo "</td>\n";
1979 }
1980
1981 function credit_type_list_row($label, $name, $selected=null, $submit_on_change=false)
1982 {
1983         echo "<tr><td class='label'>$label</td>";
1984         credit_type_list_cells(null, $name, $selected, $submit_on_change);
1985         echo "</tr>\n";
1986 }
1987
1988 function number_list($name, $selected, $from, $to, $no_option=false)
1989 {
1990         $items = array();
1991         for ($i = $from; $i <= $to; $i++)
1992                 $items[$i] = "$i";
1993
1994         return array_selector($name, $selected, $items,
1995                                 array(  'spec_option' => $no_option,
1996                                                 'spec_id' => ALL_NUMERIC) );
1997 }
1998
1999 function number_list_cells($label, $name, $selected, $from, $to, $no_option=false)
2000 {
2001         if ($label != null)
2002                 label_cell($label);
2003         echo "<td>\n";
2004         echo number_list($name, $selected, $from, $to, $no_option);
2005         echo "</td>\n";
2006 }
2007
2008 function number_list_row($label, $name, $selected, $from, $to, $no_option=false)
2009 {
2010         echo "<tr><td class='label'>$label</td>";
2011         echo number_list_cells(null, $name, $selected, $from, $to, $no_option);
2012         echo "</tr>\n";
2013 }
2014
2015 function print_profiles_list_row($label, $name, $selected_id=null, $spec_opt=false,
2016         $submit_on_change=true)
2017 {
2018         $sql = "SELECT profile FROM ".TB_PREF."print_profiles"
2019                 ." GROUP BY profile";
2020         $result = db_query($sql, 'cannot get all profile names');
2021         $profiles = array();
2022         while($myrow=db_fetch($result)) {
2023                 $profiles[$myrow['profile']] = $myrow['profile'];
2024         }
2025
2026         echo "<tr>";
2027         if ($label != null)
2028                 echo "<td class='label'>$label</td>\n";
2029         echo "<td>";
2030
2031         echo array_selector($name, $selected_id, $profiles, 
2032                 array( 'select_submit'=> $submit_on_change,
2033                         'spec_option'=>$spec_opt,
2034                         'spec_id' => ''
2035                  ));
2036
2037         echo "</td></tr>\n";
2038 }
2039
2040 function printers_list($name, $selected_id=null, $spec_opt=false, $submit_on_change=false)
2041 {
2042         static $printers; // query only once for page display
2043
2044         if (!$printers) {
2045                 $sql = "SELECT id, name, description FROM ".TB_PREF."printers"; 
2046                 $result = db_query($sql, 'cannot get all printers');
2047                 $printers = array();
2048                 while($myrow=db_fetch($result)) {
2049                         $printers[$myrow['id']] = $myrow['name'].'&nbsp;-&nbsp;'.$myrow['description'];
2050                 }
2051         }
2052         return array_selector($name, $selected_id, $printers, 
2053                 array( 'select_submit'=> $submit_on_change,
2054                         'spec_option'=>$spec_opt,
2055                         'spec_id' => ''
2056                  ));
2057 }
2058
2059 //------------------------------------------------------------------------------------------------
2060
2061 function quick_entries_list($name, $selected_id=null, $type=null, $submit_on_change=false)
2062 {
2063         $where = false;
2064         $sql = "SELECT id, description FROM ".TB_PREF."quick_entries";
2065         if ($type != null)
2066                 $sql .= " WHERE type=$type";
2067
2068         return combo_input($name, $selected_id, $sql, 'id', 'description',
2069                 array(
2070                         'spec_id' => '',
2071                         'order' => 'description',
2072                         'select_submit'=> $submit_on_change,
2073                         'async' => false
2074                 ) );
2075
2076 }
2077
2078 function quick_entries_list_cells($label, $name, $selected_id=null, $type, $submit_on_change=false)
2079 {
2080         if ($label != null)
2081                 echo "<td>$label</td>\n";
2082         echo "<td>";    
2083         echo quick_entries_list($name, $selected_id, $type, $submit_on_change);
2084         echo "</td>";
2085 }
2086
2087 function quick_entries_list_row($label, $name, $selected_id=null, $type, $submit_on_change=false)
2088 {
2089         echo "<tr><td class='label'>$label</td>";
2090         quick_entries_list_cells(null, $name, $selected_id, $type, $submit_on_change);
2091         echo "</tr>\n";
2092 }
2093
2094
2095 function quick_actions_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2096 {
2097         global $quick_actions;
2098         
2099         echo "<tr><td class='label'>$label</td><td>";
2100         echo array_selector($name, $selected_id, $quick_actions, 
2101                 array( 
2102                         'select_submit'=> $submit_on_change
2103                 ) );
2104         echo "</td></tr>\n";
2105 }
2106
2107 function quick_entry_types_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2108 {
2109         global $quick_entry_types;
2110                 
2111         echo "<tr><td class='label'>$label</td><td>";
2112         echo array_selector($name, $selected_id, $quick_entry_types, 
2113                 array( 
2114                         'select_submit'=> $submit_on_change
2115                         ) );
2116         echo "</td></tr>\n";
2117 }
2118
2119 function record_status_list_row($label, $name) {
2120         return yesno_list_row($label, $name, null,      _('Inactive'), _('Active'));
2121 }
2122
2123 function class_types_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2124 {
2125         global $class_types;
2126         
2127         echo "<tr><td class='label'>$label</td><td>";
2128         echo array_selector($name, $selected_id, $class_types, 
2129                 array( 
2130                         'select_submit'=> $submit_on_change
2131                 ) );
2132         echo "</td></tr>\n";
2133 }
2134
2135 //------------------------------------------------------------------------------------------------
2136
2137 function security_roles_list($name, $selected_id=null, $new_item=false, $submit_on_change=false,
2138         $show_inactive = false)
2139 {
2140         global $all_items;
2141
2142         $sql = "SELECT id, role, inactive FROM ".TB_PREF."security_roles";
2143
2144 return combo_input($name, $selected_id, $sql, 'id', 'description',
2145         array(
2146                 'spec_option'=>$new_item ? _("New role") : false,
2147                 'spec_id' => '',
2148                 'select_submit'=> $submit_on_change,
2149                 'show_inactive' => $show_inactive
2150         ) );
2151 }
2152
2153 function security_roles_list_cells($label, $name, $selected_id=null, $new_item=false, $submit_on_change=false,
2154         $show_inactive = false)
2155 {
2156         if ($label != null)
2157                 echo "<td>$label</td>\n";
2158         echo "<td>";
2159         echo security_roles_list($name, $selected_id, $new_item, $submit_on_change, $show_inactive);
2160         echo "</td>\n";
2161 }
2162
2163 function security_roles_list_row($label, $name, $selected_id=null, $new_item=false, $submit_on_change=false,
2164         $show_inactive = false)
2165 {
2166         echo "<tr><td class='label'>$label</td>";
2167         security_roles_list_cells(null, $name, $selected_id, $new_item, $submit_on_change, $show_inactive);
2168         echo "</tr>\n";
2169 }
2170
2171 function tab_list_row($label, $name, $selected_id=null, $all = false)
2172 {
2173         global $installed_extensions;
2174         
2175         $tabs = array();
2176         foreach ($_SESSION['App']->applications as $app) {
2177                 $tabs[$app->id] = access_string($app->name, true);
2178         }
2179         if ($all) {     // add also not active ext. modules
2180                 foreach ($installed_extensions as $ext) {
2181                         if ($ext['type'] == 'module' && !$ext['active'])
2182                                 $tabs[$ext['tab']] = access_string($ext['title'], true);
2183                 }
2184         }
2185         echo "<tr>\n";
2186         echo "<td class='label'>$label</td><td>\n";
2187         echo array_selector($name, $selected_id, $tabs);
2188         echo "</td></tr>\n";
2189 }
2190
2191 //-----------------------------------------------------------------------------------------------
2192
2193 function tag_list($name, $height, $type, $multi=false, $all=false, $spec_opt = false)
2194 {
2195         // Get tags
2196         global $path_to_root;
2197         include_once($path_to_root . "/admin/db/tags_db.inc");
2198         $results = get_tags($type, $all);
2199
2200         while ($tag = db_fetch($results))
2201                 $tags[$tag['id']] = $tag['name'];
2202         
2203         if (!isset($tags)) {
2204                 $tags[''] = $all ? _("No tags defined.") : _("No active tags defined.");
2205                 $spec_opt = false;
2206         }
2207         return array_selector($name, null, $tags,
2208                 array(
2209                         'multi' => $multi,
2210                         'height' => $height,
2211                         'spec_option'=> $spec_opt,
2212                         'spec_id' => -1,
2213                 ) );
2214 }
2215
2216 function tag_list_cells($label, $name, $height, $type, $mult=false, $all=false, $spec_opt = false)
2217 {
2218         if ($label != null)
2219                 echo "<td>$label</td>\n";
2220         echo "<td>\n";
2221         echo tag_list($name, $height, $type, $mult, $all, $spec_opt);
2222         echo "</td>\n";
2223         
2224 }
2225
2226 function tag_list_row($label, $name, $height, $type, $mult=false, $all=false, $spec_opt = false)
2227 {
2228         echo "<tr><td class='label'>$label</td>";
2229         tag_list_cells(null, $name, $height, $type, $mult, $all, $spec_opt);
2230         echo "</tr>\n"; 
2231 }
2232
2233 //---------------------------------------------------------------------------------------------
2234 //      List of sets of active extensions 
2235 //
2236 function extset_list($name, $value=null, $submit_on_change=false)
2237 {
2238         global $db_connections;
2239
2240         $items = array();
2241         foreach ($db_connections as $comp)
2242                 $items[] = sprintf(_("Activated for '%s'"), $comp['name']);
2243         return array_selector( $name, $value, $items,
2244                 array(
2245                         'spec_option'=> _("Available and/or installed"),
2246                         'spec_id' => -1,
2247                         'select_submit'=> $submit_on_change,
2248                         'async' => true
2249                 ));
2250 }
2251
2252 function crm_category_types_list($name, $selected_id=null, $filter=array(), $submit_on_change=true)
2253 {
2254
2255         $sql = "SELECT id, name, type, inactive FROM ".TB_PREF."crm_categories";
2256
2257         $multi = false;
2258         $groups = false;
2259         $where = array();
2260         if (@$filter['class']) {
2261                 $where[] = 'type='.db_escape($filter['class']);
2262         } else
2263                 $groups = 'type';
2264         if (@$filter['subclass']) $where[] = 'action='.db_escape($filter['subclass']);
2265         if (@$filter['entity']) $where[] = 'entity_id='.db_escape($filter['entity']);
2266         if (@$filter['multi']) { // contact category selector for person
2267                 $multi = true;
2268         }
2269
2270         return combo_input($name, $selected_id, $sql, 'id', 'name',
2271                 array(
2272                         'multi' => $multi,
2273                         'height' => $multi ? 5:1,
2274                         'category' => $groups,
2275                         'select_submit'=> $submit_on_change,
2276                         'async' => true,
2277                         'where' => $where
2278                 ));
2279 }
2280
2281 function crm_category_types_list_row($label, $name, $selected_id=null, $filter=array(), $submit_on_change=true)
2282 {
2283         echo "<tr><td class='label'>$label</td><td>";
2284         echo crm_category_types_list($name, $selected_id, $filter, $submit_on_change);
2285         echo "</td></tr>\n";
2286 }
2287
2288 function payment_type_list_row($label, $name, $selected_id=null, $submit_on_change=false)
2289 {
2290         global $pterm_types;
2291         
2292         echo "<tr><td class='label'>$label</td><td>";
2293         echo array_selector($name, $selected_id, $pterm_types, 
2294                 array( 
2295                         'select_submit'=> $submit_on_change
2296                 ) );
2297         echo "</td></tr>\n";
2298 }
2299
2300 function coa_list_row($label, $name, $value=null)
2301 {
2302         global $path_to_root, $installed_extensions;
2303
2304         $path = $path_to_root.'/sql/';
2305         $coas = array();
2306         $sqldir = opendir($path);
2307         while (false !== ($fname = readdir($sqldir)))
2308         {
2309                 if (is_file($path.$fname) && substr($fname,-4)=='.sql' && @($fname[2] == '_'))
2310                 {
2311                         $ext = array_search_value($fname, $installed_extensions, 'sql');
2312                         if ($ext!=null) {
2313                                 $descr = $ext['name'];
2314                         } elseif ($fname == 'en_US-new.sql') { // two standard COAs
2315                                 $descr = _("Standard new company American COA (4 digit)");
2316                         } elseif ($fname == 'en_US-demo.sql') {
2317                                 $descr = _("Standard American COA (4 digit) with demo data");
2318                         } else
2319                                 $descr = $fname;
2320
2321                         $coas[$fname] =  $descr;
2322                 }
2323         }
2324         ksort($coas);
2325
2326         echo "<tr><td class='label'>$label</td>\n<td>";
2327         echo array_selector( $name, $value, $coas );
2328         echo "</td></tr>\n";
2329 }
2330 ?>