script.js 13.9 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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
/* ***********************************
 * ******** document.ready() *********
 * ***********************************
 */


// Gestion des sections qu'on peut afficher ou masquer
$(document).ready(function() {

	
	/* (EP 20200416) 
	 * 
	 * ON change => Check de la saisie manuelle de TOUS les champs date (avec datepicker class)
	 * 
	 */
	//$("#datepicker").bind("change", function (event) 	{ check_date_deb_inf_date_fin(); } ); 
	//$("#datepicker").bind("change", function (event) 	{
	//$(".datepicker").bind("change", function (event) 	{
	//$(".datepicker").blur(function(){
	//$(".datepicker").on("change", function(event) {
	$(".datepicker").change( function(event) {
		checkDate(this);
	});
	
	
	/* (EP 20200416 : Ces seules 5 lignes remplacent tout le binz ci-dessous,
	 * suffisait de se creuser un peu la tête quoi !!
	 * 
	 * SECTIONS SHOW/HIDE
	 * 
	 * Reference : https://www.w3schools.com/jquery/eff_toggle.asp
	 * 
	 */
	$('.toggle').click(function() {
		// ex: '#t_informations' devient '#informations'
		var newid = '#' + this.id.substr(2);
		//console.log(newid);
		$(newid).toggle('slow', 'linear');
		//$(newid).toggle('slow', 'swing');
		//$(newid).toggle('fast');
		//$(newid).toggle('fast', 'swing');
		toogleChevron('#i_'+newid);
	});
	
	/* ANCIENNE VERSION BINZ !!!
	
	// Page index de matériel (et de configurations)
	
	$('#t_informations').click(function() {
		$('#informations').toggle('fast');
		toogleChevron('#i_informations');
	});
	$('#t_informations_admin').click(function() {
		$('#informations_admin').toggle('fast');
		toogleChevron('#i_informations_admin');
	});

	$('#t_suivis').click(function() {
		$('#suivis').toggle('fast');
		toogleChevron('#i_suivis');
	});
	$('#t_emprunts').click(function() {
		$('#emprunts').toggle('fast');
		toogleChevron('#i_emprunts');
	});
	$('#t_fichiers').click(function() {
		$('#fichiers').toggle('fast');
		toogleChevron('#i_fichiers');
	});
	
	
	// Page Configurations only
	
	$('#t_affichage').click(function() {
		$('#affichage').toggle('fast');
		toogleChevron('#i_affichage');
	});

	
	// Page find de matériel
	
	$('#t_filter').click(function() {
		$('#filter').toggle('fast');
		toogleChevron('#i_filter');
	});
	$('#t_result').click(function() {
		$('#result').toggle('fast');
		toogleChevron('#i_result');
	});
	
	*/

	
}); // $(document).ready





/* ****************************
 * ******** FUNCTIONS *********
 * **************************** 
 */


/**
 * empty a SELECT field given its name and default option
 * call example : emptySelectOptions("#MaterielSousCategorieId","Choisir une sous-catégorie")
 * 
 */
function emptySelectOptions(selectFieldId, defaultOption) {
	var newOptions = {
		"" : defaultOption
	};
	//var selectedOption = "Choisir une sous-catégorie";
	var select = $(selectFieldId);
	var options;
	if(select.prop) {
		options = select.prop("options");
	}
	else {
		options = select.attr("options");
	}
	$("option", select).remove();
	$.each(newOptions, function(val, text) {
		options[options.length] = new Option(text, val);
	});
	//select.val(selectedOption);
}

/**
 * Ajax request that updates a SELECT options (selectId) according to the selection made in another SELECT (otherSelectId)
 * For now, works only from Materiels VIEW (otherwise, replace "materiels" below with your view name)
 * 
 * call example : 
 * updateSelectOptionsFromAnother("#MaterielCategorieId", "#MaterielSurCategorieId", "Categories/getAll", "catégorie")
 * This would update the options of the SELECT named "MaterielCategorieId" from the selected value of the SELECT named MaterielSurCategorieId
 *
 */
function updateSelectOptionsFromAnother(selectId, otherSelectId, requestName, emptyOptionName) {
	var reg=new RegExp("(materiels).*$","g");
	var currentURL = window.location.pathname; // ex: /materiels/add
	var newURL = currentURL.replace(reg, requestName); // ex: /sur-categories/getFromCategorie
	$.ajax({
		async:true,
		data:$(otherSelectId).serialize(),
		dataType:"html",
		success:function (data, textStatus) {
			if (emptyOptionName == "") $(selectId).val(data);
			else {
				data="<option value=\"\">"+emptyOptionName+"</option>"+data;
				$(selectId).html(data);
			}
		},
		type:"post", url:newURL
	});
}


function toogleChevron(element) {
	if ($(element).hasClass('icon-chevron-down')) {
			$(element).removeClass('icon-chevron-down');
			$(element).addClass('icon-chevron-up');
	}
	else {
		$(element).removeClass('icon-chevron-up');
		$(element).addClass('icon-chevron-down');
	}
}

function emprunt_interne_externe() {
	$('#interne').toggle();
	$('#externe').toggle();		
}

function display_ldap() {
	$('#ldap').toggle();
	//toggle_ldap_auth();
}
// EP
function toggle_ldap_auth() {
	//$('#ldap_auth').toggle();
	// Possible en une ligne, mais moins lisible...
	//document.getElementById("ldap_auth").style.display = document.getElementById("ldap-authentified").checked ? "block":"none";
	var ldap_auth_div = document.getElementById("ldap_auth");
	var ldap_auth_checkbox = document.getElementById("ldap-authentified");
	ldap_auth_div.style.display = ldap_auth_checkbox.checked ? "block":"none";
}

function selectAll() {
	for(i = 0; i < document.getElementsByTagName("input").length; i++)
		document.getElementsByTagName("input")[i].checked = true;
}
function selectNone() {
	for(i = 0; i < document.getElementsByTagName("input").length; i++)
		document.getElementsByTagName("input")[i].checked = false;
}



/**
* Fonction qui transforme la chaine de format dd/mm/YYYY en date js pour pouvoir être comparée par la suite
* (EP 20200409) Utilisée dans add_edit.ctp de Materiels (dans verifications_dates_materiels.js) et dans add_edit.ctp de Suivis
*/
function toDate(str) {
	//var DateString = str.split("-");
	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 
	*/
}


/**
 * Fonction qui vérifie que la date en parametre soit bien au format [d]d/[m]m/YYYY
 */
function checkDate_basic(str) {
	// (EP 20200410 version [d]d/[m]m/yyyy au lieu de dd-mm-yy)
	return (str.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/) != null);
	//if (str.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/) ) console.log("yes");
	//return str.match(/^(\d{1,2})-(\d{1,2})-(\d{4})$/);
	//return str.match(/^(\d{2})-(\d{2})-(\d{4})$/);
	//return str.match(/^(\d{2})\/(\d{2})\/(\d{2})$/);
	//return str.match(/^(\d{2})\/(\d{2})\/(\d{4})$/);
}

function checkDate(field) {
	// (EP) check format [J]J/[M]M/AAAA
	//console.log("coucou");
	// format général
    //if(this.value.match(/\d{1,2}[^\d]\d{1,2}[^\d]\d{4,4}/gi) == null) {
	// (EP) check format [J]J/[M]M/[AA]AA
    //if ( this.value.match(/^(\d{1,2})\/(\d{1,2})\/(\d{2}|\d{4})$/) == null ) {
	var val = field.value; 
	if (val == '') return true;
	$error_msg = '';
    if ( val.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/) == null )
    	$error_msg = "Format de date invalide (doit être JJ/MM/AAAA)";
    // Check value : doit être une date valide
    else {
        //var t = this.value.split(/[^\d]/);
        var t = val.split(/\//);
        var dd = parseInt(t[0], 10);
        var m0 = parseInt(t[1], 10) - 1; // Month in JavaScript Date object is 0-based
        var yyyy = parseInt(t[2], 10);
        // Si year sur 2 chiffres (AA), on passe à 4 (AAAA)
        //if (yyyy < 100) yyyy = 2000 + yyyy
        var d = new Date(yyyy, m0, dd); // new Date(2017, 13, 32) is still valid
        //console.log(d.getFullYear());
        if(d.getDate() != dd || d.getMonth() != m0 || d.getFullYear() != yyyy)
			$error_msg = "Date invalide";
    }
    // Si erreur
    if ($error_msg != '') {
    	field.value = "";
    	//field.val("");
	    alert($error_msg);
	    // On supprime la saisie invalide pour éviter qu'elle puisse être soumise (submit) 
        field.classList.add('error');
        // stopper un "submit" éventuel
        //event.preventDefault();
        field.focus();
        return false;
    }
    if (field.classList.contains('error')) 
    	field.classList.remove('error');
    return true;
}

/*
// avec this
function checkDate(date_field) {
	// (EP) check format [J]J/[M]M/AAAA
	//console.log("coucou");
	// format général
    //if(this.value.match(/\d{1,2}[^\d]\d{1,2}[^\d]\d{4,4}/gi) == null) {
	// (EP) check format [J]J/[M]M/[AA]AA
    //if ( this.value.match(/^(\d{1,2})\/(\d{1,2})\/(\d{2}|\d{4})$/) == null ) {
	if (this.value == '') return true;
	$error_msg = '';
    if ( this.value.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/) == null )
    	$error_msg = "Format de date invalide (doit être JJ/MM/AAAA)";
    // Check value : doit être une date valide
    else {
        //var t = this.value.split(/[^\d]/);
        var t = this.value.split(/\//);
        var dd = parseInt(t[0], 10);
        var m0 = parseInt(t[1], 10) - 1; // Month in JavaScript Date object is 0-based
        var yyyy = parseInt(t[2], 10);
        // Si year sur 2 chiffres (AA), on passe à 4 (AAAA)
        //if (yyyy < 100) yyyy = 2000 + yyyy
        var d = new Date(yyyy, m0, dd); // new Date(2017, 13, 32) is still valid
        //console.log(d.getFullYear());
        if(d.getDate() != dd || d.getMonth() != m0 || d.getFullYear() != yyyy)
			$error_msg = "Date invalide";
    }
    // Si erreur
    if ($error_msg != '') {
    	this.value = "";
	    alert($error_msg);
	    // On supprime la saisie invalide pour éviter qu'elle puisse être soumise (submit) 
        this.classList.add('error');
        // stopper un "submit" éventuel
        //event.preventDefault();
        this.focus();
    }
    else if (this.classList.contains('error')) this.classList.remove('error');
}
*/




//(EP 20200410) Vérification dates d1 <= d2
function check_dates_d1_inf_d2(d1,d2,error_msg) {
	/*
    d1 = $("#date-acquisition")[0].value;
    d2 = $("#date-reception")[0].value;
    */
	//d1elem = document.querySelector(d1);
	//console.log(d1elem.classList);
    d1val = $(d1)[0].value;
    d2val = $(d2)[0].value;
    //console.log(d2val);
    if(d1val != undefined && d2val != undefined) {
    	d1date = toDate(d1val);
    	d2date = toDate(d2val);
    	if (d1date > d2date) {
	        //d1elem.classList.add('error');
    		//event.preventDefault();
    		alert(error_msg);
    		$(d1).addClass('error');
    		$(d2).addClass('error');
    		$(d2).focus();
    		return false;
    	}
    }
    $(d1).removeClass('error');
    $(d2).removeClass('error');
    return true;
}



/*Je ne saurais expliquer pourquoi mais cela ne fonctionne pas si les modifications sont faites directement dans ce fichier


//changement d'emplacement de la fonction qui étais dans script car apparement je ne peux pas la modifier 
//si je vais modifier directement le fichier script.js - permet d'afficher les infos administrative
//après checkbox checked
function changeAdminEdit() {
<<<<<<< HEAD
	if (document.getElementById('eotp').disabled) {
		document.getElementById('eotp').disabled=false;
		document.getElementById('numero-commande').disabled=false;
		document.getElementById('code-comptable').disabled=false;
		document.getElementById('numero-inventaire-organisme').disabled=false;
		document.getElementById('numero-inventaire-old').disabled=false;
		document.getElementById('num_labo').disabled=false;
=======
if (document.getElementById('eotp').disabled) {
	document.getElementById('eotp').disabled=false;
	document.getElementById('numero-commande').disabled=false;
	document.getElementById('code-comptable').disabled=false;
	document.getElementById('numero-inventaire-organisme').disabled=false;
	document.getElementById('numero-inventaire-old').disabled=false;
}
else {
	document.getElementById('eotp').disabled=true;
	document.getElementById('numero-commande').disabled=true;
	document.getElementById('code-comptable').disabled=true;
	document.getElementById('numero-inventaire-organisme').disabled=true;
	document.getElementById('numero-inventaire-old').disabled=true;	
}
}

//Permet d'afficher les infos administrative plus après checkbox checked
function changeAdminEditPlus() {
	if (document.getElementById('nom-createur').disabled) {
		document.getElementById('nom-createur').disabled=false;
		document.getElementById('nom-modificateur').disabled=false;
		document.getElementById('created').disabled=false;
		document.getElementById('modified').disabled=false;
>>>>>>> branch 'dev' of https://gitlab.irap.omp.eu/epallier/labinvent.git
	}
	else {
<<<<<<< HEAD
		document.getElementById('eotp').disabled=true;
		document.getElementById('numero-commande').disabled=true;
		document.getElementById('code-comptable').disabled=true;
		document.getElementById('numero-inventaire-organisme').disabled=true;
		document.getElementById('numero-inventaire-old').disabled=true;
		document.getElementById('num_labo').disabled=true; 
=======
		document.getElementById('nom-createur').disabled=true;
		document.getElementById('nom-modificateur').disabled=true;
		document.getElementById('created').disabled=true;
		document.getElementById('modified').disabled=true;
>>>>>>> branch 'dev' of https://gitlab.irap.omp.eu/epallier/labinvent.git
	}
}

 
 
 Récupérer les id en début de fonction permet de rendre la fonction plus lisible
 Mais plus longue aussi 
  
 function changeAdminEdit() {
	var idCheck =document.getElementById('adminEdit');
	var idEotp =document.getElementById('eotp');
	var idCommande=document.getElementById('numero-commande');
	var idComptable = document.getElementById('code-comptable');
	var idOrganisme = document.getElementById('numero-inventaire-organisme');
	var idOld =	document.getElementById('numero-inventaire-old');
	if (idEotp.disabled) {
		idEotp.disabled=false;
		idCommande.disabled=false;
		idComptable.disabled=false;
		idOrganisme.disabled=false;
		idOld.disabled=false;
	}
	else {
		idEotp.disabled=true;
		idCommande.disabled=true;
		idComptable.disabled=true;
		idOrganisme.disabled=true;
		idOld.disabled=true;	
	}
}*/