Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1255 → Rev 1219

/branches/v1.0-syrah/src/org/tela_botanica/client/modeles/collection/CollectionAsyncDao.java
78,8 → 78,9
});
}
public void ajouter(Collection collection) {
public void ajouter(Collection collection) {
String postDonneesEncodees = construirePost(null, collection);
 
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
@Override
101,7 → 102,9
}
public void modifier(Collection collection) {
String postDonneesEncodees = construirePost(collection.getId(), collection);
String postDonneesEncodees = construirePost(collection.getId(), collection);
GWT.log(postDonneesEncodees, null);
String[] parametres = {collection.getId()};
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
136,7 → 139,12
});
}
private String construirePost(String collectionId, Collection collection) {
private String construirePost(String collectionId, Collection collection) {
Debug.log("BEGIN CollectionAsynDao.construirePost()");
 
Debug.log("Collection = "+collection.toString());
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId);
if (collection != null) {
143,6 → 151,9
if (collectionId != null) {
postDonnees += "&cc_id_collection=" + URL.encodeComponent(collectionId);
}
Debug.log("CollectionAsynDao.construirePost(), id projet:"+collection.getIdProjet());
Debug.log("CollectionAsynDao.construirePost(), liste projet:"+((ProjetListe) Registry.get(RegistreId.PROJETS)).get(collection.getIdProjet()).toString());
 
/*
postDonnees += "&cpr_abreviation=" + URL.encodeComponent(((ProjetListe) Registry.get(RegistreId.PROJETS)).get(collection.getIdProjet()).getAbreviation());
169,6 → 180,8
"&cc_ce_specimen_type_nbre_precision=" + URL.encodeComponent(collection.getSpecimenTypeNbrePrecision()) +
"&cc_ce_specimen_type_classement=" + URL.encodeComponent(collection.getSpecimenTypeClassement());*/
postDonnees += "&" + collection.obtenirChainePOST();
Debug.log("1) postDonnees = "+postDonnees);
}
if (collection.getBotanique() != null) {
219,8 → 232,13
"&ccb_ce_inventaire_etat=" + URL.encodeComponent(collectionBotanique.getInventaireEtat()) +
"&ccb_inventaire_donnee_type=" + URL.encodeComponent(collectionBotanique.getInventaireDonneesTypes());*/
postDonnees += "&" + collectionBotanique.obtenirChainePOST();
Debug.log("2) postDonnees = "+postDonnees);
 
}
Debug.log("END CollectionAsynDao.construirePost()");
return postDonnees;
}
}