Subversion Repositories eFlore/Applications.cel

Rev

Rev 1226 | Rev 1235 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1226 Rev 1231
Line 646... Line 646...
646
					
646
					
647
					$("#dialogue-obs-transaction").show();
647
					$("#dialogue-obs-transaction").show();
648
					$("#liste-obs").removeData();
648
					$("#liste-obs").removeData();
649
					$('.obs').remove();
649
					$('.obs').remove();
-
 
650
					obsNumero = 0;
650
					obsNumero = 0;
651
					initialiserNbreObs();
651
				}
652
				}
652
			});
653
			});
653
		}
654
		}
654
		return false;
655
		return false;
Line 676... Line 677...
676
	var obsId = $(this).val();
677
	var obsId = $(this).val();
677
	// Problème avec IE 6 et 7
678
	// Problème avec IE 6 et 7
678
	if (obsId == "Supprimer") {
679
	if (obsId == "Supprimer") {
679
		obsId = $(this).attr("title");
680
		obsId = $(this).attr("title");
680
	}
681
	}
681
	console.log('ici'+obsId);
-
 
682
	obsNbre = obsNbre - 1;
682
	obsNbre = obsNbre - 1;
683
	$(".obs-nbre").text(obsNbre);
683
	$(".obs-nbre").text(obsNbre);
Line 684... Line 684...
684
	
684
	
685
	$('.obs'+obsId).remove();
685
	$('.obs'+obsId).remove();
686
	$("#liste-obs").removeData('obsId'+obsId);
686
	$("#liste-obs").removeData('obsId'+obsId);
Line -... Line 687...
-
 
687
}
-
 
688
 
-
 
689
function initialiserNbreObs() {
-
 
690
	obsNbre = 0;
-
 
691
	$(".obs-nbre").text(obsNbre);
687
}
692
}
688
 
693
 
689
function ajouterImgMiniatureAuTransfert() {
694
function ajouterImgMiniatureAuTransfert() {
690
	var miniature = '';
695
	var miniature = '';
691
	if ($("#miniature img").length == 1) {
696
	if ($("#miniature img").length == 1) {
Line 733... Line 738...
733
function traiterRetourNomsSci(data) {
738
function traiterRetourNomsSci(data) {
734
	var suggestions = [];  
739
	var suggestions = [];  
735
	if (data.resultat != undefined) {
740
	if (data.resultat != undefined) {
736
		$.each(data.resultat, function(i, val) {
741
		$.each(data.resultat, function(i, val) {
737
			val.nn = i;
742
			val.nn = i;
738
			console.log(val);
-
 
739
			var nom = {label : '', value : '', nt : '', nomSel : '', nomSelComplet : '', numNomSel : '',  
743
			var nom = {label : '', value : '', nt : '', nomSel : '', nomSelComplet : '', numNomSel : '',  
740
				nomRet : '', numNomRet : '', famille : '', retenu : false
744
				nomRet : '', numNomRet : '', famille : '', retenu : false
741
			};
745
			};
742
			if (suggestions.length >= AUTOCOMPLETION_ELEMENTS_NBRE) {
746
			if (suggestions.length >= AUTOCOMPLETION_ELEMENTS_NBRE) {
743
				nom.label = "...";
747
				nom.label = "...";
744
				nom.value = $('#taxon').val();
748
				nom.value = $('#taxon').val();
745
				suggestions.push(nom);
749
				suggestions.push(nom);
746
				return false;
750
				return false;
747
			} else {
751
			} else {
748
				nom.label = val.nom_sci;
752
				nom.label = val.nom_sci_complet;
749
				nom.value = val.nom_sci;
753
				nom.value = val.nom_sci_complet;
750
				nom.nt = val.num_taxonomique;
754
				nom.nt = val.num_taxonomique;
751
				nom.nomSel = val.nom_sci;
755
				nom.nomSel = val.nom_sci;
752
				nom.nomSelComplet = val.nom_sci_complet;
756
				nom.nomSelComplet = val.nom_sci_complet;
753
				nom.numNomSel = val.nn;
757
				nom.numNomSel = val.nn;
754
				nom.nomRet = val["nom_retenu.libelle"];
758
				nom.nomRet = val["nom_retenu.libelle"];
755
				nom.numNomRet = val["nom_retenu.id"];
759
				nom.numNomRet = val["nom_retenu.id"];
756
				nom.famille = val["famille.libelle"];
760
				nom.famille = val.famille;
757
				nom.retenu = (val.retenu == 'false') ? false : true;
761
				nom.retenu = (val.retenu == 'false') ? false : true;
Line 758... Line 762...
758
				
762
				
759
				suggestions.push(nom);
763
				suggestions.push(nom);
760
			}			
764
			}