2943 |
delphine |
1 |
// Héritage
|
|
|
2 |
WidgetSaisieArbresRemarquables = function() {
|
|
|
3 |
this.serviceAltitudeUrl = null;
|
|
|
4 |
this.taxons = {};
|
|
|
5 |
}
|
|
|
6 |
WidgetSaisieArbresRemarquables.prototype = new WidgetSaisie();
|
|
|
7 |
|
|
|
8 |
WidgetSaisieArbresRemarquables.prototype.initEvts = function() {
|
|
|
9 |
// super()
|
|
|
10 |
WidgetSaisie.prototype.initEvts.call(this);
|
|
|
11 |
|
|
|
12 |
var lthis = this;
|
|
|
13 |
$('body').on('click', '.fermer', function(event) {
|
|
|
14 |
event.preventDefault();
|
|
|
15 |
lthis.basculerOuvertureFermetureCadre($(this).find('.icone'));
|
|
|
16 |
});
|
|
|
17 |
|
2944 |
mathias |
18 |
// multi cases à cocher dans un menu déroulant : clic confortable !
|
|
|
19 |
$('.btn-group.dropdown ul li input[type="checkbox"], .btn-group.dropdown ul li label').on('click', function(event) {
|
|
|
20 |
$(this).valid();
|
|
|
21 |
event.stopPropagation();
|
|
|
22 |
});
|
|
|
23 |
|
2943 |
delphine |
24 |
this.surChangementTaxonListe();// Vérif lors du chargement de la page
|
|
|
25 |
$('#taxon-liste').on('change', this.surChangementTaxonListe.bind(this));
|
|
|
26 |
this.surChangementSituation();// Vérif lors du chargement de la page
|
2944 |
mathias |
27 |
$('#situation-autre').on('change', this.surChangementSituation.bind(this));
|
2943 |
delphine |
28 |
this.surChangementEsthetique();// Vérif lors du chargement de la page
|
2944 |
mathias |
29 |
$('#esthetique-autre').on('change', this.surChangementEsthetique.bind(this));
|
|
|
30 |
this.surChangementRemarquable();// Vérif lors du chargement de la page
|
|
|
31 |
$('.cb-remarquable').on('change', this.surChangementRemarquable.bind(this));
|
2943 |
delphine |
32 |
|
|
|
33 |
// Gestion des obs
|
|
|
34 |
this.surChangementNbreObs();
|
|
|
35 |
};
|
|
|
36 |
|
|
|
37 |
WidgetSaisieArbresRemarquables.prototype.focusChampFormulaire = function() {
|
|
|
38 |
$("#carte-recherche").focus();
|
|
|
39 |
};
|
|
|
40 |
|
|
|
41 |
WidgetSaisieArbresRemarquables.prototype.mettreAJourMarkerPosition = function(latLng) {
|
|
|
42 |
this.trouverCommune(latLng);
|
|
|
43 |
this.trouverAltitude(latLng);
|
|
|
44 |
|
|
|
45 |
var lat = latLng.lat().toFixed(5),
|
|
|
46 |
lng = latLng.lng().toFixed(5);
|
|
|
47 |
this.remplirChampLatitude(lat);
|
|
|
48 |
this.remplirChampLongitude(lng);
|
|
|
49 |
this.remplirChampsLambert93(lat, lng);
|
|
|
50 |
};
|
|
|
51 |
|
|
|
52 |
proj4.defs([
|
|
|
53 |
['EPSG:4326', '+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs'],
|
|
|
54 |
['EPSG:2154', '+title=RGF93 / Lambert-93 +proj=lcc +lat_1=49 +lat_2=44 +lat_0=46.5 +lon_0=3 +x_0=700000 +y_0=6600000 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs']
|
|
|
55 |
]);
|
|
|
56 |
WidgetSaisieArbresRemarquables.prototype.remplirChampsLambert93 = function(lat, lng) {
|
|
|
57 |
// Prendre en compte l'initialisation des projections
|
|
|
58 |
var coordinate = {x: lng,y: lat};
|
|
|
59 |
proj4(proj4.defs('EPSG:4326'), proj4.defs('EPSG:2154')).forward(coordinate);
|
|
|
60 |
$('#l93-x').val(coordinate.x.toFixed(0));
|
|
|
61 |
$('#l93-y').val(coordinate.y.toFixed(0));
|
|
|
62 |
};
|
|
|
63 |
|
|
|
64 |
WidgetSaisieArbresRemarquables.prototype.trouverAltitude = function(pos) {
|
|
|
65 |
var url_service = this.serviceAltitudeUrl,
|
|
|
66 |
urlAltFormatee = url_service.replace('{lat}', pos.lat()).replace('{lon}', pos.lng());
|
|
|
67 |
var lthis = this;
|
|
|
68 |
$.ajax({
|
|
|
69 |
url: urlAltFormatee,
|
|
|
70 |
type: 'GET',
|
|
|
71 |
dataType: 'jsonp',
|
|
|
72 |
beforeSend : function() {
|
|
|
73 |
$('#altitude').empty();
|
|
|
74 |
$('#dialogue-erreur .alert-txt').empty();
|
|
|
75 |
},
|
|
|
76 |
success : function(data, textStatus, jqXHR) {
|
|
|
77 |
$('#altitude').empty().append(data.altitude);
|
|
|
78 |
$('#marqueur-altitude').data('altitude', data.altitude);
|
|
|
79 |
},
|
|
|
80 |
statusCode : {
|
|
|
81 |
500 : function(jqXHR, textStatus, errorThrown) {
|
|
|
82 |
if (lthis.debug) {
|
|
|
83 |
$('#dialogue-erreur .alert-txt').append('<p id="msg">Un problème est survenu lors de l\'appel au service fournissant l\'altitude.</p>');
|
|
|
84 |
reponse = jQuery.parseJSON(jqXHR.responseText);
|
|
|
85 |
var erreurMsg = '';
|
|
|
86 |
if (reponse != null) {
|
|
|
87 |
$.each(reponse, function (cle, valeur) {
|
|
|
88 |
erreurMsg += valeur + '<br />';
|
|
|
89 |
});
|
|
|
90 |
}
|
|
|
91 |
|
|
|
92 |
$('#dialogue-erreur .alert-txt').append('<p class="msg-erreur">Erreur 500 : '+errorThrown+"<br />"+erreurMsg+'</p>');
|
|
|
93 |
}
|
|
|
94 |
}
|
|
|
95 |
},
|
|
|
96 |
error : function(jqXHR, textStatus, errorThrown) {
|
|
|
97 |
if (lthis.debug) {
|
|
|
98 |
$("#dialogue-erreur .alert-txt").append('<p class="msg">Une erreur Ajax est survenue lors de l\'appel au service fournissant l\'altitude.</p>');
|
|
|
99 |
reponse = jQuery.parseJSON(jqXHR.responseText);
|
|
|
100 |
var erreurMsg = '';
|
|
|
101 |
if (reponse != null) {
|
|
|
102 |
$.each(reponse, function (cle, valeur) {
|
|
|
103 |
erreurMsg += valeur + '<br />';
|
|
|
104 |
});
|
|
|
105 |
}
|
|
|
106 |
|
|
|
107 |
$('#dialogue-erreur .alert-txt').append('<p class="msg-erreur">Erreur Ajax : '+errorThrown+' (type : '+textStatus+') <br />'+erreurMsg+'</p>');
|
|
|
108 |
}
|
|
|
109 |
},
|
|
|
110 |
complete : function(jqXHR, textStatus) {
|
|
|
111 |
var debugMsg = extraireEnteteDebug(jqXHR);
|
|
|
112 |
if (debugMsg != '') {
|
|
|
113 |
if (lthis.debug) {
|
|
|
114 |
$('#dialogue-erreur .alert-txt').append('<pre class="msg-debug msg">Débogage : '+debugMsg+'</pre>');
|
|
|
115 |
}
|
|
|
116 |
}
|
|
|
117 |
if ($('#dialogue-erreur .msg').length > 0) {
|
|
|
118 |
$('#dialogue-erreur').show();
|
|
|
119 |
}
|
|
|
120 |
}
|
|
|
121 |
});
|
|
|
122 |
};
|
|
|
123 |
|
|
|
124 |
WidgetSaisieArbresRemarquables.prototype.surChangementTaxonListe = function() {
|
|
|
125 |
if ($('#taxon-liste').val() === '?') {
|
|
|
126 |
$('#taxon-input-groupe').removeClass('hidden');
|
|
|
127 |
$('#taxon').valid();
|
|
|
128 |
} else {
|
|
|
129 |
$('#taxon-input-groupe').addClass('hidden');
|
|
|
130 |
}
|
|
|
131 |
};
|
|
|
132 |
|
|
|
133 |
WidgetSaisieArbresRemarquables.prototype.surChangementEsthetique = function() {
|
2944 |
mathias |
134 |
var cochee = $('#esthetique-autre').prop("checked");
|
|
|
135 |
if (cochee) {
|
|
|
136 |
$('#autre-esthetique-id').removeClass('hidden');
|
2943 |
delphine |
137 |
} else {
|
2944 |
mathias |
138 |
$('#autre-esthetique-id').addClass('hidden');
|
2943 |
delphine |
139 |
}
|
|
|
140 |
};
|
|
|
141 |
|
|
|
142 |
WidgetSaisieArbresRemarquables.prototype.surChangementSituation = function() {
|
2944 |
mathias |
143 |
var cochee = $('#situation-autre').prop("checked");
|
|
|
144 |
if (cochee) {
|
2943 |
delphine |
145 |
$('#autre-situation-id').removeClass('hidden');
|
|
|
146 |
} else {
|
|
|
147 |
$('#autre-situation-id').addClass('hidden');
|
|
|
148 |
}
|
|
|
149 |
};
|
|
|
150 |
|
2944 |
mathias |
151 |
// Activation de la saisie si on clique sur un type de champ
|
|
|
152 |
WidgetSaisieArbresRemarquables.prototype.surChangementRemarquable = function() {
|
|
|
153 |
$('.cb-remarquable').each(function() {
|
|
|
154 |
var id = $(this).prop('id'),
|
|
|
155 |
cochee = $(this).prop("checked"),
|
|
|
156 |
idCommentaire = id + '-commentaire',
|
|
|
157 |
champCommentaire = $('#' + idCommentaire);
|
|
|
158 |
if (cochee) {
|
|
|
159 |
champCommentaire.removeClass('hidden');
|
|
|
160 |
} else {
|
|
|
161 |
champCommentaire.addClass('hidden');
|
|
|
162 |
}
|
|
|
163 |
});
|
|
|
164 |
};
|
|
|
165 |
|
2943 |
delphine |
166 |
WidgetSaisieArbresRemarquables.prototype.configurerFormValidator = function() {
|
|
|
167 |
$.validator.addMethod(
|
|
|
168 |
'dateCel',
|
|
|
169 |
function (value, element) {
|
|
|
170 |
return value == '' || (/^[0-9]{2}[-\/][0-9]{2}[-\/][0-9]{4}$/.test(value));
|
|
|
171 |
},
|
|
|
172 |
'Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.');
|
|
|
173 |
|
|
|
174 |
$.validator.addMethod(
|
|
|
175 |
'autreSp',
|
|
|
176 |
function (value, element) {
|
|
|
177 |
var taxonListe = $('#taxon-liste').val();
|
|
|
178 |
return taxonListe !== '?' || (taxonListe === '?' && value != '');
|
|
|
179 |
},
|
|
|
180 |
"Veuillez sélectionner une espèce ou une indication sur la plante.");
|
|
|
181 |
|
|
|
182 |
// Modification des méthodes par défaut de Jquery Validation pour Boostrap 3
|
|
|
183 |
$.validator.setDefaults({
|
|
|
184 |
ignore: [],// Forcer Jquery Validate à examiner les éléments en "display:none;"
|
|
|
185 |
highlight: function(element) {
|
|
|
186 |
$(element).closest('.form-group').addClass('has-error');
|
|
|
187 |
},
|
|
|
188 |
unhighlight: function(element) {
|
|
|
189 |
$(element).closest('.form-group').removeClass('has-error');
|
|
|
190 |
},
|
|
|
191 |
success: function(element) {
|
|
|
192 |
$(element).closest('.form-group').removeClass('has-error').addClass('has-success');
|
|
|
193 |
|
|
|
194 |
if ($(element).attr('id') == 'taxon' && $('#taxon').val() != '') {
|
|
|
195 |
// Si le taxon n'est pas lié au référentiel, on vide le data associé
|
|
|
196 |
if ($('#taxon').data('value') != $('#taxon').val()) {
|
|
|
197 |
$('#taxon').data('numNomSel', '');
|
|
|
198 |
$('#taxon').data('nomRet', '');
|
|
|
199 |
$('#taxon').data('numNomRet', '');
|
|
|
200 |
$('#taxon').data('nt', '');
|
|
|
201 |
$('#taxon').data('famille', '');
|
|
|
202 |
}
|
|
|
203 |
}
|
|
|
204 |
},
|
|
|
205 |
errorElement: 'span',
|
|
|
206 |
errorClass: 'help-block',
|
|
|
207 |
errorPlacement: function(error, element) {
|
|
|
208 |
//console.log(element.attr('name') +'-'+ element.parent('.input-group').length);
|
|
|
209 |
if (element.parent('.input-group').length) {
|
|
|
210 |
error.insertAfter(element.parent());
|
|
|
211 |
} else {
|
|
|
212 |
error.insertAfter(element);
|
|
|
213 |
}
|
|
|
214 |
}
|
|
|
215 |
});
|
|
|
216 |
};
|
|
|
217 |
|
2947 |
mathias |
218 |
// surcharge fonction validerFormulaire()
|
|
|
219 |
WidgetSaisieArbresRemarquables.prototype.validerFormulaire = function() {
|
|
|
220 |
observateur = $("#form-observateur").valid();
|
|
|
221 |
situation = $("#form-situation").valid();
|
|
|
222 |
criteres = $("#form-criteres").valid();
|
2948 |
delphine |
223 |
remarquable = $("#form-remarquable").valid();
|
2947 |
mathias |
224 |
station = $("#form-station").valid();
|
|
|
225 |
obs = $("#form-obs").valid();
|
2948 |
delphine |
226 |
return (observateur && station && obs && criteres && situation &&remarquable);
|
2947 |
mathias |
227 |
};
|
|
|
228 |
|
2943 |
delphine |
229 |
WidgetSaisieArbresRemarquables.prototype.definirReglesFormValidator = function() {
|
|
|
230 |
$('#form-observateur').validate({
|
|
|
231 |
rules: {
|
|
|
232 |
courriel : {
|
|
|
233 |
required : true,
|
|
|
234 |
email : true},
|
|
|
235 |
courriel_confirmation : {
|
|
|
236 |
required : true,
|
|
|
237 |
equalTo: '#courriel'}
|
|
|
238 |
}
|
|
|
239 |
});
|
|
|
240 |
$('#form-station').validate({
|
|
|
241 |
rules: {
|
2945 |
delphine |
242 |
date: {
|
|
|
243 |
required: true,
|
|
|
244 |
'dateCel' : true},
|
2943 |
delphine |
245 |
latitude : {
|
|
|
246 |
range: [-90, 90],
|
|
|
247 |
required: true},
|
|
|
248 |
longitude : {
|
|
|
249 |
range: [-180, 180],
|
|
|
250 |
required: true},
|
|
|
251 |
'l93-x': 'required',
|
|
|
252 |
'l93-y': 'required'
|
|
|
253 |
}
|
|
|
254 |
});
|
|
|
255 |
$('#form-obs').validate({
|
|
|
256 |
rules: {
|
|
|
257 |
'taxon-liste': {required: true},
|
|
|
258 |
taxon: {autreSp: true},
|
|
|
259 |
certitude: 'required',
|
2945 |
delphine |
260 |
arbreRemarquableClasseCirconference: 'required',
|
|
|
261 |
arbreRemarquableSante: 'required',
|
|
|
262 |
arbreRemarquablePresenceCavite: 'required'
|
2943 |
delphine |
263 |
}
|
|
|
264 |
});
|
2947 |
mathias |
265 |
$('#form-situation').validate({
|
|
|
266 |
rules: {
|
2948 |
delphine |
267 |
"situation-ch" : {
|
2947 |
mathias |
268 |
required : true,
|
|
|
269 |
minlength : 1
|
|
|
270 |
}
|
|
|
271 |
},
|
|
|
272 |
errorPlacement: function(error, element) {
|
2948 |
delphine |
273 |
error.insertBefore(element.parent());
|
2947 |
mathias |
274 |
error.insertAfter(element.closest('div.btn-group.dropdown'));
|
|
|
275 |
}
|
|
|
276 |
});
|
2945 |
delphine |
277 |
$('#form-criteres').validate({
|
|
|
278 |
rules: {
|
|
|
279 |
arbreRemarquableRemarquabilite: 'required'
|
|
|
280 |
}
|
|
|
281 |
});
|
2948 |
delphine |
282 |
$('#form-remarquable').validate({
|
|
|
283 |
rules: {
|
|
|
284 |
"remarquable-ch" : {
|
|
|
285 |
required : true,
|
|
|
286 |
minlength : 1
|
|
|
287 |
}
|
|
|
288 |
},
|
|
|
289 |
errorPlacement: function(error, element) {
|
|
|
290 |
error.insertBefore(element.parent());
|
|
|
291 |
error.insertAfter(element.closest('div.control-group'));
|
|
|
292 |
}
|
|
|
293 |
});
|
2943 |
delphine |
294 |
};
|
|
|
295 |
|
|
|
296 |
|
|
|
297 |
|
|
|
298 |
WidgetSaisieArbresRemarquables.prototype.basculerOuvertureFermetureCadre = function(element) {
|
|
|
299 |
if (element.hasClass('glyphicon-plus-sign')) {
|
|
|
300 |
element.removeClass('glyphicon-plus-sign').addClass('glyphicon-minus-sign');
|
|
|
301 |
} else {
|
|
|
302 |
element.removeClass('glyphicon-minus-sign').addClass('glyphicon-plus-sign');
|
|
|
303 |
}
|
|
|
304 |
};
|
|
|
305 |
|
|
|
306 |
WidgetSaisieArbresRemarquables.prototype.basculerAffichageCoord = function() {
|
|
|
307 |
var textActuel = $(this).text(),
|
|
|
308 |
textARemplacer = $(this).data('toggle-text');
|
|
|
309 |
$(this).text(textARemplacer).data('toggle-text', textActuel);
|
|
|
310 |
|
|
|
311 |
if ($(this).hasClass('cacher-coord')) {
|
|
|
312 |
$(this).removeClass('cacher-coord').addClass('afficher-coord');
|
|
|
313 |
$('#coordonnees-geo').addClass('hidden');
|
|
|
314 |
} else {
|
|
|
315 |
$(this).removeClass('afficher-coord').addClass('cacher-coord');
|
|
|
316 |
$('#coordonnees-geo').removeClass('hidden');
|
|
|
317 |
}
|
|
|
318 |
|
|
|
319 |
return false;
|
|
|
320 |
};
|
|
|
321 |
|
|
|
322 |
WidgetSaisieArbresRemarquables.prototype.afficherObs = function() {
|
|
|
323 |
var numNomSel = ($('#taxon-liste').val() == '?') ? $('#taxon').data('numNomSel') : $('#taxon-liste').val(),
|
|
|
324 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
|
|
325 |
taxon = ($('#taxon-liste').val() == '?') ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
|
|
326 |
referentiel = (numNomSel == undefined) ? '' : '['+ this.nomSciReferentiel +']',
|
|
|
327 |
commune = $('#commune-nom').text(),
|
|
|
328 |
codeInsee = $('#commune-code-insee').text(),
|
|
|
329 |
lat = $('input[name="latitude"]').val(),
|
|
|
330 |
lng = $('input[name="longitude"]').val(),
|
|
|
331 |
date = $('#date').val(),
|
2945 |
delphine |
332 |
certitude = $('#certitude').val(),
|
|
|
333 |
circonference = $('#circonference').val(),
|
|
|
334 |
hauteur = $('#hauteurNbr').val(),
|
|
|
335 |
hauteurPrec = ($('#hauteurPrec').val() != "" ? ' (' + $('#hauteurPrec').val() + ')' : ''),
|
|
|
336 |
age = $('#age').val(),
|
|
|
337 |
sante = $('#sante').val(),
|
|
|
338 |
cavites = $('#cavites').val(),
|
|
|
339 |
historique = $('#historique').val(),
|
2948 |
delphine |
340 |
notes = (nomSpecial ? this.taxons[numNomSel]['nom_fr'] + ".<br />" : '') + $('#notes').val(),
|
|
|
341 |
remarquabilite= $('#remarquabilite').val();
|
2943 |
delphine |
342 |
|
2948 |
delphine |
343 |
var situation = [];
|
|
|
344 |
// récupération des cases à cocher multiples dans un tableau pour l'abondance
|
|
|
345 |
$('input[name="situation-ch"]:checked').each(function() {
|
|
|
346 |
situation.push(' '+$(this).val());
|
|
|
347 |
});
|
|
|
348 |
var remarquable = [];
|
|
|
349 |
// récupération des cases à cocher multiples dans un tableau pour l'abondance
|
|
|
350 |
$('input[name="remarquable-ch"]:checked').each(function() {
|
|
|
351 |
remarquable.push(' '+$(this).val());
|
|
|
352 |
});
|
|
|
353 |
var esthetique = [];
|
|
|
354 |
// récupération des cases à cocher multiples dans un tableau pour l'abondance
|
|
|
355 |
$('input[name="esthetique-ch"]:checked').each(function() {
|
|
|
356 |
esthetique.push(' '+$(this).val());
|
|
|
357 |
});
|
2943 |
delphine |
358 |
|
|
|
359 |
$('#liste-obs').prepend(
|
|
|
360 |
'<div id="obs'+this.obsNbre+'" class="obs obs'+this.obsNbre+'">'+
|
|
|
361 |
'<div class="well">'+
|
|
|
362 |
'<div class="obs-action pull-right has-tooltip" data-placement="bottom" '+
|
|
|
363 |
'title="Supprimer cette observation de la liste à transmettre">'+
|
|
|
364 |
'<button class="btn btn-danger supprimer-obs" value="'+this.obsNbre+'" title="'+this.obsNbre+'">'+
|
|
|
365 |
'<span class="glyphicon glyphicon-trash icon-white"></i>'+
|
|
|
366 |
'</button>'+
|
|
|
367 |
'</div> '+
|
|
|
368 |
'<div class="row">'+
|
|
|
369 |
'<div class="col-md-2 obs-miniatures">'+
|
|
|
370 |
this.ajouterImgMiniatureAuTransfert()+
|
|
|
371 |
'</div>'+
|
|
|
372 |
'<div class="col-md-8">'+
|
|
|
373 |
'<ul class="list-unstyled obs-entete">'+
|
|
|
374 |
'<li>'+
|
|
|
375 |
'<span class="nom-sci">' + taxon + '</span> ' +
|
|
|
376 |
this.formaterNumNomSel(numNomSel)+
|
2945 |
delphine |
377 |
'<span class="referentiel-obs">' + referentiel +' ('+certitude+') </span>' +
|
2943 |
delphine |
378 |
' observé à ' +
|
|
|
379 |
'<span class="commune">' + commune + '</span> ' +
|
|
|
380 |
'(' + codeInsee + ') [' + lat +' / ' + lng + ']' +
|
|
|
381 |
' le ' +
|
|
|
382 |
'<span class="date">' + date + '</span>' +
|
|
|
383 |
'</li>' +
|
|
|
384 |
'</ul>'+
|
|
|
385 |
'<ul class="list-unstyled obs-details">'+
|
|
|
386 |
'<li>' +
|
2945 |
delphine |
387 |
'<span>Circonférence :</span> ' + circonference + ' ; ' +
|
|
|
388 |
'<span>Hauteur :</span> ' + hauteur + 'm'+ hauteurPrec+'; ' +
|
|
|
389 |
'<span>Âge :</span> ' + age + ' ; ' +
|
|
|
390 |
'<span>Santé :</span> ' + sante + ' ; ' +
|
2943 |
delphine |
391 |
'<span>Cavités :</span> ' + cavites + ' ; ' +
|
2948 |
delphine |
392 |
'<span>Situation :</span> ' + situation + ' ; ' +
|
2943 |
delphine |
393 |
'</li>' +
|
|
|
394 |
'<li>' +
|
2948 |
delphine |
395 |
'<span>Intérêt esthetique :</span> ' + esthetique + ' ' +
|
|
|
396 |
'<span>Intérêt historique :</span> ' + historique + ' ' +
|
|
|
397 |
'<span>Raison(s) remarquabilité :</span> ' + remarquable + ' ' +
|
|
|
398 |
'<span>Degré de remarquabilité :</span> ' + remarquabilite + ' ' +
|
2943 |
delphine |
399 |
'</li>' +
|
|
|
400 |
'<li>' +
|
2945 |
delphine |
401 |
'<span>Notes :</span> ' + notes +
|
2943 |
delphine |
402 |
'</li>'+
|
|
|
403 |
'</ul>'+
|
|
|
404 |
'</div>'+
|
|
|
405 |
'</div>'+
|
|
|
406 |
'</div>'+
|
|
|
407 |
'</div>');
|
|
|
408 |
};
|
|
|
409 |
|
|
|
410 |
WidgetSaisieArbresRemarquables.prototype.formaterNumNomSel = function(numNomSel) {
|
|
|
411 |
var nn = '';
|
|
|
412 |
if (numNomSel == undefined) {
|
|
|
413 |
nn = '<span class="alert-error">[non lié au référentiel]</span>';
|
|
|
414 |
} else {
|
|
|
415 |
nn = '<span class="nn">[nn'+numNomSel+']</span>';
|
|
|
416 |
}
|
|
|
417 |
return nn;
|
|
|
418 |
};
|
|
|
419 |
|
|
|
420 |
WidgetSaisieArbresRemarquables.prototype.getTextOptionSelectionne = function(id) {
|
|
|
421 |
return ($('#' + id).val() != undefined ? $('#' + id + ' option:selected').text() : '');
|
|
|
422 |
};
|
|
|
423 |
|
|
|
424 |
// @TODO harmoniser (altitude)
|
|
|
425 |
WidgetSaisieArbresRemarquables.prototype.stockerObsData = function() {
|
|
|
426 |
var nomHorsListe = $('#taxon-liste').val() == '?' ? true : false;
|
|
|
427 |
nomSpecial = $('#taxon-liste option:selected').hasClass('nom-special'),
|
|
|
428 |
numNomSel = nomHorsListe ? $('#taxon').data('numNomSel') : $('#taxon-liste').val(),
|
|
|
429 |
nomSel = nomHorsListe ? $('#taxon').val() : $('#taxon-liste option:selected').data('nom-a-sauver'),
|
|
|
430 |
nomRet = nomHorsListe ? $('#taxon').data('nomRet') : this.taxons[numNomSel]['nom_ret'],
|
|
|
431 |
numNomRet = nomHorsListe ? $('#taxon').data('numNomRet') : this.taxons[numNomSel]['num_nom_ret'],
|
|
|
432 |
numTaxon = nomHorsListe ? $('#taxon').data('nt') : this.taxons[numNomSel]['num_taxon'],
|
|
|
433 |
famille = nomHorsListe ? $('#taxon').data('famille') : this.taxons[numNomSel]['famille'],
|
|
|
434 |
referentiel = (numNomSel == undefined) ? '' : this.nomSciReferentiel;
|
|
|
435 |
|
|
|
436 |
$('#liste-obs').data('obsId'+this.obsNbre, {
|
|
|
437 |
'date' : $('#date').val(),
|
|
|
438 |
'notes' : $('#notes').val(),
|
|
|
439 |
|
|
|
440 |
'nom_sel': nomSel,
|
|
|
441 |
'num_nom_sel': numNomSel,
|
|
|
442 |
'nom_ret': nomRet,
|
|
|
443 |
'num_nom_ret': numNomRet,
|
|
|
444 |
'num_taxon': numTaxon,
|
|
|
445 |
'famille': famille,
|
|
|
446 |
'referentiel': referentiel,
|
|
|
447 |
|
|
|
448 |
'latitude' : $('#latitude').val(),
|
|
|
449 |
'longitude' : $('#longitude').val(),
|
|
|
450 |
'commune_nom' : $('#commune-nom').text(),
|
|
|
451 |
'commune_code_insee' : $('#commune-code-insee').text(),
|
|
|
452 |
'altitude': $('#altitude').text(),
|
|
|
453 |
'lieudit': $('#lieudit').val(),
|
|
|
454 |
'certitude': $('#certitude').val(),
|
|
|
455 |
|
|
|
456 |
//Ajout des champs images
|
|
|
457 |
'image_nom' :this. getNomsImgsOriginales(),
|
|
|
458 |
|
|
|
459 |
// Ajout des champs étendus de l'obs
|
|
|
460 |
'obs_etendue': this.getObsChpEtendus()
|
|
|
461 |
});
|
|
|
462 |
};
|
|
|
463 |
|
2944 |
mathias |
464 |
/**
|
|
|
465 |
* Redéfinition pour les champs complexes
|
|
|
466 |
*/
|
|
|
467 |
WidgetSaisieArbresRemarquables.prototype.getObsChpEtendus = function() {
|
2948 |
delphine |
468 |
var champs = [],
|
|
|
469 |
situation = [],
|
|
|
470 |
esthetique = [],
|
|
|
471 |
remarquable = [];
|
2943 |
delphine |
472 |
|
2944 |
mathias |
473 |
$('.obs-chp-etendu').each(function() {
|
|
|
474 |
var valeur = $(this).val(),
|
|
|
475 |
cle = $(this).attr('name'),
|
|
|
476 |
label = $(this).data('label');
|
|
|
477 |
if (valeur != '') {
|
|
|
478 |
var chpEtendu = {cle: cle, label: label, valeur: valeur};
|
|
|
479 |
champs.push(chpEtendu);
|
|
|
480 |
}
|
|
|
481 |
});
|
2948 |
delphine |
482 |
|
2949 |
delphine |
483 |
$('input.cb-situation:checked').each(function() {
|
2948 |
delphine |
484 |
var valeur = $(this).val();
|
|
|
485 |
if (valeur == 'Autre') {
|
|
|
486 |
if ($('#autre-situation').val() != '') {
|
|
|
487 |
situation.push(valeur+' :'+$('#autre-situation').val());
|
|
|
488 |
} else {
|
|
|
489 |
situation.push(valeur);
|
|
|
490 |
}
|
|
|
491 |
} else if (valeur != '') {
|
|
|
492 |
situation.push(valeur);
|
|
|
493 |
}
|
|
|
494 |
});
|
|
|
495 |
var chpEtendu = {cle: 'arbreRemarquableSituation', label: 'contexte/situation', valeur: situation.join('; ')};
|
|
|
496 |
champs.push(chpEtendu);
|
|
|
497 |
|
2949 |
delphine |
498 |
$('input.cb-remarquable:checked').each(function() {
|
2948 |
delphine |
499 |
var valeur = $(this).val(),
|
|
|
500 |
comm = $(this).attr('id')+'-commentaire',
|
|
|
501 |
commid = $('#'+comm).val();
|
|
|
502 |
if (commid != '') {
|
|
|
503 |
remarquable.push(valeur+' :'+commid);
|
|
|
504 |
} else {
|
|
|
505 |
remarquable.push(valeur);
|
|
|
506 |
}
|
|
|
507 |
});
|
|
|
508 |
var chpEtendu = {cle: 'arbreRemarquableRemarquable', label: 'remarquable', valeur: remarquable.join('; ')};
|
|
|
509 |
champs.push(chpEtendu);
|
|
|
510 |
|
2949 |
delphine |
511 |
$('input.cb-esthetique:checked').each(function() {
|
2948 |
delphine |
512 |
var valeur = $(this).val();
|
|
|
513 |
console.log(valeur);
|
|
|
514 |
if (valeur == 'Autre') {
|
|
|
515 |
if ($('#autre-esthetique').val() != '') {
|
|
|
516 |
esthetique.push(valeur+' :'+$('#autre-esthetique').val());
|
|
|
517 |
} else {
|
|
|
518 |
esthetique.push(valeur);
|
|
|
519 |
}
|
|
|
520 |
} else if (valeur != '') {
|
|
|
521 |
esthetique.push(valeur);
|
|
|
522 |
}
|
|
|
523 |
});
|
|
|
524 |
var chpEtendu = {cle: 'arbreRemarquableEsthetique', label: 'Intérêt esthétique', valeur: esthetique.join('; ')};
|
|
|
525 |
champs.push(chpEtendu);
|
|
|
526 |
|
2944 |
mathias |
527 |
return champs;
|
|
|
528 |
};
|