Verifications_dates_materiels.js
5.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
$(document).ready(function () {
/**
* Event Mail change
*/
$("#nom-responsable").bind("change", function(event) {
if ($("#nom-responsable").val() == "") {
$("#email-responsable").val("");
} else {
var url = document.URL;
var reg = new RegExp("(materiels).*$", "g");
var emailUrl = url.replace(reg, "Users/getLdapEmail/");
$.ajax({
url: emailUrl + $("#nom-responsable").val()
}).done(function(data) {
$("#email-responsable").val(data)
});
}
});
/**
* Event calcul date fin de garantie
*/
/* On formatte COMME IL FAUT les dates des formulaires */
/* EP deactivated, works but no more necessary ?*/
$('.datepicker').each(function(){
this.value = this.value.replace(/\//g, "-");
this.value = twoToFour(this.value);
});
/* Puis si nécessaire on update la date de fin de gurantie au chargement de la page */
if ($("#date-fin-garantie")[0].value != "") date_fin_garantie_update();
/* Et enfin les events purs */
/*
$("#date-reception").change(
function(event) { date_fin_garantie_update(); }
);
*/
$("#date-reception").change(
function(event) {
if(!checkDate(this.value)) {
alert("Les dates doivent être de la forme dd-mm-YYYY");
event.preventDefault();
}
else {
date_fin_garantie_update();
}
}
);
$("#duree-garantie").bind("change", function(event) { date_fin_garantie_update(); });
$("#unite-duree-garantie").bind("change", function(event) { date_fin_garantie_update(); });
/*$("#date-fin-garantie").bind("change", function(event) { $("#duree-garantie")[0].value = "" });*/
$("#date-fin-garantie").change(
function(event) {
if(!checkDate(this.value)) {
alert("Les dates doivent être de la forme dd-mm-YYYY");
event.preventDefault();
}
else {
$("#duree-garantie")[0].value = "";
}
}
);
/**
* Event - à la validation, on vérifie les dates
*/
$( ".form" ).submit(function( event ) {
s1 = $("#date-acquisition")[0].value;
s2 = $("#date-reception")[0].value;
s3 = $("#date-fin-garantie")[0].value;
// if () {
// alert("Les dates doivent être de la forme dd-mm-YYYY");
// event.preventDefault();
// }
/* EP deactivated, works but no more necessary
$bool = false;
$('.datepicker').each(function(){
if(this.value != "" && $bool == false) {
console.log(this.value);
if(!checkDate(this.value)){
$bool = true;
alert("Les dates doivent être de la forme dd-mm-YYYY");
event.preventDefault();
}
}
});
*/
d1 = toDate($("#date-acquisition")[0].value); /* Date de la commande */
d2 = toDate($("#date-reception")[0].value); /* Date de réception */
d3 = toDate($("#date-fin-garantie")[0].value); /* Date fin de garantie */
/* EP deactivated, works but no more necessary
if($("#date-reception")[0].value != undefined){
if(d1 > d2) {
alert("Les dates ne correspondent pas, la date de réception doit être supérieure à la date de commande.");
event.preventDefault();
}
}
*/
if($("#date-reception")[0].value != undefined){
if(d2 > d3) {
alert("Les dates ne correspondent pas, la date de fin de garantie doit être supérieure à la date de réception.");
event.preventDefault();
}
}
}); /* On SUBMIT */
});
/**
* Fonction qui vérifie que la date en parametre soit bien au format dd-mm-YYYY ou d-m-YYYY
*/
function checkDate(str) {
//return str.match(/^(\d{1,2})-(\d{1,2})-(\d{4})$/);
return str.match(/^(\d{2})-(\d{2})-(\d{4})$/);
}
/**
* Fonction qui passe l'année de deux à quatres chiffres
*/
function twoToFour(str) {
if (str.match(/^(\d{1,2})-(\d{1,2})-(\d{2})$/)) {
tabStr = str.split("-");
tabStr[2] = "20"+tabStr[2];
str = tabStr[0]+"-"+tabStr[1]+"-"+tabStr[2];
}
return str;
}
/**
* Fonction de mise à jour de la date de fin de guarantie
*/
function date_fin_garantie_update() {
if ($("#date-reception").val() != "" && $("#duree-garantie").val() != "") {
/* EP added this :
$('.datepicker').each(function(){
this.value = this.value.replace(/\//g, "-");
this.value = twoToFour(this.value);
});
*/
$("#date-reception").each(function(){
this.value = twoToFour(this.value);
});
var url = document.URL;
var reg = new RegExp("(materiels).*$", "g");
var dateUrl = url.replace(reg, "Materiels/getDateGarantie/");
$.ajax({
url: dateUrl + $("#date-reception").val() + "/" + $("#duree-garantie").val() + "/" + $("#unite-duree-garantie").val()
}).done(function(data) {
$("#date-fin-garantie").val(data)
});
}
}
/**
* Fonction qui transforme la chaine de format dd-mm-YYYY en date js pour pouvoir être comparée par la suite
*/
function toDate(str) {
var DateString = str.split("-");
return new Date(parseInt(DateString[2]), parseInt(DateString[1]) + 1, parseInt(DateString[0]), 12, 00, 00);
/* new Date(YYYY, mm+1, dd, 12, 00, 00)
Le +1 du mois est nécessaire car les mois commencent à 0 en JS
les 3 derniers chiffres ne sont pas nécessaires, mais si on les retire ça bug uniquement sous firefox (il est plus strict que chrome paar exemple)
et la date devient du grand n'importe quoi
*/
}