991 |
gduche |
1 |
package org.tela_botanica.client.vues.personne;
|
|
|
2 |
|
|
|
3 |
import java.util.ArrayList;
|
1014 |
gduche |
4 |
import java.util.Iterator;
|
|
|
5 |
import java.util.LinkedList;
|
991 |
gduche |
6 |
import java.util.List;
|
|
|
7 |
|
1003 |
gduche |
8 |
import org.tela_botanica.client.ComposantClass;
|
991 |
gduche |
9 |
import org.tela_botanica.client.Mediateur;
|
1204 |
cyprien |
10 |
import org.tela_botanica.client.composants.InfoLogger;
|
991 |
gduche |
11 |
import org.tela_botanica.client.images.Images;
|
|
|
12 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
13 |
import org.tela_botanica.client.modeles.Information;
|
1003 |
gduche |
14 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
15 |
import org.tela_botanica.client.modeles.ValeurListe;
|
991 |
gduche |
16 |
import org.tela_botanica.client.modeles.aDonnee;
|
1217 |
cyprien |
17 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
|
991 |
gduche |
18 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
19 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
20 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
|
|
|
21 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
22 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
|
|
23 |
import org.tela_botanica.client.util.Debug;
|
1014 |
gduche |
24 |
import org.tela_botanica.client.util.UtilString;
|
991 |
gduche |
25 |
import org.tela_botanica.client.vues.FenetreForm;
|
|
|
26 |
import org.tela_botanica.client.vues.Formulaire;
|
|
|
27 |
import org.tela_botanica.client.vues.FormulaireBarreValidation;
|
|
|
28 |
import org.tela_botanica.client.vues.FormulaireOnglet;
|
|
|
29 |
import org.tela_botanica.client.vues.publication.PublicationForm;
|
|
|
30 |
|
|
|
31 |
import com.extjs.gxt.ui.client.core.XTemplate;
|
|
|
32 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
|
|
33 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
|
|
34 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
35 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
36 |
import com.extjs.gxt.ui.client.event.KeyListener;
|
|
|
37 |
import com.extjs.gxt.ui.client.event.Listener;
|
|
|
38 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
39 |
import com.extjs.gxt.ui.client.store.ListStore;
|
|
|
40 |
import com.extjs.gxt.ui.client.store.Store;
|
|
|
41 |
import com.extjs.gxt.ui.client.store.StoreEvent;
|
|
|
42 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
|
|
43 |
import com.extjs.gxt.ui.client.widget.Info;
|
|
|
44 |
import com.extjs.gxt.ui.client.widget.Text;
|
|
|
45 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
46 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
|
|
47 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
|
|
48 |
import com.extjs.gxt.ui.client.widget.form.FormPanel;
|
|
|
49 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
1003 |
gduche |
50 |
import com.extjs.gxt.ui.client.widget.grid.CellEditor;
|
991 |
gduche |
51 |
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
|
|
|
52 |
import com.extjs.gxt.ui.client.widget.grid.ColumnData;
|
|
|
53 |
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
|
|
|
54 |
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
|
|
|
55 |
import com.extjs.gxt.ui.client.widget.grid.Grid;
|
|
|
56 |
import com.extjs.gxt.ui.client.widget.grid.GridCellRenderer;
|
|
|
57 |
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
|
|
|
58 |
import com.extjs.gxt.ui.client.widget.grid.RowExpander;
|
|
|
59 |
import com.extjs.gxt.ui.client.widget.grid.RowNumberer;
|
|
|
60 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
|
|
61 |
import com.extjs.gxt.ui.client.widget.toolbar.SeparatorToolItem;
|
|
|
62 |
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
|
|
|
63 |
import com.google.gwt.core.client.GWT;
|
1217 |
cyprien |
64 |
import com.google.gwt.user.client.Window;
|
991 |
gduche |
65 |
|
|
|
66 |
public class PersonneFormPublication extends FormulaireOnglet implements Rafraichissable {
|
|
|
67 |
|
|
|
68 |
private Personne personneSelectionnee = null;
|
|
|
69 |
private static int idGenere = 1;
|
|
|
70 |
|
|
|
71 |
private ContentPanel panneauPrincipal = null;
|
|
|
72 |
private ToolBar barreOutils = null;
|
|
|
73 |
private EditorGrid<PublicationAPersonne> grille;
|
|
|
74 |
|
|
|
75 |
private PublicationAPersonneListe publicationsAjoutees = null;
|
|
|
76 |
private PublicationAPersonneListe publicationsSupprimees = null;
|
|
|
77 |
private ComboBox<Publication> publicationsSaisiesComboBox = null;
|
|
|
78 |
private Button publicationsBoutonSupprimer = null;
|
|
|
79 |
private Button publicationsBoutonModifier = null;
|
1003 |
gduche |
80 |
private ComboBox<Valeur> typeRelationCombo = null;
|
1014 |
gduche |
81 |
private List<Valeur> roles = null;
|
|
|
82 |
private PublicationAPersonneListe listePublicationsLiees = new PublicationAPersonneListe();
|
991 |
gduche |
83 |
|
|
|
84 |
private FenetreForm fenetreFormulaire = null;
|
|
|
85 |
|
|
|
86 |
public PersonneFormPublication(Formulaire formulaireCourrant) {
|
1204 |
cyprien |
87 |
|
|
|
88 |
Debug.log("|> PersonneFormPublication : [constructeur]");
|
|
|
89 |
|
991 |
gduche |
90 |
initialiserOnglet(formulaireCourrant);
|
|
|
91 |
setId("publication");
|
|
|
92 |
setText(Mediateur.i18nC.collectionPublication());
|
|
|
93 |
setStyleAttribute("padding", "0");
|
|
|
94 |
|
|
|
95 |
panneauPrincipal = creerPanneauContenantGrille();
|
|
|
96 |
barreOutils = creerBarreOutilsGrille();
|
|
|
97 |
panneauPrincipal.setTopComponent(barreOutils);
|
|
|
98 |
grille = creerGrille();
|
|
|
99 |
panneauPrincipal.add(grille);
|
|
|
100 |
add(panneauPrincipal);
|
|
|
101 |
|
|
|
102 |
initialiser();
|
|
|
103 |
}
|
|
|
104 |
|
|
|
105 |
private void initialiser() {
|
1204 |
cyprien |
106 |
|
|
|
107 |
Debug.log("|> PersonneFormPublication.initialiser()");
|
|
|
108 |
|
991 |
gduche |
109 |
// Remise à zéro des modification dans la liste des auteurs
|
|
|
110 |
idGenere = 1;
|
|
|
111 |
publicationsAjoutees = new PublicationAPersonneListe();
|
|
|
112 |
publicationsSupprimees = new PublicationAPersonneListe();
|
|
|
113 |
|
|
|
114 |
// Actualisation de l'état des boutons de la barre d'outils
|
|
|
115 |
actualiserEtatBoutonsBarreOutils();
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
public void mettreAJourPersonne() {
|
1204 |
cyprien |
119 |
|
|
|
120 |
Debug.log("|> *** BEGIN PersonneFormPublication.mettreAJourPersonne()");
|
|
|
121 |
|
991 |
gduche |
122 |
personneSelectionnee = ((PersonneForm) formulaire).personneSelectionnee;
|
1204 |
cyprien |
123 |
|
|
|
124 |
Debug.log("|--> PersonneFormPublication.mettreAJourPersonne : personneSelectionnee="+personneSelectionnee.toString());
|
|
|
125 |
|
|
|
126 |
if (personneSelectionnee==null) Debug.log("|> *** (personneSelectionnee==null)");
|
|
|
127 |
else Debug.log("|> *** (personneSelectionnee!=null)");
|
|
|
128 |
|
1014 |
gduche |
129 |
//Boucle sur les role pour trouver les publication à personne
|
1204 |
cyprien |
130 |
|
|
|
131 |
// FIXME !
|
|
|
132 |
//-------------------
|
|
|
133 |
// Author : Cyprien
|
|
|
134 |
//-------------------
|
|
|
135 |
// J'ai rajouté le test (toString()!="") parce que bien que l'objet personneSelectionne soit vide, (personneSelectionnee!=null) retournait
|
|
|
136 |
// tout de meme VRAI
|
|
|
137 |
// Mais le vrai problème, c'est que personneSelectionne puisse être nul ! personneSelectionne devrait toujours etre affecté à quelqu'un.
|
|
|
138 |
// De plus, il y a un étrange comportement lorsque l'on clique sur "modifier" une personne : je ne sais pas pourquoi mais les opérations
|
|
|
139 |
// s'effectuent deux fois au lieu d'une, c-a-d que le formulaire lance deux fois l'operation rafraichir au lieu d'une ... et l'opération
|
|
|
140 |
// rafraichir lance à son tour de nombreuses opérations qui en conséquence sont effectuées deux fois au lieu d'une
|
|
|
141 |
if ((roles != null) && (personneSelectionnee!=null) && (!personneSelectionnee.toString().equals(""))) {
|
|
|
142 |
|
1014 |
gduche |
143 |
mediateur.selectionnerPublicationAPersonne(this, null, personneSelectionnee.getId(), roles);
|
1204 |
cyprien |
144 |
|
|
|
145 |
Debug.log("|--> PersonneFormPublication.mettreAJourPersonne : selectionnerPublicationAPersonne(this, null, personneSelectionnee.getId(), roles)");
|
|
|
146 |
Debug.log("| avec personneSelectionnee.getId()="+personneSelectionnee.getId());
|
|
|
147 |
Debug.log("|> END PersonneFormPublication.mettreAJourPersonne()");
|
1014 |
gduche |
148 |
}
|
991 |
gduche |
149 |
}
|
|
|
150 |
|
|
|
151 |
private ContentPanel creerPanneauContenantGrille() {
|
|
|
152 |
ContentPanel panneau = new ContentPanel();
|
|
|
153 |
|
|
|
154 |
panneau.setHeading(i18nC.collectionPublication()+" " + i18nC.personnePublication());
|
|
|
155 |
panneau.setIcon(Images.ICONES.table());
|
|
|
156 |
panneau.setLayout(new FitLayout());
|
|
|
157 |
panneau.setFrame(true);
|
|
|
158 |
|
|
|
159 |
return panneau;
|
|
|
160 |
}
|
|
|
161 |
|
|
|
162 |
private ToolBar creerBarreOutilsGrille() {
|
|
|
163 |
ToolBar barreOutils = new ToolBar();
|
|
|
164 |
|
|
|
165 |
Button ajouterBouton = creerBoutonAjouter();
|
|
|
166 |
barreOutils.add(ajouterBouton);
|
|
|
167 |
|
|
|
168 |
barreOutils.add(new Text(" ou "));
|
|
|
169 |
|
|
|
170 |
publicationsSaisiesComboBox = creerComboBoxPublicationsSaisis();
|
|
|
171 |
barreOutils.add(publicationsSaisiesComboBox);
|
|
|
172 |
|
|
|
173 |
barreOutils.add(new SeparatorToolItem());
|
|
|
174 |
|
|
|
175 |
publicationsBoutonModifier = creerBoutonModifier();
|
|
|
176 |
barreOutils.add(publicationsBoutonModifier);
|
|
|
177 |
|
|
|
178 |
barreOutils.add(new SeparatorToolItem());
|
|
|
179 |
|
|
|
180 |
publicationsBoutonSupprimer = creerBoutonSupprimer();
|
|
|
181 |
barreOutils.add(publicationsBoutonSupprimer);
|
|
|
182 |
|
|
|
183 |
barreOutils.add(new SeparatorToolItem());
|
|
|
184 |
|
|
|
185 |
Button rafraichirBouton = creerBoutonRafraichir();
|
|
|
186 |
barreOutils.add(rafraichirBouton);
|
|
|
187 |
|
|
|
188 |
return barreOutils;
|
|
|
189 |
}
|
|
|
190 |
|
|
|
191 |
private Button creerBoutonAjouter() {
|
|
|
192 |
Button bouton = new Button(i18nC.ajouter());
|
|
|
193 |
bouton.setIcon(Images.ICONES.vcardAjouter());
|
|
|
194 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
195 |
public void componentSelected(ButtonEvent ce) {
|
|
|
196 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_AJOUTER);
|
|
|
197 |
fenetreFormulaire.show();
|
|
|
198 |
}
|
|
|
199 |
});
|
|
|
200 |
return bouton;
|
|
|
201 |
}
|
|
|
202 |
|
|
|
203 |
private Button creerBoutonModifier() {
|
|
|
204 |
Button bouton = new Button(i18nC.modifier());
|
|
|
205 |
bouton.setIcon(Images.ICONES.vcardModifier());
|
|
|
206 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
207 |
public void componentSelected(ButtonEvent ce) {
|
|
|
208 |
PublicationAPersonne publicationSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
209 |
|
|
|
210 |
if (publicationSaisieSelectionnee == null) {
|
1204 |
cyprien |
211 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPublication());
|
991 |
gduche |
212 |
} else {
|
|
|
213 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_MODIFIER);
|
|
|
214 |
fenetreFormulaire.show();
|
|
|
215 |
}
|
|
|
216 |
}
|
|
|
217 |
});
|
|
|
218 |
return bouton;
|
|
|
219 |
}
|
|
|
220 |
|
|
|
221 |
private FenetreForm creerFenetreModaleAvecFormulairePersonne(String mode) {
|
|
|
222 |
String publicationId = null;
|
|
|
223 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
224 |
PublicationAPersonne publicationSaisiSelectionne = grille.getSelectionModel().getSelectedItem();
|
|
|
225 |
publicationId = publicationSaisiSelectionne.getIdPublication();
|
|
|
226 |
}
|
|
|
227 |
|
|
|
228 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
229 |
final PublicationForm formulaire = creerFormulairePublication(fenetre, publicationId);
|
|
|
230 |
fenetre.add(formulaire);
|
|
|
231 |
return fenetre;
|
|
|
232 |
}
|
|
|
233 |
|
|
|
234 |
private PublicationForm creerFormulairePublication(final FenetreForm fenetre, final String publicationId) {
|
|
|
235 |
PublicationForm formulairePublication = new PublicationForm(mediateur, publicationId, this);
|
|
|
236 |
FormPanel panneauFormulaire = formulairePublication.getFormulaire();
|
|
|
237 |
fenetre.setHeading(panneauFormulaire.getHeading());
|
|
|
238 |
panneauFormulaire.setHeaderVisible(false);
|
|
|
239 |
panneauFormulaire.setTopComponent(null);
|
|
|
240 |
|
|
|
241 |
// FIXME : avec GXT-2.1.0 la redéfinition du bottom component ne marche plus. Nous le cachons et en créeons un dans la fenêtre.
|
|
|
242 |
panneauFormulaire.getBottomComponent().hide();
|
|
|
243 |
SelectionListener<ButtonEvent> ecouteur = creerEcouteurValidationFormulairePublication(fenetre, formulairePublication);
|
|
|
244 |
final ButtonBar barreValidation = new FormulaireBarreValidation(ecouteur);
|
|
|
245 |
fenetre.setBottomComponent(barreValidation);
|
|
|
246 |
|
|
|
247 |
return formulairePublication;
|
|
|
248 |
}
|
|
|
249 |
|
|
|
250 |
private SelectionListener<ButtonEvent> creerEcouteurValidationFormulairePublication(final FenetreForm fenetre, final PublicationForm formulaire) {
|
|
|
251 |
SelectionListener<ButtonEvent> ecouteur = new SelectionListener<ButtonEvent>() {
|
|
|
252 |
public void componentSelected(ButtonEvent ce) {
|
|
|
253 |
String code = ((Button) ce.getComponent()).getData("code");
|
|
|
254 |
if (code.equals(FormulaireBarreValidation.CODE_BOUTON_VALIDER)) {
|
|
|
255 |
if (formulaire.soumettreFormulaire()) {
|
|
|
256 |
fenetre.hide();
|
|
|
257 |
}
|
|
|
258 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_APPLIQUER)) {
|
|
|
259 |
formulaire.soumettreFormulaire();
|
|
|
260 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_ANNULER)) {
|
|
|
261 |
fenetre.hide();
|
|
|
262 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_REINITIALISER)) {
|
|
|
263 |
fenetreFormulaire.hide();
|
|
|
264 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(formulaire.mode);
|
|
|
265 |
fenetreFormulaire.show();
|
|
|
266 |
}
|
|
|
267 |
}
|
|
|
268 |
};
|
|
|
269 |
|
|
|
270 |
return ecouteur;
|
|
|
271 |
}
|
|
|
272 |
|
|
|
273 |
private Button creerBoutonSupprimer() {
|
|
|
274 |
Button bouton = new Button(i18nC.supprimer());
|
|
|
275 |
bouton.setIcon(Images.ICONES.vcardSupprimer());
|
|
|
276 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
277 |
public void componentSelected(ButtonEvent ce) {
|
|
|
278 |
PublicationAPersonne publicationSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
279 |
if (publicationSaisieSelectionnee == null) {
|
1204 |
cyprien |
280 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPublication());
|
991 |
gduche |
281 |
} else {
|
|
|
282 |
supprimerDansGrille(publicationSaisieSelectionnee);
|
|
|
283 |
}
|
|
|
284 |
}
|
|
|
285 |
});
|
|
|
286 |
return bouton;
|
|
|
287 |
}
|
|
|
288 |
|
|
|
289 |
private Button creerBoutonRafraichir() {
|
|
|
290 |
Button bouton = new Button(i18nC.rafraichir());
|
|
|
291 |
bouton.setIcon(Images.ICONES.rafraichir());
|
|
|
292 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
293 |
public void componentSelected(ButtonEvent ce) {
|
|
|
294 |
actualiserGrille();
|
|
|
295 |
}
|
|
|
296 |
});
|
|
|
297 |
return bouton;
|
|
|
298 |
}
|
|
|
299 |
|
|
|
300 |
private void actualiserGrille() {
|
1204 |
cyprien |
301 |
|
|
|
302 |
Debug.log("|> PersonneFormPublication.actualiserGrille()");
|
|
|
303 |
|
991 |
gduche |
304 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
1003 |
gduche |
305 |
mediateur.selectionnerPublicationAPersonne(this, null, personneSelectionnee.getId(), "%");
|
991 |
gduche |
306 |
} else {
|
|
|
307 |
grille.getStore().removeAll();
|
|
|
308 |
layout();
|
|
|
309 |
}
|
|
|
310 |
}
|
|
|
311 |
|
|
|
312 |
private ComboBox<Publication> creerComboBoxPublicationsSaisis() {
|
|
|
313 |
ListStore<Publication> publicationsSaisiesStore = new ListStore<Publication>();
|
|
|
314 |
|
|
|
315 |
ComboBox<Publication> comboBox = new ComboBox<Publication>();
|
|
|
316 |
comboBox.setWidth(400);
|
|
|
317 |
comboBox.setEmptyText(i18nC.chercherPublicationSaisi());
|
|
|
318 |
comboBox.setTriggerAction(TriggerAction.ALL);
|
|
|
319 |
comboBox.setEditable(true);
|
|
|
320 |
comboBox.setDisplayField("fmt_nom_complet");
|
|
|
321 |
comboBox.setStore(publicationsSaisiesStore);
|
|
|
322 |
comboBox.addKeyListener(new KeyListener() {
|
|
|
323 |
public void componentKeyUp(ComponentEvent ce) {
|
|
|
324 |
if (publicationsSaisiesComboBox.getRawValue() != null && publicationsSaisiesComboBox.getRawValue().length() > 0) {
|
|
|
325 |
if (!ce.isNavKeyPress()) {
|
|
|
326 |
obtenirPublicationsSaisies(publicationsSaisiesComboBox.getRawValue());
|
|
|
327 |
}
|
|
|
328 |
}
|
|
|
329 |
}
|
|
|
330 |
});
|
|
|
331 |
comboBox.addListener(Events.Select, new Listener<BaseEvent>() {
|
|
|
332 |
public void handleEvent(BaseEvent be) {
|
|
|
333 |
if (publicationsSaisiesComboBox.getValue() instanceof Publication) {
|
|
|
334 |
Publication publicationSaisieSelectionne = publicationsSaisiesComboBox.getValue();
|
|
|
335 |
ajouterDansGrille(publicationSaisieSelectionne);
|
|
|
336 |
publicationsSaisiesComboBox.setValue(null);
|
|
|
337 |
}
|
|
|
338 |
}
|
|
|
339 |
});
|
|
|
340 |
return comboBox;
|
|
|
341 |
}
|
|
|
342 |
|
|
|
343 |
private void ajouterDansGrille(Publication publication) {
|
|
|
344 |
ajouterDansGrille(publication, 0);
|
|
|
345 |
}
|
|
|
346 |
|
|
|
347 |
private void ajouterDansGrille(Publication publication, int index) {
|
1204 |
cyprien |
348 |
Debug.log("|> PersonneFormPublication.ajouterDansGrille(Publication publication, int index)");
|
991 |
gduche |
349 |
if (publication != null) {
|
1204 |
cyprien |
350 |
Debug.log("|--> publication != null");
|
1014 |
gduche |
351 |
if (!listePublicationsLiees.containsKey(publication.getId())) {
|
|
|
352 |
PublicationAPersonne publicationLiee = new PublicationAPersonne();
|
|
|
353 |
publicationLiee.setPersonne(personneSelectionnee);
|
|
|
354 |
publicationLiee.setPublicationLiee(publication);
|
|
|
355 |
publicationLiee.setIdPublication(publication.getId());
|
1217 |
cyprien |
356 |
|
|
|
357 |
Debug.log("\\\\> set ETAT_AJOUTE");
|
|
|
358 |
|
1014 |
gduche |
359 |
publicationLiee.set("_etat_", aDonnee.ETAT_AJOUTE);
|
|
|
360 |
listePublicationsLiees.put(publication.getId(), publicationLiee);
|
1204 |
cyprien |
361 |
|
|
|
362 |
Debug.log("|--> personneSelectionneeID="+personneSelectionnee.getId());
|
|
|
363 |
Debug.log("|--> publicationID="+publication.getId());
|
1014 |
gduche |
364 |
|
|
|
365 |
// Ajout à la grille
|
|
|
366 |
grille.stopEditing();
|
|
|
367 |
grille.getStore().insert(publicationLiee, 0);
|
|
|
368 |
grille.startEditing(index, 0);
|
|
|
369 |
grille.getSelectionModel().select(index, false);
|
|
|
370 |
} else {
|
1204 |
cyprien |
371 |
InfoLogger.display("Information", "La publication choisie existe déjà dans la liste.");
|
991 |
gduche |
372 |
}
|
|
|
373 |
}
|
|
|
374 |
}
|
|
|
375 |
|
1014 |
gduche |
376 |
/**
|
|
|
377 |
* Met à jour la grille avec les informations contenus dans la variable listePublicationsLiees
|
|
|
378 |
*/
|
|
|
379 |
private void mettreAJourGrille() {
|
1204 |
cyprien |
380 |
|
|
|
381 |
Debug.log("|> PersonneFormPublication.mettreAJourGrille()");
|
|
|
382 |
|
1014 |
gduche |
383 |
grille.getStore().removeAll();
|
|
|
384 |
grille.getStore().add(listePublicationsLiees.toList());
|
|
|
385 |
}
|
|
|
386 |
|
991 |
gduche |
387 |
private void supprimerDansGrille(PublicationAPersonne publicationLiee) {
|
|
|
388 |
if (publicationLiee != null) {
|
|
|
389 |
// Ajout de la personne supprimée à la liste
|
|
|
390 |
if ((publicationLiee.get("_etat_").equals("") || !publicationLiee.get("_etat_").equals(aDonnee.ETAT_AJOUTE))
|
|
|
391 |
&& publicationLiee.getId() != null
|
|
|
392 |
&& !publicationLiee.getId().equals("")) {
|
|
|
393 |
Debug.log("Nbre publications supprimées avant:"+publicationsSupprimees.size());
|
|
|
394 |
publicationsSupprimees.put("id"+idGenere++, publicationLiee);
|
|
|
395 |
//GWT.log("Publications supprimée : "+publicationLiee.getIdPublication()+" "+publicationLiee.get.getNomComplet(), null);
|
|
|
396 |
Debug.log("Nbre publications supprimées :"+publicationsSupprimees.size());
|
|
|
397 |
}
|
|
|
398 |
|
|
|
399 |
// Suppression de l'enregistrement de la grille
|
|
|
400 |
grille.getStore().remove(publicationLiee);
|
|
|
401 |
}
|
|
|
402 |
}
|
|
|
403 |
|
|
|
404 |
private EditorGrid<PublicationAPersonne> creerGrille() {
|
1204 |
cyprien |
405 |
|
|
|
406 |
Debug.log("|> PersonneFormPublication.creerGrille()");
|
|
|
407 |
|
991 |
gduche |
408 |
ListStore<PublicationAPersonne> storeGrille = new ListStore<PublicationAPersonne>();
|
|
|
409 |
storeGrille.addListener(Store.Add, new Listener<StoreEvent<PublicationAPersonne>>() {
|
|
|
410 |
public void handleEvent(StoreEvent<PublicationAPersonne> ce) {
|
|
|
411 |
actualiserEtatBoutonsBarreOutils();
|
|
|
412 |
}
|
|
|
413 |
});
|
|
|
414 |
storeGrille.addListener(Store.Remove, new Listener<StoreEvent<PublicationAPersonne>>() {
|
|
|
415 |
public void handleEvent(StoreEvent<PublicationAPersonne> ce) {
|
|
|
416 |
actualiserEtatBoutonsBarreOutils();
|
|
|
417 |
}
|
|
|
418 |
});
|
1217 |
cyprien |
419 |
storeGrille.addListener(Store.Update, new Listener<StoreEvent<PublicationAPersonne>>() {
|
|
|
420 |
public void handleEvent(StoreEvent<PublicationAPersonne> ce) {
|
|
|
421 |
if (ce.getRecord().isModified("_role_") && !ce.getModel().get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
422 |
Debug.log("||| PersonneFormPublication.creerGrille, storeGrille LISTENER : set ETAT_MODIFIE");
|
|
|
423 |
ce.getModel().set("_etat_", aDonnee.ETAT_MODIFIE);
|
|
|
424 |
}
|
|
|
425 |
}
|
|
|
426 |
});
|
991 |
gduche |
427 |
|
|
|
428 |
RowNumberer numeroPlugin = new RowNumberer();
|
|
|
429 |
numeroPlugin.setHeader("#");
|
|
|
430 |
|
|
|
431 |
XTemplate infoTpl = XTemplate.create("<p>"+
|
|
|
432 |
"<span style='font-weight:bold;'>"+i18nC.publicationAuteurs()+" :</span> {fmt_auteur}<br />"+
|
|
|
433 |
"<span style='font-weight:bold;'>"+i18nC.publicationTitre()+" :</span> {titre}<br />"+
|
|
|
434 |
"<span style='font-weight:bold;'>"+i18nC.publicationRevueCollection()+" :</span> {collection}<br />"+
|
|
|
435 |
"<span style='font-weight:bold;'>"+i18nC.publicationEditeur()+" :</span> {_editeur_}"+
|
|
|
436 |
"</p>");
|
|
|
437 |
RowExpander expansionPlugin = new RowExpander();
|
|
|
438 |
expansionPlugin.setTemplate(infoTpl);
|
|
|
439 |
|
|
|
440 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
|
|
441 |
colonnes.add(expansionPlugin);
|
|
|
442 |
colonnes.add(numeroPlugin);
|
1003 |
gduche |
443 |
|
|
|
444 |
|
|
|
445 |
typeRelationCombo = new ComboBox<Valeur>();
|
|
|
446 |
typeRelationCombo.setForceSelection(true);
|
|
|
447 |
typeRelationCombo.setTriggerAction(TriggerAction.ALL);
|
|
|
448 |
typeRelationCombo.setDisplayField("nom");
|
|
|
449 |
typeRelationCombo.setStore(new ListStore<Valeur>());
|
|
|
450 |
typeRelationCombo.setEditable(false);
|
|
|
451 |
typeRelationCombo.addStyleName(ComposantClass.OBLIGATOIRE);
|
|
|
452 |
typeRelationCombo.addListener(Events.Select, Formulaire.creerEcouteurChampObligatoire());
|
|
|
453 |
|
|
|
454 |
CellEditor editeurRelation = new CellEditor(typeRelationCombo) {
|
|
|
455 |
public Object preProcessValue(Object valeur) {
|
|
|
456 |
Valeur retour = null;
|
|
|
457 |
if (valeur != null ) {
|
|
|
458 |
if (typeRelationCombo.getStore().findModel("nom", valeur.toString()) != null) {
|
|
|
459 |
retour = typeRelationCombo.getStore().findModel("nom", valeur.toString());
|
|
|
460 |
} else if (typeRelationCombo.getStore().findModel("abr", valeur.toString()) != null) {
|
|
|
461 |
retour = typeRelationCombo.getStore().findModel("abr", valeur.toString());
|
|
|
462 |
} else if (typeRelationCombo.getStore().findModel("id_valeur", valeur.toString()) != null) {
|
|
|
463 |
retour = typeRelationCombo.getStore().findModel("id_valeur", valeur.toString());
|
|
|
464 |
}
|
|
|
465 |
}
|
|
|
466 |
return retour;
|
|
|
467 |
}
|
|
|
468 |
|
|
|
469 |
public Object postProcessValue(Object valeur) {
|
|
|
470 |
String retour = null;
|
|
|
471 |
if (valeur != null ) {
|
|
|
472 |
if (valeur instanceof Valeur) {
|
|
|
473 |
Valeur valeurOntologie = (Valeur) valeur;
|
|
|
474 |
retour = valeurOntologie.getId();
|
|
|
475 |
}
|
|
|
476 |
}
|
|
|
477 |
return retour;
|
|
|
478 |
}
|
|
|
479 |
};
|
|
|
480 |
|
|
|
481 |
GridCellRenderer<PublicationAPersonne> relationRendu = new GridCellRenderer<PublicationAPersonne>() {
|
|
|
482 |
public String render(PublicationAPersonne modele, String property, ColumnData config, int rowIndex, int colIndex, ListStore<PublicationAPersonne> store, Grid<PublicationAPersonne> grille) {
|
|
|
483 |
// Gestion du texte afficher dans la cellule
|
|
|
484 |
String role = modele.get("_role_");
|
1014 |
gduche |
485 |
String roleNom = "";
|
|
|
486 |
if (typeRelationCombo.getStore() != null && role!=null && role.matches("[0-9]+")) {
|
|
|
487 |
roleNom = typeRelationCombo.getStore().findModel("id_valeur", role).getNom();
|
1003 |
gduche |
488 |
role = typeRelationCombo.getStore().findModel("id_valeur", role).getId();
|
|
|
489 |
}
|
|
|
490 |
modele.set("_role_", role);
|
1014 |
gduche |
491 |
return roleNom;
|
1003 |
gduche |
492 |
}
|
|
|
493 |
};
|
|
|
494 |
|
1217 |
cyprien |
495 |
|
1003 |
gduche |
496 |
|
1217 |
cyprien |
497 |
|
1003 |
gduche |
498 |
ColumnConfig typeRelationColonne = new ColumnConfig("_role_", i18nC.typeRelationPersonneCollection(), 75);
|
|
|
499 |
typeRelationColonne.setEditor(editeurRelation);
|
|
|
500 |
typeRelationColonne.setRenderer(relationRendu);
|
1014 |
gduche |
501 |
|
1003 |
gduche |
502 |
colonnes.add(typeRelationColonne);
|
|
|
503 |
|
991 |
gduche |
504 |
colonnes.add(new ColumnConfig("fmt_auteur", i18nC.publicationAuteurs(), 150));
|
|
|
505 |
colonnes.add(new ColumnConfig("titre", i18nC.publicationTitre(), 150));
|
|
|
506 |
colonnes.add(new ColumnConfig("collection", i18nC.publicationRevueCollection(), 75));
|
|
|
507 |
colonnes.add(creerColonneEditeur());
|
|
|
508 |
colonnes.add(creerColonneAnneePublication());
|
|
|
509 |
colonnes.add(new ColumnConfig("indication_nvt", i18nC.publicationNvt(), 75));
|
|
|
510 |
colonnes.add(new ColumnConfig("fascicule", i18nC.publicationFascicule(), 75));
|
|
|
511 |
colonnes.add(new ColumnConfig("truk_pages", i18nC.publicationPage(), 50));
|
|
|
512 |
|
|
|
513 |
GridSelectionModel<PublicationAPersonne> modeleDeSelection = new GridSelectionModel<PublicationAPersonne>();
|
|
|
514 |
|
|
|
515 |
ColumnModel modeleDeColonnes = new ColumnModel(colonnes);
|
|
|
516 |
modeleDeColonnes.getColumn(0).setWidget(Images.ICONES.information().createImage(), "Info");
|
|
|
517 |
|
|
|
518 |
EditorGrid<PublicationAPersonne> grillePublications = new EditorGrid<PublicationAPersonne>(storeGrille, modeleDeColonnes);
|
|
|
519 |
grillePublications.setHeight("100%");
|
|
|
520 |
grillePublications.setBorders(true);
|
|
|
521 |
grillePublications.setSelectionModel(modeleDeSelection);
|
|
|
522 |
grillePublications.addPlugin(expansionPlugin);
|
|
|
523 |
grillePublications.addPlugin(numeroPlugin);
|
|
|
524 |
grillePublications.getView().setForceFit(true);
|
|
|
525 |
grillePublications.setAutoExpandColumn("titre");
|
|
|
526 |
grillePublications.setStripeRows(true);
|
|
|
527 |
grillePublications.setTrackMouseOver(true);
|
|
|
528 |
|
|
|
529 |
return grillePublications;
|
|
|
530 |
}
|
|
|
531 |
|
|
|
532 |
private ColumnConfig creerColonneEditeur() {
|
|
|
533 |
GridCellRenderer<PublicationAPersonne> editeurRendu = new GridCellRenderer<PublicationAPersonne>() {
|
|
|
534 |
public String render(PublicationAPersonne model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<PublicationAPersonne> store, Grid<PublicationAPersonne> grid) {
|
|
|
535 |
String editeur = model.getPublicationLiee().getNomEditeur();
|
|
|
536 |
model.set("_editeur_", editeur);
|
|
|
537 |
return editeur;
|
|
|
538 |
}
|
|
|
539 |
};
|
|
|
540 |
ColumnConfig editeurColonne = new ColumnConfig("_editeur_", Mediateur.i18nC.publicationEditeur(), 135);
|
|
|
541 |
editeurColonne.setRenderer(editeurRendu);
|
|
|
542 |
return editeurColonne;
|
|
|
543 |
}
|
|
|
544 |
|
|
|
545 |
private ColumnConfig creerColonneAnneePublication() {
|
|
|
546 |
GridCellRenderer<PublicationAPersonne> datePublicationRendu = new GridCellRenderer<PublicationAPersonne>() {
|
|
|
547 |
public String render(PublicationAPersonne model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<PublicationAPersonne> store, Grid<PublicationAPersonne> grid) {
|
|
|
548 |
String annee = model.getPublicationLiee().getAnneeParution();
|
|
|
549 |
model.set("_annee_", annee);
|
|
|
550 |
return annee;
|
|
|
551 |
}
|
|
|
552 |
};
|
|
|
553 |
ColumnConfig datePublicationColonne = new ColumnConfig("_annee_", Mediateur.i18nC.publicationDateParution(), 75);
|
|
|
554 |
datePublicationColonne.setRenderer(datePublicationRendu);
|
|
|
555 |
return datePublicationColonne;
|
|
|
556 |
}
|
|
|
557 |
|
|
|
558 |
public void actualiserEtatBoutonsBarreOutils() {
|
|
|
559 |
// Activation des boutons si la grille contient un élément
|
|
|
560 |
if (grille.getStore().getCount() > 0) {
|
|
|
561 |
publicationsBoutonSupprimer.enable();
|
|
|
562 |
publicationsBoutonModifier.enable();
|
|
|
563 |
}
|
|
|
564 |
// Désactivation des boutons si la grille ne contient plus d'élément
|
|
|
565 |
if (grille.getStore().getCount() == 0) {
|
|
|
566 |
publicationsBoutonSupprimer.disable();
|
|
|
567 |
publicationsBoutonModifier.disable();
|
|
|
568 |
}
|
|
|
569 |
}
|
|
|
570 |
|
|
|
571 |
public void rafraichir(Object nouvellesDonnees) {
|
1204 |
cyprien |
572 |
|
|
|
573 |
Debug.log("|> PersonneFormPublication.rafraichir() BEGIN");
|
|
|
574 |
|
1217 |
cyprien |
575 |
if (nouvellesDonnees instanceof Information)
|
|
|
576 |
{
|
|
|
577 |
Debug.log("|>>>>>>>>>>>>>");
|
991 |
gduche |
578 |
Information info = (Information) nouvellesDonnees;
|
|
|
579 |
rafraichirInformation(info);
|
1217 |
cyprien |
580 |
}
|
|
|
581 |
else if (nouvellesDonnees instanceof ValeurListe)
|
|
|
582 |
{
|
1204 |
cyprien |
583 |
|
|
|
584 |
Debug.log("|--> instanceof ValeurListe");
|
|
|
585 |
|
1014 |
gduche |
586 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
1003 |
gduche |
587 |
if (listeValeurs.getId().equals(config.getListeId("relationPersonnePublication"))) {
|
|
|
588 |
Formulaire.rafraichirComboBox(listeValeurs, typeRelationCombo);
|
1014 |
gduche |
589 |
roles = listeValeurs.toList();
|
|
|
590 |
mettreAJourPersonne();
|
1003 |
gduche |
591 |
}
|
1217 |
cyprien |
592 |
}
|
|
|
593 |
else if (nouvellesDonnees instanceof PublicationListe)
|
|
|
594 |
{
|
1204 |
cyprien |
595 |
|
|
|
596 |
Debug.log("|--> instanceof PublicationListe");
|
|
|
597 |
|
991 |
gduche |
598 |
PublicationListe listePublications = (PublicationListe) nouvellesDonnees;
|
|
|
599 |
rafraichirPublicationListe(listePublications);
|
1217 |
cyprien |
600 |
}
|
|
|
601 |
else if (nouvellesDonnees instanceof PublicationAPersonneListe)
|
|
|
602 |
{
|
1204 |
cyprien |
603 |
|
|
|
604 |
Debug.log("|--> instanceof PublicationAPersonneListe");
|
|
|
605 |
|
1014 |
gduche |
606 |
PublicationAPersonneListe papl = (PublicationAPersonneListe) nouvellesDonnees;
|
|
|
607 |
List<PublicationAPersonne> paplListe = papl.toList();
|
|
|
608 |
if (paplListe.size()>0){
|
1204 |
cyprien |
609 |
|
|
|
610 |
Debug.log("|--> paplListe.size()>0");
|
|
|
611 |
Debug.log("|--> paplListe="+paplListe.toString());
|
|
|
612 |
|
1014 |
gduche |
613 |
Iterator<PublicationAPersonne> it = paplListe.iterator();
|
|
|
614 |
while (it.hasNext()) {
|
|
|
615 |
PublicationAPersonne pap = it.next();
|
1204 |
cyprien |
616 |
|
|
|
617 |
Debug.log("|--> listePublicationsLiees.size="+listePublicationsLiees.size());
|
|
|
618 |
|
1014 |
gduche |
619 |
listePublicationsLiees.put(pap.getPublicationLiee().getId(), pap);
|
|
|
620 |
}
|
|
|
621 |
mettreAJourGrille();
|
|
|
622 |
}
|
1204 |
cyprien |
623 |
else {
|
|
|
624 |
Debug.log("|--> paplListe.size()<=0");
|
|
|
625 |
}
|
1217 |
cyprien |
626 |
}
|
|
|
627 |
else
|
|
|
628 |
{
|
|
|
629 |
Debug.log("|>*** CROTTE");
|
991 |
gduche |
630 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
|
|
631 |
}
|
1217 |
cyprien |
632 |
|
1204 |
cyprien |
633 |
Debug.log("|> PersonneFormPublication.rafraichir() END");
|
991 |
gduche |
634 |
}
|
|
|
635 |
|
|
|
636 |
private void rafraichirPublicationListe(PublicationListe listePublications) {
|
1204 |
cyprien |
637 |
|
|
|
638 |
Debug.log("|> PersonneFormPublication.rafraichirPublicationListe(PublicationListe listePublications)");
|
|
|
639 |
|
991 |
gduche |
640 |
publicationsSaisiesComboBox.getStore().removeAll();
|
|
|
641 |
publicationsSaisiesComboBox.getStore().add(listePublications.toList());
|
|
|
642 |
publicationsSaisiesComboBox.expand();
|
|
|
643 |
}
|
|
|
644 |
|
|
|
645 |
public void rafraichirInformation(Information info) {
|
1204 |
cyprien |
646 |
|
|
|
647 |
Debug.log("|> PersonneFormPublication.rafraichirInformation(Information info) BEGIN");
|
|
|
648 |
|
1217 |
cyprien |
649 |
Debug.log("|*^*| type de l'info="+info.getType());
|
|
|
650 |
|
991 |
gduche |
651 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
652 |
GWT.log("MESSAGES:\n"+info.getMessages().toString(), null);
|
|
|
653 |
}
|
|
|
654 |
String type = info.getType();
|
|
|
655 |
if (type.equals("publication_liees")) {
|
|
|
656 |
if (info.getDonnee(0) != null) {
|
|
|
657 |
initialiser();
|
|
|
658 |
personneSelectionnee.setPublicationsLiees((PublicationAPersonneListe) info.getDonnee(0));
|
|
|
659 |
peupler();
|
|
|
660 |
}
|
|
|
661 |
} else if (type.equals("publication_modifiee")) {
|
|
|
662 |
if (info.getDonnee(0) != null) {
|
|
|
663 |
Publication publication = (Publication) info.getDonnee(0);
|
|
|
664 |
PublicationAPersonne publicationDansGrille = grille.getStore().findModel("id_publication", publication.getId());
|
|
|
665 |
int index = grille.getStore().indexOf(publicationDansGrille);
|
|
|
666 |
grille.getStore().remove(publicationDansGrille);
|
|
|
667 |
ajouterDansGrille(publication, index);
|
|
|
668 |
}
|
|
|
669 |
} else if (type.equals("publication_ajoutee")) {
|
|
|
670 |
if (info.getDonnee(0) != null) {
|
|
|
671 |
Publication publication = (Publication) info.getDonnee(0);
|
|
|
672 |
ajouterDansGrille(publication);
|
|
|
673 |
}
|
1217 |
cyprien |
674 |
} else if (type.equals("ajout_publication_a_personne")) {
|
|
|
675 |
InfoLogger.display("Ajout publication à personne", info.getDonnees().toString());
|
|
|
676 |
} else if (type.equals("suppression_publication_a_personne")) {
|
|
|
677 |
InfoLogger.display("Suppression publication à personne", info.getMessages().toString());
|
991 |
gduche |
678 |
} else {
|
|
|
679 |
GWT.log(Mediateur.i18nM.erreurRafraichir(info.getClass(), this.getClass()), null);
|
|
|
680 |
}
|
1217 |
cyprien |
681 |
|
|
|
682 |
Debug.log("|> PersonneFormPublication.rafraichirInformation(Information info) END");
|
991 |
gduche |
683 |
}
|
|
|
684 |
|
|
|
685 |
public void peupler() {
|
|
|
686 |
grille.getStore().removeAll();
|
|
|
687 |
grille.getStore().add(personneSelectionnee.getPublicationsLiees().toList());
|
|
|
688 |
layout();
|
1204 |
cyprien |
689 |
InfoLogger.display(i18nC.chargementPublication(), i18nC.ok());
|
991 |
gduche |
690 |
|
|
|
691 |
}
|
|
|
692 |
|
|
|
693 |
public void collecter() {
|
1204 |
cyprien |
694 |
|
|
|
695 |
Debug.log("|*** PersonneFormPublication.collecter() BEGIN");
|
|
|
696 |
|
991 |
gduche |
697 |
if (etreAccede()) {
|
|
|
698 |
int nbrePublication = grille.getStore().getCount();
|
|
|
699 |
for (int i = 0; i < nbrePublication; i++) {
|
|
|
700 |
PublicationAPersonne publicationLiee = grille.getStore().getAt(i);
|
|
|
701 |
if (publicationLiee.get("_etat_") != null) {
|
|
|
702 |
if (publicationLiee.get("_etat_").equals(aDonnee.ETAT_MODIFIE)) {
|
1217 |
cyprien |
703 |
Debug.log(">300> ETAT_MODIFE, PublicationLiee = "+publicationLiee.toString());
|
|
|
704 |
|
|
|
705 |
|
|
|
706 |
Debug.log(">300> PersonneFormPublication.collecter(), ETAT_MODIFIE, publicationsSupprimees.put(\"id\"+idGenere++, publicationLiee)");
|
991 |
gduche |
707 |
// Comme il est impossible de modifier les relations nous supprimons l'ancien enregistrement et ajoutons un nouveau avec le nouveau id_role
|
|
|
708 |
publicationsSupprimees.put("id"+idGenere++, publicationLiee);
|
1204 |
cyprien |
709 |
|
1217 |
cyprien |
710 |
|
991 |
gduche |
711 |
PublicationAPersonne relationAAjouter = (PublicationAPersonne) publicationLiee.cloner(new PublicationAPersonne());
|
1217 |
cyprien |
712 |
Debug.log(">300> PersonneFormPublication.collecter(), ETAT_MODIFIE, publicationsAjoutees.put(\"id\"+idGenere++, relationAAjouter)");
|
991 |
gduche |
713 |
publicationsAjoutees.put("id"+idGenere++, relationAAjouter);
|
|
|
714 |
}
|
1014 |
gduche |
715 |
|
991 |
gduche |
716 |
if (publicationLiee.get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
717 |
publicationsAjoutees.put("id"+idGenere++, publicationLiee);
|
1217 |
cyprien |
718 |
Debug.log(">300> ETAT_AJOUTE, PublicationLiee = "+publicationLiee.toString());
|
991 |
gduche |
719 |
}
|
|
|
720 |
// Initialisation de la grille
|
|
|
721 |
publicationLiee.set("_etat_", "");
|
1014 |
gduche |
722 |
|
991 |
gduche |
723 |
}
|
|
|
724 |
}
|
|
|
725 |
grille.getStore().commitChanges();
|
|
|
726 |
}
|
1204 |
cyprien |
727 |
|
|
|
728 |
Debug.log("|*** PersonneFormPublication.collecter() END");
|
991 |
gduche |
729 |
}
|
|
|
730 |
|
1014 |
gduche |
731 |
public List verifier() {
|
1204 |
cyprien |
732 |
|
|
|
733 |
Debug.log("|> PersonneFormPublication.verifier()");
|
1014 |
gduche |
734 |
|
|
|
735 |
List lstMessageErreur = new LinkedList<String>();
|
|
|
736 |
//Vérifier les roles
|
|
|
737 |
List<PublicationAPersonne> listePublis = grille.getStore().getModels();
|
|
|
738 |
Iterator<PublicationAPersonne> itPublis = listePublis.iterator();
|
|
|
739 |
while (itPublis.hasNext()) {
|
|
|
740 |
PublicationAPersonne publi = itPublis.next();
|
|
|
741 |
if (UtilString.isEmpty((String) publi.get("_role_"))) {
|
1064 |
gduche |
742 |
lstMessageErreur.add("Vous devez choisir le rôle de la relation " + (grille.getStore().indexOf(publi) + 1));
|
1014 |
gduche |
743 |
}
|
|
|
744 |
}
|
|
|
745 |
return lstMessageErreur;
|
|
|
746 |
}
|
|
|
747 |
|
991 |
gduche |
748 |
public void soumettre() {
|
1204 |
cyprien |
749 |
|
|
|
750 |
Debug.log("<8-8> BEGIN PersonneFormPublication.soumettre()");
|
|
|
751 |
|
991 |
gduche |
752 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
753 |
if (publicationsAjoutees.size() == 0 && publicationsSupprimees.size() == 0) {
|
1204 |
cyprien |
754 |
InfoLogger.display("Modification des publications liées", "Rien n'a été enregistré car le formulaire n'a pas été modifié.");
|
991 |
gduche |
755 |
} else {
|
1217 |
cyprien |
756 |
|
|
|
757 |
Debug.log("<8-8> PersonneFormPublication.soumettre() : publicationsAjoutees.size()="+publicationsAjoutees.size());
|
1204 |
cyprien |
758 |
// Ajout des relations PublicationAPersonne
|
991 |
gduche |
759 |
if (publicationsAjoutees.size() != 0) {
|
|
|
760 |
//TODO : utiliser le role d'une liste déroulante
|
1204 |
cyprien |
761 |
|
1217 |
cyprien |
762 |
Debug.log("<8-8> PersonneFormPublication.soumettre() - Appel à mediateur.ajouterPublicationAPersonne()");
|
1003 |
gduche |
763 |
mediateur.ajouterPublicationAPersonne(this, publicationsAjoutees, personneSelectionnee.getId(), null);
|
991 |
gduche |
764 |
}
|
1217 |
cyprien |
765 |
|
|
|
766 |
Debug.log("<8-8> PersonneFormPublication.soumettre() : publicationsSupprimees.size()="+publicationsSupprimees.size());
|
1204 |
cyprien |
767 |
// Suppression des relations PublicationAPersonne
|
991 |
gduche |
768 |
if (publicationsSupprimees.size() != 0) {
|
1204 |
cyprien |
769 |
|
1217 |
cyprien |
770 |
Debug.log("<8-8> PersonneFormPublication.soumettre() - Appel à mediateur.supprimerPublicationAPersonne()");
|
991 |
gduche |
771 |
mediateur.supprimerPublicationAPersonne(this, publicationsSupprimees);
|
|
|
772 |
}
|
|
|
773 |
}
|
|
|
774 |
}
|
1204 |
cyprien |
775 |
|
|
|
776 |
Debug.log("<8-8> END PersonneFormPublication.soumettre()");
|
991 |
gduche |
777 |
}
|
|
|
778 |
|
|
|
779 |
private void obtenirPublicationsSaisies(String nom) {
|
1124 |
jpm |
780 |
mediateur.selectionnerPublicationParNomComplet(this, null, "%"+nom+"%");
|
991 |
gduche |
781 |
}
|
|
|
782 |
}
|