dbcdee67de47e2568a181bec8cc6d56d9f7e451d
[fa-stable.git] / includes / ui / ui_input.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 //
13 // Sets local POST value and adds Value to ajax posting if needed
14 //
15 /*function set_post($name, $value, $ajax_trigger=true) {
16     global $Ajax;
17
18     $_POST[$name] = $value;
19     if ($ajax_trigger) $Ajax->activate($name);
20 }
21 */
22 //------------------------------------------------------------------------------
23 //    Seek for _POST variable with $prefix.
24 //    If var is found returns variable name with prefix stripped,
25 //    and null or -1 otherwise.
26 //
27 function find_submit($prefix, $numeric=true)
28 {
29
30     foreach($_POST as $postkey=>$postval )
31     {
32                 if (strpos($postkey, $prefix) === 0)
33                 {
34                         $id = substr($postkey, strlen($prefix));
35                         return $numeric ? (int)$id : $id;
36                 }
37     }
38     return $numeric ? -1 : null;
39 }
40 /*
41         Helper function.
42         Returns true if input $name with $submit_on_change option set is subject to update.
43 */
44 function input_changed($name)
45 {
46         return isset($_POST['_'.$name.'_changed']);
47 }
48
49 //------------------------------------------------------------------------------
50 //
51 // Helper function for simple db table editor pages
52 //
53 function simple_page_mode($numeric_id = true)
54 {
55         global $Ajax, $Mode, $selected_id;
56
57         $default = $numeric_id ? -1 : '';
58         $selected_id = get_post('selected_id', $default);
59         foreach (array('ADD_ITEM', 'UPDATE_ITEM', 'RESET', 'CLONE') as $m) {
60                 if (isset($_POST[$m])) {
61                         $Ajax->activate('_page_body');
62                         if ($m == 'RESET'  || $m == 'CLONE') 
63                                 $selected_id = $default;
64                         unset($_POST['_focus']);
65                         $Mode = $m; return;
66                 }
67         }
68         foreach (array('Edit', 'Delete') as $m) {
69                 foreach ($_POST as $p => $pvar) {
70                         if (strpos($p, $m) === 0) {
71 //                              $selected_id = strtr(substr($p, strlen($m)), array('%2E'=>'.'));
72                                 unset($_POST['_focus']); // focus on first form entry
73                                 $selected_id = quoted_printable_decode(substr($p, strlen($m)));
74                                 $Ajax->activate('_page_body');
75                                 $Mode = $m;
76                                 return;
77                         }
78                 }
79         }
80         $Mode = '';
81 }
82
83 //------------------------------------------------------------------------------
84 //
85 //      Read numeric value from user formatted input
86 //
87 function input_num($postname=null, $dflt=0)
88 {
89         if (!isset($_POST[$postname]) || $_POST[$postname] == "")
90                 return $dflt;
91
92     return user_numeric($_POST[$postname]);
93 }
94
95 //---------------------------------------------------------------------------------
96 //
97 //      Thanks to hidden fields buffering hidden() helper can be used in arbitrary places and 
98 //  proper html structure is still preserved. Buffered hidden fields are output on the nearest 
99 //  table or form closing tag (see output_hidden()).
100 //
101 $hidden_fields = array();
102
103 function hidden($name, $value=null, $echo=true)
104 {
105         global $Ajax, $hidden_fields;
106         
107         if ($value === null) 
108                 $value = get_post($name);
109         
110         $ret = "<input type=\"hidden\" name=\"$name\" value=\"$value\">";
111         $Ajax->addUpdate($name, $name, $value);
112         if ($echo)
113                         $hidden_fields[] = $ret;
114         else
115                 return $ret;
116 }
117 /*
118         Universal submit form button.
119         $atype - type of submit:
120          Normal submit:
121                 false - normal button; optional icon
122                 null  - button visible only in fallback mode; optional icon
123          Ajax submit:
124                 true      - standard button; optional icon
125
126                 'default' - default form submit on Ctrl-Enter press; dflt ICON_OK icon
127                 'selector' - ditto with closing current popup editor window
128                 'cancel'  - cancel form entry on Escape press; dflt ICON_CANCEL
129                 'process' - displays progress bar during call; optional icon
130                 'nonajax' - ditto, non-ajax submit
131
132         $atype can contain also multiply type selectors separated by space, 
133         however make sense only combination of 'process' and one of defualt/selector/cancel
134 */
135 function submit($name, $value, $echo=true, $title=false, $atype=false, $icon=false)
136 {
137         global $path_to_root;
138
139         $aspect='';
140         if ($atype === null) {
141                 $aspect = fallback_mode() ? " aspect='fallback'" : " style='display:none;'";
142
143         } elseif (!is_bool($atype)) { // necessary: switch uses '=='
144
145                 $aspect = " aspect='$atype' ";
146                 $types = explode(' ', $atype);
147
148                 foreach ($types as $type) {
149                         switch($type) {
150                                 case 'selector':
151                                         $aspect = " aspect='selector' rel = '$value'"; 
152                                         $value = _("Select");
153                                         if ($icon===false) $icon=ICON_SUBMIT; break;
154
155                                 case 'default':
156                                         if ($icon===false) $icon=ICON_SUBMIT; break;
157
158                                 case 'cancel':
159                                         if ($icon===false) $icon=ICON_ESCAPE; break;
160
161                                 case 'nonajax':
162                                 case 'download':
163                                         $atype = false;
164                         }
165                 }
166         }
167         $submit_str = "<button class=\""
168             .($atype ? 'ajaxsubmit' : 'inputsubmit')
169                 ."\" type=\"submit\""
170                 .$aspect
171             ." name=\"$name\"  id=\"$name\" value=\"$value\""
172             .($title ? " title='$title'" : '')
173             .">"
174                 .($icon ? "<img src='$path_to_root/themes/".user_theme()."/images/$icon' height='12' alt=''>" : '')
175                 ."<span>$value</span>"
176                 ."</button>\n";
177         if ($echo)
178                 echo $submit_str;
179         else
180                 return $submit_str;
181 }
182
183 function submit_center($name, $value, $echo=true, $title=false, $async=false, $icon=false)
184 {
185         if ($echo) echo "<center>";
186         submit($name, $value, $echo, $title, $async, $icon);
187         if ($echo) echo "</center>";
188 }
189
190 function submit_center_first($name, $value, $title=false, $async=false, $icon=false)
191 {
192         echo "<center>";
193         submit($name, $value, true, $title, $async, $icon);
194         echo "&nbsp;";
195 }
196
197 function submit_center_last($name, $value, $title=false, $async=false, $icon=false)
198 {
199         echo "&nbsp;";
200         submit($name, $value, true, $title, $async, $icon);
201         echo "</center>";
202 }
203 /*
204         For following controls:
205         'both' - use both Ctrl-Enter and Escape hotkeys 
206         'upgrade' - use Ctrl-Enter with progress ajax indicator and Escape hotkeys. Nonajax request for OK option is performed.
207         'cancel' - apply to 'RESET' button
208 */
209 function submit_add_or_update($add=true, $title=false, $async=false, $clone=false)
210 {
211         $cancel = $async;
212
213         if ($async === 'both') {
214                 $async = 'default'; $cancel = 'cancel';
215         }
216         elseif ($async === 'upgrade') {
217                 $async = 'default nonajax process'; $cancel = 'cancel';
218         }
219         elseif ($async === 'default')
220                 $cancel = true;
221         elseif ($async === 'cancel')
222                 $async = true;
223         
224         if ($add)
225                 submit('ADD_ITEM', _("Add new"), true, $title, $async);
226         else {
227                 submit('UPDATE_ITEM', _("Update"), true, _('Submit changes'), $async);
228                 if ($clone) submit('CLONE', _("Clone"), true, 
229                         _('Edit new record with current data'), $async);
230                 submit('RESET', _("Cancel"), true, _('Cancel edition'), $cancel);
231         }
232 }
233
234 function submit_add_or_update_center($add=true, $title=false, $async=false, $clone=false)
235 {
236         echo "<center>";
237         submit_add_or_update($add, $title, $async, $clone);
238         echo "</center>";
239 }
240
241 function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false, $clone = false)
242 {
243         echo "<tr>";
244         if ($right)
245                 echo "<td>&nbsp;</td>\n";
246         echo "<td $extra>";
247         submit_add_or_update($add, $title, $async, $clone);
248         echo "</td></tr>\n";
249 }
250
251 function submit_cells($name, $value, $extra="", $title=false, $async=false)
252 {
253         echo "<td $extra>";
254         submit($name, $value, true, $title, $async);
255         echo "</td>\n";
256 }
257
258 function submit_row($name, $value, $right=true, $extra="", $title=false, $async=false)
259 {
260         echo "<tr>";
261         if ($right)
262                 echo "<td>&nbsp;</td>\n";
263         submit_cells($name, $value, $extra, $title, $async);
264         echo "</tr>\n";
265 }
266
267 function submit_return($name, $value, $title=false)
268 {
269         if (@$_REQUEST['popup']) {
270                 submit($name, $value, true, $title, 'selector');
271         }
272 }
273
274 function submit_js_confirm($name, $msg, $set = true) {
275         global $Ajax;
276         $js = "_validate.$name=".($set ? "function(){ return confirm('"
277                                 . strtr($msg, array("\n"=>'\\n')) . "');};"
278                                 : 'null;');
279         if (in_ajax()) {
280                 $Ajax->addScript(true, $js);
281         } else
282                 add_js_source($js);
283 }
284 //-----------------------------------------------------------------------------------
285
286 function set_icon($icon, $title=false)
287 {
288         global $path_to_root;
289         if (basename($icon) === $icon) // standard icons does not contain path separator
290                 $icon = "$path_to_root/themes/".user_theme()."/images/$icon";
291         return "<img src='$icon' style='vertical-align:middle;width:12px;height:12px;border:0;'".($title ? " title='$title'" : "")." >\n";      
292 }
293
294 function button($name, $value, $title=false, $icon=false,  $aspect='')
295 {
296         // php silently changes dots,spaces,'[' and characters 128-159
297         // to underscore in POST names, to maintain compatibility with register_globals
298         $rel = '';
299         if ($aspect == 'selector') {
300                 $rel = " rel='$value'";
301                 $value = _("Select");
302         }
303         if (user_graphic_links() && $icon)
304         {
305                 if ($value == _("Delete")) // Helper during implementation
306                         $icon = ICON_DELETE;
307                 return "<button type='submit' class='editbutton' name='"
308                         .html_specials_encode(strtr($name, array('.'=>'=2E', '='=>'=3D',// ' '=>'=20','['=>'=5B'
309                         )))
310                         ."' value='1'" . ($title ? " title='$title'":" title='$value'")
311                         . ($aspect ? " aspect='$aspect'" : '')
312                         . $rel
313                         ." >".set_icon($icon)."</button>\n";
314         }
315         else
316                 return "<input type='submit' class='editbutton' name='"
317                         .htmlentities(strtr($name, array('.'=>'=2E', '='=>'=3D',// ' '=>'=20','['=>'=5B'
318                         )))
319                         ."' value='$value'"
320                         .($title ? " title='$title'":'')
321                         . ($aspect ? " aspect='$aspect'" : '')
322                         . $rel
323                         ." >\n";
324 }
325
326 function button_cell($name, $value, $title=false, $icon=false, $aspect='')
327 {
328         echo "<td align='center'>";
329         echo button($name, $value, $title, $icon, $aspect);
330         echo "</td>";
331 }
332
333 function delete_button_cell($name, $value, $title=false)
334 {
335         button_cell($name, $value, $title, ICON_DELETE);
336 }
337
338 function edit_button_cell($name, $value, $title=false)
339 {
340         button_cell($name, $value, $title, ICON_EDIT);
341 }
342
343 function select_button_cell($name, $value, $title=false)
344 {
345         button_cell($name, $value, $title, ICON_ADD, 'selector');
346 }
347 //-----------------------------------------------------------------------------------
348
349 function check_value($name)
350 {
351     return (empty($_POST[$name]) ? 0 : 1);
352 }
353
354 function checkbox($label, $name, $value=null, $submit_on_change=false, $title=false)
355 {
356         global $Ajax;
357
358         $str = '';      
359
360         if ($label)
361                 $str .= $label . "  ";
362         if ($submit_on_change !== false) {
363                 if ($submit_on_change === true)
364                         $submit_on_change = 
365                                 "JsHttpRequest.request(\"_{$name}_update\", this.form);";
366         }
367         if ($value === null)
368                 $value = get_post($name,0);
369
370         $str .= "<input"
371             .($value == 1 ? ' checked':'')
372             ." type='checkbox' name='$name' value='1'"
373             .($submit_on_change ? " onclick='$submit_on_change'" : '')
374             .($title ? " title='$title'" : '')
375             ." >\n";
376
377         $Ajax->addUpdate($name, $name, $value);
378         return $str;
379 }
380
381 function check($label, $name, $value=null, $submit_on_change=false, $title=false)
382 {
383         echo checkbox($label, $name, $value, $submit_on_change, $title);
384 }
385
386 function check_cells($label, $name, $value=null, $submit_on_change=false, $title=false,
387         $params='')
388 {
389         if ($label != null)
390                 echo "<td>$label</td>\n";
391         echo "<td $params>";
392         echo check(null, $name, $value, $submit_on_change, $title);
393         echo "</td>";
394 }
395
396 function check_row($label, $name, $value=null, $submit_on_change=false, $title=false)
397 {
398         echo "<tr><td class='label'>$label</td>";
399         echo check_cells(NULL, $name, $value, $submit_on_change, $title);
400         echo "</tr>\n";
401 }
402
403 //-----------------------------------------------------------------------------------
404 function radio($label, $name, $value, $selected=null, $submit_on_change=false)
405 {
406         if (!isset($selected))
407                 $selected = get_post($name) === (string)$value;
408
409         if ($submit_on_change === true)
410                 $submit_on_change = 
411                         "JsHttpRequest.request(\"_{$name}_update\", this.form);";
412
413         return "<input type='radio' name=$name value='$value' ".($selected ? "checked":'')
414             .($submit_on_change ? " onclick='$submit_on_change'" : '')
415                 .">".($label ? $label : '');
416 }
417
418 //-----------------------------------------------------------------------------------
419 function labelheader_cell($label, $params="")
420 {
421         echo "<td class='tableheader' $params>$label</td>\n";
422 }
423
424 function label_cell($label, $params="", $id=null)
425 {
426     global $Ajax;
427
428         if(isset($id))
429         {
430             $params .= " id='$id'";
431             $Ajax->addUpdate($id, $id, $label);
432         }
433         echo "<td $params>$label</td>\n";
434
435         return $label;
436 }
437
438 function email_cell($label, $params="", $id=null)
439 {
440         label_cell("<a href='mailto:$label'>$label</a>", $params, $id);
441 }
442
443 function amount_decimal_cell($label, $params="", $id=null)
444 {
445         $dec = 0;
446         label_cell(price_decimal_format($label, $dec), "nowrap align=right ".$params, $id);
447 }
448
449 function amount_cell($label, $bold=false, $params="", $id=null)
450 {
451         if ($bold)
452                 label_cell("<b>".price_format($label)."</b>", "nowrap align=right ".$params, $id);
453         else
454                 label_cell(price_format($label), "nowrap align=right ".$params, $id);
455 }
456
457 //JAM  Allow entered unit prices to be fractional
458 function unit_amount_cell($label, $bold=false, $params="", $id=null)
459 {
460         if ($bold)
461                 label_cell("<b>".unit_price_format($label)."</b>", "nowrap align=right ".$params, $id);
462         else
463                 label_cell(unit_price_format($label), "nowrap align=right ".$params, $id);
464 }
465
466
467 function percent_cell($label, $bold=false, $id=null)
468 {
469         if ($bold)
470                 label_cell("<b>".percent_format($label)."</b>", "nowrap align=right", $id);
471         else
472                 label_cell(percent_format($label), "nowrap align=right", $id);
473 }
474 // 2008-06-15. Changed
475 function qty_cell($label, $bold=false, $dec=null, $id=null)
476 {
477         if (!isset($dec))
478                 $dec = get_qty_dec();
479         if ($bold)
480                 label_cell("<b>".number_format2($label, $dec)."</b>", "nowrap align=right", $id);
481         else
482                 label_cell(number_format2($label, $dec), "nowrap align=right", $id);
483 }
484
485 function label_cells($label, $value, $params="", $params2="", $id=null)
486 {
487         if ($label != null)
488                 echo "<td $params>$label</td>\n";
489         label_cell($value, $params2, $id);
490 }
491
492 function label_row($label, $value, $params="", $params2="", $leftfill=0, $id=null)
493 {
494         echo "<tr>";
495         if ($params == "")
496         {
497                 echo "<td class='label'>$label</td>";
498                 $label = null;
499         }       
500         label_cells($label, $value, $params, $params2, $id);
501         if ($leftfill!=0)
502                 echo "<td colspan=$leftfill></td>";
503         echo "</tr>\n";
504 }
505
506 function text_input($name, $value=null, $size='', $max='', $title='', $params='')
507 {
508         if ($value === null)
509                 $value = get_post($name);
510
511         return "<input $params type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"$value\""
512             .($title ? " title='$title'" : '')
513             .">";
514 }
515
516 //-----------------------------------------------------------------------------------
517
518 function text_cells($label, $name, $value=null, $size="", $max="", $title=false, 
519         $labparams="", $post_label="", $inparams="")
520 {
521         global $Ajax;
522
523         default_focus($name);
524         if ($label != null)
525                 label_cell($label, $labparams);
526         echo "<td>";
527
528         echo text_input($name, $value, $size, $max, $title, $inparams);
529
530         if ($post_label != "")
531                 echo " " . $post_label;
532
533         echo "</td>\n";
534         $Ajax->addUpdate($name, $name, $value);
535 }
536
537 function text_cells_ex($label, $name, $size, $max=null, $init=null, $title=null,
538         $labparams=null, $post_label=null, $submit_on_change=false)
539 {
540         global $Ajax;
541
542         default_focus($name);
543         if (!isset($_POST[$name]) || $_POST[$name] == "")
544         {
545                 if ($init)
546                         $_POST[$name] = $init;
547                 else
548                         $_POST[$name] = "";
549         }
550         if ($label != null)
551                 label_cell($label, $labparams);
552
553         if (!isset($max))
554                 $max = $size;
555
556         echo "<td>";
557         $class = $submit_on_change ? 'class="searchbox"' : '';
558         echo "<input $class type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" value=\"" . $_POST[$name]. "\""
559          .($title ? " title='$title'": '')." >";
560
561         if ($post_label)
562                 echo " " . $post_label;
563
564         echo "</td>\n";
565         $Ajax->addUpdate($name, $name, $_POST[$name]);
566 }
567
568 function text_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
569 {
570         echo "<tr><td class='label'>$label</td>";
571         text_cells(null, $name, $value, $size, $max, $title, $params, $post_label);
572
573         echo "</tr>\n";
574 }
575
576 //-----------------------------------------------------------------------------------
577
578 function text_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
579 {
580         echo "<tr><td class='label'>$label</td>";
581         text_cells_ex(null, $name, $size, $max, $value, $title, $params, $post_label);
582
583         echo "</tr>\n";
584 }
585
586 //-----------------------------------------------------------------------------------
587 function email_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
588 {
589         if (get_post($name)) 
590                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
591         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
592 }
593
594 function email_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
595 {
596         if (get_post($name)) 
597                 $label = "<a href='Mailto:".$_POST[$name]."'>$label</a>";
598         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
599 }
600
601 function link_row($label, $name, $value, $size, $max, $title=null, $params="", $post_label="")
602 {
603         $val = get_post($name);
604         if ($val) {
605                 if (strpos($val,'http://')===false)
606                         $val = 'http://'.$val;
607                 $label = "<a href='$val' target='_blank'>$label</a>";
608         }
609         text_row($label, $name, $value, $size, $max, $title, $params, $post_label);
610 }
611
612 function link_row_ex($label, $name, $size, $max=null, $title=null, $value=null, $params=null, $post_label=null)
613 {
614         $val = get_post($name);
615         if ($val) {
616                 if (strpos($val,'http://')===false)
617                         $val = 'http://'.$val;
618                 $label = "<a href='$val' target='_blank'>$label</a>";
619         }
620         text_row_ex($label, $name, $size, $max, $title, $value, $params, $post_label);
621 }
622
623 //-----------------------------------------------------------------------------------
624 //
625 //      Since FA 2.2  $init parameter is superseded by $check. 
626 //  When $check!=null current date is displayed in red when set to other 
627 //      than current date.
628 //      
629 function date_cells($label, $name, $title = null, $check=null, $inc_days=0, 
630         $inc_months=0, $inc_years=0, $params=null, $submit_on_change=false)
631 {
632         global $path_to_root, $Ajax;
633
634         if (!isset($_POST[$name]) || $_POST[$name] == "")
635         {
636                 if ($inc_years == 1001)
637                         $_POST[$name] = null;
638                 else
639                 {
640                         $dd = Today();
641                         if ($inc_days != 0)
642                                 $dd = add_days($dd, $inc_days);
643                         if ($inc_months != 0)
644                                 $dd = add_months($dd, $inc_months);
645                         if ($inc_years != 0)
646                                 $dd = add_years($dd, $inc_years);
647                         $_POST[$name] = $dd;
648                 }
649         }
650         if (user_use_date_picker())
651         {
652                 $calc_image = (file_exists("$path_to_root/themes/".user_theme()."/images/cal.gif")) ? 
653                         "$path_to_root/themes/".user_theme()."/images/cal.gif" : "$path_to_root/themes/default/images/cal.gif";
654                 $post_label = "<a tabindex='-1' href=\"javascript:date_picker(document.getElementsByName('$name')[0]);\">"
655                 . "     <img src='$calc_image' style='vertical-align:middle;padding-bottom:4px;width:16px;height:16px;border:0;' alt='"._('Click Here to Pick up the date')."'></a>\n";
656         }       
657         else
658                 $post_label = "";
659
660         if ($label != null)
661                 label_cell($label, $params);
662
663         echo "<td>";
664         
665         $class = $submit_on_change ? 'date active' : 'date';
666
667         $aspect = $check ? 'aspect="cdate"' : '';
668         if ($check && (get_post($name) != Today()))
669                 $aspect .= ' style="color:#FF0000"';
670
671         default_focus($name);
672         $size = (user_date_format()>3)?11:10; 
673         echo "<input type=\"text\" name=\"$name\" class=\"$class\" $aspect size=\"$size\" maxlength=\"12\" value=\"" 
674          . $_POST[$name]. "\""
675          .($title ? " title='$title'": '')." > $post_label";
676         echo "</td>\n";
677         $Ajax->addUpdate($name, $name, $_POST[$name]);
678 }
679
680 function date_row($label, $name, $title=null, $check=null, $inc_days=0, $inc_months=0, 
681         $inc_years=0, $params=null, $submit_on_change=false)
682 {
683         echo "<tr><td class='label'>$label</td>";
684         date_cells(null, $name, $title, $check, $inc_days, $inc_months, 
685                 $inc_years, $params, $submit_on_change);
686         echo "</tr>\n";
687 }
688
689 //-----------------------------------------------------------------------------------
690 function password_row($label, $name, $value)
691 {
692         echo "<tr><td class='label'>$label</td>";
693         label_cell("<input type='password' name='$name' size=20 maxlength=20 value='$value' >");
694         echo "</tr>\n";
695 }       
696
697 //-----------------------------------------------------------------------------------
698 function file_cells($label, $name, $id="")
699 {
700         if ($id != "")
701                 $id = "id='$id'";
702         label_cells($label, "<input type='file' name='$name' $id >");
703 }               
704 function file_row($label, $name, $id = "")
705 {
706         echo "<tr><td class='label'>$label</td>";
707         file_cells(null, $name, $id);
708         echo "</tr>\n";
709 }       
710
711 /*-----------------------------------------------------------------------------------
712
713  Reference number input.
714
715  Optional  $context array contains transaction data used in number parsing:
716         'data' - data used for month/year codes
717         'location' - location code
718         'customer' - debtor_no
719         'supplier' - supplier id
720         'branch' - branch_code
721 */
722 function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit_on_change=false, $type=null, $context=null)
723 {
724         global $Ajax, $Refs;
725
726         if (isset($type)) {
727                 if (empty($_POST[$name.'_list'])) // restore refline id
728                         $_POST[$name.'_list'] = $Refs->reflines->find_refline_id(empty($_POST[$name]) ? $init : $_POST[$name], $type);
729
730                 if (empty($_POST[$name])) // initialization
731                 {
732                         if (isset($init))
733                         {
734                                 $_POST[$name] = $init;
735                         } else {
736                                 $_POST[$name] = $Refs->get_next($type, $_POST[$name.'_list'], $context);
737                         }
738                         $Ajax->addUpdate(true, $name, $_POST[$name]);
739                 }
740
741                 if (check_ui_refresh($name)) { // call context changed
742                         $_POST[$name] = $Refs->normalize($_POST[$name], $type, $context, $_POST[$name.'_list']);
743                         $Ajax->addUpdate(true, $name, $_POST[$name]);
744                 }
745
746                 if ($Refs->reflines->count($type)>1) {
747                         if (list_updated($name.'_list')) {
748                                 $_POST[$name] = $Refs->get_next($type, $_POST[$name.'_list'], $context);
749                                 $Ajax->addUpdate(true, $name, $_POST[$name]);
750                         }
751                         $list = refline_list($name.'_list', $type);
752                 } else {
753                         $list = '';
754                 }
755
756                 if (isset($label))
757                         label_cell($label, $params);
758
759                 label_cell($list."<input name='".$name."' "
760                         .(check_edit_access($name) ? '' : 'disabled ')
761                         ."value='".@$_POST[$name]."' size=16 maxlength=35>");
762         }
763         else // just wildcard ref field (e.g. for global inquires)
764         {
765                 text_cells_ex($label, $name, 16, 35, $init, $title, $params, null, $submit_on_change);
766         }
767 }
768
769 //-----------------------------------------------------------------------------------
770
771 function ref_row($label, $name, $title=null, $init=null, $submit_on_change=false, $type=null, $context = null)
772 {
773         echo "<tr><td class='label'>$label</td>";
774         ref_cells(null, $name, $title, $init, null, $submit_on_change, $type, $context);
775         echo "</tr>\n";
776 }
777
778 //-----------------------------------------------------------------------------------
779
780 function percent_row($label, $name, $init=null)
781 {
782
783         if (!isset($_POST[$name]) || $_POST[$name]=="")
784         {
785                 $_POST[$name] = $init == null ? '' : $init;
786         }
787
788         small_amount_row($label, $name, $_POST[$name], null, "%", user_percent_dec());
789 }
790
791 function amount_cells_ex($label, $name, $size, $max=null, $init=null, $params=null, $post_label=null, $dec=null)
792 {
793         global $Ajax;
794
795         if (!isset($dec))
796                 $dec = user_price_dec();
797         if (!isset($_POST[$name]) || $_POST[$name] == "")
798         {
799                 if ($init !== null)
800                         $_POST[$name] = $init;
801                 else
802                         $_POST[$name] = '';
803         }
804         if ($label != null)
805         {
806                 if ($params == null)
807                         $params = "class='label'";
808                 label_cell($label, $params);
809         }
810         if (!isset($max))
811                 $max = $size;
812
813         if ($label != null)
814                 echo "<td>";
815         else
816                 echo "<td align='right'>";
817
818         echo "<input class='amount' type=\"text\" name=\"$name\" size=\"$size\" maxlength=\"$max\" dec=\"$dec\" value=\"" . $_POST[$name]. "\">";
819
820         if ($post_label) {
821                 echo "<span id='_{$name}_label'> $post_label</span>";
822                 $Ajax->addUpdate($name, '_'.$name.'_label', $post_label);
823         }
824         echo "</td>\n";
825         $Ajax->addUpdate($name, $name, $_POST[$name]);
826         $Ajax->addAssign($name, $name, 'dec', $dec);
827 }
828
829
830 //-----------------------------------------------------------------------------------
831
832 function amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
833 {
834         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
835 }
836
837 //JAM  Allow entered unit prices to be fractional
838 function unit_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
839 {
840         if (!isset($dec))
841                 $dec = user_price_dec()+2;
842
843         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec+2);
844 }
845
846 function amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
847 {
848         echo "<tr>";
849         amount_cells($label, $name, $init, $params, $post_label, $dec);
850         echo "</tr>\n";
851 }
852
853 function small_amount_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
854 {
855         echo "<tr>";
856         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
857         echo "</tr>\n";
858 }
859
860 //-----------------------------------------------------------------------------------
861
862 function qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
863 {
864         if (!isset($dec))
865                 $dec = user_qty_dec();
866
867         amount_cells_ex($label, $name, 15, 15, $init, $params, $post_label, $dec);
868 }
869
870 function qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
871 {
872         if (!isset($dec))
873                 $dec = user_qty_dec();
874
875         echo "<tr>";
876         amount_cells($label, $name, $init, $params, $post_label, $dec);
877         echo "</tr>\n";
878 }
879
880 function small_qty_row($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
881 {
882         if (!isset($dec))
883                 $dec = user_qty_dec();
884
885         echo "<tr>";
886         small_amount_cells($label, $name, $init, $params, $post_label, $dec);
887         echo "</tr>\n";
888 }
889
890 //-----------------------------------------------------------------------------------
891
892 function small_amount_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
893 {
894         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
895 }
896
897 //-----------------------------------------------------------------------------------
898
899 function small_qty_cells($label, $name, $init=null, $params=null, $post_label=null, $dec=null)
900 {
901         if (!isset($dec))
902                 $dec = user_qty_dec();
903         amount_cells_ex($label, $name, 7, 12, $init, $params, $post_label, $dec);
904 }
905
906 //-----------------------------------------------------------------------------------
907
908 function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $params="")
909 {
910         global $Ajax;
911
912         default_focus($name);
913         if ($label != null)
914                 echo "<td $params>$label</td>\n";
915         if ($value == null)
916                 $value = (!isset($_POST[$name]) ? "" : $_POST[$name]);
917         echo "<td><textarea name='$name' cols='$cols' rows='$rows'"
918         .($title ? " title='$title'" : '')
919         .">$value</textarea></td>\n";
920         $Ajax->addUpdate($name, $name, $value);
921 }
922
923 function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="")
924 {
925         echo "<tr><td class='label'>$label</td>";
926         textarea_cells(null, $name, $value, $cols, $rows, $title, $params);
927         echo "</tr>\n";
928 }
929
930 //-----------------------------------------------------------------------------------
931 //
932 //      When show_inactive page option is set 
933 //  displays value of inactive field as checkbox cell.
934 //  Also updates database record after status change.
935 //
936 function inactive_control_cell($id, $value, $table, $key)
937 {
938         global  $Ajax;
939
940         $name = "Inactive". $id;
941         $value = $value ? 1:0;
942
943         if (check_value('show_inactive')) {
944                 if (isset($_POST['LInact'][$id]) && (get_post('_Inactive'.$id.'_update') || 
945                         get_post('Update')) && (check_value('Inactive'.$id) != $value)) {
946                         update_record_status($id, !$value, $table, $key);
947                 }
948                 echo '<td align="center">'. checkbox(null, $name, $value, true, '')
949                         . hidden("LInact[$id]", $value, false) . '</td>';       
950         }
951 }
952 //
953 //      Displays controls for optional display of inactive records
954 //
955 function inactive_control_row($th) {
956         echo  "<tr><td colspan=".(count($th)).">"
957                 ."<div style='float:left;'>"
958                 . checkbox(null, 'show_inactive', null, true). _("Show also Inactive")
959                 ."</div><div style='float:right;'>"
960                 . submit('Update', _('Update'), false, '', null)
961                 ."</div></td></tr>";
962 }
963 //
964 //      Inserts additional column header when display of inactive records is on.
965 //
966 function inactive_control_column(&$th) {
967         global $Ajax;
968         
969         if (check_value('show_inactive')) 
970                 array_insert($th, count($th)-2 , _("Inactive"));
971         if (get_post('_show_inactive_update')) {
972                 $Ajax->activate('_page_body');
973         }
974 }
975
976 function customer_credit_row($customer, $credit, $parms='')
977 {
978         global $path_to_root;
979         
980         label_row( _("Current Credit:"),
981                 "<a target='_blank' " . ($credit<0 ? 'class="redfg"' : '')
982                 ."href='$path_to_root/sales/inquiry/customer_inquiry.php?customer_id=".$customer."'"
983                 ." onclick=\"javascript:openWindow(this.href,this.target); return false;\" >"
984                 . price_format($credit)
985                 ."</a>", $parms);
986 }
987
988 function supplier_credit_row($supplier, $credit, $parms='')
989 {
990         global $path_to_root;
991         
992         label_row( _("Current Credit:"),
993                 "<a target='_blank' " . ($credit<0 ? 'class="redfg"' : '')
994                 ."href='$path_to_root/purchasing/inquiry/supplier_inquiry.php?supplier_id=".$supplier."'"
995                 ." onclick=\"javascript:openWindow(this.href,this.target); return false;\" >"
996                 . price_format($credit)
997                 ."</a>", $parms);
998 }
999
1000 function bank_balance_row($bank_acc, $parms='')
1001 {
1002         global $path_to_root;
1003
1004         $to = add_days(Today(), 1);
1005         $bal = get_balance_before_for_bank_account($bank_acc, $to);
1006         label_row( _("Bank Balance:"),
1007                 "<a target='_blank' " . ($bal<0 ? 'class="redfg"' : '')
1008                 ."href='$path_to_root/gl/inquiry/bank_inquiry.php?bank_account=".$bank_acc."&no_header=1"."'"           
1009                 ." onclick=\"javascript:openWindow(this.href,this.target); return false;\" >&nbsp;"
1010                 . price_format($bal)
1011                 ."</a>", $parms);
1012 }
1013
1014 function ahref($label, $href, $target="", $onclick="") {
1015   echo "<a href='$href' target='$target' onclick='$onclick'>$label</a>";
1016 }
1017
1018 function ahref_cell($label, $href, $target="", $onclick="") {
1019   echo "<td align='center'>&nbsp;&nbsp;";
1020   ahref($label, $href, $target, $onclick);
1021   echo "&nbsp;&nbsp;</td>";
1022 }