935 |
jpm |
1 |
package org.tela_botanica.client.modeles.structure;
|
208 |
jp_milcent |
2 |
|
763 |
jpm |
3 |
import org.tela_botanica.client.Mediateur;
|
208 |
jp_milcent |
4 |
import org.tela_botanica.client.RegistreId;
|
763 |
jpm |
5 |
import org.tela_botanica.client.http.JsonRestRequestBuilder;
|
|
|
6 |
import org.tela_botanica.client.http.JsonRestRequestCallback;
|
208 |
jp_milcent |
7 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
935 |
jpm |
8 |
import org.tela_botanica.client.modeles.Information;
|
1319 |
gduche |
9 |
import org.tela_botanica.client.synchronisation.Reponse;
|
1210 |
cyprien |
10 |
import org.tela_botanica.client.util.Debug;
|
763 |
jpm |
11 |
import org.tela_botanica.client.util.UtilDAO;
|
208 |
jp_milcent |
12 |
|
|
|
13 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
14 |
import com.google.gwt.core.client.GWT;
|
231 |
jp_milcent |
15 |
import com.google.gwt.http.client.URL;
|
208 |
jp_milcent |
16 |
import com.google.gwt.json.client.JSONArray;
|
|
|
17 |
import com.google.gwt.json.client.JSONValue;
|
|
|
18 |
|
|
|
19 |
public class StructureAPersonneAsyncDao {
|
231 |
jp_milcent |
20 |
private static final String SERVICE_NOM = "CoelStructureAPersonne";
|
763 |
jpm |
21 |
|
|
|
22 |
private String utilisateurId = null;
|
|
|
23 |
private Rafraichissable vueARafraichir = null;
|
|
|
24 |
|
|
|
25 |
public StructureAPersonneAsyncDao(Rafraichissable vueARafraichirCourrante) {
|
|
|
26 |
vueARafraichir = vueARafraichirCourrante;
|
|
|
27 |
utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
|
|
|
28 |
}
|
231 |
jp_milcent |
29 |
|
1319 |
gduche |
30 |
public void selectionner(final String structureId, final String roleId, final Integer seqId) {
|
763 |
jpm |
31 |
String[] parametres = {structureId, roleId};
|
|
|
32 |
|
|
|
33 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres);
|
|
|
34 |
rb.envoyerRequete(null, new JsonRestRequestCallback() {
|
|
|
35 |
@Override
|
|
|
36 |
public void surReponse(JSONValue responseValue) {
|
|
|
37 |
Information info = new Information("liste_structure_a_personne");
|
|
|
38 |
if (responseValue != null) {
|
|
|
39 |
// Si la requête est un succès, reception d'un tableau
|
|
|
40 |
if (responseValue.isArray() != null) {
|
|
|
41 |
final JSONArray reponse = responseValue.isArray();
|
|
|
42 |
// Transformation du tableau JSON réponse en ListeInstitution
|
|
|
43 |
StructureAPersonneListe personnel = new StructureAPersonneListe(reponse);
|
|
|
44 |
info.setDonnee(0, personnel);
|
|
|
45 |
// et on met à jour le demandeur des données
|
1319 |
gduche |
46 |
if (seqId !=null) {
|
|
|
47 |
Reponse reponseSequenceur = new Reponse(info, seqId);
|
|
|
48 |
vueARafraichir.rafraichir(reponseSequenceur);
|
|
|
49 |
} else {
|
|
|
50 |
vueARafraichir.rafraichir(info);
|
|
|
51 |
}
|
208 |
jp_milcent |
52 |
} else {
|
763 |
jpm |
53 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un talbeau JSON et vaut : "+responseValue.toString(), null);
|
208 |
jp_milcent |
54 |
}
|
763 |
jpm |
55 |
} else {
|
|
|
56 |
if (structureId == null) {
|
|
|
57 |
// Dans le cas, où nous demandons toutes les relations Structure à Personne et qu'il n'y en a pas, nous retournons un message d'information
|
|
|
58 |
info.setMessage("Aucun personnel");
|
|
|
59 |
vueARafraichir.rafraichir(info);
|
|
|
60 |
}
|
208 |
jp_milcent |
61 |
}
|
763 |
jpm |
62 |
}
|
|
|
63 |
});
|
208 |
jp_milcent |
64 |
}
|
231 |
jp_milcent |
65 |
|
1292 |
cyprien |
66 |
public void ajouter(String structureId, StructureAPersonne personnel) {
|
767 |
jpm |
67 |
String postDonneesEncodees = construirePost(structureId, personnel);
|
763 |
jpm |
68 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
|
|
|
69 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
70 |
@Override
|
|
|
71 |
public void surReponse(JSONValue responseValue) {
|
|
|
72 |
// Si la requête est un succès, reception d'une chaine
|
|
|
73 |
if (responseValue.isString() != null) {
|
|
|
74 |
Information info = new Information("ajout_structure_a_personne");
|
|
|
75 |
info.setMessage(responseValue.isString().stringValue());
|
767 |
jpm |
76 |
vueARafraichir.rafraichir(info);
|
763 |
jpm |
77 |
} else {
|
|
|
78 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
79 |
}
|
763 |
jpm |
80 |
}
|
1292 |
cyprien |
81 |
});
|
231 |
jp_milcent |
82 |
}
|
|
|
83 |
|
767 |
jpm |
84 |
public void modifier(StructureAPersonne personnel) {
|
|
|
85 |
String[] parametres = {personnel.getIdStructure(), personnel.getIdPersonne(), personnel.getIdRole()};
|
|
|
86 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
231 |
jp_milcent |
87 |
|
767 |
jpm |
88 |
String postDonneesEncodees = construirePost(personnel.getIdStructure(), personnel);
|
|
|
89 |
|
|
|
90 |
rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
|
|
|
91 |
@Override
|
|
|
92 |
public void surReponse(JSONValue responseValue) {
|
|
|
93 |
Information info = new Information("modif_structure_a_personne");
|
|
|
94 |
// Si la requête est un succès, reception d'une chaine
|
|
|
95 |
if (responseValue.isString() != null) {
|
|
|
96 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
97 |
vueARafraichir.rafraichir(info);
|
|
|
98 |
} else {
|
|
|
99 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
100 |
}
|
767 |
jpm |
101 |
}
|
|
|
102 |
});
|
231 |
jp_milcent |
103 |
}
|
|
|
104 |
|
767 |
jpm |
105 |
public void supprimer(String idStrAPer) {
|
|
|
106 |
String[] parametres = {utilisateurId, idStrAPer};
|
|
|
107 |
final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
|
|
|
108 |
rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
|
|
|
109 |
@Override
|
|
|
110 |
public void surReponse(JSONValue responseValue) {
|
|
|
111 |
if (responseValue.isString() != null) {
|
|
|
112 |
Information info = new Information("suppression_structure_a_personne");
|
|
|
113 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
114 |
vueARafraichir.rafraichir(info);
|
|
|
115 |
} else {
|
|
|
116 |
GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
231 |
jp_milcent |
117 |
}
|
767 |
jpm |
118 |
}
|
|
|
119 |
});
|
231 |
jp_milcent |
120 |
}
|
602 |
jp_milcent |
121 |
|
767 |
jpm |
122 |
private String construirePost(String structureId, StructureAPersonne personnel) {
|
602 |
jp_milcent |
123 |
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId);
|
609 |
jp_milcent |
124 |
if (!personnel.getIdPersonne().equals("")) {
|
|
|
125 |
postDonnees += "&csap_id_personne=" + URL.encodeComponent(personnel.getIdPersonne()) +
|
|
|
126 |
"&cp_id_personne=" + URL.encodeComponent(personnel.getIdPersonne());
|
|
|
127 |
}
|
611 |
jp_milcent |
128 |
postDonnees += "&csap_id_structure=" + URL.encodeComponent(structureId) +
|
|
|
129 |
"&csap_id_role=" + URL.encodeComponent(personnel.getIdRole()) +
|
602 |
jp_milcent |
130 |
"&csap_ce_truk_fonction=" + URL.encodeComponent(personnel.getFonction()) +
|
|
|
131 |
"&csap_service=" + URL.encodeComponent(personnel.getService()) +
|
|
|
132 |
"&csap_ce_truk_statut=" + URL.encodeComponent(personnel.getStatut()) +
|
|
|
133 |
"&csap_mark_contact=" + URL.encodeComponent(personnel.getContact()) +
|
|
|
134 |
"&csap_bota_travail_hebdo_tps=" + URL.encodeComponent(personnel.getBotaTravailHebdoTps()) +
|
609 |
jp_milcent |
135 |
"&cp_ce_projet=" + URL.encodeComponent(personnel.getIdProjetPersonne()) +
|
602 |
jp_milcent |
136 |
"&cp_prenom=" + URL.encodeComponent(personnel.getPrenom()) +
|
|
|
137 |
"&cp_nom=" + URL.encodeComponent(personnel.getNom()) +
|
1210 |
cyprien |
138 |
"&cp_fmt_nom_complet=" + URL.encodeComponent(personnel.getNomComplet()) +
|
602 |
jp_milcent |
139 |
"&cp_truk_telephone=" + URL.encodeComponent(personnel.getTelephone()) +
|
|
|
140 |
"&cp_truk_courriel=" + URL.encodeComponent(personnel.getCourriel()) +
|
|
|
141 |
"&cp_ce_truk_specialite=" + URL.encodeComponent(personnel.getSpecialite()) +
|
1329 |
cyprien |
142 |
"&cp_ce_deces=" + URL.encodeComponent(personnel.getDeces()) +
|
602 |
jp_milcent |
143 |
"";
|
|
|
144 |
return postDonnees;
|
|
|
145 |
}
|
208 |
jp_milcent |
146 |
}
|