Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1240 → Rev 1241

/branches/v1.0-syrah/src/org/tela_botanica/client/modeles/structure/Structure.java
239,18 → 239,8
}
public void setTelephone(String tel) {
this.set("truk_telephone", tel);
}
public void ajouterTelephone(String type, Object valeur) {
ajouterChaineDenormaliseAvecType("truk_telephone", type, valeur);
}
public String selectionnerTelephone(String type) {
return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), type);
}
}
 
/*
// TELEPHONE FIXE
public String getTelephoneFixe() {
return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), Personne.TELEPHONE_FIXE);
266,7 → 256,7
public void setFax(String fax) {
modifierChaineDenormaliseParType("truk_telephone", Personne.TELEPHONE_FAX, fax);
}
*/
 
// COURRIEL
public String getCourriel() {
/branches/v1.0-syrah/src/org/tela_botanica/client/vues/structure/StructureDetailVue.java
199,9 → 199,8
identificationParams.set("pays", pays);
identificationParams.set("latitude_longitude", latitudeLongitude);
//FIXME identificationParams.set("tel", structure.getTelephoneFixe());
//identificationParams.set("fax", structure.getFax());
identificationParams.set("tel", structure.getTelephoneFixe());
identificationParams.set("fax", structure.getFax());
identificationParams.set("courriel", structure.getCourriel());
identificationParams.set("web", web);
/branches/v1.0-syrah/src/org/tela_botanica/client/vues/structure/StructureForm.java
699,13 → 699,9
structureCollectee.setLatitude(latitudeChp.getValue());
structureCollectee.setLongitude(longitudeChp.getValue());
/* TODELETE
structureCollectee.setTelephoneFixe(telChp.getValue());
structureCollectee.setFax(faxChp.getValue());
*/
//FIXME personneSelectionnee.set("truk_telephone", hmIdentite.getChampMultiValeursMultiTypes("telephones").getValeurs());
structureCollectee.setCourriel(emailChp.getValue());
structureCollectee.setUrl(Structure.URL_SITE, urlChp.getValue());
789,12 → 785,9
latitudeChp.setValue(identification.getLatitude());
longitudeChp.setValue(identification.getLongitude());
/* TODELETE
telChp.setValue(identification.getTelephoneFixe());
faxChp.setValue(identification.getFax());*/
faxChp.setValue(identification.getFax());
//FIXME hmIdentite.getChampMultiValeurs("telephones").peupler(personne.getString("truk_telephone"));
emailChp.setValue(identification.getCourriel());
urlChp.setValue(identification.getUrl("WEB"));