Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1428 Rev 1461
Line 148... Line 148...
148
 
148
 
149
function traiterRetourNomsSci(data) {
149
function traiterRetourNomsSci(data) {
150
	var suggestions = [];  
150
	var suggestions = [];  
151
	if (data.resultat != undefined) {
151
	if (data.resultat != undefined) {
152
		$.each(data.resultat, function(i, val) {
-
 
153
			val.nn = i;
152
		$.each(data.resultat, function(i, val) {
154
			var nom = {label : '', value : '', retenu : false};
153
			var nom = {label : '', value : '', retenu : false};
155
			if (suggestions.length >= AUTOCOMPLETION_ELEMENTS_NBRE) {
154
			if (suggestions.length >= AUTOCOMPLETION_ELEMENTS_NBRE) {
156
				nom.label = "...";
155
				nom.label = "...";
157
				nom.value = $('#nom').val();
156
				nom.value = $('#nom').val();
158
				suggestions.push(nom);
157
				suggestions.push(nom);
159
				return false;
158
				return false;
160
			} else {
159
			} else {
161
				nom.label = val.nom_sci_complet;
160
				nom.label = val.nom_sci_complet;
162
				nom.value = val.nom_sci;
161
				nom.value = val.nom_sci;
163
				nom.nn = val.nn;
162
				nom.nn = val.num_nom;
164
				if(val.retenu != "absent") {
163
				if(val.retenu != "absent") {
165
					nom.retenu = (val.retenu == 'true') ? true : false;
164
					nom.retenu = (val.retenu == 'true') ? true : false;
166
					suggestions.push(nom);
165
					suggestions.push(nom);
167
				}
166
				}
Line 260... Line 259...
260
 
259
 
261
function getUrlAutocompletionNomsSci(requete) {
260
function getUrlAutocompletionNomsSci(requete) {
262
	var url = getUrlAutocompletion(URL_SERVICE_AUTOCOMPLETION_NOM_SCI, requete, 'min')+
261
	var url = getUrlAutocompletion(URL_SERVICE_AUTOCOMPLETION_NOM_SCI, requete, 'min')+
263
		"&ns.structure=au,an"+
262
		"&ns.structure=au,an"+
264
		// tri "à la mode du CeL"
263
		// tri "à la mode du CeL"
-
 
264
		"&retour.tri=alpharet"+
265
		"&retour.tri=alpharet";
265
		'&retour.structure=liste';
266
	return url;
266
	return url;
Line 267... Line 267...
267
}
267
}
268
 
268