Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 359 → Rev 360

/trunk/src/org/tela_botanica/client/modeles/ObservationAsynchroneDAO.java
59,7 → 59,7
+"&nom_sel="+URL.encodeComponent(obs.getNomSaisi())
+"&num_nom_sel="+obs.getNumeroNomenclaturalSaisi()
+"&location="+URL.encodeComponent(obs.getLocalite())
+"&id_location="+obs.getIdentifiantLocalite()
+"&id_location="+URL.encodeComponent(obs.getIdentifiantLocalite())
+"&date_observation=" + obs.getDate()
+"&lieudit="+ URL.encodeComponent(obs.getLieudit())
+"&station="+URL.encodeComponent(obs.getStation())
/trunk/src/org/tela_botanica/client/modeles/Observation.java
211,7 → 211,10
 
 
public String getIdentifiantLocalite() {
return identifiantLocalite;
if(identifiantLocalite != null) {
identifiantLocalite = identifiantLocalite.replaceAll("\"", "");
}
return identifiantLocalite;
}