ffbcd43cdfacb8dc64deb453d2ef594307ca7aaa
[kivitendo-erp.git] / js / common.js
1
2 function setupPoints(numberformat, wrongFormat) {
3   decpoint = numberformat.substring((numberformat.substring(1, 2).match(/\.|\,/) ? 5 : 4), (numberformat.substring(1, 2).match(/\.|\,/) ? 6 : 5));
4   if (numberformat.substring(1, 2).match(/\.|\,/)) {
5     thpoint = numberformat.substring(1, 2); 
6   }
7   else {
8     thpoint = null;
9   }
10   wrongNumberFormat = wrongFormat + " ( " + numberformat + " ) ";  
11 }
12
13 function setupDateFormat(setDateFormat, setWrongDateFormat) {
14   dateFormat = setDateFormat;
15   wrongDateFormat = setWrongDateFormat + " ( " + setDateFormat + " ) ";
16   formatArray = new Array();
17   if(dateFormat.match(/^\w\w\W/)) {
18     seperator = dateFormat.substring(2,3);
19   }
20   else {
21     seperator = dateFormat.substring(4,5);
22   }
23 }
24
25 function centerParms(width,height,extra) {
26   xPos = (screen.width - width) / 2;
27   yPos = (screen.height - height) / 2;
28
29   string = "left=" + xPos + ",top=" + yPos;
30
31   if (extra)
32     string += "width=" + width + ",height=" + height;
33
34   return string;
35 }
36
37 function set_longdescription_window(input_name) {
38   var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
39   var name = document.getElementsByName(input_name)[0].value;
40   url = "common.pl?" +
41     "action=set_longdescription&" +
42     "login=" +  encodeURIComponent(document.getElementsByName("login")[0].value)+ "&"+
43     "password=" + encodeURIComponent(document.getElementsByName("password")[0].value) + "&" +
44     "longdescription=" + escape(document.getElementsByName(input_name)[0].value) + "&" +
45     "input_name=" + escape(input_name) + "&"
46   window.open(url, "_new_generic", parm);
47   }
48
49 function check_right_number_format(input_name) {
50   if(thpoint) {
51     if(thpoint == ','){
52       var thnumbers = input_name.value.split(',');  
53       thnumbers[thnumbers.length-1] = thnumbers[thnumbers.length-1].substring((thnumbers[thnumbers.length-1].lastIndexOf(".") !== -1 ? thnumbers[thnumbers.length-1].lastIndexOf(".") : thnumbers[thnumbers.length-1].length), 0);
54     }
55     else{
56       var thnumbers = input_name.value.split('.');  
57       thnumbers[thnumbers.length-1] = thnumbers[thnumbers.length-1].substring((thnumbers[thnumbers.length-1].lastIndexOf(",") !== -1 ? thnumbers[thnumbers.length-1].lastIndexOf(",") : thnumbers[thnumbers.length-1].length), 0);
58     }
59         
60     for(var i = 1; i < thnumbers.length; i++) {
61      if(thnumbers[i].length !== 3) {
62        return show_alert_and_focus(input_name, wrongNumberFormat+thnumbers);
63      }
64    }
65   }
66   if(decpoint == ',') {
67     var decnumbers = input_name.value.split(',');
68   }
69   else {
70     var decnumbers = input_name.value.split('.');
71   }
72   if(decnumbers.length == 2) {
73     if(decnumbers[1].length > 2)  {
74       return show_alert_and_focus(input_name, wrongNumberFormat + decnumbers);
75     }
76   }
77   else {
78     if(decnumbers.length > 1 || decnumbers.length == 0) {
79       return show_alert_and_focus(input_name, wrongNumberFormat);
80     }
81     if(!thpoint) {
82       if(decnumbers[0].match(/\D/)) {
83         return show_alert_and_focus(input_name, wrongNumberFormat);
84       }
85     }
86   }
87 }
88
89 function check_right_date_format(input_name) {
90   if(input_name.value == "") {
91     return true;
92   }
93   var matching = new RegExp(dateFormat.replace(/\w/g, '\\d') + "\$","ig");
94   if(!(dateFormat.lastIndexOf("y") == 3) && !matching.test(input_name.value)) {
95     matching = new RegExp(dateFormat.replace(/\w/g, '\\d') + '\\d\\d\$', "ig");
96     if(!matching.test(input_name.value)) {
97       return show_alert_and_focus(input_name, wrongDateFormat);
98     }
99   }
100   else {
101     if (dateFormat.lastIndexOf("y") == 3 && !matching.test(input_name.value)) { 
102       return show_alert_and_focus(input_name, wrongDateFormat);
103     }
104   }
105 }
106
107 function validate_dates(input_name_1, input_name_2) {
108   var tempArray1 = new Array();
109   var tempArray2 = new Array();
110   tempArray1 = getDateArray(input_name_1);
111   tempArray2 = getDateArray(input_name_2);
112   if(check_right_date_format(input_name_1) && check_right_date_format(input_name_2)) {
113     if(!((new Date(tempArray2[0], tempArray2[1], tempArray2[2])).getTime() >= (new Date(tempArray1[0], tempArray1[1], tempArray1[2])).getTime())) {
114       show_alert_and_focus(input_name_1, wrongDateFormat);
115       return show_alert_and_focus(input_name_2, wrongDateFormat);
116     }
117     if(!((new Date(tempArray2[0], tempArray2[1], tempArray2[2])).getTime() >= (new Date(1900, 1, 1)).getTime())) {
118       show_alert_and_focus(input_name_1, wrongDateFormat);
119       return show_alert_and_focus(input_name_2, wrongDateFormat);
120     }
121   }
122 }
123
124 function getDateArray(input_name) {
125   formatArray[2] = input_name.value.substring(dateFormat.indexOf("d"), 2);
126   formatArray[1] = input_name.value.substring(dateFormat.indexOf("m"), 2);
127   formatArray[0] = input_name.value.substring(dateFormat.indexOf("y"), (dateFormat.length == 10 ? 4 : 2));
128   if(dateFormat.length == 8) {
129     formatArray[0] += (formatArray[0] < 70 ? 2000 : 1900);
130   }
131   return formatArray;
132 }
133
134 function show_alert_and_focus(input_name, errorMessage) {
135   input_name.select();
136   alert(errorMessage + "\n\r\n\r--> " + input_name.value); //  + "\ndecpoint: " + decpoint + "\nthpoint: " + thpoint
137   input_name.focus();
138   return false;
139 }
140