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