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