Subversion Repositories eFlore/Applications.cel

Rev

Rev 2948 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2948 Rev 2949
Line 478... Line 478...
478
			var chpEtendu = {cle: cle, label: label, valeur: valeur};
478
			var chpEtendu = {cle: cle, label: label, valeur: valeur};
479
			champs.push(chpEtendu);
479
			champs.push(chpEtendu);
480
		}
480
		}
481
	});
481
	});
Line 482... Line 482...
482
	
482
	
483
	$('input.cb-situation').each(function() {
483
	$('input.cb-situation:checked').each(function() {
484
		var valeur = $(this).val();
484
		var valeur = $(this).val();
485
		if (valeur == 'Autre') {
485
		if (valeur == 'Autre') {
486
			if ($('#autre-situation').val() != '') {
486
			if ($('#autre-situation').val() != '') {
487
				situation.push(valeur+' :'+$('#autre-situation').val());
487
				situation.push(valeur+' :'+$('#autre-situation').val());
Line 493... Line 493...
493
		}
493
		}
494
	});
494
	});
495
	var chpEtendu = {cle: 'arbreRemarquableSituation', label: 'contexte/situation', valeur: situation.join('; ')};
495
	var chpEtendu = {cle: 'arbreRemarquableSituation', label: 'contexte/situation', valeur: situation.join('; ')};
496
	champs.push(chpEtendu);
496
	champs.push(chpEtendu);
Line 497... Line 497...
497
	
497
	
498
	$('input.cb-remarquable').each(function() {
498
	$('input.cb-remarquable:checked').each(function() {
499
		var valeur = $(this).val(),
499
		var valeur = $(this).val(),
500
			comm = $(this).attr('id')+'-commentaire',
500
			comm = $(this).attr('id')+'-commentaire',
501
			commid = $('#'+comm).val();
501
			commid = $('#'+comm).val();
502
		if (commid != '') {
502
		if (commid != '') {
Line 506... Line 506...
506
		}
506
		}
507
	});
507
	});
508
	var chpEtendu = {cle: 'arbreRemarquableRemarquable', label: 'remarquable', valeur: remarquable.join('; ')};
508
	var chpEtendu = {cle: 'arbreRemarquableRemarquable', label: 'remarquable', valeur: remarquable.join('; ')};
509
	champs.push(chpEtendu);
509
	champs.push(chpEtendu);
Line 510... Line 510...
510
	
510
	
511
	$('input.cb-esthetique').each(function() {
511
	$('input.cb-esthetique:checked').each(function() {
512
		var valeur = $(this).val();
512
		var valeur = $(this).val();
513
		console.log(valeur);
513
		console.log(valeur);
514
		if (valeur == 'Autre') {
514
		if (valeur == 'Autre') {
515
			if ($('#autre-esthetique').val() != '') {
515
			if ($('#autre-esthetique').val() != '') {