934 |
jpm |
1 |
package org.tela_botanica.client.vues.collection;
|
703 |
jp_milcent |
2 |
|
|
|
3 |
import java.util.ArrayList;
|
860 |
jpm |
4 |
import java.util.Iterator;
|
703 |
jp_milcent |
5 |
import java.util.List;
|
|
|
6 |
|
|
|
7 |
import org.tela_botanica.client.Mediateur;
|
|
|
8 |
import org.tela_botanica.client.images.Images;
|
|
|
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
10 |
import org.tela_botanica.client.modeles.Information;
|
860 |
jpm |
11 |
import org.tela_botanica.client.modeles.InterneValeur;
|
|
|
12 |
import org.tela_botanica.client.modeles.Valeur;
|
703 |
jp_milcent |
13 |
import org.tela_botanica.client.modeles.ValeurListe;
|
875 |
jpm |
14 |
import org.tela_botanica.client.modeles.aDonnee;
|
935 |
jpm |
15 |
import org.tela_botanica.client.modeles.collection.Collection;
|
|
|
16 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
|
|
|
17 |
import org.tela_botanica.client.modeles.collection.CollectionAPersonneListe;
|
949 |
jpm |
18 |
import org.tela_botanica.client.modeles.collection.UniteBase;
|
|
|
19 |
import org.tela_botanica.client.modeles.collection.UniteRangement;
|
935 |
jpm |
20 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
21 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
968 |
jpm |
22 |
import org.tela_botanica.client.modeles.projet.Projet;
|
935 |
jpm |
23 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
24 |
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
|
883 |
jpm |
25 |
import org.tela_botanica.client.util.Debug;
|
968 |
jpm |
26 |
import org.tela_botanica.client.util.UtilString;
|
934 |
jpm |
27 |
import org.tela_botanica.client.vues.FenetreForm;
|
|
|
28 |
import org.tela_botanica.client.vues.Formulaire;
|
|
|
29 |
import org.tela_botanica.client.vues.FormulaireBarreValidation;
|
|
|
30 |
import org.tela_botanica.client.vues.FormulaireOnglet;
|
935 |
jpm |
31 |
import org.tela_botanica.client.vues.personne.PersonneForm;
|
703 |
jp_milcent |
32 |
|
775 |
jpm |
33 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
703 |
jp_milcent |
34 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
|
|
35 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
775 |
jpm |
36 |
import com.extjs.gxt.ui.client.event.EventType;
|
703 |
jp_milcent |
37 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
38 |
import com.extjs.gxt.ui.client.event.KeyListener;
|
|
|
39 |
import com.extjs.gxt.ui.client.event.Listener;
|
|
|
40 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
41 |
import com.extjs.gxt.ui.client.store.ListStore;
|
875 |
jpm |
42 |
import com.extjs.gxt.ui.client.store.Record;
|
703 |
jp_milcent |
43 |
import com.extjs.gxt.ui.client.store.Store;
|
|
|
44 |
import com.extjs.gxt.ui.client.store.StoreEvent;
|
|
|
45 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
|
|
46 |
import com.extjs.gxt.ui.client.widget.Info;
|
862 |
jpm |
47 |
import com.extjs.gxt.ui.client.widget.Text;
|
703 |
jp_milcent |
48 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
775 |
jpm |
49 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
703 |
jp_milcent |
50 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
875 |
jpm |
51 |
import com.extjs.gxt.ui.client.widget.form.FormPanel;
|
703 |
jp_milcent |
52 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
860 |
jpm |
53 |
import com.extjs.gxt.ui.client.widget.grid.CellEditor;
|
703 |
jp_milcent |
54 |
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
|
875 |
jpm |
55 |
import com.extjs.gxt.ui.client.widget.grid.ColumnData;
|
703 |
jp_milcent |
56 |
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
|
860 |
jpm |
57 |
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
|
703 |
jp_milcent |
58 |
import com.extjs.gxt.ui.client.widget.grid.Grid;
|
875 |
jpm |
59 |
import com.extjs.gxt.ui.client.widget.grid.GridCellRenderer;
|
703 |
jp_milcent |
60 |
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
|
|
|
61 |
import com.extjs.gxt.ui.client.widget.grid.HeaderGroupConfig;
|
|
|
62 |
import com.extjs.gxt.ui.client.widget.grid.RowNumberer;
|
|
|
63 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
|
|
64 |
import com.extjs.gxt.ui.client.widget.toolbar.SeparatorToolItem;
|
|
|
65 |
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
|
|
|
66 |
import com.google.gwt.core.client.GWT;
|
968 |
jpm |
67 |
import com.google.gwt.dom.client.Element;
|
775 |
jpm |
68 |
import com.google.gwt.event.dom.client.KeyCodes;
|
703 |
jp_milcent |
69 |
|
860 |
jpm |
70 |
public class CollectionFormPersonne extends FormulaireOnglet implements Rafraichissable {
|
703 |
jp_milcent |
71 |
|
875 |
jpm |
72 |
private Collection collection = null;
|
883 |
jpm |
73 |
private static int idGenere = 1;
|
875 |
jpm |
74 |
|
703 |
jp_milcent |
75 |
private ContentPanel panneauPrincipal = null;
|
|
|
76 |
private ToolBar barreOutils = null;
|
883 |
jpm |
77 |
private EditorGrid<CollectionAPersonne> grille;
|
860 |
jpm |
78 |
private ComboBox<Valeur> typeRelationCombo = null;
|
703 |
jp_milcent |
79 |
|
875 |
jpm |
80 |
private CollectionAPersonneListe personnesAjoutees = null;
|
|
|
81 |
private CollectionAPersonneListe personnesSupprimees = null;
|
860 |
jpm |
82 |
private ComboBox<Personne> personnesSaisisComboBox = null;
|
|
|
83 |
private Button personnesBoutonSupprimer = null;
|
|
|
84 |
private Button personnesBoutonModifier = null;
|
883 |
jpm |
85 |
private ListStore<Valeur> listeIon = null;
|
703 |
jp_milcent |
86 |
|
875 |
jpm |
87 |
private FenetreForm fenetreFormulaire = null;
|
|
|
88 |
|
860 |
jpm |
89 |
public CollectionFormPersonne(Formulaire formulaireCourrant) {
|
703 |
jp_milcent |
90 |
initialiserOnglet(formulaireCourrant);
|
860 |
jpm |
91 |
setId("personne");
|
|
|
92 |
setText(Mediateur.i18nC.collectionPersonne());
|
703 |
jp_milcent |
93 |
setStyleAttribute("padding", "0");
|
|
|
94 |
|
|
|
95 |
panneauPrincipal = creerPanneauContenantGrille();
|
|
|
96 |
barreOutils = creerBarreOutilsGrille();
|
|
|
97 |
panneauPrincipal.setTopComponent(barreOutils);
|
|
|
98 |
grille = creerGrille();
|
|
|
99 |
panneauPrincipal.add(grille);
|
875 |
jpm |
100 |
mediateur.obtenirListeValeurEtRafraichir(this, "ion");
|
860 |
jpm |
101 |
mediateur.obtenirListeValeurEtRafraichir(this, "relationPersonneCollection");
|
703 |
jp_milcent |
102 |
add(panneauPrincipal);
|
|
|
103 |
|
|
|
104 |
initialiser();
|
|
|
105 |
}
|
|
|
106 |
|
|
|
107 |
private void initialiser() {
|
|
|
108 |
// Remise à zéro des modification dans la liste des auteurs
|
883 |
jpm |
109 |
idGenere = 1;
|
875 |
jpm |
110 |
personnesAjoutees = new CollectionAPersonneListe();
|
|
|
111 |
personnesSupprimees = new CollectionAPersonneListe();
|
703 |
jp_milcent |
112 |
|
|
|
113 |
// Actualisation de l'état des boutons de la barre d'outils
|
|
|
114 |
actualiserEtatBoutonsBarreOutils();
|
883 |
jpm |
115 |
|
|
|
116 |
collection = ((CollectionForm) formulaire).collection;
|
703 |
jp_milcent |
117 |
}
|
875 |
jpm |
118 |
|
703 |
jp_milcent |
119 |
private ContentPanel creerPanneauContenantGrille() {
|
|
|
120 |
ContentPanel panneau = new ContentPanel();
|
|
|
121 |
|
860 |
jpm |
122 |
panneau.setHeading(i18nC.collectionPersonneTitre());
|
703 |
jp_milcent |
123 |
panneau.setIcon(Images.ICONES.table());
|
|
|
124 |
panneau.setLayout(new FitLayout());
|
|
|
125 |
panneau.setFrame(true);
|
|
|
126 |
|
|
|
127 |
return panneau;
|
|
|
128 |
}
|
|
|
129 |
|
|
|
130 |
private ToolBar creerBarreOutilsGrille() {
|
|
|
131 |
ToolBar barreOutils = new ToolBar();
|
|
|
132 |
|
|
|
133 |
Button ajouterPersonneBouton = creerBoutonAjouter();
|
|
|
134 |
barreOutils.add(ajouterPersonneBouton);
|
|
|
135 |
|
862 |
jpm |
136 |
barreOutils.add(new Text(" ou "));
|
|
|
137 |
|
875 |
jpm |
138 |
personnesSaisisComboBox = creerComboBoxPersonnesSaisies();
|
862 |
jpm |
139 |
barreOutils.add(personnesSaisisComboBox);
|
|
|
140 |
|
703 |
jp_milcent |
141 |
barreOutils.add(new SeparatorToolItem());
|
|
|
142 |
|
860 |
jpm |
143 |
personnesBoutonModifier = creerBoutonModifier();
|
|
|
144 |
barreOutils.add(personnesBoutonModifier);
|
703 |
jp_milcent |
145 |
|
|
|
146 |
barreOutils.add(new SeparatorToolItem());
|
|
|
147 |
|
860 |
jpm |
148 |
personnesBoutonSupprimer = creerBoutonSupprimer();
|
|
|
149 |
barreOutils.add(personnesBoutonSupprimer);
|
703 |
jp_milcent |
150 |
|
|
|
151 |
barreOutils.add(new SeparatorToolItem());
|
|
|
152 |
|
|
|
153 |
Button rafraichirPersonneBouton = creerBoutonRafraichir();
|
|
|
154 |
barreOutils.add(rafraichirPersonneBouton);
|
862 |
jpm |
155 |
|
703 |
jp_milcent |
156 |
return barreOutils;
|
|
|
157 |
}
|
|
|
158 |
|
|
|
159 |
private Button creerBoutonAjouter() {
|
|
|
160 |
Button bouton = new Button(i18nC.ajouter());
|
|
|
161 |
bouton.setIcon(Images.ICONES.vcardAjouter());
|
|
|
162 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
875 |
jpm |
163 |
|
703 |
jp_milcent |
164 |
@Override
|
|
|
165 |
public void componentSelected(ButtonEvent ce) {
|
875 |
jpm |
166 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_AJOUTER);
|
|
|
167 |
fenetreFormulaire.show();
|
703 |
jp_milcent |
168 |
}
|
|
|
169 |
});
|
|
|
170 |
return bouton;
|
|
|
171 |
}
|
|
|
172 |
|
|
|
173 |
private Button creerBoutonModifier() {
|
|
|
174 |
Button bouton = new Button(i18nC.modifier());
|
|
|
175 |
bouton.setIcon(Images.ICONES.vcardModifier());
|
|
|
176 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
177 |
@Override
|
|
|
178 |
public void componentSelected(ButtonEvent ce) {
|
875 |
jpm |
179 |
CollectionAPersonne personneSaisiSelectionne = grille.getSelectionModel().getSelectedItem();
|
|
|
180 |
if (personneSaisiSelectionne == null) {
|
860 |
jpm |
181 |
Info.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPersonne());
|
703 |
jp_milcent |
182 |
} else {
|
875 |
jpm |
183 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_MODIFIER);
|
|
|
184 |
fenetreFormulaire.show();
|
703 |
jp_milcent |
185 |
}
|
|
|
186 |
}
|
|
|
187 |
});
|
|
|
188 |
return bouton;
|
|
|
189 |
}
|
775 |
jpm |
190 |
|
|
|
191 |
private FenetreForm creerFenetreModaleAvecFormulairePersonne(String mode) {
|
875 |
jpm |
192 |
String personneId = null;
|
|
|
193 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
194 |
CollectionAPersonne personneSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
884 |
jpm |
195 |
personneId = personneSaisieSelectionnee.getIdPersonne();
|
875 |
jpm |
196 |
}
|
|
|
197 |
|
775 |
jpm |
198 |
final FenetreForm fenetre = new FenetreForm("");
|
875 |
jpm |
199 |
final PersonneForm formulaire = creerFormulairePersonne(fenetre, personneId);
|
775 |
jpm |
200 |
fenetre.add(formulaire);
|
|
|
201 |
return fenetre;
|
|
|
202 |
}
|
|
|
203 |
|
875 |
jpm |
204 |
private PersonneForm creerFormulairePersonne(final FenetreForm fenetre, String personneId) {
|
|
|
205 |
PersonneForm formulaire = new PersonneForm(mediateur, personneId, this);
|
|
|
206 |
FormPanel panneauFormulaire = formulaire.getFormulaire();
|
|
|
207 |
fenetre.setHeading(panneauFormulaire.getHeading());
|
|
|
208 |
panneauFormulaire.setHeaderVisible(false);
|
|
|
209 |
panneauFormulaire.setTopComponent(null);
|
703 |
jp_milcent |
210 |
|
957 |
jpm |
211 |
// 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.
|
|
|
212 |
panneauFormulaire.getBottomComponent().hide();
|
775 |
jpm |
213 |
SelectionListener<ButtonEvent> ecouteur = creerEcouteurValidationFormulairePersonne(fenetre, formulaire);
|
|
|
214 |
final ButtonBar barreValidation = new FormulaireBarreValidation(ecouteur);
|
957 |
jpm |
215 |
fenetre.setBottomComponent(barreValidation);
|
775 |
jpm |
216 |
|
|
|
217 |
return formulaire;
|
|
|
218 |
}
|
|
|
219 |
|
|
|
220 |
private SelectionListener<ButtonEvent> creerEcouteurValidationFormulairePersonne(final FenetreForm fenetre, final PersonneForm formulaire) {
|
|
|
221 |
SelectionListener<ButtonEvent> ecouteur = new SelectionListener<ButtonEvent>() {
|
|
|
222 |
@Override
|
|
|
223 |
public void componentSelected(ButtonEvent ce) {
|
|
|
224 |
String code = ((Button) ce.getComponent()).getData("code");
|
|
|
225 |
if (code.equals(FormulaireBarreValidation.CODE_BOUTON_VALIDER)) {
|
875 |
jpm |
226 |
if (formulaire.soumettreFormulaire()) {
|
|
|
227 |
fenetre.hide();
|
775 |
jpm |
228 |
}
|
|
|
229 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_APPLIQUER)) {
|
875 |
jpm |
230 |
formulaire.soumettreFormulaire();
|
775 |
jpm |
231 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_ANNULER)) {
|
|
|
232 |
fenetre.hide();
|
|
|
233 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_REINITIALISER)) {
|
875 |
jpm |
234 |
fenetreFormulaire.hide();
|
|
|
235 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(formulaire.mode);
|
|
|
236 |
fenetreFormulaire.show();
|
775 |
jpm |
237 |
}
|
|
|
238 |
}
|
|
|
239 |
};
|
|
|
240 |
|
|
|
241 |
return ecouteur;
|
|
|
242 |
}
|
|
|
243 |
|
703 |
jp_milcent |
244 |
private Button creerBoutonSupprimer() {
|
|
|
245 |
Button bouton = new Button(i18nC.supprimer());
|
|
|
246 |
bouton.setIcon(Images.ICONES.vcardSupprimer());
|
|
|
247 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
248 |
@Override
|
|
|
249 |
public void componentSelected(ButtonEvent ce) {
|
875 |
jpm |
250 |
CollectionAPersonne personneSaisiSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
251 |
if (personneSaisiSelectionnee == null) {
|
860 |
jpm |
252 |
Info.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPersonne());
|
703 |
jp_milcent |
253 |
} else {
|
875 |
jpm |
254 |
supprimerDansGrille(personneSaisiSelectionnee);
|
703 |
jp_milcent |
255 |
}
|
|
|
256 |
}
|
|
|
257 |
});
|
|
|
258 |
return bouton;
|
|
|
259 |
}
|
|
|
260 |
|
|
|
261 |
private Button creerBoutonRafraichir() {
|
|
|
262 |
Button bouton = new Button(i18nC.rafraichir());
|
|
|
263 |
bouton.setIcon(Images.ICONES.rafraichir());
|
|
|
264 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
265 |
@Override
|
|
|
266 |
public void componentSelected(ButtonEvent ce) {
|
883 |
jpm |
267 |
actualiserGrille();
|
703 |
jp_milcent |
268 |
}
|
|
|
269 |
});
|
|
|
270 |
return bouton;
|
|
|
271 |
}
|
|
|
272 |
|
875 |
jpm |
273 |
private ComboBox<Personne> creerComboBoxPersonnesSaisies() {
|
720 |
jp_milcent |
274 |
ListStore<Personne> personnesSaisiesStore = new ListStore<Personne>();
|
|
|
275 |
personnesSaisiesStore.add(new ArrayList<Personne>());
|
703 |
jp_milcent |
276 |
|
|
|
277 |
ComboBox<Personne> comboBox = new ComboBox<Personne>();
|
|
|
278 |
comboBox.setWidth(200);
|
860 |
jpm |
279 |
comboBox.setEmptyText(i18nC.chercherPersonneSaisi());
|
703 |
jp_milcent |
280 |
comboBox.setTriggerAction(TriggerAction.ALL);
|
|
|
281 |
comboBox.setEditable(true);
|
|
|
282 |
comboBox.setDisplayField("fmt_nom_complet");
|
720 |
jp_milcent |
283 |
comboBox.setStore(personnesSaisiesStore);
|
703 |
jp_milcent |
284 |
comboBox.addKeyListener(new KeyListener() {
|
|
|
285 |
public void componentKeyUp(ComponentEvent ce) {
|
860 |
jpm |
286 |
if (personnesSaisisComboBox.getRawValue() != null && personnesSaisisComboBox.getRawValue().length() > 0) {
|
775 |
jpm |
287 |
if (!ce.isNavKeyPress()) {
|
860 |
jpm |
288 |
obtenirPersonnesSaisis(personnesSaisisComboBox.getRawValue());
|
775 |
jpm |
289 |
}
|
703 |
jp_milcent |
290 |
}
|
|
|
291 |
}
|
|
|
292 |
});
|
775 |
jpm |
293 |
comboBox.addListener(Events.Select, new Listener<BaseEvent>() {
|
|
|
294 |
@Override
|
|
|
295 |
public void handleEvent(BaseEvent be) {
|
860 |
jpm |
296 |
if (personnesSaisisComboBox.getValue() instanceof Personne) {
|
875 |
jpm |
297 |
Personne personneSaisiSelectionnee = personnesSaisisComboBox.getValue();
|
|
|
298 |
ajouterDansGrille(personneSaisiSelectionnee);
|
862 |
jpm |
299 |
personnesSaisisComboBox.setValue(null);
|
775 |
jpm |
300 |
}
|
|
|
301 |
}
|
|
|
302 |
});
|
703 |
jp_milcent |
303 |
return comboBox;
|
|
|
304 |
}
|
|
|
305 |
|
860 |
jpm |
306 |
private void ajouterDansGrille(Personne personne) {
|
958 |
jpm |
307 |
ajouterDansGrille(personne, null, 0);
|
883 |
jpm |
308 |
}
|
|
|
309 |
|
958 |
jpm |
310 |
private void ajouterDansGrille(Personne personne, String relation, int index) {
|
860 |
jpm |
311 |
if (personne != null) {
|
875 |
jpm |
312 |
CollectionAPersonne relationCollectionPersonne = new CollectionAPersonne();
|
|
|
313 |
relationCollectionPersonne.setPersonne(personne);
|
883 |
jpm |
314 |
relationCollectionPersonne.setIdPersonne(personne.getId());
|
958 |
jpm |
315 |
if (relation != null) {
|
|
|
316 |
relationCollectionPersonne.set("_role_", relation);
|
|
|
317 |
}
|
883 |
jpm |
318 |
// Gestion de l'id de la collection
|
|
|
319 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
320 |
relationCollectionPersonne.setIdCollection(collection.getId());
|
703 |
jp_milcent |
321 |
}
|
883 |
jpm |
322 |
relationCollectionPersonne.set("_etat_", aDonnee.ETAT_AJOUTE);
|
|
|
323 |
corrigerChampsGrille(relationCollectionPersonne);
|
703 |
jp_milcent |
324 |
|
|
|
325 |
// Ajout à la grille
|
883 |
jpm |
326 |
grille.stopEditing();
|
|
|
327 |
grille.getStore().insert(relationCollectionPersonne, index);
|
907 |
jpm |
328 |
grille.startEditing(index, 0);
|
|
|
329 |
grille.getSelectionModel().select(index, false);
|
703 |
jp_milcent |
330 |
}
|
|
|
331 |
}
|
|
|
332 |
|
875 |
jpm |
333 |
private void supprimerDansGrille(CollectionAPersonne relationCollectionPersonne) {
|
|
|
334 |
if (relationCollectionPersonne != null) {
|
703 |
jp_milcent |
335 |
// Ajout de la personne supprimée à la liste
|
883 |
jpm |
336 |
if ((relationCollectionPersonne.get("_etat_").equals("") || !relationCollectionPersonne.get("_etat_").equals(aDonnee.ETAT_AJOUTE))
|
875 |
jpm |
337 |
&& relationCollectionPersonne.getId() != null
|
|
|
338 |
&& !relationCollectionPersonne.getId().equals("")) {
|
883 |
jpm |
339 |
Debug.log("Nbre personnes supprimées avant:"+personnesSupprimees.size());
|
|
|
340 |
personnesSupprimees.put("id"+idGenere++, relationCollectionPersonne);
|
|
|
341 |
GWT.log("Personne supprimées : "+relationCollectionPersonne.getPersonne().getId()+" "+relationCollectionPersonne.getPersonne().getPrenom()+" "+relationCollectionPersonne.getPersonne().getNom(), null);
|
|
|
342 |
Debug.log("Nbre personnes supprimées :"+personnesSupprimees.size());
|
703 |
jp_milcent |
343 |
}
|
|
|
344 |
|
|
|
345 |
// Suppression de l'enregistrement de la grille
|
875 |
jpm |
346 |
grille.getStore().remove(relationCollectionPersonne);
|
703 |
jp_milcent |
347 |
}
|
|
|
348 |
}
|
|
|
349 |
|
883 |
jpm |
350 |
private EditorGrid<CollectionAPersonne> creerGrille() {
|
|
|
351 |
ListStore<CollectionAPersonne> storeGrille = new ListStore<CollectionAPersonne>();
|
|
|
352 |
storeGrille.addListener(Store.Add, new Listener<StoreEvent<CollectionAPersonne>>() {
|
|
|
353 |
public void handleEvent(StoreEvent<CollectionAPersonne> ce) {
|
703 |
jp_milcent |
354 |
actualiserEtatBoutonsBarreOutils();
|
|
|
355 |
}
|
|
|
356 |
});
|
883 |
jpm |
357 |
storeGrille.addListener(Store.Remove, new Listener<StoreEvent<CollectionAPersonne>>() {
|
|
|
358 |
public void handleEvent(StoreEvent<CollectionAPersonne> ce) {
|
703 |
jp_milcent |
359 |
actualiserEtatBoutonsBarreOutils();
|
|
|
360 |
}
|
|
|
361 |
});
|
883 |
jpm |
362 |
storeGrille.addListener(Store.Update, new Listener<StoreEvent<CollectionAPersonne>>() {
|
|
|
363 |
public void handleEvent(StoreEvent<CollectionAPersonne> ce) {
|
|
|
364 |
if (ce.getRecord().isModified("_role_") && !ce.getModel().get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
365 |
Debug.log("id role modifié");
|
|
|
366 |
ce.getModel().set("_etat_", aDonnee.ETAT_MODIFIE);
|
|
|
367 |
}
|
|
|
368 |
}
|
|
|
369 |
});
|
703 |
jp_milcent |
370 |
|
|
|
371 |
RowNumberer pluginLigneNumero = new RowNumberer();
|
860 |
jpm |
372 |
|
703 |
jp_milcent |
373 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
|
|
374 |
colonnes.add(pluginLigneNumero);
|
860 |
jpm |
375 |
|
|
|
376 |
typeRelationCombo = new ComboBox<Valeur>();
|
|
|
377 |
typeRelationCombo.setForceSelection(true);
|
|
|
378 |
typeRelationCombo.setTriggerAction(TriggerAction.ALL);
|
|
|
379 |
typeRelationCombo.setDisplayField("nom");
|
|
|
380 |
typeRelationCombo.setStore(new ListStore<Valeur>());
|
|
|
381 |
typeRelationCombo.setEditable(false);
|
968 |
jpm |
382 |
typeRelationCombo.addStyleName("obligatoire");
|
|
|
383 |
typeRelationCombo.addListener(Events.Select, new Listener<BaseEvent>() {
|
|
|
384 |
@Override
|
|
|
385 |
public void handleEvent(BaseEvent be) {
|
|
|
386 |
Valeur valeur = typeRelationCombo.getValue();
|
|
|
387 |
|
|
|
388 |
// Gestion du style obligatoire
|
|
|
389 |
typeRelationCombo.removeStyleName("obligatoire");
|
|
|
390 |
typeRelationCombo.removeStyleName("obligatoire-ok");
|
|
|
391 |
if (valeur != null) {
|
|
|
392 |
typeRelationCombo.addStyleName("obligatoire-ok");
|
|
|
393 |
} else {
|
|
|
394 |
typeRelationCombo.addStyleName("obligatoire");
|
|
|
395 |
}
|
|
|
396 |
}
|
|
|
397 |
});
|
860 |
jpm |
398 |
|
|
|
399 |
CellEditor editeurRelation = new CellEditor(typeRelationCombo) {
|
|
|
400 |
@Override
|
|
|
401 |
public Object preProcessValue(Object valeur) {
|
|
|
402 |
Valeur retour = null;
|
|
|
403 |
if (valeur != null ) {
|
883 |
jpm |
404 |
Debug.log(valeur.toString());
|
860 |
jpm |
405 |
if (typeRelationCombo.getStore().findModel("nom", valeur.toString()) != null) {
|
|
|
406 |
retour = typeRelationCombo.getStore().findModel("nom", valeur.toString());
|
|
|
407 |
} else if (typeRelationCombo.getStore().findModel("abr", valeur.toString()) != null) {
|
|
|
408 |
retour = typeRelationCombo.getStore().findModel("abr", valeur.toString());
|
883 |
jpm |
409 |
} else if (typeRelationCombo.getStore().findModel("id_valeur", valeur.toString()) != null) {
|
|
|
410 |
retour = typeRelationCombo.getStore().findModel("id_valeur", valeur.toString());
|
860 |
jpm |
411 |
}
|
|
|
412 |
}
|
|
|
413 |
return retour;
|
|
|
414 |
}
|
|
|
415 |
|
|
|
416 |
@Override
|
|
|
417 |
public Object postProcessValue(Object valeur) {
|
|
|
418 |
String retour = null;
|
|
|
419 |
if (valeur != null ) {
|
|
|
420 |
if (valeur instanceof Valeur) {
|
|
|
421 |
Valeur valeurOntologie = (Valeur) valeur;
|
|
|
422 |
retour = valeurOntologie.getNom();
|
|
|
423 |
}
|
|
|
424 |
}
|
|
|
425 |
return retour;
|
|
|
426 |
}
|
|
|
427 |
};
|
|
|
428 |
|
883 |
jpm |
429 |
GridCellRenderer<CollectionAPersonne> relationRendu = new GridCellRenderer<CollectionAPersonne>() {
|
|
|
430 |
@Override
|
968 |
jpm |
431 |
public String render(CollectionAPersonne modele, String property, ColumnData config, int rowIndex, int colIndex, ListStore<CollectionAPersonne> store, Grid<CollectionAPersonne> grille) {
|
|
|
432 |
// Gestion du texte afficher dans la cellule
|
883 |
jpm |
433 |
String role = modele.get("_role_");
|
|
|
434 |
if (typeRelationCombo.getStore() != null && role.matches("[0-9]+")) {
|
|
|
435 |
role = typeRelationCombo.getStore().findModel("id_valeur", role).getNom();
|
|
|
436 |
}
|
|
|
437 |
modele.set("_role_", role);
|
968 |
jpm |
438 |
|
883 |
jpm |
439 |
return role;
|
|
|
440 |
}
|
|
|
441 |
};
|
|
|
442 |
|
|
|
443 |
ColumnConfig typeRelationColonne = new ColumnConfig("_role_", i18nC.typeRelationPersonneCollection(), 75);
|
860 |
jpm |
444 |
typeRelationColonne.setEditor(editeurRelation);
|
883 |
jpm |
445 |
typeRelationColonne.setRenderer(relationRendu);
|
860 |
jpm |
446 |
colonnes.add(typeRelationColonne);
|
|
|
447 |
|
703 |
jp_milcent |
448 |
colonnes.add(new ColumnConfig("fmt_nom_complet", i18nC.personneNomComplet(), 150));
|
|
|
449 |
colonnes.add(new ColumnConfig("nom", i18nC.personneNom(), 75));
|
|
|
450 |
colonnes.add(new ColumnConfig("prenom", i18nC.personnePrenom(), 75));
|
|
|
451 |
colonnes.add(new ColumnConfig("naissance_date", i18nC.date(), 75));
|
|
|
452 |
colonnes.add(new ColumnConfig("naissance_lieu", i18nC.lieu(), 100));
|
875 |
jpm |
453 |
colonnes.add(creerColonneDeces());
|
703 |
jp_milcent |
454 |
colonnes.add(new ColumnConfig("deces_date", i18nC.date(), 75));
|
|
|
455 |
colonnes.add(new ColumnConfig("deces_lieu", i18nC.lieu(), 100));
|
|
|
456 |
|
875 |
jpm |
457 |
GridSelectionModel<CollectionAPersonne> modeleDeSelection = new GridSelectionModel<CollectionAPersonne>();
|
703 |
jp_milcent |
458 |
|
|
|
459 |
ColumnModel modeleDeColonnes = new ColumnModel(colonnes);
|
|
|
460 |
modeleDeColonnes.addHeaderGroup(0, 1, new HeaderGroupConfig(i18nC.personneIdentite(), 1, 4));
|
|
|
461 |
modeleDeColonnes.addHeaderGroup(0, 5, new HeaderGroupConfig(i18nC.personneNaissance(), 1, 2));
|
|
|
462 |
modeleDeColonnes.addHeaderGroup(0, 7, new HeaderGroupConfig(i18nC.personneDeces(), 1, 3));
|
|
|
463 |
|
875 |
jpm |
464 |
EditorGrid<CollectionAPersonne> grillePersonne = new EditorGrid<CollectionAPersonne>(storeGrille, modeleDeColonnes);
|
703 |
jp_milcent |
465 |
grillePersonne.setHeight("100%");
|
|
|
466 |
grillePersonne.setBorders(true);
|
|
|
467 |
grillePersonne.setSelectionModel(modeleDeSelection);
|
|
|
468 |
grillePersonne.addPlugin(pluginLigneNumero);
|
|
|
469 |
grillePersonne.getView().setForceFit(true);
|
|
|
470 |
grillePersonne.setAutoExpandColumn("fmt_nom_complet");
|
|
|
471 |
grillePersonne.setStripeRows(true);
|
|
|
472 |
grillePersonne.setTrackMouseOver(true);
|
|
|
473 |
|
|
|
474 |
return grillePersonne;
|
|
|
475 |
}
|
|
|
476 |
|
875 |
jpm |
477 |
public ColumnConfig creerColonneDeces() {
|
|
|
478 |
GridCellRenderer<CollectionAPersonne> decesRendu = new GridCellRenderer<CollectionAPersonne>() {
|
|
|
479 |
@Override
|
|
|
480 |
public String render(CollectionAPersonne modele, String property, ColumnData config, int rowIndex, int colIndex, ListStore<CollectionAPersonne> store, Grid<CollectionAPersonne> grid) {
|
|
|
481 |
String deces = modele.getPersonne().getDeces();
|
|
|
482 |
if (listeIon != null && modele.getPersonne().getDeces().matches("[0-9]+")) {
|
883 |
jpm |
483 |
deces = listeIon.findModel("id_valeur", modele.getPersonne().getDeces()).getNom();
|
875 |
jpm |
484 |
}
|
|
|
485 |
modele.set("_deces_", deces);
|
|
|
486 |
return deces;
|
|
|
487 |
}
|
|
|
488 |
};
|
|
|
489 |
ColumnConfig decesColonne = new ColumnConfig("_deces_", Mediateur.i18nC.personneDecedeeInterogation(), 50);
|
|
|
490 |
decesColonne.setRenderer(decesRendu);
|
|
|
491 |
return decesColonne;
|
|
|
492 |
}
|
|
|
493 |
|
703 |
jp_milcent |
494 |
public void actualiserEtatBoutonsBarreOutils() {
|
|
|
495 |
// Activation des boutons si la grille contient un élément
|
|
|
496 |
if (grille.getStore().getCount() > 0) {
|
860 |
jpm |
497 |
personnesBoutonSupprimer.enable();
|
|
|
498 |
personnesBoutonModifier.enable();
|
703 |
jp_milcent |
499 |
}
|
|
|
500 |
// Désactivation des boutons si la grille ne contient plus d'élément
|
|
|
501 |
if (grille.getStore().getCount() == 0) {
|
860 |
jpm |
502 |
personnesBoutonSupprimer.disable();
|
|
|
503 |
personnesBoutonModifier.disable();
|
703 |
jp_milcent |
504 |
}
|
|
|
505 |
}
|
|
|
506 |
|
|
|
507 |
public void rafraichir(Object nouvellesDonnees) {
|
860 |
jpm |
508 |
if (nouvellesDonnees instanceof ValeurListe) {
|
|
|
509 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
|
|
510 |
rafraichirValeurListe(listeValeurs);
|
|
|
511 |
} else if (nouvellesDonnees instanceof Information) {
|
703 |
jp_milcent |
512 |
Information info = (Information) nouvellesDonnees;
|
|
|
513 |
rafraichirInformation(info);
|
|
|
514 |
} else {
|
|
|
515 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
|
|
516 |
}
|
|
|
517 |
}
|
|
|
518 |
|
860 |
jpm |
519 |
private void rafraichirValeurListe(ValeurListe listeValeurs) {
|
875 |
jpm |
520 |
if (listeValeurs.getId().equals(config.getListeId("ion"))) {
|
883 |
jpm |
521 |
listeIon = new ListStore<Valeur>();
|
|
|
522 |
listeIon.add(listeValeurs.toList());
|
875 |
jpm |
523 |
} else if (listeValeurs.getId().equals(config.getListeId("relationPersonneCollection"))) {
|
860 |
jpm |
524 |
Formulaire.rafraichirComboBox(listeValeurs, typeRelationCombo);
|
|
|
525 |
} else {
|
|
|
526 |
GWT.log("Gestion de la liste "+listeValeurs.getId()+" non implémenté!", null);
|
|
|
527 |
}
|
|
|
528 |
}
|
|
|
529 |
|
703 |
jp_milcent |
530 |
public void rafraichirInformation(Information info) {
|
|
|
531 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
532 |
GWT.log("MESSAGES:\n"+info.getMessages().toString(), null);
|
|
|
533 |
}
|
|
|
534 |
String type = info.getType();
|
|
|
535 |
if (type.equals("liste_personne")) {
|
|
|
536 |
if (info.getDonnee(0) != null) {
|
|
|
537 |
PersonneListe personnes = (PersonneListe) info.getDonnee(0);
|
|
|
538 |
List<Personne> liste = personnes.toList();
|
|
|
539 |
|
860 |
jpm |
540 |
personnesSaisisComboBox.getStore().removeAll();
|
|
|
541 |
personnesSaisisComboBox.getStore().add(liste);
|
|
|
542 |
personnesSaisisComboBox.expand();
|
703 |
jp_milcent |
543 |
}
|
875 |
jpm |
544 |
} else if (info.getType().equals("ajout_collection")) {
|
|
|
545 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
|
|
|
546 |
String collectionId = (String) info.getDonnee(0);
|
|
|
547 |
|
|
|
548 |
// Suite à la récupération de l'id de la collection nouvellement ajoutée nous ajoutons les personnes liées
|
|
|
549 |
// En mode AJOUT, il ne peut que y avoir des personnes liées ajoutées
|
|
|
550 |
mediateur.ajouterCollectionAPersonne(this, collectionId, personnesAjoutees);
|
|
|
551 |
}
|
884 |
jpm |
552 |
} else if (type.equals("personne_modifiee")) {
|
883 |
jpm |
553 |
if (info.getDonnee(0) != null) {
|
|
|
554 |
Personne personne = (Personne) info.getDonnee(0);
|
|
|
555 |
CollectionAPersonne personneDansGrille = grille.getStore().findModel("id_personne", personne.getId());
|
|
|
556 |
int index = grille.getStore().indexOf(personneDansGrille);
|
|
|
557 |
grille.getStore().remove(personneDansGrille);
|
958 |
jpm |
558 |
String role = (String) personneDansGrille.get("_role_");
|
|
|
559 |
ajouterDansGrille(personne, role, index);
|
883 |
jpm |
560 |
}
|
884 |
jpm |
561 |
} else if (type.equals("personne_ajoutee")) {
|
883 |
jpm |
562 |
if (info.getDonnee(0) != null) {
|
|
|
563 |
Personne personne = (Personne) info.getDonnee(0);
|
|
|
564 |
ajouterDansGrille(personne);
|
|
|
565 |
}
|
875 |
jpm |
566 |
} else if (info.getType().equals("modif_collection_a_personne")) {
|
|
|
567 |
Info.display("Modification des personnes liées à la collection", info.toString());
|
|
|
568 |
} else if (info.getType().equals("suppression_collection_a_personne")) {
|
|
|
569 |
Info.display("Suppression des personnes liées à la collection", info.toString());
|
|
|
570 |
} else if (info.getType().equals("ajout_collection_a_personne")) {
|
|
|
571 |
Info.display("Ajout des personnes liées à la collection", info.toString());
|
883 |
jpm |
572 |
} else if (info.getType().equals("liste_collection_a_personne")) {
|
|
|
573 |
if (info.getDonnee(0) != null) {
|
|
|
574 |
initialiser();
|
|
|
575 |
collection.setPersonnesLiees((CollectionAPersonneListe) info.getDonnee(0));
|
|
|
576 |
peupler();
|
|
|
577 |
}
|
703 |
jp_milcent |
578 |
}
|
|
|
579 |
}
|
875 |
jpm |
580 |
|
|
|
581 |
public void peupler() {
|
883 |
jpm |
582 |
grille.getStore().removeAll();
|
|
|
583 |
grille.getStore().add(collection.getPersonnesLiees().toList());
|
703 |
jp_milcent |
584 |
layout();
|
860 |
jpm |
585 |
Info.display(i18nC.chargementPersonne(), i18nC.ok());
|
703 |
jp_milcent |
586 |
}
|
875 |
jpm |
587 |
|
|
|
588 |
public ArrayList<String> verifier() {
|
|
|
589 |
ArrayList<String> messages = new ArrayList<String>();
|
|
|
590 |
String personneNumero = "";
|
|
|
591 |
int nbrePersonne = grille.getStore().getCount();
|
|
|
592 |
|
|
|
593 |
if (nbrePersonne > 0) {
|
|
|
594 |
for (int i = 0; i < nbrePersonne; i++) {
|
|
|
595 |
CollectionAPersonne personne = grille.getStore().getAt(i);
|
883 |
jpm |
596 |
if (personne.get("_role_").equals("")) {
|
875 |
jpm |
597 |
personneNumero += (i != 0 ? ", " : "")+(i+1);
|
|
|
598 |
}
|
|
|
599 |
}
|
|
|
600 |
if (!personneNumero.equals("")) {
|
|
|
601 |
messages.add("Veuillez indiquez le type de relation existant entre la collection et les personnes numéros : "+personneNumero);
|
|
|
602 |
}
|
|
|
603 |
}
|
|
|
604 |
|
|
|
605 |
return messages;
|
|
|
606 |
}
|
|
|
607 |
|
|
|
608 |
public void collecter() {
|
|
|
609 |
if (etreAccede()) {
|
|
|
610 |
int nbrePersonne = grille.getStore().getCount();
|
|
|
611 |
for (int i = 0; i < nbrePersonne; i++) {
|
883 |
jpm |
612 |
CollectionAPersonne relationCollectionPersonne = grille.getStore().getAt(i);
|
|
|
613 |
if (relationCollectionPersonne.get("_etat_") != null) {
|
|
|
614 |
if (relationCollectionPersonne.get("_etat_").equals(aDonnee.ETAT_MODIFIE)) {
|
|
|
615 |
// Comme il est impossible de modifier les relations nous supprimons l'ancien enregistrement et ajoutons un nouveau avec le nouveau id_role
|
|
|
616 |
personnesSupprimees.put("id"+idGenere++, relationCollectionPersonne);
|
|
|
617 |
Debug.log("AVANT:"+relationCollectionPersonne.getIdRole());
|
|
|
618 |
|
|
|
619 |
CollectionAPersonne relationAAjouter = (CollectionAPersonne) relationCollectionPersonne.cloner(new CollectionAPersonne());
|
|
|
620 |
corrigerChampsGrille(relationAAjouter);// Nous modifions l'id_role
|
|
|
621 |
Debug.log("APRES:"+relationAAjouter.getIdRole());
|
|
|
622 |
personnesAjoutees.put("id"+idGenere++, relationAAjouter);
|
|
|
623 |
GWT.log("Personne modifiées : "+relationAAjouter.getPersonne().getPrenom()+" "+relationAAjouter.getPersonne().getNom(), null);
|
|
|
624 |
}
|
|
|
625 |
if (relationCollectionPersonne.get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
626 |
corrigerChampsGrille(relationCollectionPersonne);// Nous modifions l'id_role
|
|
|
627 |
personnesAjoutees.put("id"+idGenere++, relationCollectionPersonne);
|
|
|
628 |
GWT.log("Personne ajoutées : "+relationCollectionPersonne.getPersonne().getPrenom()+" "+relationCollectionPersonne.getPersonne().getNom(), null);
|
875 |
jpm |
629 |
}
|
883 |
jpm |
630 |
// Initialisation de la grille
|
|
|
631 |
relationCollectionPersonne.set("_etat_", "");
|
875 |
jpm |
632 |
}
|
|
|
633 |
}
|
883 |
jpm |
634 |
grille.getStore().commitChanges();
|
875 |
jpm |
635 |
}
|
|
|
636 |
}
|
|
|
637 |
|
883 |
jpm |
638 |
private void corrigerChampsGrille(CollectionAPersonne relationCollectionPersonne) {
|
|
|
639 |
String role = relationCollectionPersonne.get("_role_");
|
|
|
640 |
String champModele = "nom";
|
|
|
641 |
if (role.matches("[0-9]+")) {
|
|
|
642 |
champModele = "id_valeur";
|
|
|
643 |
}
|
|
|
644 |
if (typeRelationCombo.getStore().findModel(champModele, role) != null) {
|
|
|
645 |
String idRole = typeRelationCombo.getStore().findModel(champModele, role).getId();
|
|
|
646 |
relationCollectionPersonne.setIdRole(idRole);
|
|
|
647 |
}
|
|
|
648 |
}
|
|
|
649 |
|
875 |
jpm |
650 |
public void soumettre() {
|
|
|
651 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
883 |
jpm |
652 |
if (personnesAjoutees.size() == 0 && personnesSupprimees.size() == 0) {
|
875 |
jpm |
653 |
Info.display("Modification des personnes liées", "Rien n'a été enregistré car le formulaire n'a pas été modifié.");
|
|
|
654 |
} else {
|
|
|
655 |
// Ajout des relations CollectionAPersonne
|
|
|
656 |
if (personnesAjoutees.size() != 0) {
|
|
|
657 |
mediateur.ajouterCollectionAPersonne(this, collection.getId(), personnesAjoutees);
|
|
|
658 |
}
|
|
|
659 |
// Suppression des relations StructureAPersonne
|
|
|
660 |
if (personnesSupprimees.size() != 0) {
|
|
|
661 |
mediateur.supprimerCollectionAPersonne(this, personnesSupprimees);
|
883 |
jpm |
662 |
Debug.log("Nbre personnes supprimées :"+personnesSupprimees.size());
|
875 |
jpm |
663 |
}
|
|
|
664 |
}
|
|
|
665 |
}
|
|
|
666 |
}
|
|
|
667 |
|
860 |
jpm |
668 |
private void obtenirPersonnesSaisis(String nom) {
|
703 |
jp_milcent |
669 |
mediateur.selectionnerPersonneParNomComplet(this, null, nom+"%");
|
|
|
670 |
}
|
883 |
jpm |
671 |
|
|
|
672 |
private void actualiserGrille() {
|
|
|
673 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
674 |
mediateur.selectionnerCollectionAPersonne(this, collection.getId(), null);
|
|
|
675 |
} else {
|
|
|
676 |
grille.getStore().removeAll();
|
|
|
677 |
layout();
|
|
|
678 |
}
|
|
|
679 |
}
|
703 |
jp_milcent |
680 |
}
|