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