add number calculation in number form fields
[kivitendo-erp.git] / js / common.js
1 function setupPoints(numberformat, wrongFormat) {
2   decpoint = numberformat.substring((numberformat.substring(1, 2).match(/\.|\,/) ? 5 : 4), (numberformat.substring(1, 2).match(/\.|\,/) ? 6 : 5));
3   if (numberformat.substring(1, 2).match(/\.|\,/)) {
4     thpoint = numberformat.substring(1, 2);
5   }
6   else {
7     thpoint = null;
8   }
9   wrongNumberFormat = wrongFormat + " ( " + numberformat + " ) ";
10 }
11
12 function setupDateFormat(setDateFormat, setWrongDateFormat) {
13   dateFormat = setDateFormat;
14   wrongDateFormat = setWrongDateFormat + " ( " + setDateFormat + " ) ";
15   formatArray = new Array();
16   if(dateFormat.match(/^\w\w\W/)) {
17     seperator = dateFormat.substring(2,3);
18   }
19   else {
20     seperator = dateFormat.substring(4,5);
21   }
22 }
23
24 function centerParms(width,height,extra) {
25   xPos = (screen.width - width) / 2;
26   yPos = (screen.height - height) / 2;
27
28   string = "left=" + xPos + ",top=" + yPos;
29
30   if (extra)
31     string += "width=" + width + ",height=" + height;
32
33   return string;
34 }
35
36 function set_longdescription_window(input_name) {
37   var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
38   var name = document.getElementsByName(input_name)[0].value;
39   url = "common.pl?" +
40     "INPUT_ENCODING=UTF-8&" +
41     "action=set_longdescription&" +
42     "longdescription=" + encodeURIComponent(document.getElementsByName(input_name)[0].value) + "&" +
43     "input_name=" + encodeURIComponent(input_name) + "&"
44   window.open(url, "_new_generic", parm);
45   }
46
47 function check_right_number_format(input_name) {
48   if(decpoint == thpoint) {
49     return show_alert_and_focus(input_name, wrongNumberFormat);
50   }
51   var test_val = input_name.value;
52   if(thpoint && thpoint == ','){
53     test_val = test_val.replace(/,/g, '');
54   }
55   if(thpoint && thpoint == '.'){
56     test_val = test_val.replace(/\./g, '');
57   }
58   if(thpoint && decpoint == ','){
59     test_val = test_val.replace(/,/g, '.');
60   }
61
62   var forbidden = test_val.match(/[^-\+\/\*\.0-9\ ]/g );
63   if (forbidden && forbidden.length > 0 ){
64     return show_alert_and_focus(input_name, wrongNumberFormat);
65   } 
66
67   try{ 
68     eval(test_val);
69   }catch(err){
70     return show_alert_and_focus(input_name, wrongNumberFormat);
71   } 
72
73 }
74
75 function check_right_date_format(input_name) {
76   if(input_name.value == "") {
77     return true;
78   }
79   var matching = new RegExp(dateFormat.replace(/\w/g, '\\d') + "\$","ig");
80   if(!(dateFormat.lastIndexOf("y") == 3) && !matching.test(input_name.value)) {
81     matching = new RegExp(dateFormat.replace(/\w/g, '\\d') + '\\d\\d\$', "ig");
82     if(!matching.test(input_name.value)) {
83       return show_alert_and_focus(input_name, wrongDateFormat);
84     }
85   }
86   else {
87     if (dateFormat.lastIndexOf("y") == 3 && !matching.test(input_name.value)) {
88       return show_alert_and_focus(input_name, wrongDateFormat);
89     }
90   }
91 }
92
93 function validate_dates(input_name_1, input_name_2) {
94   var tempArray1 = new Array();
95   var tempArray2 = new Array();
96   tempArray1 = getDateArray(input_name_1);
97   tempArray2 = getDateArray(input_name_2);
98   if(check_right_date_format(input_name_1) && check_right_date_format(input_name_2)) {
99     if(!((new Date(tempArray2[0], tempArray2[1], tempArray2[2])).getTime() >= (new Date(tempArray1[0], tempArray1[1], tempArray1[2])).getTime())) {
100       show_alert_and_focus(input_name_1, wrongDateFormat);
101       return show_alert_and_focus(input_name_2, wrongDateFormat);
102     }
103     if(!((new Date(tempArray2[0], tempArray2[1], tempArray2[2])).getTime() >= (new Date(1900, 1, 1)).getTime())) {
104       show_alert_and_focus(input_name_1, wrongDateFormat);
105       return show_alert_and_focus(input_name_2, wrongDateFormat);
106     }
107   }
108 }
109
110 function getDateArray(input_name) {
111   formatArray[2] = input_name.value.substring(dateFormat.indexOf("d"), 2);
112   formatArray[1] = input_name.value.substring(dateFormat.indexOf("m"), 2);
113   formatArray[0] = input_name.value.substring(dateFormat.indexOf("y"), (dateFormat.length == 10 ? 4 : 2));
114   if(dateFormat.length == 8) {
115     formatArray[0] += (formatArray[0] < 70 ? 2000 : 1900);
116   }
117   return formatArray;
118 }
119
120 function show_alert_and_focus(input_name, errorMessage) {
121   input_name.select();
122   alert(errorMessage + "\n\r\n\r--> " + input_name.value);
123   input_name.focus();
124   return false;
125 }
126
127 function get_input_value(input_name) {
128   var the_input = document.getElementsByName(input_name);
129   if (the_input && the_input[0])
130     return the_input[0].value;
131   return '';
132 }
133
134 function set_cursor_position(n) {
135   $('[name=' + n + ']').focus();
136 }
137
138 function focussable(e) {
139   return e && e.name && e.type != 'hidden' && e.type != 'submit' && e.disabled != true;
140 }
141
142 function set_cursor_to_first_element(){
143   var df = document.forms;
144   for (var f = 0; f < df.length; f++)
145     for (var i = 0; i < df[f].length; i++)
146       if (focussable(df[f][i]))
147         try { df[f][i].focus(); return } catch (er) { }
148 }
149
150 function getElementByIndirectName(name){
151   var e = document.getElementsByName(name)[0];
152   if (e) return document.getElementsByName(e.value)[0];
153 }
154
155 function focus_by_name(name){
156   var f = getElementByIndirectName(name);
157   if (focussable(f)) {
158     set_cursor_position(f.name);
159     return true;
160   }
161   return false;
162 }
163
164 $(document).ready(function () {
165   $('input').focus(function(){
166     if (focussable(this)) window.focused_element = this;
167   });
168   // legacy. sone forms install these
169   if (typeof fokus == 'function') { fokus(); return; }
170   if (focus_by_name('fokus'))        return;
171   if (focus_by_name('cursor_fokus')) return;
172   set_cursor_to_first_element();
173 });
174
175 $('form').submit(function(){
176   if (window.focused_element)
177     document.forms[0].cursor_fokus.value = window.focused_element.name;
178 });