Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1689 → Rev 1690

/trunk/src/org/tela_botanica/client/vues/structure/StructureFormIdentification.java
748,9 → 748,7
structureCollectee.setCourriel(emailChp.getValue());
structureCollectee.setUrl(Structure.URL_SITE, urlChp.getValue());
if (nbreTotalPersonneStructureChp.getValue() != null) {
structureCollectee.setNbrePersonne(nbreTotalPersonneStructureChp.getValue().intValue());
}
structureCollectee.setNbrePersonne(nbreTotalPersonneStructureChp.getValue());
structureARetourner = identification = structureCollectee;
} else {
/trunk/src/org/tela_botanica/client/vues/structure/StructureDetailVue.java
192,7 → 192,7
identificationParams.set("acronyme", acronyme);
identificationParams.set("statut", typePrive+typePublic);
identificationParams.set("date_fondation", structure.getAnneOuDateFondationFormatLong());
identificationParams.set("nbre_personnel", structure.getNbrePersonne());
identificationParams.set("nbre_personnel", structure.getNbrePersonne() != null ? structure.getNbrePersonne() : "");
identificationParams.set("description", structure.getDescription());
identificationParams.set("acces", structure.getConditionAcces());
667,4 → 667,4
}
return ok;
}
}
}