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