Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1708 Rev 1733
Line 294... Line 294...
294
		}
294
		}
295
		if (valorisation != null) {
295
		if (valorisation != null) {
296
			if (structureId != null) {
296
			if (structureId != null) {
297
				postDonnees += "&csv_id_structure=" + URL.encodeComponent(structureId);
297
				postDonnees += "&csv_id_structure=" + URL.encodeComponent(structureId);
298
			}
298
			}
299
			postDonnees += "&csv_mark_action=" + URL.encodeComponent(valorisation.getAction()) +
299
			postDonnees += "&csv_mark_action=" + (valorisation.getAction() != null ? valorisation.getAction() : "") +
300
				"&csv_truk_action=" + URL.encodeComponent(valorisation.getActionInfo()) +
300
			    "&csv_truk_action=" + URL.encodeComponent(valorisation.getActionInfo()) +
301
				"&csv_publication=" + URL.encodeComponent(valorisation.getPublication()) +
301
			    "&csv_publication=" + URL.encodeComponent(valorisation.getPublication()) +
302
				"&csv_collection_autre=" + URL.encodeComponent(valorisation.getCollectionAutre()) +
302
			    "&csv_collection_autre=" + URL.encodeComponent(valorisation.getCollectionAutre()) +
303
				"&csv_mark_action_future=" + URL.encodeComponent(valorisation.getActionFuture()) +
303
			    "&csv_mark_action_future=" + (valorisation.getActionFuture() != null ? valorisation.getActionFuture() : "") +
304
				"&csv_action_future=" + URL.encodeComponent(valorisation.getActionFutureInfo()) +
304
			    "&csv_action_future=" + URL.encodeComponent(valorisation.getActionFutureInfo()) +
305
				"&csv_mark_recherche=" + URL.encodeComponent(valorisation.getRecherche()) +
305
			    "&csv_mark_recherche=" + (valorisation.getRecherche() != null ? valorisation.getRecherche() : "") +
306
				"&csv_truk_recherche_provenance=" + URL.encodeComponent(valorisation.getRechercheProvenance()) +
306
			    "&csv_truk_recherche_provenance=" + URL.encodeComponent(valorisation.getRechercheProvenance()) +
307
				"&csv_truk_recherche_type=" + URL.encodeComponent(valorisation.getRechercheType()) +
307
			    "&csv_truk_recherche_type=" + URL.encodeComponent(valorisation.getRechercheType()) +
308
				"&csv_mark_acces_ss_motif=" + URL.encodeComponent(valorisation.getAccesSansMotif()) +
308
			    "&csv_mark_acces_ss_motif=" + (valorisation.getAccesSansMotif() != null ? valorisation.getAccesSansMotif() : "") +
309
				"&csv_acces_ss_motif=" + URL.encodeComponent(valorisation.getAccesSansMotifInfo()) +
309
			    "&csv_acces_ss_motif=" + URL.encodeComponent(valorisation.getAccesSansMotifInfo()) +
310
				"&csv_mark_visite_avec_motif=" + URL.encodeComponent(valorisation.getVisiteAvecMotif()) +
310
			    "&csv_mark_visite_avec_motif=" + (valorisation.getVisiteAvecMotif() != null ? valorisation.getVisiteAvecMotif() : "") +
311
				"&csv_visite_avec_motif=" + URL.encodeComponent(valorisation.getVisiteAvecMotifInfo());
311
			    "&csv_visite_avec_motif=" + URL.encodeComponent(valorisation.getVisiteAvecMotifInfo());
312
		}
312
		}
313
		return postDonnees;
313
		return postDonnees;
314
	}
314
	}
315
}
315
}