Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 82 → Rev 83

/trunk/src/org/tela_botanica/client/modeles/Observation.java
55,7 → 55,7
this.numeroNomenclaturalRetenu = numeroNomenclaturalRetenu;
this.numeroTaxonomique = numeroTaxonomique;
this.famille = famille;
this.localite = localite;
this.identifiantLocalite = identifiantLocalite;
this.lieudit = lieudit;
this.station = station;
64,6 → 64,16
this.date = date;
this.numeroOrdre = numeroOrdre;
// Suppresion indication departementale (on pourrait faire mieux !!)
int pos=localite.indexOf(" (" );
if (pos>=0) {
this.localite=localite.substring(0,pos);
}
else {
this.localite=localite;
}
}
 
86,7 → 96,7
this.nomSaisi = nomSaisi;
this.numeroNomenclaturalSaisi = numeroNomenclaturalSaisi;
this.localite = localite;
this.identifiantLocalite = identifiantLocalite;
this.lieudit = lieudit;
this.station = station;
94,6 → 104,15
this.commentaire = commentaire;
this.date = date;
// Suppresion indication departementale (on pourrait faire mieux !!)
int pos=localite.indexOf(" (" );
if (pos>=0) {
this.localite=localite.substring(0,pos);
}
else {
this.localite=localite;
}
}
 
 
/trunk/src/org/tela_botanica/client/vues/FormulaireSaisieObservationVue.java
338,6 → 338,7
default:
departement="";
obtenirListeReferentielCommune();
break;
407,6 → 408,7
default:
numeroNom="";
obtenirListeReferentielNom();
break;
653,7 → 655,7
if(!obs.getNumeroNomenclaturalSaisi().equals("null") && !obs.getNumeroNomenclaturalSaisi().equals("000null")) {
numeroNom = obs.getNumeroNomenclaturalSaisi() ;
}
if(!obs.getNumeroOrdre().equals("null") && !obs.getNumeroOrdre().equals("000null")) {
if(!obs.getNumeroOrdre().equals("null") && !obs.getNumeroOrdre().equals("000nu2ll")) {
numeroOrdre = obs.getNumeroOrdre() ;
}
/trunk/src/org/tela_botanica/client/vues/ArbreEntiteGeographiqueObservationFiltreVue.java
185,7 → 185,7
}
// on la parse et on récupère les informations quiç nous interessent
// on la parse et on récupère les informations qui nous interessent
for (Iterator<String> it= data.keySet().iterator(); it.hasNext();) {
EntiteGeographiqueObservation ent=(EntiteGeographiqueObservation) data.get(it.next());
193,7 → 193,7
entite=ent.getEntite();
if(entite.equals("000null") ) {
if(entite.contains("000null") ) {
entite="Inconnue";
}
idEntite=ent.getIdEntite();