1637 |
aurelien |
1 |
package org.tela_botanica.client.vues.structure;
|
|
|
2 |
|
|
|
3 |
import java.util.ArrayList;
|
|
|
4 |
import java.util.Collection;
|
|
|
5 |
import java.util.Date;
|
|
|
6 |
import java.util.List;
|
|
|
7 |
|
|
|
8 |
import org.tela_botanica.client.ComposantClass;
|
|
|
9 |
import org.tela_botanica.client.Mediateur;
|
|
|
10 |
import org.tela_botanica.client.RegistreId;
|
|
|
11 |
import org.tela_botanica.client.composants.ChampComboBoxListeValeurs;
|
|
|
12 |
import org.tela_botanica.client.composants.ChampComboBoxRechercheTempsReelPaginable;
|
|
|
13 |
import org.tela_botanica.client.composants.ChampNombre;
|
|
|
14 |
import org.tela_botanica.client.composants.InfoLogger;
|
|
|
15 |
import org.tela_botanica.client.composants.pagination.ProxyValeur;
|
|
|
16 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
17 |
import org.tela_botanica.client.modeles.Information;
|
|
|
18 |
import org.tela_botanica.client.modeles.InterneValeur;
|
|
|
19 |
import org.tela_botanica.client.modeles.InterneValeurListe;
|
|
|
20 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
21 |
import org.tela_botanica.client.modeles.ValeurListe;
|
|
|
22 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
23 |
import org.tela_botanica.client.modeles.structure.Structure;
|
|
|
24 |
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
|
|
|
25 |
import org.tela_botanica.client.modeles.structure.StructureAPersonneListe;
|
|
|
26 |
import org.tela_botanica.client.modeles.structure.StructureConservation;
|
|
|
27 |
import org.tela_botanica.client.modeles.structure.StructureValorisation;
|
|
|
28 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
|
|
29 |
import org.tela_botanica.client.util.Debug;
|
|
|
30 |
import org.tela_botanica.client.util.Pattern;
|
|
|
31 |
import org.tela_botanica.client.util.UtilString;
|
|
|
32 |
import org.tela_botanica.client.vues.Formulaire;
|
|
|
33 |
import org.tela_botanica.client.vues.FormulaireOnglet;
|
|
|
34 |
|
|
|
35 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
36 |
import com.extjs.gxt.ui.client.data.ModelData;
|
|
|
37 |
import com.extjs.gxt.ui.client.data.ModelType;
|
|
|
38 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
|
|
39 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
40 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
41 |
import com.extjs.gxt.ui.client.event.Listener;
|
|
|
42 |
import com.extjs.gxt.ui.client.event.SelectionChangedEvent;
|
|
|
43 |
import com.extjs.gxt.ui.client.event.SelectionChangedListener;
|
|
|
44 |
import com.extjs.gxt.ui.client.store.ListStore;
|
|
|
45 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
46 |
import com.extjs.gxt.ui.client.widget.TabItem;
|
|
|
47 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
48 |
import com.extjs.gxt.ui.client.widget.form.CheckBoxGroup;
|
|
|
49 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
|
|
50 |
import com.extjs.gxt.ui.client.widget.form.Field;
|
|
|
51 |
import com.extjs.gxt.ui.client.widget.form.FieldSet;
|
|
|
52 |
import com.extjs.gxt.ui.client.widget.form.HiddenField;
|
|
|
53 |
import com.extjs.gxt.ui.client.widget.form.LabelField;
|
|
|
54 |
import com.extjs.gxt.ui.client.widget.form.NumberField;
|
|
|
55 |
import com.extjs.gxt.ui.client.widget.form.RadioGroup;
|
|
|
56 |
import com.extjs.gxt.ui.client.widget.form.TextArea;
|
|
|
57 |
import com.extjs.gxt.ui.client.widget.form.TextField;
|
|
|
58 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
|
|
59 |
import com.extjs.gxt.ui.client.widget.form.FormPanel.LabelAlign;
|
|
|
60 |
import com.extjs.gxt.ui.client.widget.grid.CellEditor;
|
|
|
61 |
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
|
|
|
62 |
import com.extjs.gxt.ui.client.widget.layout.ColumnData;
|
|
|
63 |
import com.extjs.gxt.ui.client.widget.layout.ColumnLayout;
|
|
|
64 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
|
|
65 |
import com.extjs.gxt.ui.client.widget.layout.FormData;
|
|
|
66 |
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
|
|
|
67 |
import com.google.gwt.core.client.GWT;
|
|
|
68 |
import com.google.gwt.i18n.client.DateTimeFormat;
|
|
|
69 |
import com.google.gwt.i18n.client.NumberFormat;
|
|
|
70 |
import com.google.gwt.user.client.Window;
|
|
|
71 |
|
|
|
72 |
public class StructureFormIdentification extends FormulaireOnglet implements Rafraichissable {
|
|
|
73 |
|
|
|
74 |
public TabItem personnelOnglet;
|
|
|
75 |
public TabItem conservationOnglet;
|
|
|
76 |
public TabItem valorisationOnglet;
|
|
|
77 |
public HiddenField<String> idStructureChp;
|
|
|
78 |
public Structure identification;
|
|
|
79 |
public ListStore<Valeur> magazinLstpr;
|
|
|
80 |
public ComboBox<Valeur> comboLstpr;
|
|
|
81 |
public ListStore<Valeur> magazinLstpu;
|
|
|
82 |
public ComboBox<Valeur> comboLstpu;
|
|
|
83 |
public ComboBox<InterneValeur> comboAcronyme;
|
|
|
84 |
public TextField<String> ihChp;
|
|
|
85 |
public TextField<String> mnhnChp;
|
|
|
86 |
public ComboBox<InterneValeur> comboTypeStructure;
|
|
|
87 |
public TextField<String> nomStructureChp;
|
|
|
88 |
public TextField<String> dateFondationChp;
|
|
|
89 |
public TextArea descriptionChp;
|
|
|
90 |
public TextArea conditionAccesChp;
|
|
|
91 |
public TextArea conditionUsageChp;
|
|
|
92 |
public TextArea adrChp;
|
|
|
93 |
public TextField<String> cpChp;
|
|
|
94 |
public TextField<String> villeChp;
|
|
|
95 |
public ListStore<Valeur> magazinPays;
|
|
|
96 |
public ChampComboBoxRechercheTempsReelPaginable comboPays;
|
|
|
97 |
public TextField<String> latitudeChp;
|
|
|
98 |
public TextField<String> longitudeChp;
|
|
|
99 |
public TextField<String> telChp;
|
|
|
100 |
public TextField<String> faxChp;
|
|
|
101 |
public TextField<String> emailChp;
|
|
|
102 |
public TextField<String> urlChp;
|
|
|
103 |
public StructureAPersonneListe personnel;
|
|
|
104 |
public StructureAPersonneListe personnelAjoute;
|
|
|
105 |
public StructureAPersonneListe personnelModifie;
|
|
|
106 |
public StructureAPersonneListe personnelSupprime;
|
|
|
107 |
public NumberField nbreTotalPersonneStructureChp;
|
|
|
108 |
public EditorGrid<StructureAPersonne> grillePersonnel;
|
|
|
109 |
public ListStore<StructureAPersonne> personnelGrilleMagazin;
|
|
|
110 |
public StructureConservation conservation;
|
|
|
111 |
public RadioGroup formationMarkRGrpChp;
|
|
|
112 |
public RadioGroup interetFormationMarkRGrpChp;
|
|
|
113 |
public RadioGroup collectionCommuneMarkRGrpChp;
|
|
|
114 |
public RadioGroup accesControleMarkRGrpChp;
|
|
|
115 |
public RadioGroup restaurationMarkRGrpChp;
|
|
|
116 |
public RadioGroup traitementMarkRGrpChp;
|
|
|
117 |
public RadioGroup collectionAcquisitionMarkRGrpChp;
|
|
|
118 |
public RadioGroup echantillonAcquisitionMarkRGrpChp;
|
|
|
119 |
public TextField<String> localStockageAutreChp;
|
|
|
120 |
public TextField<String> meubleStockageAutreChp;
|
|
|
121 |
public TextField<String> parametreStockageAutreChp;
|
|
|
122 |
public TextField<String> collectionAutreAutreChp;
|
|
|
123 |
public TextField<String> autreCollectionAutreChp;
|
|
|
124 |
public TextField<String> opRestauAutreChp;
|
|
|
125 |
public TextField<String> autreMaterielAutreChp;
|
|
|
126 |
public TextField<String> poisonTraitementAutreChp;
|
|
|
127 |
public TextField<String> traitementAutreChp;
|
|
|
128 |
public TextField<String> insecteTraitementAutreChp;
|
|
|
129 |
public TextField<String> actionAutreChp;
|
|
|
130 |
public TextField<String> provenanceRechercheAutreChp;
|
|
|
131 |
public TextField<String> typeRechercheAutreChp;
|
|
|
132 |
public CheckBoxGroup localStockageTrukCacGrpChp;
|
|
|
133 |
public LayoutContainer localStockageTrukCp;
|
|
|
134 |
public CheckBoxGroup meubleStockageTrukCacGrpChp;
|
|
|
135 |
public LayoutContainer meubleStockageTrukCp;
|
|
|
136 |
public CheckBoxGroup parametreStockageTrukCacGrpChp;
|
|
|
137 |
public LayoutContainer parametreStockageTrukCp;
|
|
|
138 |
public LayoutContainer collectionAutreTrukCp;
|
|
|
139 |
public CheckBoxGroup collectionAutreTrukCacGrpChp;
|
|
|
140 |
public CheckBoxGroup opRestauTrukCacGrpChp;
|
|
|
141 |
public LayoutContainer opRestauTrukCp;
|
|
|
142 |
public CheckBoxGroup autreMaterielTrukCacGrpChp;
|
|
|
143 |
public LayoutContainer autreMaterielTrukCp;
|
|
|
144 |
public LayoutContainer traitementTrukCp;
|
|
|
145 |
public CheckBoxGroup traitementTrukCacGrpChp;
|
|
|
146 |
public LayoutContainer poisonTraitementTrukCp;
|
|
|
147 |
public LayoutContainer insecteTraitementTrukCp;
|
|
|
148 |
public CheckBoxGroup insecteTraitementTrukCacGrpChp;
|
|
|
149 |
public CheckBoxGroup poisonTraitementTrukCacGrpChp;
|
|
|
150 |
public LayoutContainer autreCollectionTrukCp;
|
|
|
151 |
public CheckBoxGroup autreCollectionTrukCacGrpChp;
|
|
|
152 |
public LayoutContainer provenanceRechercheTrukCp;
|
|
|
153 |
public CheckBoxGroup provenanceRechercheTrukCacGrpChp;
|
|
|
154 |
public CheckBoxGroup typeRechercheTrukCacGrpChp;
|
|
|
155 |
public LayoutContainer typeRechercheTrukCp;
|
|
|
156 |
public TextField<String> futureActionChp;
|
|
|
157 |
public TextField<String> sansMotifAccesChp;
|
|
|
158 |
public TextField<String> avecMotifAccesChp;
|
|
|
159 |
public TextField<String> formationChp;
|
|
|
160 |
public RadioGroup traitementAcquisitionMarkRGrpChp;
|
|
|
161 |
public LabelField traitementAcquisitionMarkLabel;
|
|
|
162 |
public RadioGroup materielConservationCeRGrpChp;
|
|
|
163 |
public StructureValorisation valorisation;
|
|
|
164 |
public RadioGroup actionMarkRGrpChp;
|
|
|
165 |
public LayoutContainer actionTrukCp;
|
|
|
166 |
public CheckBoxGroup actionTrukCacGrpChp;
|
|
|
167 |
public RadioGroup futureActionMarkRGrpChp;
|
|
|
168 |
public RadioGroup rechercheMarkRGrpChp;
|
|
|
169 |
public RadioGroup sansMotifAccesMarkRGrpChp;
|
|
|
170 |
public RadioGroup avecMotifAccesMarkRGrpChp;
|
|
|
171 |
public TextField<String> publicationChp;
|
|
|
172 |
public LayoutContainer materielConservationCp;
|
|
|
173 |
public ListStore<Personne> personneExistanteMagazin;
|
|
|
174 |
public ChampComboBoxRechercheTempsReelPaginable personneExistanteCombo;
|
|
|
175 |
public Button supprimerPersonnelBtn;
|
|
|
176 |
public CellEditor fonctionEditor;
|
|
|
177 |
public List<Valeur> fonctionsListe;
|
|
|
178 |
public Sequenceur sequenceur;
|
|
|
179 |
public Structure structure;
|
|
|
180 |
public Rafraichissable vueExterneARafraichirApresValidation;
|
|
|
181 |
|
|
|
182 |
private String ID = "identification";
|
|
|
183 |
|
|
|
184 |
Formulaire formulaireCourant;
|
|
|
185 |
|
|
|
186 |
public StructureFormIdentification(Formulaire formulaireCourant) {
|
|
|
187 |
|
|
|
188 |
initialiserOnglet(formulaireCourant);
|
|
|
189 |
setLayout(new FitLayout());
|
|
|
190 |
setId(ID);
|
|
|
191 |
setText(Mediateur.i18nC.structureInfoGeneral());
|
|
|
192 |
setStyleAttribute("padding", "0");
|
|
|
193 |
|
|
|
194 |
this.formulaireCourant = formulaireCourant;
|
|
|
195 |
|
|
|
196 |
//+-----------------------------------------------------------------------------------------------------------+
|
|
|
197 |
//+-----------------------------------------------------------------------------------------------------------+
|
|
|
198 |
// Champs cachés
|
|
|
199 |
idStructureChp = new HiddenField<String>();
|
|
|
200 |
|
|
|
201 |
//+-----------------------------------------------------------------------------------------------------------+
|
|
|
202 |
// Fieldset IDENTITÉ
|
|
|
203 |
FieldSet fieldSetIdentite = new FieldSet();
|
1680 |
raphael |
204 |
fieldSetIdentite.setHeadingHtml("Identité");
|
1637 |
aurelien |
205 |
fieldSetIdentite.setCollapsible(true);
|
|
|
206 |
fieldSetIdentite.setLayout(Formulaire.creerFormLayout(120, LabelAlign.LEFT));
|
|
|
207 |
fieldSetIdentite.setAutoHeight(true);
|
|
|
208 |
|
|
|
209 |
nomStructureChp = new TextField<String>();
|
|
|
210 |
nomStructureChp.setTabIndex(tabIndex++);
|
|
|
211 |
nomStructureChp.setFieldLabel("Nom de la structure");
|
|
|
212 |
nomStructureChp.setAllowBlank(false);
|
|
|
213 |
nomStructureChp.getMessages().setBlankText("Ce champ est obligatoire.");
|
|
|
214 |
nomStructureChp.addStyleName(ComposantClass.OBLIGATOIRE);
|
|
|
215 |
nomStructureChp.addListener(Events.Valid, Formulaire.creerEcouteurChampObligatoire());
|
|
|
216 |
fieldSetIdentite.add(nomStructureChp, new FormData(450, 0));
|
|
|
217 |
|
|
|
218 |
// Création du sous-formulaire : Acronyme
|
|
|
219 |
LayoutContainer ligne = new LayoutContainer();
|
|
|
220 |
ligne.setLayout(new ColumnLayout());
|
|
|
221 |
ligne.setSize(600, -1);
|
|
|
222 |
|
|
|
223 |
LayoutContainer gauche = new LayoutContainer();
|
|
|
224 |
gauche.setLayout(Formulaire.creerFormLayout(120, LabelAlign.LEFT));
|
|
|
225 |
LayoutContainer droite = new LayoutContainer();
|
|
|
226 |
droite.setLayout(Formulaire.creerFormLayout(10, LabelAlign.LEFT));
|
|
|
227 |
|
|
|
228 |
ListStore<InterneValeur> acronymes = new ListStore<InterneValeur>();
|
|
|
229 |
acronymes.add(InterneValeurListe.getTypeAcronyme());
|
|
|
230 |
|
|
|
231 |
comboAcronyme = new ComboBox<InterneValeur>();
|
|
|
232 |
comboAcronyme.setTabIndex(tabIndex++);
|
|
|
233 |
comboAcronyme.setEmptyText("Sélectioner un type d'acronyme...");
|
|
|
234 |
comboAcronyme.setFieldLabel("Type d'acronyme");
|
|
|
235 |
comboAcronyme.setDisplayField("nom");
|
|
|
236 |
comboAcronyme.setStore(acronymes);
|
|
|
237 |
comboAcronyme.setEditable(false);
|
|
|
238 |
comboAcronyme.setTypeAhead(true);
|
|
|
239 |
comboAcronyme.setTriggerAction(TriggerAction.ALL);
|
|
|
240 |
comboAcronyme.addSelectionChangedListener(new SelectionChangedListener<InterneValeur>() {
|
|
|
241 |
@Override
|
|
|
242 |
public void selectionChanged(SelectionChangedEvent<InterneValeur> se) {
|
|
|
243 |
String acronymeAbr = se.getSelectedItem().getAbr();
|
|
|
244 |
if (acronymeAbr.equals("IH")) {
|
|
|
245 |
mnhnChp.hide();
|
|
|
246 |
ihChp.show();
|
|
|
247 |
} else if (acronymeAbr.equals("MNHN")) {
|
|
|
248 |
ihChp.hide();
|
|
|
249 |
mnhnChp.show();
|
|
|
250 |
} else if (acronymeAbr.equals("")) {
|
|
|
251 |
ihChp.hide();
|
|
|
252 |
mnhnChp.hide();
|
|
|
253 |
comboAcronyme.clearSelections();
|
|
|
254 |
}
|
|
|
255 |
}
|
|
|
256 |
});
|
|
|
257 |
gauche.add(comboAcronyme, new FormData("95%"));
|
|
|
258 |
|
|
|
259 |
ihChp = new TextField<String>();
|
|
|
260 |
ihChp.setTabIndex(tabIndex++);
|
|
|
261 |
ihChp.setLabelSeparator("");
|
|
|
262 |
ihChp.setToolTip("Index Herbariorum : herbier de plus de 5000 échantillons");
|
|
|
263 |
ihChp.hide();
|
|
|
264 |
droite.add(ihChp, new FormData("95%"));
|
|
|
265 |
|
|
|
266 |
mnhnChp = new TextField<String>();
|
|
|
267 |
mnhnChp.setTabIndex(tabIndex++);
|
|
|
268 |
mnhnChp.setLabelSeparator("");
|
|
|
269 |
mnhnChp.setToolTip("Acronyme MNHN : herbier de moins de 5000 échantillons");
|
|
|
270 |
mnhnChp.hide();
|
|
|
271 |
droite.add(mnhnChp, new FormData("95%"));
|
|
|
272 |
|
|
|
273 |
ligne.add(gauche, new ColumnData(.5));
|
|
|
274 |
ligne.add(droite, new ColumnData(.5));
|
|
|
275 |
fieldSetIdentite.add(ligne);
|
|
|
276 |
|
|
|
277 |
// Création du sous-formulaire : Type de Structure
|
|
|
278 |
LayoutContainer ligneTs = new LayoutContainer();
|
|
|
279 |
ligneTs.setLayout(new ColumnLayout());
|
|
|
280 |
ligneTs.setSize(600, -1);
|
|
|
281 |
|
|
|
282 |
LayoutContainer gaucheTs = new LayoutContainer();
|
|
|
283 |
gaucheTs.setLayout(Formulaire.creerFormLayout(120, LabelAlign.LEFT));
|
|
|
284 |
|
|
|
285 |
LayoutContainer droiteTs = new LayoutContainer();
|
|
|
286 |
droiteTs.setLayout(Formulaire.creerFormLayout(10, LabelAlign.LEFT));
|
|
|
287 |
|
|
|
288 |
ListStore<InterneValeur> typesStructure = new ListStore<InterneValeur>();
|
|
|
289 |
typesStructure.add(InterneValeurListe.getTypeStructure());
|
|
|
290 |
|
|
|
291 |
comboTypeStructure = new ComboBox<InterneValeur>();
|
|
|
292 |
comboTypeStructure.setTabIndex(tabIndex++);
|
|
|
293 |
comboTypeStructure.setEmptyText("Sélectioner un type de structure...");
|
|
|
294 |
comboTypeStructure.setFieldLabel("Statut des structures");
|
|
|
295 |
comboTypeStructure.setDisplayField("nom");
|
|
|
296 |
comboTypeStructure.setStore(typesStructure);
|
|
|
297 |
comboTypeStructure.setEditable(false);
|
|
|
298 |
comboTypeStructure.setTypeAhead(true);
|
|
|
299 |
comboTypeStructure.setTriggerAction(TriggerAction.ALL);
|
|
|
300 |
comboTypeStructure.addSelectionChangedListener(new SelectionChangedListener<InterneValeur>() {
|
|
|
301 |
@Override
|
|
|
302 |
public void selectionChanged(SelectionChangedEvent<InterneValeur> se) {
|
|
|
303 |
String typeAbr = se.getSelectedItem().getAbr();
|
|
|
304 |
if (typeAbr.equals("stpu")) {
|
|
|
305 |
comboLstpr.hide();
|
|
|
306 |
comboLstpu.show();
|
|
|
307 |
} else if (typeAbr.equals("stpr")) {
|
|
|
308 |
comboLstpu.hide();
|
|
|
309 |
comboLstpr.show();
|
|
|
310 |
} else if (typeAbr.equals("")) {
|
|
|
311 |
comboLstpr.hide();
|
|
|
312 |
comboLstpu.hide();
|
|
|
313 |
comboTypeStructure.clearSelections();
|
|
|
314 |
}
|
|
|
315 |
}
|
|
|
316 |
});
|
|
|
317 |
gaucheTs.add(comboTypeStructure, new FormData("95%"));
|
|
|
318 |
|
|
|
319 |
magazinLstpu = new ListStore<Valeur>();
|
|
|
320 |
comboLstpu = new ComboBox<Valeur>();
|
|
|
321 |
comboLstpu.setTabIndex(tabIndex++);
|
|
|
322 |
//comboLstpu.setFieldLabel("Statut des structures publiques");
|
|
|
323 |
comboLstpu.setLabelSeparator("");
|
|
|
324 |
comboLstpu.setDisplayField("nom");
|
|
|
325 |
comboLstpu.setEditable(false);
|
|
|
326 |
comboLstpu.setTriggerAction(TriggerAction.ALL);
|
|
|
327 |
comboLstpu.setStore(magazinLstpu);
|
|
|
328 |
comboLstpu.hide();
|
|
|
329 |
droiteTs.add(comboLstpu, new FormData("95%"));
|
|
|
330 |
mediateur.obtenirListeValeurEtRafraichir(this, "stpu", sequenceur);
|
|
|
331 |
|
|
|
332 |
magazinLstpr = new ListStore<Valeur>();
|
|
|
333 |
comboLstpr = new ComboBox<Valeur>();
|
|
|
334 |
comboLstpr.setTabIndex(tabIndex++);
|
|
|
335 |
//comboLstpr.setFieldLabel("Statut des structures privées");
|
|
|
336 |
comboLstpr.setLabelSeparator("");
|
|
|
337 |
comboLstpr.setDisplayField("nom");
|
|
|
338 |
comboLstpr.setEditable(false);
|
|
|
339 |
comboLstpr.setTriggerAction(TriggerAction.ALL);
|
|
|
340 |
comboLstpr.setStore(magazinLstpr);
|
|
|
341 |
comboLstpr.hide();
|
|
|
342 |
droiteTs.add(comboLstpr, new FormData("95%"));
|
|
|
343 |
mediateur.obtenirListeValeurEtRafraichir(this, "stpr", sequenceur);
|
|
|
344 |
|
|
|
345 |
ligneTs.add(gaucheTs, new ColumnData(0.5));
|
|
|
346 |
ligneTs.add(droiteTs, new ColumnData(0.5));
|
|
|
347 |
fieldSetIdentite.add(ligneTs);
|
|
|
348 |
|
|
|
349 |
dateFondationChp = new TextField();
|
|
|
350 |
dateFondationChp.setTabIndex(tabIndex++);
|
|
|
351 |
dateFondationChp.setFieldLabel("Date de fondation");
|
|
|
352 |
fieldSetIdentite.add(dateFondationChp);
|
|
|
353 |
|
1685 |
raphael |
354 |
nbreTotalPersonneStructureChp = new NumberField();
|
1637 |
aurelien |
355 |
nbreTotalPersonneStructureChp.setFieldLabel("Nombre de personnes travaillant dans l'institution");
|
|
|
356 |
nbreTotalPersonneStructureChp.setFormat(NumberFormat.getFormat("#"));
|
|
|
357 |
nbreTotalPersonneStructureChp.setToolTip(i18nC.champNumerique());
|
1685 |
raphael |
358 |
nbreTotalPersonneStructureChp.setAllowDecimals(false);
|
|
|
359 |
nbreTotalPersonneStructureChp.setAllowNegative(false);
|
|
|
360 |
nbreTotalPersonneStructureChp.setEmptyText("");
|
1637 |
aurelien |
361 |
fieldSetIdentite.add(nbreTotalPersonneStructureChp);
|
|
|
362 |
|
|
|
363 |
this.add(fieldSetIdentite);
|
|
|
364 |
|
|
|
365 |
//+-----------------------------------------------------------------------------------------------------------+
|
|
|
366 |
// Fieldset ADRESSE
|
|
|
367 |
LayoutContainer principalFdAdresse = new LayoutContainer();
|
|
|
368 |
principalFdAdresse.setLayout(new ColumnLayout());
|
|
|
369 |
principalFdAdresse.setSize(1050, -1);
|
|
|
370 |
|
|
|
371 |
LayoutContainer gaucheFdAdresse = new LayoutContainer();
|
|
|
372 |
gaucheFdAdresse.setLayout(Formulaire.creerFormLayout(null, LabelAlign.LEFT));
|
|
|
373 |
|
|
|
374 |
LayoutContainer droiteFdAdresse = new LayoutContainer();
|
|
|
375 |
droiteFdAdresse.setLayout(Formulaire.creerFormLayout(100, LabelAlign.LEFT));
|
|
|
376 |
droiteFdAdresse.setWidth(700);
|
|
|
377 |
|
|
|
378 |
FieldSet fieldSetAdresse = new FieldSet();
|
1680 |
raphael |
379 |
fieldSetAdresse.setHeadingHtml("Adresse");
|
1637 |
aurelien |
380 |
fieldSetAdresse.setCollapsible(true);
|
|
|
381 |
|
|
|
382 |
fieldSetAdresse.setLayout(Formulaire.creerFormLayout(null, LabelAlign.LEFT));
|
|
|
383 |
|
|
|
384 |
adrChp = new TextArea();
|
|
|
385 |
adrChp.setTabIndex(tabIndex++);
|
|
|
386 |
adrChp.setFieldLabel("Adresse (Nom du batiment, rue...)");
|
|
|
387 |
fieldSetAdresse.add(adrChp, new FormData(550, 0));
|
|
|
388 |
|
|
|
389 |
cpChp = new TextField<String>();
|
|
|
390 |
cpChp.setTabIndex(tabIndex++);
|
|
|
391 |
cpChp.setFieldLabel("Code postal");
|
|
|
392 |
gaucheFdAdresse.add(cpChp, new FormData("95%"));
|
|
|
393 |
|
|
|
394 |
villeChp = new TextField<String>();
|
|
|
395 |
villeChp.setTabIndex(tabIndex++);
|
|
|
396 |
villeChp.setFieldLabel("Ville");
|
|
|
397 |
gaucheFdAdresse.add(villeChp, new FormData("95%"));
|
|
|
398 |
|
|
|
399 |
ModelType modelTypesPays = new ModelType();
|
|
|
400 |
modelTypesPays.setRoot("valeurs");
|
|
|
401 |
modelTypesPays.setTotalName("nbElements");
|
|
|
402 |
modelTypesPays.addField("cmlv_nom");
|
|
|
403 |
modelTypesPays.addField("cmlv_id_valeur");
|
|
|
404 |
modelTypesPays.addField("cmlv_abreviation");
|
|
|
405 |
modelTypesPays.addField("cmlv_description");
|
|
|
406 |
|
|
|
407 |
String displayNamePays = "cmlv_nom";
|
|
|
408 |
String nomListeTypes = "pays";
|
|
|
409 |
ProxyValeur<ModelData> proxyPays = new ProxyValeur<ModelData>(nomListeTypes, null);
|
|
|
410 |
|
|
|
411 |
comboPays = new ChampComboBoxRechercheTempsReelPaginable(proxyPays, modelTypesPays, displayNamePays);
|
|
|
412 |
comboPays.setWidth(100,500);
|
|
|
413 |
comboPays.getCombo().setTabIndex(tabIndex++);
|
|
|
414 |
comboPays.getCombo().setFieldLabel("Pays");
|
|
|
415 |
comboPays.getCombo().setForceSelection(true);
|
|
|
416 |
comboPays.getCombo().setTemplate(getTemplatePays());
|
|
|
417 |
|
|
|
418 |
droiteFdAdresse.add(comboPays, new FormData("95%"));
|
|
|
419 |
|
|
|
420 |
latitudeChp = new TextField<String>();
|
|
|
421 |
latitudeChp.setRegex(Pattern.latitude);
|
|
|
422 |
latitudeChp.setToolTip("Format : nombre décimal positif ou négatif de 0 à 90.");
|
|
|
423 |
latitudeChp.getMessages().setRegexText("La valeur saisie n'est pas une latitude valide. Exemples de latitude : -45,302010 ou 45.252423 ou 25,16.");
|
|
|
424 |
latitudeChp.setTabIndex(tabIndex++);
|
|
|
425 |
latitudeChp.setFieldLabel("Latitude (Nord)");
|
|
|
426 |
gaucheFdAdresse.add(latitudeChp, new FormData("95%"));
|
|
|
427 |
|
|
|
428 |
longitudeChp = new TextField<String>();
|
|
|
429 |
longitudeChp.setRegex(Pattern.longitude);
|
|
|
430 |
longitudeChp.setToolTip("Format : nombre décimal positif ou négatif de 0 à 180.");
|
|
|
431 |
longitudeChp.getMessages().setRegexText("La valeur saisie n'est pas une longitude valide. Exemples de longitude : -150,302010 ou 150.252423 ou 25,16.");
|
|
|
432 |
longitudeChp.setTabIndex(tabIndex++);
|
|
|
433 |
longitudeChp.setFieldLabel("Longitude (Est)");
|
|
|
434 |
droiteFdAdresse.add(longitudeChp, new FormData("95%"));
|
|
|
435 |
|
|
|
436 |
principalFdAdresse.add(gaucheFdAdresse, new ColumnData(.5));
|
|
|
437 |
principalFdAdresse.add(droiteFdAdresse, new ColumnData(.5));
|
|
|
438 |
fieldSetAdresse.add(principalFdAdresse);
|
|
|
439 |
|
|
|
440 |
this.add(fieldSetAdresse);
|
|
|
441 |
|
|
|
442 |
//+-----------------------------------------------------------------------------------------------------------+
|
|
|
443 |
// Fieldset TÉLÉPHONE et EMAIL
|
|
|
444 |
LayoutContainer principalFdTelMail = new LayoutContainer();
|
|
|
445 |
principalFdTelMail.setLayout(new ColumnLayout());
|
|
|
446 |
principalFdTelMail.setSize(700, -1);
|
|
|
447 |
|
|
|
448 |
LayoutContainer gaucheFdTelMail = new LayoutContainer();
|
|
|
449 |
gaucheFdTelMail.setLayout(Formulaire.creerFormLayout(60, LabelAlign.LEFT));
|
|
|
450 |
|
|
|
451 |
LayoutContainer droiteFdTelMail = new LayoutContainer();
|
|
|
452 |
droiteFdTelMail.setLayout(Formulaire.creerFormLayout(60, LabelAlign.LEFT));
|
|
|
453 |
|
|
|
454 |
FieldSet fieldSetTelMail = new FieldSet();
|
1680 |
raphael |
455 |
fieldSetTelMail.setHeadingHtml("Communication");
|
1637 |
aurelien |
456 |
fieldSetTelMail.setCollapsible(true);
|
|
|
457 |
|
|
|
458 |
fieldSetTelMail.setLayout(Formulaire.creerFormLayout(null, LabelAlign.LEFT));
|
|
|
459 |
|
|
|
460 |
telChp = new TextField<String>();
|
|
|
461 |
telChp.setTabIndex(tabIndex++);
|
1779 |
aurelien |
462 |
telChp.setFieldLabel("Téléphone");
|
1637 |
aurelien |
463 |
gaucheFdTelMail.add(telChp, new FormData("95%"));
|
|
|
464 |
|
|
|
465 |
faxChp = new TextField<String>();
|
|
|
466 |
faxChp.setTabIndex(tabIndex++);
|
|
|
467 |
faxChp.setFieldLabel("Fax");
|
|
|
468 |
droiteFdTelMail.add(faxChp, new FormData("95%"));
|
|
|
469 |
|
|
|
470 |
emailChp = new TextField<String>();
|
|
|
471 |
emailChp.setTabIndex(tabIndex++);
|
|
|
472 |
emailChp.setFieldLabel("Courriel");
|
|
|
473 |
emailChp.setToolTip("Saisir le courriel de l'organisation, pas de courriel individuel. Ex. : accueil@organisation.org");
|
|
|
474 |
gaucheFdTelMail.add(emailChp, new FormData("95%"));
|
|
|
475 |
|
|
|
476 |
urlChp = new TextField<String>();
|
|
|
477 |
urlChp.setTabIndex(tabIndex++);
|
|
|
478 |
urlChp.setFieldLabel("Site web");
|
|
|
479 |
droiteFdTelMail.add(urlChp, new FormData("95%"));
|
|
|
480 |
|
|
|
481 |
principalFdTelMail.add(gaucheFdTelMail, new ColumnData(.5));
|
|
|
482 |
principalFdTelMail.add(droiteFdTelMail, new ColumnData(.5));
|
|
|
483 |
fieldSetTelMail.add(principalFdTelMail);
|
|
|
484 |
|
|
|
485 |
this.add(fieldSetTelMail);
|
1779 |
aurelien |
486 |
|
|
|
487 |
//+-----------------------------------------------------------------------------------------------------------+
|
|
|
488 |
// Fieldset DESCRIPTION
|
|
|
489 |
FieldSet fieldSetDescription = new FieldSet();
|
|
|
490 |
fieldSetDescription.setHeadingHtml("Description");
|
|
|
491 |
fieldSetDescription.setCollapsible(true);
|
|
|
492 |
fieldSetDescription.setLayout(Formulaire.creerFormLayout(120, LabelAlign.LEFT));
|
|
|
493 |
|
|
|
494 |
descriptionChp = new TextArea();
|
|
|
495 |
descriptionChp.setTabIndex(tabIndex++);
|
|
|
496 |
descriptionChp.setFieldLabel("Description");
|
|
|
497 |
fieldSetDescription.add(descriptionChp, new FormData(550, 0));
|
|
|
498 |
|
|
|
499 |
conditionAccesChp = new TextArea();
|
|
|
500 |
conditionAccesChp.setTabIndex(tabIndex++);
|
|
|
501 |
conditionAccesChp.setFieldLabel("Conditions d'accès");
|
|
|
502 |
fieldSetDescription.add(conditionAccesChp, new FormData(550, 0));
|
|
|
503 |
|
|
|
504 |
conditionUsageChp = new TextArea();
|
|
|
505 |
conditionUsageChp.setTabIndex(tabIndex++);
|
|
|
506 |
conditionUsageChp.setFieldLabel("Conditions d'usage");
|
|
|
507 |
fieldSetDescription.add(conditionUsageChp, new FormData(550, 0));
|
|
|
508 |
|
|
|
509 |
this.add(fieldSetDescription);
|
1637 |
aurelien |
510 |
}
|
|
|
511 |
|
|
|
512 |
private native String getTemplatePays() /*-{
|
|
|
513 |
return [
|
|
|
514 |
'<tpl for=".">',
|
|
|
515 |
'<div class="x-combo-list-item">{cmlv_nom} ({cmlv_abreviation})</div>',
|
|
|
516 |
'</tpl>'
|
|
|
517 |
].join("");
|
|
|
518 |
}-*/;
|
|
|
519 |
|
|
|
520 |
public void peuplerIdSurRetourAjout() {
|
|
|
521 |
initialiserIdentification();
|
|
|
522 |
idStructureChp.setValue(identification.getId());
|
|
|
523 |
nomStructureChp.setValue(identification.getNom());
|
|
|
524 |
}
|
|
|
525 |
|
|
|
526 |
public void peupler() {
|
|
|
527 |
if(identification == null) {
|
|
|
528 |
initialiserIdentification();
|
|
|
529 |
}
|
|
|
530 |
if (formulaireCourant.mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
531 |
// Indique que l'ongleta pu être modifié pour la méthode collecter...
|
|
|
532 |
this.setData("acces", true);
|
|
|
533 |
// Initialisation de l'objet Structure
|
|
|
534 |
identification = new Structure();
|
|
|
535 |
}
|
|
|
536 |
|
|
|
537 |
if (formulaireCourant.mode.equals(Formulaire.MODE_MODIFIER) && identification != null && getData("acces").equals(false)) {
|
|
|
538 |
idStructureChp.setValue(identification.getId());
|
|
|
539 |
nomStructureChp.setValue(identification.getNom());
|
|
|
540 |
|
|
|
541 |
if (!identification.getIdAlternatif().isEmpty()) {
|
|
|
542 |
String[] acronyme = identification.getIdAlternatif().split("##");
|
|
|
543 |
//#436 : Ne pas afficher "null"
|
|
|
544 |
if (UtilString.isEmpty(acronyme[1]) || acronyme[1].equals("null")) {
|
|
|
545 |
acronyme[1] = "";
|
|
|
546 |
}
|
|
|
547 |
|
|
|
548 |
if (acronyme[0].matches("^IH$")) {
|
|
|
549 |
comboAcronyme.setValue(InterneValeurListe.getTypeAcronymeIH());
|
|
|
550 |
ihChp.setValue(acronyme[1]);
|
|
|
551 |
} else if (acronyme[0].matches("^MNHN$")) {
|
|
|
552 |
comboAcronyme.setValue(InterneValeurListe.getTypeAcronymeMNHN());
|
|
|
553 |
mnhnChp.setValue(acronyme[1]);
|
|
|
554 |
}
|
|
|
555 |
}
|
|
|
556 |
if (!identification.getTypePrive().isEmpty()) {
|
|
|
557 |
if (identification.getTypePrive().matches("^[0-9]+$")) {
|
|
|
558 |
comboTypeStructure.setValue(InterneValeurListe.getTypePrivee());
|
|
|
559 |
comboLstpr.setValue(comboLstpr.getStore().findModel("id_valeur", identification.getTypePrive()));
|
|
|
560 |
}
|
|
|
561 |
} else if (!identification.getTypePublic().isEmpty()) {
|
|
|
562 |
if (identification.getTypePublic().matches("^[0-9]+$")) {
|
|
|
563 |
comboTypeStructure.setValue(InterneValeurListe.getTypePublique());
|
|
|
564 |
comboLstpu.setValue(comboLstpu.getStore().findModel("id_valeur", identification.getTypePublic()));
|
|
|
565 |
}
|
|
|
566 |
}
|
|
|
567 |
|
|
|
568 |
String dateFondation = identification.getAnneeOuDateFondation();
|
|
|
569 |
dateFondationChp.setValue(dateFondation);
|
|
|
570 |
|
|
|
571 |
descriptionChp.setValue(identification.getDescription());
|
|
|
572 |
conditionAccesChp.setValue(identification.getConditionAcces());
|
|
|
573 |
conditionUsageChp.setValue(identification.getConditionUsage());
|
|
|
574 |
|
|
|
575 |
adrChp.setValue(identification.getAdresse());
|
|
|
576 |
cpChp.setValue(identification.getCodePostal());
|
|
|
577 |
villeChp.setValue(identification.getVille());
|
1784 |
aurelien |
578 |
|
1637 |
aurelien |
579 |
if (identification.getPays().matches("^[0-9]+$")) {
|
|
|
580 |
comboPays.chargerValeurInitiale(identification.getPays(), "cmlv_id_valeur");
|
|
|
581 |
} else {
|
|
|
582 |
comboPays.getCombo().setRawValue(identification.getPays());
|
|
|
583 |
}
|
|
|
584 |
latitudeChp.setValue(identification.getLatitude());
|
|
|
585 |
longitudeChp.setValue(identification.getLongitude());
|
|
|
586 |
|
|
|
587 |
telChp.setValue(identification.getTelephoneFixe());
|
|
|
588 |
faxChp.setValue(identification.getFax());
|
|
|
589 |
|
|
|
590 |
emailChp.setValue(identification.getCourriel());
|
|
|
591 |
urlChp.setValue(identification.getUrl("WEB"));
|
|
|
592 |
|
|
|
593 |
nbreTotalPersonneStructureChp.setValue(identification.getNbrePersonne());
|
|
|
594 |
|
|
|
595 |
// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
|
|
|
596 |
this.setData("acces", true);
|
|
|
597 |
}
|
|
|
598 |
}
|
|
|
599 |
|
|
|
600 |
private void initialiserIdentification() {
|
|
|
601 |
identification = ((StructureForm)formulaireCourant).identification;
|
|
|
602 |
}
|
|
|
603 |
|
|
|
604 |
public Structure collecter() {
|
|
|
605 |
peupler();
|
|
|
606 |
Structure structureARetourner = null;
|
|
|
607 |
if (this.getData("acces").equals(true)) {
|
|
|
608 |
|
|
|
609 |
if(identification == null) {
|
|
|
610 |
initialiserIdentification();
|
|
|
611 |
}
|
|
|
612 |
|
|
|
613 |
Structure structureCollectee = (Structure) identification.cloner(new Structure());
|
|
|
614 |
|
|
|
615 |
structureCollectee.setId(idStructureChp.getValue());
|
|
|
616 |
structureCollectee.setNom(nomStructureChp.getValue());
|
|
|
617 |
// Récupération de l'acronyme (= identifiant alternatif)
|
|
|
618 |
structureCollectee.setIdAlternatif(null);
|
|
|
619 |
if (comboAcronyme.getValue() != null) {
|
|
|
620 |
String typeAcronyme = comboAcronyme.getValue().getAbr();
|
|
|
621 |
if (typeAcronyme == "IH") {
|
|
|
622 |
structureCollectee.setIdAlternatif(typeAcronyme+"##"+ihChp.getValue());
|
|
|
623 |
} else if (typeAcronyme == "MNHN") {
|
|
|
624 |
structureCollectee.setIdAlternatif(typeAcronyme+"##"+mnhnChp.getValue());
|
|
|
625 |
}
|
|
|
626 |
}
|
|
|
627 |
// Récupération statut de la structure
|
|
|
628 |
structureCollectee.setTypePublic(null);
|
|
|
629 |
structureCollectee.setTypePrive(null);
|
|
|
630 |
if (comboTypeStructure.getValue() != null) {
|
|
|
631 |
String typeStructure = comboTypeStructure.getValue().getAbr();
|
|
|
632 |
if (typeStructure == "stpu" && comboLstpu.getValue() != null) {
|
|
|
633 |
structureCollectee.setTypePublic(comboLstpu.getValue().getId());
|
|
|
634 |
} else if (typeStructure == "stpr" && comboLstpr.getValue() != null) {
|
|
|
635 |
structureCollectee.setTypePrive(comboLstpr.getValue().getId());
|
|
|
636 |
}
|
|
|
637 |
}
|
|
|
638 |
|
|
|
639 |
String valeurDateFondation = dateFondationChp.getValue();
|
|
|
640 |
if (!UtilString.isEmpty(valeurDateFondation)) {
|
|
|
641 |
if (valeurDateFondation.matches("\\d{2}/\\d{2}/\\d{4}")) {
|
|
|
642 |
Date dateFondation = DateTimeFormat.getFormat("dd/MM/yyyy").parse(valeurDateFondation);
|
|
|
643 |
structureCollectee.setDateFondation(dateFondation);
|
|
|
644 |
} else if (valeurDateFondation.matches("\\d{4}")) {
|
|
|
645 |
structureCollectee.setDateFondation(valeurDateFondation + "-00-00");
|
|
|
646 |
}
|
|
|
647 |
}
|
|
|
648 |
|
|
|
649 |
structureCollectee.setDescription(descriptionChp.getValue());
|
|
|
650 |
structureCollectee.setConditionAcces(conditionAccesChp.getValue());
|
|
|
651 |
structureCollectee.setConditionUsage(conditionUsageChp.getValue());
|
|
|
652 |
|
|
|
653 |
structureCollectee.setAdresse(adrChp.getValue());
|
|
|
654 |
structureCollectee.setCodePostal(cpChp.getValue());
|
|
|
655 |
structureCollectee.setVille(villeChp.getValue());
|
|
|
656 |
|
|
|
657 |
structureCollectee.setPays(null);
|
|
|
658 |
if (comboPays.getCombo().getValue() != null) {
|
|
|
659 |
structureCollectee.setPays(new Valeur(comboPays.getValeur()).getId());
|
|
|
660 |
} else if (comboPays.getCombo().getRawValue() != "") {
|
|
|
661 |
structureCollectee.setPays(comboPays.getCombo().getRawValue());
|
|
|
662 |
}
|
|
|
663 |
structureCollectee.setLatitude(latitudeChp.getValue());
|
|
|
664 |
structureCollectee.setLongitude(longitudeChp.getValue());
|
|
|
665 |
|
|
|
666 |
structureCollectee.setTelephoneFixe(telChp.getValue());
|
|
|
667 |
structureCollectee.setFax(faxChp.getValue());
|
|
|
668 |
|
|
|
669 |
structureCollectee.setCourriel(emailChp.getValue());
|
|
|
670 |
structureCollectee.setUrl(Structure.URL_SITE, urlChp.getValue());
|
|
|
671 |
|
1690 |
raphael |
672 |
structureCollectee.setNbrePersonne(nbreTotalPersonneStructureChp.getValue());
|
1637 |
aurelien |
673 |
|
|
|
674 |
structureARetourner = identification = structureCollectee;
|
|
|
675 |
} else {
|
|
|
676 |
|
|
|
677 |
}
|
|
|
678 |
return structureARetourner;
|
|
|
679 |
}
|
|
|
680 |
|
|
|
681 |
@Override
|
|
|
682 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
683 |
if (nouvellesDonnees instanceof ValeurListe) {
|
|
|
684 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
|
|
685 |
rafraichirValeurListe(listeValeurs);
|
|
|
686 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
687 |
Information info = (Information) nouvellesDonnees;
|
|
|
688 |
rafraichirInformation(info);
|
|
|
689 |
} else {
|
|
|
690 |
Debug.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()));
|
|
|
691 |
}
|
|
|
692 |
}
|
|
|
693 |
|
|
|
694 |
public void rafraichirInformation(Information info) {
|
|
|
695 |
if (info.getType().equals("ajout_structure")) {
|
|
|
696 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
|
|
|
697 |
String structureId = (String) info.getDonnee(0);
|
|
|
698 |
identification.setId(structureId);
|
|
|
699 |
this.setData("acces", false);
|
|
|
700 |
peupler();
|
|
|
701 |
} else {
|
|
|
702 |
InfoLogger.display("Ajout d'une Institution", info.toString());
|
|
|
703 |
}
|
|
|
704 |
} else if (info.getType().equals("selection_structure")) {
|
|
|
705 |
InfoLogger.display("Modification d'une institution", info.toString());
|
|
|
706 |
String titre = i18nC.titreModifFormStructurePanneau();
|
|
|
707 |
if (info.getDonnee(0) != null) {
|
|
|
708 |
try {
|
|
|
709 |
identification = (Structure) info.getDonnee(0);
|
|
|
710 |
setAcces(false);
|
|
|
711 |
peupler();
|
|
|
712 |
} catch(Exception e) {
|
|
|
713 |
GWT.log("Problème de cast. "+info.getDonnee(0)+" ne peut être casté en Structure", e);
|
|
|
714 |
}
|
|
|
715 |
// Composition du titre
|
|
|
716 |
titre += " - ID : "+identification.getId();
|
|
|
717 |
}
|
|
|
718 |
}
|
|
|
719 |
}
|
|
|
720 |
|
|
|
721 |
private void rafraichirValeurListe(ValeurListe listeValeurs) {
|
|
|
722 |
List<Valeur> liste = listeValeurs.toList();
|
|
|
723 |
|
|
|
724 |
// Test pour savoir si la liste contient des éléments
|
|
|
725 |
if (liste.size() > 0) {
|
|
|
726 |
if (listeValeurs.getId().equals(config.getListeId("stpr"))) {
|
|
|
727 |
magazinLstpr.removeAll();
|
|
|
728 |
magazinLstpr.add(liste);
|
|
|
729 |
comboLstpr.setStore(magazinLstpr);
|
|
|
730 |
}
|
|
|
731 |
if (listeValeurs.getId().equals(config.getListeId("stpu"))) {
|
|
|
732 |
magazinLstpu.removeAll();
|
|
|
733 |
magazinLstpu.add(liste);
|
|
|
734 |
comboLstpu.setStore(magazinLstpu);
|
|
|
735 |
}
|
|
|
736 |
}
|
|
|
737 |
}
|
|
|
738 |
|
|
|
739 |
public Collection<? extends String> verifier() {
|
|
|
740 |
ArrayList<String> messages = new ArrayList<String>();
|
|
|
741 |
// Vérification des infos sur le nom de la structure
|
|
|
742 |
if ( (this.getData("acces").equals(true) && nomStructureChp.getValue() == null) ||
|
|
|
743 |
(this.getData("acces").equals(true) && nomStructureChp.getValue().equals("")) ||
|
|
|
744 |
(this.getData("acces").equals(false) && identification.getNom().equals(""))) {
|
|
|
745 |
messages.add("Veuillez indiquez un nom à l'institution.");
|
|
|
746 |
}
|
|
|
747 |
|
|
|
748 |
//Vérification de la date de fondation
|
|
|
749 |
String valeurDateFondation = dateFondationChp.getValue();
|
|
|
750 |
if (!UtilString.isEmpty(valeurDateFondation) && (!valeurDateFondation.matches("\\d{2}/\\d{2}/\\d{4}") &&
|
|
|
751 |
!valeurDateFondation.matches("\\d{4}"))) {
|
|
|
752 |
messages.add("La date de fondation n'est pas au format jj/MM/AAAA ou AAAA");
|
|
|
753 |
}
|
|
|
754 |
|
|
|
755 |
return messages;
|
|
|
756 |
}
|
1685 |
raphael |
757 |
}
|