60 |
jpm |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
231 |
jp_milcent |
3 |
import java.util.Iterator;
|
134 |
jpm |
4 |
import java.util.List;
|
|
|
5 |
|
61 |
jpm |
6 |
import org.tela_botanica.client.composants.AideFenetre;
|
60 |
jpm |
7 |
import org.tela_botanica.client.composants.IdentificationFenetre;
|
66 |
jpm |
8 |
import org.tela_botanica.client.composants.ParametreFenetre;
|
358 |
jp_milcent |
9 |
import org.tela_botanica.client.i18n.Constantes;
|
466 |
gduche |
10 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
119 |
jpm |
11 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
447 |
jp_milcent |
12 |
import org.tela_botanica.client.modeles.Collection;
|
453 |
jp_milcent |
13 |
import org.tela_botanica.client.modeles.CollectionListe;
|
61 |
jpm |
14 |
import org.tela_botanica.client.modeles.Configuration;
|
156 |
jp_milcent |
15 |
import org.tela_botanica.client.modeles.Information;
|
327 |
jp_milcent |
16 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
142 |
gduche |
17 |
import org.tela_botanica.client.modeles.Personne;
|
128 |
gduche |
18 |
import org.tela_botanica.client.modeles.PersonneListe;
|
245 |
jp_milcent |
19 |
import org.tela_botanica.client.modeles.Projet;
|
268 |
jp_milcent |
20 |
import org.tela_botanica.client.modeles.ProjetListe;
|
107 |
aurelien |
21 |
import org.tela_botanica.client.modeles.Publication;
|
|
|
22 |
import org.tela_botanica.client.modeles.PublicationListe;
|
60 |
jpm |
23 |
import org.tela_botanica.client.modeles.Structure;
|
209 |
jp_milcent |
24 |
import org.tela_botanica.client.modeles.StructureAPersonne;
|
231 |
jp_milcent |
25 |
import org.tela_botanica.client.modeles.StructureAPersonneListe;
|
188 |
jp_milcent |
26 |
import org.tela_botanica.client.modeles.StructureConservation;
|
69 |
jpm |
27 |
import org.tela_botanica.client.modeles.StructureListe;
|
195 |
jp_milcent |
28 |
import org.tela_botanica.client.modeles.StructureValorisation;
|
61 |
jpm |
29 |
import org.tela_botanica.client.modeles.Utilisateur;
|
91 |
jpm |
30 |
import org.tela_botanica.client.modeles.ValeurListe;
|
447 |
jp_milcent |
31 |
import org.tela_botanica.client.vues.CollectionListeVue;
|
453 |
jp_milcent |
32 |
import org.tela_botanica.client.vues.CollectionVue;
|
444 |
jp_milcent |
33 |
import org.tela_botanica.client.vues.ContenuVue;
|
|
|
34 |
import org.tela_botanica.client.vues.EnteteVue;
|
438 |
gduche |
35 |
import org.tela_botanica.client.vues.PersonneForm;
|
444 |
jp_milcent |
36 |
import org.tela_botanica.client.vues.PublicationForm;
|
|
|
37 |
import org.tela_botanica.client.vues.StructureForm;
|
128 |
gduche |
38 |
import org.tela_botanica.client.vues.PersonneVue;
|
332 |
gduche |
39 |
import org.tela_botanica.client.vues.PopupChargement;
|
107 |
aurelien |
40 |
import org.tela_botanica.client.vues.PublicationVue;
|
443 |
jp_milcent |
41 |
import org.tela_botanica.client.vues.StatutVue;
|
60 |
jpm |
42 |
import org.tela_botanica.client.vues.StructureVue;
|
444 |
jp_milcent |
43 |
import org.tela_botanica.client.vues.MenuVue;
|
467 |
jp_milcent |
44 |
|
60 |
jpm |
45 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
46 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
315 |
gduche |
47 |
import com.extjs.gxt.ui.client.event.Listener;
|
502 |
gduche |
48 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
60 |
jpm |
49 |
import com.extjs.gxt.ui.client.util.Margins;
|
315 |
gduche |
50 |
import com.extjs.gxt.ui.client.widget.Dialog;
|
156 |
jp_milcent |
51 |
import com.extjs.gxt.ui.client.widget.Info;
|
315 |
gduche |
52 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
60 |
jpm |
53 |
import com.extjs.gxt.ui.client.widget.Viewport;
|
315 |
gduche |
54 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
60 |
jpm |
55 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
56 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
91 |
jpm |
57 |
import com.google.gwt.core.client.GWT;
|
599 |
gduche |
58 |
import com.google.gwt.i18n.client.Dictionary;
|
60 |
jpm |
59 |
import com.google.gwt.user.client.Window;
|
|
|
60 |
import com.google.gwt.user.client.ui.RootPanel;
|
|
|
61 |
|
277 |
jp_milcent |
62 |
public class Mediateur implements Rafraichissable {
|
60 |
jpm |
63 |
|
358 |
jp_milcent |
64 |
private Viewport viewport;
|
119 |
jpm |
65 |
private Modele modele = null;
|
582 |
jp_milcent |
66 |
public static final Constantes i18nC = getI18nConstante();
|
|
|
67 |
public static final ErrorMessages i18nM = getI18nMessage();
|
119 |
jpm |
68 |
|
444 |
jp_milcent |
69 |
private EnteteVue panneauNord = null;
|
|
|
70 |
private MenuVue panneauOuest = null;
|
|
|
71 |
private ContenuVue panneauCentre = null;
|
443 |
jp_milcent |
72 |
private StatutVue panneauSud = null;
|
156 |
jp_milcent |
73 |
private Rafraichissable contenuPanneauCentre = null;
|
60 |
jpm |
74 |
|
358 |
jp_milcent |
75 |
private IdentificationFenetre fenetreIdentification = null;
|
|
|
76 |
|
60 |
jpm |
77 |
public Mediateur() {
|
|
|
78 |
// Enregistrement du Médiateur dans le Registre
|
|
|
79 |
Registry.register(RegistreId.MEDIATEUR, this);
|
466 |
gduche |
80 |
|
60 |
jpm |
81 |
// Création du Modèle qui s'enregistre lui même dans le Registre
|
119 |
jpm |
82 |
modele = new Modele();
|
535 |
jp_milcent |
83 |
|
60 |
jpm |
84 |
// Création du Viewport qui contient la disposition globale de l'application
|
|
|
85 |
viewport = new Viewport();
|
|
|
86 |
viewport.setLayout(new BorderLayout());
|
552 |
jp_milcent |
87 |
|
|
|
88 |
//Initialisation du Registre
|
|
|
89 |
initialiserRegistre();
|
|
|
90 |
|
60 |
jpm |
91 |
// Création des différents panneaux
|
|
|
92 |
creerPanneauNord();
|
|
|
93 |
creerPanneauOuest();
|
|
|
94 |
creerPanneauCentral();
|
358 |
jp_milcent |
95 |
creerPanneauSud();
|
535 |
jp_milcent |
96 |
|
|
|
97 |
// Connection de l'utilisateur
|
|
|
98 |
connecterUtilisateur(null, null);
|
|
|
99 |
|
60 |
jpm |
100 |
// Retour à GWT du Viewport une fois constuit
|
|
|
101 |
RootPanel.get().add(viewport);
|
|
|
102 |
}
|
|
|
103 |
|
156 |
jp_milcent |
104 |
//+----------------------------------------------------------------------------------------------------------------+
|
535 |
jp_milcent |
105 |
// GESTION de l'I18N et du REGISTRE
|
|
|
106 |
//+----------------------------------------------------------------------------------------------------------------+
|
582 |
jp_milcent |
107 |
protected static Constantes getI18nConstante() {
|
535 |
jp_milcent |
108 |
return GWT.create(Constantes.class);
|
|
|
109 |
}
|
|
|
110 |
|
582 |
jp_milcent |
111 |
protected static ErrorMessages getI18nMessage() {
|
535 |
jp_milcent |
112 |
return GWT.create(ErrorMessages.class);
|
|
|
113 |
}
|
|
|
114 |
|
|
|
115 |
protected void initialiserRegistre() {
|
|
|
116 |
Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
|
|
|
117 |
Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
|
|
|
118 |
Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersionNumero());
|
|
|
119 |
Registry.register(RegistreId.APPLI_REVISION, "$Revision: 501 $");
|
|
|
120 |
|
|
|
121 |
Registry.register(RegistreId.CONFIG, new Configuration());
|
537 |
jp_milcent |
122 |
Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement(this));
|
535 |
jp_milcent |
123 |
Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur(null, false));
|
|
|
124 |
Registry.register(RegistreId.PROJET_COURANT, new Projet());
|
|
|
125 |
}
|
|
|
126 |
|
|
|
127 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
128 |
// GESTION des PANNEAUX PRINCIPAUX
|
|
|
129 |
//+----------------------------------------------------------------------------------------------------------------+
|
119 |
jpm |
130 |
|
60 |
jpm |
131 |
private void creerPanneauNord() {
|
444 |
jp_milcent |
132 |
panneauNord = new EnteteVue(this);
|
60 |
jpm |
133 |
|
|
|
134 |
BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
|
|
|
135 |
regionNord.setCollapsible(true);
|
|
|
136 |
regionNord.setFloatable(true);
|
|
|
137 |
regionNord.setSplit(false);
|
|
|
138 |
regionNord.setMargins(new Margins(5, 5, 0, 5));
|
|
|
139 |
|
|
|
140 |
viewport.add(panneauNord, regionNord);
|
|
|
141 |
}
|
|
|
142 |
|
|
|
143 |
private void creerPanneauOuest() {
|
444 |
jp_milcent |
144 |
panneauOuest = new MenuVue(this);
|
60 |
jpm |
145 |
|
|
|
146 |
BorderLayoutData regionOuest = new BorderLayoutData(LayoutRegion.WEST, 200);
|
|
|
147 |
regionOuest.setSplit(true);
|
|
|
148 |
regionOuest.setCollapsible(true);
|
|
|
149 |
regionOuest.setMargins(new Margins(5));
|
|
|
150 |
|
|
|
151 |
viewport.add(panneauOuest, regionOuest);
|
|
|
152 |
}
|
|
|
153 |
|
|
|
154 |
private void creerPanneauCentral() {
|
444 |
jp_milcent |
155 |
panneauCentre = new ContenuVue(this);
|
60 |
jpm |
156 |
|
|
|
157 |
BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
|
|
|
158 |
regionCentre.setMargins(new Margins(5, 5, 5, 0));
|
|
|
159 |
|
|
|
160 |
viewport.add(panneauCentre, regionCentre);
|
|
|
161 |
}
|
358 |
jp_milcent |
162 |
|
|
|
163 |
private void creerPanneauSud() {
|
443 |
jp_milcent |
164 |
panneauSud = new StatutVue();
|
358 |
jp_milcent |
165 |
|
369 |
jp_milcent |
166 |
BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
|
358 |
jp_milcent |
167 |
regionSud.setCollapsible(true);
|
|
|
168 |
regionSud.setFloatable(true);
|
|
|
169 |
regionSud.setSplit(false);
|
|
|
170 |
regionSud.setMargins(new Margins(0));
|
|
|
171 |
|
|
|
172 |
viewport.add(panneauSud, regionSud);
|
|
|
173 |
}
|
60 |
jpm |
174 |
|
369 |
jp_milcent |
175 |
public void actualiserPanneauCentral() {
|
|
|
176 |
panneauCentre.layout();
|
|
|
177 |
}
|
|
|
178 |
|
156 |
jp_milcent |
179 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
180 |
// GESTION du MENU
|
|
|
181 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
182 |
|
327 |
jp_milcent |
183 |
public void clicMenu(String codeMenuClique) {
|
358 |
jp_milcent |
184 |
activerChargement(codeMenuClique);
|
327 |
jp_milcent |
185 |
if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
|
277 |
jp_milcent |
186 |
modele.selectionnerStructure(panneauCentre, getProjetId(), null);
|
553 |
jp_milcent |
187 |
} else if (codeMenuClique.equals(MenuApplicationId.COLLECTION)) {
|
|
|
188 |
selectionnerCollection(panneauCentre, null);
|
|
|
189 |
} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
|
599 |
gduche |
190 |
//modele.selectionnerPersonne(panneauCentre, null, getProjetId(), null);
|
|
|
191 |
selectionnerPersonne(panneauCentre, null, null);
|
327 |
jp_milcent |
192 |
} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
|
277 |
jp_milcent |
193 |
modele.selectionnerPublications(panneauCentre);
|
379 |
jp_milcent |
194 |
} else {
|
327 |
jp_milcent |
195 |
GWT.log("Non implémenté! Menu id : "+codeMenuClique, null);
|
60 |
jpm |
196 |
}
|
|
|
197 |
panneauCentre.layout();
|
|
|
198 |
}
|
|
|
199 |
|
358 |
jp_milcent |
200 |
public void activerChargement(String message) {
|
|
|
201 |
afficherPopinChargement();
|
369 |
jp_milcent |
202 |
panneauSud.showBusy(i18nC.chargement()+" "+message);
|
358 |
jp_milcent |
203 |
}
|
|
|
204 |
|
|
|
205 |
public void desactiverChargement() {
|
|
|
206 |
masquerPopinChargement();
|
|
|
207 |
panneauSud.clear();
|
|
|
208 |
}
|
|
|
209 |
|
156 |
jp_milcent |
210 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
211 |
// GESTION DES FENÊTRES
|
|
|
212 |
//+----------------------------------------------------------------------------------------------------------------+
|
60 |
jpm |
213 |
|
61 |
jpm |
214 |
public void ouvrirAide() {
|
|
|
215 |
AideFenetre aideFenetre = new AideFenetre();
|
|
|
216 |
aideFenetre.show();
|
66 |
jpm |
217 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
|
|
218 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
61 |
jpm |
219 |
}
|
|
|
220 |
|
|
|
221 |
public void ouvrirParametres() {
|
66 |
jpm |
222 |
ParametreFenetre parametresFenetre = new ParametreFenetre();
|
|
|
223 |
parametresFenetre.show();
|
61 |
jpm |
224 |
}
|
|
|
225 |
|
|
|
226 |
public void ouvrirIdentification() {
|
358 |
jp_milcent |
227 |
fenetreIdentification = new IdentificationFenetre();
|
|
|
228 |
fenetreIdentification.show();
|
61 |
jpm |
229 |
}
|
|
|
230 |
|
|
|
231 |
public void ouvrirApplis(String id) {
|
|
|
232 |
if (id.equals(ComposantId.MENU_CEL)) {
|
|
|
233 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Carnet en ligne", "");
|
|
|
234 |
} else if (id.equals(ComposantId.MENU_BEL)) {
|
134 |
jpm |
235 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Biblio en ligne", "");
|
61 |
jpm |
236 |
}
|
|
|
237 |
}
|
|
|
238 |
|
156 |
jp_milcent |
239 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
240 |
// GESTION de l'UTILISATEUR et de l'IDENTIFICATION
|
|
|
241 |
//+----------------------------------------------------------------------------------------------------------------+
|
245 |
jp_milcent |
242 |
/**
|
|
|
243 |
* Retourne l'identifiant de l'utilisateur courrant de l'application.
|
|
|
244 |
*/
|
156 |
jp_milcent |
245 |
public String getUtilisateurId() {
|
277 |
jp_milcent |
246 |
String id = null;
|
|
|
247 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
248 |
if (!utilisateurCourant.getId().equals("")) {
|
|
|
249 |
id = utilisateurCourant.getId();
|
|
|
250 |
}
|
|
|
251 |
return id;
|
156 |
jp_milcent |
252 |
}
|
|
|
253 |
|
65 |
jpm |
254 |
public void connecterUtilisateur(String login, String mdp) {
|
277 |
jp_milcent |
255 |
modele.connecterUtilisateur(this, login, mdp);
|
64 |
jpm |
256 |
}
|
|
|
257 |
|
65 |
jpm |
258 |
public void deconnecterUtilisateur() {
|
277 |
jp_milcent |
259 |
modele.deconnecterUtilisateur(this);
|
64 |
jpm |
260 |
}
|
65 |
jpm |
261 |
|
64 |
jpm |
262 |
public void mettreAJourEtatIdentification(Utilisateur utilisateur) {
|
156 |
jp_milcent |
263 |
// Mise à jour du registre
|
277 |
jp_milcent |
264 |
Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
|
156 |
jp_milcent |
265 |
// Création de l'information de mise à jour de l'utilisateur
|
|
|
266 |
Information info = new Information("maj_utilisateur");
|
358 |
jp_milcent |
267 |
|
|
|
268 |
// Rafraichissement de la fenêtre d'Identification
|
|
|
269 |
if (fenetreIdentification != null) {
|
|
|
270 |
fenetreIdentification.rafraichir(info);
|
|
|
271 |
}
|
156 |
jp_milcent |
272 |
|
|
|
273 |
// Rafraichissement du panneau Nord
|
|
|
274 |
panneauNord.rafraichir(info);
|
|
|
275 |
|
|
|
276 |
// Rafraichissement du panneau Centre
|
|
|
277 |
if (contenuPanneauCentre != null) {
|
|
|
278 |
contenuPanneauCentre.rafraichir(info);
|
|
|
279 |
}
|
61 |
jpm |
280 |
}
|
66 |
jpm |
281 |
|
156 |
jp_milcent |
282 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
283 |
// GESTION DES VALEURS ET LISTES
|
|
|
284 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
285 |
|
|
|
286 |
public void afficherListeValeurs(ValeurListe nouvelleDonnees) {
|
|
|
287 |
if (panneauCentre.getId().equals(ComposantId.PANNEAU_STRUCTURE_FORM)) {
|
|
|
288 |
((StructureForm) panneauCentre.getItem(0)).rafraichir(nouvelleDonnees);
|
|
|
289 |
} else {
|
|
|
290 |
GWT.log("Aucun panneau trouvé pour afficher la liste de valeur", null);
|
|
|
291 |
}
|
|
|
292 |
}
|
|
|
293 |
|
568 |
jp_milcent |
294 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId) {
|
|
|
295 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
|
453 |
jp_milcent |
296 |
}
|
447 |
jp_milcent |
297 |
|
453 |
jp_milcent |
298 |
public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur) {
|
|
|
299 |
modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
|
|
|
300 |
}
|
|
|
301 |
|
|
|
302 |
public void obtenirListeRegionsEtRafraichir(Rafraichissable vue, String strListeId, String strPays) {
|
|
|
303 |
modele.obtenirListeRegion(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(strListeId), strPays+".__");
|
|
|
304 |
}
|
|
|
305 |
|
447 |
jp_milcent |
306 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
307 |
// GESTION des PROJETS
|
|
|
308 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
309 |
|
|
|
310 |
/**
|
|
|
311 |
* Retourne l'identifiant du projet courrant de l'application.
|
|
|
312 |
*/
|
|
|
313 |
public String getProjetId() {
|
|
|
314 |
String id = null;
|
|
|
315 |
Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
|
|
|
316 |
if (projetCourant != null && !projetCourant.getId().equals("")) {
|
|
|
317 |
id = projetCourant.getId();
|
|
|
318 |
}
|
|
|
319 |
return id;
|
|
|
320 |
}
|
|
|
321 |
|
|
|
322 |
//Greg : ajout d'un écouteur pour le changement liste projet
|
552 |
jp_milcent |
323 |
public void selectionnerProjets(Rafraichissable vueARafraichir) {
|
|
|
324 |
modele.selectionnerProjets(vueARafraichir);
|
447 |
jp_milcent |
325 |
}
|
|
|
326 |
|
|
|
327 |
public void afficherListeProjets(ProjetListe projets) {
|
|
|
328 |
panneauOuest.rafraichir(projets);
|
|
|
329 |
}
|
|
|
330 |
|
|
|
331 |
public void selectionnerProjetCourant(Projet projetSelectionne) {
|
|
|
332 |
Registry.register(RegistreId.PROJET_COURANT, projetSelectionne);
|
|
|
333 |
if (contenuPanneauCentre instanceof PersonneVue) {
|
599 |
gduche |
334 |
//modele.selectionnerPersonne(contenuPanneauCentre, null, getProjetId(), null);
|
|
|
335 |
selectionnerPersonne(contenuPanneauCentre, null, getProjetId());
|
447 |
jp_milcent |
336 |
//FIXME Le rafraichissement du panneau ne se fait pas!
|
|
|
337 |
} else if (contenuPanneauCentre instanceof StructureVue) {
|
552 |
jp_milcent |
338 |
modele.selectionnerStructure(contenuPanneauCentre, getProjetId(), null);
|
|
|
339 |
} else if (contenuPanneauCentre instanceof CollectionVue) {
|
|
|
340 |
modele.selectionnerCollection(contenuPanneauCentre, getProjetId(), null);
|
447 |
jp_milcent |
341 |
}
|
|
|
342 |
}
|
|
|
343 |
|
|
|
344 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
345 |
// GESTION DES STRUCTURES
|
|
|
346 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
347 |
|
453 |
jp_milcent |
348 |
public void afficherListeStructures(StructureListe structuresACharger) {
|
626 |
gduche |
349 |
|
|
|
350 |
if (!(contenuPanneauCentre instanceof StructureVue)) {
|
|
|
351 |
panneauCentre.removeAll();
|
|
|
352 |
StructureVue structureVue = new StructureVue(this);
|
|
|
353 |
contenuPanneauCentre = structureVue;
|
|
|
354 |
panneauCentre.add(structureVue);
|
|
|
355 |
panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_LISTE);
|
|
|
356 |
}
|
|
|
357 |
contenuPanneauCentre.rafraichir(structuresACharger);
|
453 |
jp_milcent |
358 |
}
|
|
|
359 |
|
580 |
jp_milcent |
360 |
public void afficherFormStructure(String structureId) {
|
|
|
361 |
String mode = StructureForm.MODE_AJOUTER;
|
|
|
362 |
if (structureId != null) {
|
|
|
363 |
mode = StructureForm.MODE_MODIFIER;
|
|
|
364 |
}
|
|
|
365 |
|
|
|
366 |
panneauCentre.removeAll();
|
|
|
367 |
StructureForm structureForm = new StructureForm(this, mode);
|
|
|
368 |
panneauCentre.add(structureForm);
|
|
|
369 |
panneauCentre.setId(ComposantId.PANNEAU_STRUCTURE_FORM);
|
|
|
370 |
|
|
|
371 |
if (mode.equals(StructureForm.MODE_MODIFIER)) {
|
|
|
372 |
selectionnerStructure(structureForm, structureId);
|
|
|
373 |
selectionnerStructureAPersonne(structureForm, structureId, StructureAPersonne.ROLE_EQUIPE);
|
|
|
374 |
}
|
|
|
375 |
|
|
|
376 |
panneauCentre.layout();
|
|
|
377 |
}
|
|
|
378 |
|
447 |
jp_milcent |
379 |
public void clicListeStructure(Structure structure) {
|
|
|
380 |
contenuPanneauCentre.rafraichir(structure);
|
609 |
jp_milcent |
381 |
if (structure != null && structure.getPersonnel() == null) {
|
447 |
jp_milcent |
382 |
selectionnerStructureAPersonne(contenuPanneauCentre, structure.getId(), StructureAPersonne.ROLE_EQUIPE);
|
|
|
383 |
} else {
|
|
|
384 |
GWT.log("OK personnel déjà chargé", null);
|
|
|
385 |
}
|
|
|
386 |
}
|
|
|
387 |
|
|
|
388 |
public void clicAjouterStructure() {
|
580 |
jp_milcent |
389 |
afficherFormStructure(null);
|
447 |
jp_milcent |
390 |
}
|
|
|
391 |
|
|
|
392 |
public void clicModifierStructure(List<Structure> structureSelection) {
|
|
|
393 |
if (structureSelection.size() == 0) {
|
|
|
394 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
395 |
} else if (structureSelection.size() > 1) {
|
|
|
396 |
Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
|
|
|
397 |
} else if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
398 |
afficherFormStructure(structureSelection.get(0).getId());
|
447 |
jp_milcent |
399 |
} else {
|
|
|
400 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
|
|
|
401 |
}
|
|
|
402 |
}
|
|
|
403 |
|
|
|
404 |
public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
|
|
|
405 |
if (structureSelection.size() == 0) {
|
|
|
406 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
407 |
} else if(structureSelection.size() > 0) {
|
609 |
jp_milcent |
408 |
String titre = "Supprimer des structures";
|
447 |
jp_milcent |
409 |
String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
|
|
|
410 |
if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
411 |
titre = "Supprimer une structure";
|
447 |
jp_milcent |
412 |
message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
|
|
|
413 |
}
|
|
|
414 |
|
502 |
gduche |
415 |
final Listener<MessageBoxEvent> suppressionEcouteur = new Listener<MessageBoxEvent>() {
|
|
|
416 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
417 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
418 |
Button btn = ce.getButtonClicked();
|
453 |
jp_milcent |
419 |
|
|
|
420 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
421 |
String idStr = "" ;
|
|
|
422 |
for(int i = 0 ; i < structureSelection.size() ; i++) {
|
609 |
jp_milcent |
423 |
idStr += structureSelection.get(i).getId()+",";
|
453 |
jp_milcent |
424 |
}
|
|
|
425 |
supprimerStructure(vue, idStr);
|
|
|
426 |
}
|
|
|
427 |
}
|
|
|
428 |
};
|
447 |
jp_milcent |
429 |
|
609 |
jp_milcent |
430 |
MessageBox.confirm(titre, message, suppressionEcouteur);
|
447 |
jp_milcent |
431 |
} else {
|
|
|
432 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
|
|
|
433 |
}
|
|
|
434 |
}
|
|
|
435 |
|
|
|
436 |
public void selectionnerStructure(Rafraichissable vue, String structureId) {
|
453 |
jp_milcent |
437 |
modele.selectionnerStructure(vue, getProjetId(), structureId);
|
447 |
jp_milcent |
438 |
}
|
|
|
439 |
|
|
|
440 |
public void ajouterStructure(Rafraichissable vue, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
441 |
modele.ajouterStructure(vue, getUtilisateurId(), structure, conservation, valorisation);
|
|
|
442 |
}
|
|
|
443 |
|
|
|
444 |
public void modifierStructure(Rafraichissable vue, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
445 |
modele.modifierStructure(vue, getUtilisateurId(), structureId, structure, conservation, valorisation);
|
|
|
446 |
}
|
453 |
jp_milcent |
447 |
|
|
|
448 |
public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
|
|
|
449 |
modele.supprimerStructure(vueARafraichir, getUtilisateurId(), IdentifiantsStructureSepareParVirgule);
|
|
|
450 |
}
|
|
|
451 |
|
447 |
jp_milcent |
452 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
453 |
// GESTION de la relation STRUCTURE A PERSONNE
|
|
|
454 |
public void selectionnerStructureAPersonne(Rafraichissable vue, String structureId, String roleId) {
|
|
|
455 |
GWT.log("Structure : "+structureId, null);
|
|
|
456 |
modele.selectionnerStructureAPersonne(vue, getUtilisateurId(), null, structureId, roleId);
|
|
|
457 |
}
|
|
|
458 |
|
453 |
jp_milcent |
459 |
public void ajouterStructureAPersonne(Rafraichissable vue, String structureId, StructureAPersonneListe personnelAjoute) {
|
|
|
460 |
if (personnelAjoute != null && personnelAjoute.size() > 0) {
|
|
|
461 |
for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
|
|
|
462 |
modele.ajouterStructureAPersonne(vue, getUtilisateurId(), structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
|
|
|
463 |
}
|
|
|
464 |
}
|
|
|
465 |
}
|
|
|
466 |
|
447 |
jp_milcent |
467 |
public void modifierStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelModifie) {
|
|
|
468 |
if (personnelModifie != null && personnelModifie.size() > 0) {
|
|
|
469 |
GWT.log("Mediateur :modif", null);
|
|
|
470 |
for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
|
|
|
471 |
modele.modifierStructureAPersonne(vue, getUtilisateurId(), (StructureAPersonne) personnelModifie.get(it.next()));
|
|
|
472 |
}
|
|
|
473 |
}
|
|
|
474 |
}
|
|
|
475 |
|
|
|
476 |
public void supprimerStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelSupprime) {
|
|
|
477 |
if (personnelSupprime != null && personnelSupprime.size() > 0) {
|
|
|
478 |
String idStrAPer = "" ;
|
|
|
479 |
for (Iterator<String> it = personnelSupprime.keySet().iterator(); it.hasNext();) {
|
|
|
480 |
idStrAPer += personnelSupprime.get(it.next()).getId()+"," ;
|
|
|
481 |
}
|
|
|
482 |
modele.supprimerStructureAPersonne(vue, getUtilisateurId(), idStrAPer);
|
|
|
483 |
}
|
|
|
484 |
}
|
|
|
485 |
|
|
|
486 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
487 |
// GESTION des COLLECTIONS
|
|
|
488 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
489 |
|
453 |
jp_milcent |
490 |
public void afficherListeCollections(CollectionListe collectionsACharger) {
|
626 |
gduche |
491 |
|
|
|
492 |
if (!(contenuPanneauCentre instanceof CollectionVue)) {
|
|
|
493 |
panneauCentre.removeAll();
|
|
|
494 |
CollectionVue collectionVue = new CollectionVue(this);
|
|
|
495 |
panneauCentre.add(collectionVue);
|
|
|
496 |
panneauCentre.setId(ComposantId.PANNEAU_COLLECTION_LISTE);
|
|
|
497 |
contenuPanneauCentre = collectionVue;
|
|
|
498 |
}
|
|
|
499 |
|
|
|
500 |
contenuPanneauCentre.rafraichir(collectionsACharger);
|
453 |
jp_milcent |
501 |
}
|
|
|
502 |
|
|
|
503 |
public void clicListeCollection(Collection collectionCliquee) {
|
|
|
504 |
contenuPanneauCentre.rafraichir(collectionCliquee);
|
|
|
505 |
}
|
|
|
506 |
|
447 |
jp_milcent |
507 |
public void clicAjouterCollection() {
|
|
|
508 |
// TODO Auto-generated method stub
|
|
|
509 |
|
|
|
510 |
}
|
|
|
511 |
|
|
|
512 |
public void clicModifierCollection(List<Collection> selection) {
|
|
|
513 |
// TODO Auto-generated method stub
|
|
|
514 |
|
|
|
515 |
}
|
|
|
516 |
|
453 |
jp_milcent |
517 |
public void clicSupprimerCollection(CollectionListeVue collectionListeVue, List<Collection> collectionsASupprimer) {
|
447 |
jp_milcent |
518 |
// TODO Auto-generated method stub
|
|
|
519 |
|
|
|
520 |
}
|
|
|
521 |
|
467 |
jp_milcent |
522 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId) {
|
|
|
523 |
modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId);
|
453 |
jp_milcent |
524 |
}
|
|
|
525 |
|
|
|
526 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
527 |
modele.ajouterCollection(vueARafraichir, getUtilisateurId(), collection);
|
|
|
528 |
}
|
|
|
529 |
|
|
|
530 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
531 |
modele.modifierCollection(vueARafraichir, getUtilisateurId(), collection);
|
|
|
532 |
}
|
|
|
533 |
|
|
|
534 |
public void supprimerCollection(Rafraichissable vueARafraichir, String IdentifiantsCollectionSepareParVirgule) {
|
|
|
535 |
modele.supprimerCollection(vueARafraichir, getUtilisateurId(), IdentifiantsCollectionSepareParVirgule);
|
|
|
536 |
}
|
|
|
537 |
|
447 |
jp_milcent |
538 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
539 |
// GESTION DES PERSONNES
|
|
|
540 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
541 |
|
|
|
542 |
public void clicListePersonne(Personne personne) {
|
453 |
jp_milcent |
543 |
contenuPanneauCentre.rafraichir(personne);
|
69 |
jpm |
544 |
}
|
|
|
545 |
|
278 |
jp_milcent |
546 |
public void afficherListePersonnes(PersonneListe personnesACharger) {
|
414 |
gduche |
547 |
|
626 |
gduche |
548 |
if (!(contenuPanneauCentre instanceof PersonneVue)) {
|
|
|
549 |
panneauCentre.removeAll();
|
599 |
gduche |
550 |
PersonneVue personneVue = new PersonneVue(this);
|
|
|
551 |
contenuPanneauCentre = personneVue;
|
|
|
552 |
panneauCentre.add(personneVue);
|
626 |
gduche |
553 |
}
|
599 |
gduche |
554 |
|
278 |
jp_milcent |
555 |
contenuPanneauCentre.rafraichir(personnesACharger);
|
156 |
jp_milcent |
556 |
}
|
|
|
557 |
|
128 |
gduche |
558 |
public void clicAjouterPersonne() {
|
332 |
gduche |
559 |
afficherPopinChargement();
|
|
|
560 |
|
277 |
jp_milcent |
561 |
panneauCentre.removeAll();
|
454 |
gduche |
562 |
PersonneForm formulairePersonneVue = new PersonneForm(PersonneForm.MODE_AJOUTER);
|
277 |
jp_milcent |
563 |
contenuPanneauCentre = formulairePersonneVue;
|
|
|
564 |
panneauCentre.add(formulairePersonneVue);
|
|
|
565 |
panneauCentre.layout();
|
128 |
gduche |
566 |
}
|
|
|
567 |
|
285 |
gduche |
568 |
public void clicModifierPersonne(Personne personne) {
|
|
|
569 |
if (personne!=null) {
|
|
|
570 |
panneauCentre.removeAll();
|
454 |
gduche |
571 |
PersonneForm formulairePersonneVue = new PersonneForm(PersonneForm.MODE_MODIFIER);
|
285 |
gduche |
572 |
contenuPanneauCentre = formulairePersonneVue;
|
|
|
573 |
panneauCentre.add(formulairePersonneVue);
|
349 |
gduche |
574 |
|
599 |
gduche |
575 |
selectionnerPersonne(formulairePersonneVue, personne, null);
|
349 |
gduche |
576 |
|
|
|
577 |
panneauCentre.layout();
|
285 |
gduche |
578 |
}
|
|
|
579 |
}
|
599 |
gduche |
580 |
|
|
|
581 |
public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId) {
|
|
|
582 |
int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
|
|
583 |
selectionnerPersonne(vue, personne, projetId, 0, nbElements);
|
|
|
584 |
}
|
285 |
gduche |
585 |
|
599 |
gduche |
586 |
public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId, int start, int nbElements) {
|
560 |
gduche |
587 |
String personneId = null;
|
|
|
588 |
if (personne!=null) {
|
|
|
589 |
personneId = personne.getId();
|
|
|
590 |
}
|
599 |
gduche |
591 |
modele.selectionnerPersonne(vue, personneId, projetId, null, start, nbElements);
|
349 |
gduche |
592 |
}
|
285 |
gduche |
593 |
|
315 |
gduche |
594 |
public void clicSupprimerPersonne(final Rafraichissable vue,final List<Personne> personneSelection) {
|
245 |
jp_milcent |
595 |
if (personneSelection.size() == 0) {
|
|
|
596 |
Info.display("Information", "Veuillez sélectionner une personne.");
|
|
|
597 |
} else if(personneSelection.size() > 0) {
|
|
|
598 |
String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
|
|
|
599 |
if (personneSelection.size() == 1) {
|
|
|
600 |
message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
|
|
|
601 |
}
|
315 |
gduche |
602 |
|
502 |
gduche |
603 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
604 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
605 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
606 |
Button btn = ce.getButtonClicked();
|
327 |
jp_milcent |
607 |
|
|
|
608 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
609 |
String idStr = "" ;
|
347 |
gduche |
610 |
Iterator<Personne> itPersonne = personneSelection.iterator();
|
|
|
611 |
while (itPersonne.hasNext()) {
|
|
|
612 |
Personne personneCourante = itPersonne.next();
|
|
|
613 |
idStr += personneCourante.getId();
|
389 |
gduche |
614 |
idStr +=",";
|
327 |
jp_milcent |
615 |
}
|
329 |
jp_milcent |
616 |
modele.supprimerPersonne(vue, idStr);
|
327 |
jp_milcent |
617 |
}
|
|
|
618 |
}
|
|
|
619 |
};
|
453 |
jp_milcent |
620 |
|
315 |
gduche |
621 |
MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
|
245 |
jp_milcent |
622 |
} else {
|
|
|
623 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
|
|
|
624 |
}
|
|
|
625 |
}
|
277 |
jp_milcent |
626 |
|
599 |
gduche |
627 |
public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
|
|
|
628 |
modele.selectionnerPersonne(vueARafraichir, null, projetId, nomComplet, 0, -1);
|
277 |
jp_milcent |
629 |
}
|
245 |
jp_milcent |
630 |
|
389 |
gduche |
631 |
public void enregistrerPersonne(Rafraichissable vue, Personne personne){
|
429 |
gduche |
632 |
if (personne.getId()!=null && !personne.getId().trim().equals("")) {
|
|
|
633 |
modele.modifierPersonne(vue, personne);
|
|
|
634 |
} else {
|
|
|
635 |
modele.ajouterPersonne(vue, personne);
|
|
|
636 |
}
|
389 |
gduche |
637 |
}
|
|
|
638 |
|
156 |
jp_milcent |
639 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
640 |
// GESTION DES PUBLICATIONS
|
|
|
641 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
642 |
|
107 |
aurelien |
643 |
public void afficherListePublication(PublicationListe nouvelleDonnees) {
|
|
|
644 |
|
626 |
gduche |
645 |
if (!(contenuPanneauCentre instanceof PersonneVue)) {
|
|
|
646 |
panneauCentre.removeAll();
|
|
|
647 |
PublicationVue publicationVue = new PublicationVue(this) ;
|
|
|
648 |
panneauCentre.removeAll();
|
|
|
649 |
panneauCentre.add(publicationVue);
|
|
|
650 |
contenuPanneauCentre = publicationVue;
|
|
|
651 |
}
|
|
|
652 |
|
|
|
653 |
contenuPanneauCentre.rafraichir(nouvelleDonnees);
|
|
|
654 |
|
107 |
aurelien |
655 |
}
|
|
|
656 |
|
|
|
657 |
public void clicListePublication(Publication publication) {
|
379 |
jp_milcent |
658 |
panneauCentre.rafraichir(publication);
|
107 |
aurelien |
659 |
}
|
|
|
660 |
|
|
|
661 |
public void clicAjouterPublication() {
|
223 |
aurelien |
662 |
panneauCentre.removeAll();
|
444 |
jp_milcent |
663 |
PublicationForm publicationForm = new PublicationForm();
|
|
|
664 |
panneauCentre.add(publicationForm);
|
223 |
aurelien |
665 |
panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
|
|
|
666 |
panneauCentre.layout();
|
107 |
aurelien |
667 |
}
|
156 |
jp_milcent |
668 |
|
245 |
jp_milcent |
669 |
public void clicModifierPublication(List<Publication> publicationListe) {
|
|
|
670 |
if(publicationListe.size() <= 0) {
|
315 |
gduche |
671 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
672 |
} else {
|
245 |
jp_milcent |
673 |
Publication pubAModifier = publicationListe.get(publicationListe.size() -1);
|
|
|
674 |
panneauCentre.removeAll();
|
444 |
jp_milcent |
675 |
PublicationForm publicationForm = new PublicationForm();
|
|
|
676 |
panneauCentre.add(publicationForm);
|
245 |
jp_milcent |
677 |
panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
|
|
|
678 |
panneauCentre.layout();
|
444 |
jp_milcent |
679 |
publicationForm.rafraichir(pubAModifier);
|
245 |
jp_milcent |
680 |
}
|
|
|
681 |
}
|
|
|
682 |
|
315 |
gduche |
683 |
public void clicSupprimerPublication(final List<Publication> publicationListe) {
|
453 |
jp_milcent |
684 |
if (publicationListe.size() <= 0) {
|
315 |
gduche |
685 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
686 |
} else {
|
453 |
jp_milcent |
687 |
String message = "Voulez-vous vraiment supprimer ces publication ?";
|
245 |
jp_milcent |
688 |
if(publicationListe.size() == 1) {
|
|
|
689 |
message = "Voulez-vous vraiment supprimer cette publication ?";
|
|
|
690 |
}
|
315 |
gduche |
691 |
|
502 |
gduche |
692 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
693 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
694 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
695 |
Button btn = ce.getButtonClicked();
|
315 |
gduche |
696 |
|
379 |
jp_milcent |
697 |
if (btn.getText().equals(dialog.yesText)) {
|
315 |
gduche |
698 |
modele.supprimerPublication(contenuPanneauCentre, getUtilisateurId(),publicationListe);
|
|
|
699 |
}
|
|
|
700 |
}
|
|
|
701 |
};
|
|
|
702 |
|
|
|
703 |
MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
|
245 |
jp_milcent |
704 |
}
|
|
|
705 |
}
|
|
|
706 |
|
444 |
jp_milcent |
707 |
public void ajouterPublication(PublicationForm publicationForm, Publication publi) {
|
453 |
jp_milcent |
708 |
modele.ajouterPublication(contenuPanneauCentre, getUtilisateurId(), publi);
|
245 |
jp_milcent |
709 |
}
|
|
|
710 |
|
444 |
jp_milcent |
711 |
public void modifierPublication(PublicationForm publicationForm, Publication publi) {
|
453 |
jp_milcent |
712 |
modele.modifierPublication(contenuPanneauCentre, getUtilisateurId(), publi);
|
245 |
jp_milcent |
713 |
}
|
|
|
714 |
|
453 |
jp_milcent |
715 |
public void clicObtenirListeEditeurs(Rafraichissable vueARafraichir) {
|
|
|
716 |
modele.selectionnerStructure(vueARafraichir, null, null);
|
245 |
jp_milcent |
717 |
}
|
|
|
718 |
|
453 |
jp_milcent |
719 |
public void clicObtenirListeAuteurs(Rafraichissable vueARafraichir) {
|
599 |
gduche |
720 |
//modele.selectionnerPersonne(vueARafraichir, null, null, null);
|
|
|
721 |
selectionnerPersonne(vueARafraichir, null, null);
|
245 |
jp_milcent |
722 |
}
|
|
|
723 |
|
156 |
jp_milcent |
724 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
725 |
// RAFRAICHISSEMENT
|
156 |
jp_milcent |
726 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
727 |
|
277 |
jp_milcent |
728 |
public void rafraichir(Object nouvelleDonnees) {
|
|
|
729 |
if (nouvelleDonnees instanceof Utilisateur) {
|
|
|
730 |
mettreAJourEtatIdentification((Utilisateur) nouvelleDonnees);
|
278 |
jp_milcent |
731 |
} else {
|
|
|
732 |
GWT.log("Pas de correspondance dans la méthode rafraichir() de la classe "+this.getClass(), null);
|
277 |
jp_milcent |
733 |
}
|
|
|
734 |
}
|
281 |
gduche |
735 |
|
453 |
jp_milcent |
736 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
737 |
// GESTION du STATUT
|
|
|
738 |
//+----------------------------------------------------------------------------------------------------------------+
|
288 |
gduche |
739 |
|
332 |
gduche |
740 |
public void afficherPopinChargement() {
|
|
|
741 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
|
|
|
742 |
}
|
453 |
jp_milcent |
743 |
|
332 |
gduche |
744 |
public void masquerPopinChargement() {
|
|
|
745 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
|
|
|
746 |
}
|
447 |
jp_milcent |
747 |
|
277 |
jp_milcent |
748 |
}
|