Subversion Repositories eFlore/Applications.coel

Rev

Rev 1233 | Rev 1241 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
935 jpm 1
package org.tela_botanica.client.vues.structure;
69 jpm 2
 
91 jpm 3
import java.util.ArrayList;
4
import java.util.Iterator;
69 jpm 5
import java.util.List;
6
 
981 jpm 7
import org.tela_botanica.client.ComposantClass;
119 jpm 8
import org.tela_botanica.client.Mediateur;
91 jpm 9
import org.tela_botanica.client.RegistreId;
1208 cyprien 10
import org.tela_botanica.client.composants.InfoLogger;
569 jp_milcent 11
import org.tela_botanica.client.images.Images;
69 jpm 12
import org.tela_botanica.client.interfaces.Rafraichissable;
153 jpm 13
import org.tela_botanica.client.modeles.Information;
100 jpm 14
import org.tela_botanica.client.modeles.InterneValeur;
15
import org.tela_botanica.client.modeles.InterneValeurListe;
330 jp_milcent 16
import org.tela_botanica.client.modeles.MenuApplicationId;
91 jpm 17
import org.tela_botanica.client.modeles.Valeur;
18
import org.tela_botanica.client.modeles.ValeurListe;
1215 cyprien 19
import org.tela_botanica.client.modeles.aDonnee;
20
import org.tela_botanica.client.modeles.collection.CollectionAPersonne;
935 jpm 21
import org.tela_botanica.client.modeles.personne.Personne;
22
import org.tela_botanica.client.modeles.personne.PersonneListe;
23
import org.tela_botanica.client.modeles.projet.Projet;
24
import org.tela_botanica.client.modeles.projet.ProjetListe;
25
import org.tela_botanica.client.modeles.structure.Structure;
26
import org.tela_botanica.client.modeles.structure.StructureAPersonne;
27
import org.tela_botanica.client.modeles.structure.StructureAPersonneListe;
28
import org.tela_botanica.client.modeles.structure.StructureConservation;
29
import org.tela_botanica.client.modeles.structure.StructureValorisation;
1208 cyprien 30
import org.tela_botanica.client.util.Debug;
1171 jpm 31
import org.tela_botanica.client.util.Pattern;
243 jp_milcent 32
import org.tela_botanica.client.util.UtilArray;
1043 gduche 33
import org.tela_botanica.client.util.UtilString;
935 jpm 34
import org.tela_botanica.client.vues.Formulaire;
69 jpm 35
 
491 gduche 36
import com.extjs.gxt.ui.client.event.Events;
91 jpm 37
import com.extjs.gxt.ui.client.Registry;
295 jp_milcent 38
import com.extjs.gxt.ui.client.event.BaseEvent;
491 gduche 39
import com.extjs.gxt.ui.client.event.ButtonEvent;
111 jpm 40
import com.extjs.gxt.ui.client.event.ComponentEvent;
1208 cyprien 41
import com.extjs.gxt.ui.client.event.EventType;
243 jp_milcent 42
import com.extjs.gxt.ui.client.event.KeyListener;
111 jpm 43
import com.extjs.gxt.ui.client.event.Listener;
100 jpm 44
import com.extjs.gxt.ui.client.event.SelectionChangedEvent;
45
import com.extjs.gxt.ui.client.event.SelectionChangedListener;
103 jpm 46
import com.extjs.gxt.ui.client.event.SelectionListener;
69 jpm 47
import com.extjs.gxt.ui.client.store.ListStore;
245 jp_milcent 48
import com.extjs.gxt.ui.client.store.Record;
49
import com.extjs.gxt.ui.client.store.Store;
50
import com.extjs.gxt.ui.client.store.StoreEvent;
111 jpm 51
import com.extjs.gxt.ui.client.widget.Component;
102 jpm 52
import com.extjs.gxt.ui.client.widget.ContentPanel;
569 jp_milcent 53
import com.extjs.gxt.ui.client.widget.Html;
153 jpm 54
import com.extjs.gxt.ui.client.widget.Info;
69 jpm 55
import com.extjs.gxt.ui.client.widget.LayoutContainer;
320 gduche 56
import com.extjs.gxt.ui.client.widget.MessageBox;
100 jpm 57
import com.extjs.gxt.ui.client.widget.TabItem;
58
import com.extjs.gxt.ui.client.widget.TabPanel;
69 jpm 59
import com.extjs.gxt.ui.client.widget.button.Button;
108 jpm 60
import com.extjs.gxt.ui.client.widget.form.CheckBox;
61
import com.extjs.gxt.ui.client.widget.form.CheckBoxGroup;
69 jpm 62
import com.extjs.gxt.ui.client.widget.form.ComboBox;
100 jpm 63
import com.extjs.gxt.ui.client.widget.form.DateField;
119 jpm 64
import com.extjs.gxt.ui.client.widget.form.Field;
100 jpm 65
import com.extjs.gxt.ui.client.widget.form.FieldSet;
172 jp_milcent 66
import com.extjs.gxt.ui.client.widget.form.HiddenField;
103 jpm 67
import com.extjs.gxt.ui.client.widget.form.LabelField;
102 jpm 68
import com.extjs.gxt.ui.client.widget.form.NumberField;
109 jpm 69
import com.extjs.gxt.ui.client.widget.form.Radio;
70
import com.extjs.gxt.ui.client.widget.form.RadioGroup;
164 jp_milcent 71
import com.extjs.gxt.ui.client.widget.form.TextArea;
69 jpm 72
import com.extjs.gxt.ui.client.widget.form.TextField;
73
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
74
import com.extjs.gxt.ui.client.widget.form.FormPanel.LabelAlign;
102 jpm 75
import com.extjs.gxt.ui.client.widget.grid.CellEditor;
76
import com.extjs.gxt.ui.client.widget.grid.CheckColumnConfig;
77
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
78
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
79
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
231 jp_milcent 80
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
81
import com.extjs.gxt.ui.client.widget.grid.RowNumberer;
69 jpm 82
import com.extjs.gxt.ui.client.widget.layout.ColumnData;
83
import com.extjs.gxt.ui.client.widget.layout.ColumnLayout;
84
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
100 jpm 85
import com.extjs.gxt.ui.client.widget.layout.FormData;
110 jpm 86
import com.extjs.gxt.ui.client.widget.tips.ToolTipConfig;
102 jpm 87
import com.extjs.gxt.ui.client.widget.toolbar.SeparatorToolItem;
88
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
91 jpm 89
import com.google.gwt.core.client.GWT;
100 jpm 90
import com.google.gwt.i18n.client.DateTimeFormat;
102 jpm 91
import com.google.gwt.i18n.client.NumberFormat;
1035 gduche 92
import com.google.gwt.user.client.Window;
69 jpm 93
 
634 jp_milcent 94
public class StructureForm extends Formulaire implements Rafraichissable {
115 jpm 95
 
615 jp_milcent 96
	private static int decompteRafraichissementPersonnel = 0;
634 jp_milcent 97
 
775 jpm 98
	private TabPanel onglets = null;
206 jp_milcent 99
	private TabItem identificationOnglet = null;
192 jp_milcent 100
	private TabItem personnelOnglet = null;
101
	private TabItem conservationOnglet = null;
102
	private TabItem valorisationOnglet = null;
206 jp_milcent 103
 
104
	private HiddenField<String> idStructureChp = null;
115 jpm 105
 
206 jp_milcent 106
	// Onglet IDENTIFICATION
602 jp_milcent 107
	private Structure identification = null;
91 jpm 108
	private ListStore<Valeur> magazinLstpr = null;
109
	private ComboBox<Valeur> comboLstpr = null;
110
	private ListStore<Valeur> magazinLstpu = null;
111
	private ComboBox<Valeur> comboLstpu = null;
103 jpm 112
	private ListStore<Valeur> magazinLiStatut = null;
113
	private ComboBox<Valeur> comboLiStatut = null;
295 jp_milcent 114
	private ListStore<Valeur> fonctionsMagazin = null;
115
	private ComboBox<Valeur> fonctionsCombo = null;
100 jpm 116
	private ComboBox<InterneValeur> comboAcronyme = null;
117
	private TextField<String> ihChp = null;
118
	private TextField<String> mnhnChp = null;
119
	private ComboBox<InterneValeur> comboTypeStructure = null;
602 jp_milcent 120
	private TextField<String> nomStructureChp = null;
121
	private DateField dateFondationChp = null;
1171 jpm 122
	private TextArea descriptionChp = null;
123
	private TextArea conditionAccesChp = null;
124
	private TextArea conditionUsageChp = null;
602 jp_milcent 125
	private TextArea adrChp = null;
1171 jpm 126
	private TextArea adrComplementChp = null;
602 jp_milcent 127
	private TextField<String> cpChp = null;
128
	private TextField<String> villeChp = null;
1171 jpm 129
	private ListStore<Valeur> magazinRegion = null;
1035 gduche 130
	private ComboBox<Valeur> comboRegion = null;
1171 jpm 131
	private ListStore<Valeur> magazinPays = null;
132
	private ComboBox<Valeur> comboPays = null;
133
	private TextField<String> latitudeChp = null;
134
	private TextField<String> longitudeChp = null;
602 jp_milcent 135
	private TextField<String> telChp = null;
136
	private TextField<String> faxChp = null;
137
	private TextField<String> emailChp = null;
138
	private TextField<String> urlChp = null;
192 jp_milcent 139
 
206 jp_milcent 140
	// Onglet PERSONNEL
602 jp_milcent 141
	private StructureAPersonneListe personnel = null;
231 jp_milcent 142
	private StructureAPersonneListe personnelAjoute = null;
143
	private StructureAPersonneListe personnelModifie = null;
144
	private StructureAPersonneListe personnelSupprime = null;
211 jp_milcent 145
	private NumberField nbreTotalPersonneStructureChp = null;
146
	private EditorGrid<StructureAPersonne> grillePersonnel = null;
147
	private ListStore<StructureAPersonne> personnelGrilleMagazin = null;
148
 
206 jp_milcent 149
	// Onglet CONSERVATION
211 jp_milcent 150
	private StructureConservation conservation = null;
602 jp_milcent 151
	private RadioGroup formationMarkRGrpChp = null;
152
	private RadioGroup interetFormationMarkRGrpChp = null;
153
	private RadioGroup collectionCommuneMarkRGrpChp = null;
154
	private RadioGroup accesControleMarkRGrpChp = null;
155
	private RadioGroup restaurationMarkRGrpChp = null;
156
	private RadioGroup traitementMarkRGrpChp = null;
157
	private RadioGroup collectionAcquisitionMarkRGrpChp = null;
158
	private RadioGroup echantillonAcquisitionMarkRGrpChp = null;
159
	private TextField<String> localStockageAutreChp = null;
160
	private TextField<String> meubleStockageAutreChp = null;
161
	private TextField<String> parametreStockageAutreChp = null;
162
	private TextField<String> collectionAutreAutreChp = null;
163
	private TextField<String> autreCollectionAutreChp = null;
164
	private TextField<String> opRestauAutreChp = null;
165
	private TextField<String> autreMaterielAutreChp = null;
166
	private TextField<String> poisonTraitementAutreChp = null;
167
	private TextField<String> traitementAutreChp = null;
168
	private TextField<String> insecteTraitementAutreChp = null;
169
	private TextField<String> actionAutreChp = null;
170
	private TextField<String> provenanceRechercheAutreChp = null;
171
	private TextField<String> typeRechercheAutreChp = null;
115 jpm 172
	private CheckBoxGroup localStockageTrukCacGrpChp = null;
569 jp_milcent 173
	private LayoutContainer localStockageTrukCp = null;
115 jpm 174
	private CheckBoxGroup meubleStockageTrukCacGrpChp = null;
569 jp_milcent 175
	private LayoutContainer meubleStockageTrukCp = null;
115 jpm 176
	private CheckBoxGroup parametreStockageTrukCacGrpChp = null;
569 jp_milcent 177
	private LayoutContainer parametreStockageTrukCp = null;
178
	private LayoutContainer collectionAutreTrukCp = null;
111 jpm 179
	private CheckBoxGroup collectionAutreTrukCacGrpChp = null;
115 jpm 180
	private CheckBoxGroup opRestauTrukCacGrpChp = null;
569 jp_milcent 181
	private LayoutContainer opRestauTrukCp = null;
115 jpm 182
	private CheckBoxGroup autreMaterielTrukCacGrpChp = null;
569 jp_milcent 183
	private LayoutContainer autreMaterielTrukCp = null;
184
	private LayoutContainer traitementTrukCp = null;
111 jpm 185
	private CheckBoxGroup traitementTrukCacGrpChp = null;
569 jp_milcent 186
	private LayoutContainer poisonTraitementTrukCp = null;
187
	private LayoutContainer insecteTraitementTrukCp = null;
111 jpm 188
	private CheckBoxGroup insecteTraitementTrukCacGrpChp = null;
115 jpm 189
	private CheckBoxGroup poisonTraitementTrukCacGrpChp = null;
569 jp_milcent 190
	private LayoutContainer autreCollectionTrukCp = null;
119 jpm 191
	private CheckBoxGroup autreCollectionTrukCacGrpChp = null;
569 jp_milcent 192
	private LayoutContainer provenanceRechercheTrukCp = null;
115 jpm 193
	private CheckBoxGroup provenanceRechercheTrukCacGrpChp = null;
194
	private CheckBoxGroup typeRechercheTrukCacGrpChp = null;
569 jp_milcent 195
	private LayoutContainer typeRechercheTrukCp = null;
115 jpm 196
	private TextField<String> futureActionChp = null;
197
	private TextField<String> sansMotifAccesChp = null;
198
	private TextField<String> avecMotifAccesChp = null;
199
	private TextField<String> formationChp = null;
200
	private RadioGroup traitementAcquisitionMarkRGrpChp = null;
201
	private LabelField traitementAcquisitionMarkLabel = null;
202
	private RadioGroup materielConservationCeRGrpChp = null;
119 jpm 203
 
206 jp_milcent 204
	// Onglet VALORISATION
211 jp_milcent 205
	private StructureValorisation valorisation = null;
206 jp_milcent 206
	private RadioGroup actionMarkRGrpChp = null;
569 jp_milcent 207
	private LayoutContainer actionTrukCp = null;
206 jp_milcent 208
	private CheckBoxGroup actionTrukCacGrpChp = null;
602 jp_milcent 209
	private RadioGroup futureActionMarkRGrpChp = null;
210
	private RadioGroup rechercheMarkRGrpChp = null;
211
	private RadioGroup sansMotifAccesMarkRGrpChp = null;
212
	private RadioGroup avecMotifAccesMarkRGrpChp = null;
213
	private TextField<String> publicationChp = null;
214
	private LayoutContainer materielConservationCp = null;
215
	private ListStore<Personne> personneExistanteMagazin = null;
216
	private ComboBox<Personne> personneExistanteCombo = null;
217
	private Button supprimerPersonnelBtn = null;
218
	private ListStore<Projet> projetsMagazin = null;
219
	private ComboBox<Projet> projetsCombo = null;
220
	private CellEditor fonctionEditor = null;
221
	private List<Valeur> fonctionsListe = null;
192 jp_milcent 222
 
444 jp_milcent 223
	public StructureForm(Mediateur mediateurCourrant, String modeDeCreation) {
648 jp_milcent 224
		initialiserFormulaire(mediateurCourrant, modeDeCreation, MenuApplicationId.STRUCTURE);
775 jpm 225
		// Ajout du titre
226
		panneauFormulaire.setHeading(i18nC.titreAjoutFormStructurePanneau());
227
		// Création des onglets
228
		onglets = creerOnglets();
229
		// Ajout des onglets au formulaire général
230
		panneauFormulaire.add(onglets);
609 jp_milcent 231
	}
232
 
775 jpm 233
	protected TabPanel creerOnglets() {
234
		TabPanel ongletsStructure = new TabPanel();
110 jpm 235
		// NOTE : pour faire apparaître les scrollBar il faut définir la hauteur du panneau d'onglets à 100% (autoHeight ne semble pas fonctionner)
775 jpm 236
		ongletsStructure.setHeight("100%");
69 jpm 237
 
100 jpm 238
		// Onlget formulaire IDENTIFICATION
775 jpm 239
		ongletsStructure.add(creerOngletIdentification());
206 jp_milcent 240
 
100 jpm 241
		// Onlget formulaire PERSONNEL
775 jpm 242
		ongletsStructure.add(creerOngletPersonnel());
91 jpm 243
 
100 jpm 244
		// Onlget formulaire CONSERVATION
775 jpm 245
		ongletsStructure.add(creerOngletConservation());
100 jpm 246
 
247
		// Onlget formulaire VALORISATION
775 jpm 248
		ongletsStructure.add(creerOngletValorisation());
100 jpm 249
 
119 jpm 250
		// Sélection de l'onglet par défaut
775 jpm 251
		//ongletsStructure(personnelOnglet);
192 jp_milcent 252
 
775 jpm 253
		return ongletsStructure;
609 jp_milcent 254
	}
255
 
934 jpm 256
	public void reinitialiserFormulaire() {
257
		if (mode.equals(StructureForm.MODE_MODIFIER)) {
258
			mediateur.afficherFormStructure(identification.getId());
259
		} else {
260
			mediateur.afficherFormStructure(null);
261
		}
69 jpm 262
	}
781 jpm 263
 
934 jpm 264
	public boolean soumettreFormulaire() {
1208 cyprien 265
 
266
		Debug.log("===> BEGIN StructureForm.soumettreFormulaire()");
267
 
243 jp_milcent 268
		// Vérification de la validité des champs du formulaire
786 jpm 269
		boolean fomulaireValide = verifierFormulaire();
270
		if (fomulaireValide) {
243 jp_milcent 271
			// Collecte des données du formulaire
272
			Structure structure = collecterStructureIdentification();
273
			StructureConservation conservation = collecterStructureConservation();
274
			StructureValorisation valorisation = collecterStructureValorisation();
275
			collecterStructurePersonnel();
276
 
634 jp_milcent 277
			if (mode.equals(MODE_AJOUTER)) {
243 jp_milcent 278
				// Ajout des informations sur la Structure
782 jpm 279
				mediateur.ajouterStructure(this, structure, conservation, valorisation);
243 jp_milcent 280
				// L'ajout des relations StructureAPersonne se fait quand la structure a été ajoutée
281
				// Voir la méthode rafraichir().
634 jp_milcent 282
			} else if (mode.equals(MODE_MODIFIER)) {
1208 cyprien 283
 
284
				Debug.log("===> StructureForm.soumettreFormulaire(), mode="+mode);
285
 
243 jp_milcent 286
				// Modification des informations sur la Structure
306 jp_milcent 287
				if (structure == null && conservation == null && valorisation == null) {
1208 cyprien 288
					InfoLogger.display("Modification d'une institution", "Rien n'a été enregistré car le formulaire n'a pas été modifié.");
306 jp_milcent 289
				} else {
290
					mediateur.modifierStructure(this, identification.getId(), structure, conservation, valorisation);
291
				}
1208 cyprien 292
 
293
				Debug.log("===> StructureForm.soumettreFormulaire(), personnelModifie.size="+personnelModifie.size() + ", personnelAjoute.size()="+personnelAjoute.size());
294
 
306 jp_milcent 295
				if (personnelModifie.size() == 0 && personnelAjoute.size() == 0 && personnelSupprime.size() == 0) {
1208 cyprien 296
					InfoLogger.display("Modification du personnel", "Rien n'a été enregistré car le formulaire n'a pas été modifié.");
306 jp_milcent 297
				} else {
298
					if (personnelModifie.size() != 0) {
609 jp_milcent 299
						decompteRafraichissementPersonnel++;
782 jpm 300
						mediateur.modifierStructureAPersonne(this, personnelModifie);
306 jp_milcent 301
					}
302
					// Ajout des relations StructureAPersonne
303
					if (personnelAjoute.size() != 0) {
609 jp_milcent 304
						decompteRafraichissementPersonnel++;
782 jpm 305
						mediateur.ajouterStructureAPersonne(this, identification.getId(), personnelAjoute);
306 jp_milcent 306
					}
307
					// Suppression des relations StructureAPersonne
308
					if (personnelSupprime.size() != 0) {
609 jp_milcent 309
						decompteRafraichissementPersonnel++;
782 jpm 310
						mediateur.supprimerStructureAPersonne(this, personnelSupprime);
306 jp_milcent 311
					}
312
				}
243 jp_milcent 313
			}
314
		}
1208 cyprien 315
 
316
		Debug.log("===> END StructureForm.soumettreFormulaire()");
317
 
786 jpm 318
		return fomulaireValide;
243 jp_milcent 319
	}
320
 
934 jpm 321
	public boolean verifierFormulaire() {
243 jp_milcent 322
		ArrayList<String> messages = new ArrayList<String>();
231 jp_milcent 323
 
295 jp_milcent 324
		// Vérification des infos sur le nom de la structure
263 jp_milcent 325
		if (	(identificationOnglet.getData("acces").equals(true) && nomStructureChp.getValue() == null) ||
326
				(identificationOnglet.getData("acces").equals(true) && nomStructureChp.getValue().equals("")) ||
243 jp_milcent 327
				(identificationOnglet.getData("acces").equals(false) && identification.getNom().equals(""))) {
328
			messages.add("Veuillez indiquez un nom à l'institution.");
156 jp_milcent 329
		}
243 jp_milcent 330
 
295 jp_milcent 331
		// Vérification des infos sur le projet de la structure
332
		if (	(identificationOnglet.getData("acces").equals(true) && projetsCombo.getValue() == null) ||
333
				(identificationOnglet.getData("acces").equals(true) && projetsCombo.getValue().equals("")) ||
334
				(identificationOnglet.getData("acces").equals(false) && identification.getIdProjet().equals(""))) {
335
			messages.add("Veuillez sélectionner un projet pour l'institution.");
336
		}
337
 
243 jp_milcent 338
		// Vérification du Personnel
339
		if (personnelOnglet.getData("acces").equals(true)) {
340
			String personnelNumero = "";
341
			int nbrePersonne = personnelGrilleMagazin.getCount();
342
			for (int i = 0; i < nbrePersonne; i++) {
343
				StructureAPersonne personne = personnelGrilleMagazin.getAt(i);
344
				if (personne.getNom().equals("") || personne.getPrenom().equals("")) {
345
					personnelNumero += (i != 0 ? ", " : "")+(i+1);
346
				}
347
			}
348
			if (!personnelNumero.equals("")) {
349
				messages.add("Veuillez indiquez un prénom et un nom au personnel numéro : "+personnelNumero);
350
			}
351
		}
352
 
353
		// Affichage des messages d'alerte
354
		if (messages.size() != 0) {
355
			String[] a = {};
356
			a = messages.toArray(a);
320 gduche 357
			MessageBox.alert("Erreurs de saisies", UtilArray.implode(a, "\n\n"), null);
243 jp_milcent 358
			return false;
359
		}
360
		return true;
119 jpm 361
	}
362
 
192 jp_milcent 363
	private StructureValorisation collecterStructureValorisation() {
306 jp_milcent 364
		StructureValorisation valorisationARetourner = null;
365
		if (valorisationOnglet.getData("acces").equals(true)) {
206 jp_milcent 366
			// Création de l'objet
306 jp_milcent 367
			StructureValorisation valorisationCollectee = (StructureValorisation) valorisation.cloner(new StructureValorisation());
206 jp_milcent 368
 
369
			// ACTION
370
			if (actionMarkRGrpChp.getValue() != null) {
306 jp_milcent 371
				valorisationCollectee.setAction(actionMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 372
			}
373
 
374
			// ACTION INFO
306 jp_milcent 375
			valorisationCollectee.setActionInfo(creerChaineDenormalisee(actionTrukCacGrpChp.getValues()));
376
			valorisationCollectee.setActionInfo("AUTRE", actionAutreChp.getValue());
206 jp_milcent 377
 
378
			// PUBLICATION
306 jp_milcent 379
			valorisationCollectee.setPublication(publicationChp.getValue());
206 jp_milcent 380
 
381
			// COLLECTION AUTRE
306 jp_milcent 382
			valorisationCollectee.setCollectionAutre(creerChaineDenormalisee(autreCollectionTrukCacGrpChp.getValues()));
383
			valorisationCollectee.setCollectionAutre("AUTRE", autreCollectionAutreChp.getValue());
206 jp_milcent 384
 
385
			// ACTION FUTURE
386
			if (futureActionMarkRGrpChp.getValue() != null) {
306 jp_milcent 387
				valorisationCollectee.setActionFuture(futureActionMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 388
			}
389
			// ACTION FUTURE INFO
306 jp_milcent 390
			valorisationCollectee.setActionFutureInfo(futureActionChp.getValue());
206 jp_milcent 391
 
392
			// RECHERCHE
393
			if (rechercheMarkRGrpChp.getValue() != null) {
306 jp_milcent 394
				valorisationCollectee.setRecherche(rechercheMarkRGrpChp.getValue().getValueAttribute());
602 jp_milcent 395
 
396
				// RECHERCHE PROVENANCE
397
				valorisationCollectee.setRechercheProvenance(creerChaineDenormalisee(provenanceRechercheTrukCacGrpChp.getValues()));
398
				valorisationCollectee.setRechercheProvenance("AUTRE", provenanceRechercheAutreChp.getValue());
399
 
400
				// RECHERCHE TYPE
401
				valorisationCollectee.setRechercheType(creerChaineDenormalisee(typeRechercheTrukCacGrpChp.getValues()));
402
				valorisationCollectee.setRechercheType("AUTRE", typeRechercheAutreChp.getValue());
206 jp_milcent 403
			}
404
 
405
			// ACCÈS SANS MOTIF
406
			if (sansMotifAccesMarkRGrpChp.getValue() != null) {
306 jp_milcent 407
				valorisationCollectee.setAccesSansMotif(sansMotifAccesMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 408
			}
409
			// ACCÈS SANS MOTIF INFO
306 jp_milcent 410
			valorisationCollectee.setAccesSansMotifInfo(sansMotifAccesChp.getValue());
206 jp_milcent 411
 
412
			// VISITE AVEC MOTIF
413
			if (avecMotifAccesMarkRGrpChp.getValue() != null) {
306 jp_milcent 414
				valorisationCollectee.setVisiteAvecMotif(avecMotifAccesMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 415
			}
416
			// VISITE AVEC MOTIF INFO
306 jp_milcent 417
			valorisationCollectee.setVisiteAvecMotifInfo(avecMotifAccesChp.getValue());
206 jp_milcent 418
 
306 jp_milcent 419
			// Retour de l'objet
420
			if (!valorisationCollectee.comparer(valorisation)) {
421
				valorisationARetourner = valorisation = valorisationCollectee;
422
			}
192 jp_milcent 423
		}
306 jp_milcent 424
		return valorisationARetourner;
192 jp_milcent 425
	}
426
 
427
	private void peuplerStructureValorisation() {
605 jp_milcent 428
		if (mode.equals(MODE_AJOUTER)) {
429
			// Indique que l'onglet a pu être modifié pour la méthode collecter...
430
			valorisationOnglet.setData("acces", true);
431
			// Initialisation de l'objet Structure
432
			valorisation = new StructureValorisation();
433
		}
434
		if (mode.equals(MODE_MODIFIER) && valorisation != null && valorisationOnglet.getData("acces").equals(false)) {
491 gduche 435
			// ACTION :
436
			//TODO : check below:
437
			((Radio) actionMarkRGrpChp.get((valorisation.getAction().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 438
 
439
			// ACTION INFO
440
			peuplerCasesACocher(valorisation.getActionInfo(), actionTrukCacGrpChp, actionAutreChp);
441
 
442
			// PUBLICATION
443
			publicationChp.setValue(valorisation.getPublication());
444
 
445
			// COLLECTION AUTRE
446
			peuplerCasesACocher(valorisation.getCollectionAutre(), autreCollectionTrukCacGrpChp, autreCollectionAutreChp);
447
 
448
			// ACTION FUTURE
491 gduche 449
			((Radio) futureActionMarkRGrpChp.get((valorisation.getActionFuture().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 450
 
451
			// ACTION FUTURE INFO
452
			futureActionChp.setValue(valorisation.getActionFutureInfo());
453
 
454
			// RECHERCHE
491 gduche 455
			((Radio) rechercheMarkRGrpChp.get((valorisation.getRecherche().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 456
			// RECHERCHE PROVENANCE
457
			peuplerCasesACocher(valorisation.getRechercheProvenance(), provenanceRechercheTrukCacGrpChp, provenanceRechercheAutreChp);
458
			// RECHERCHE TYPE
459
			peuplerCasesACocher(valorisation.getRechercheType(), typeRechercheTrukCacGrpChp, typeRechercheAutreChp);
460
 
461
			// ACCÈS SANS MOTIF
491 gduche 462
			((Radio) sansMotifAccesMarkRGrpChp.get((valorisation.getAccesSansMotif().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 463
			// ACCÈS SANS MOTIF INFO
464
			sansMotifAccesChp.setValue(valorisation.getAccesSansMotifInfo());
465
 
466
			// VISITE AVEC MOTIF
491 gduche 467
			((Radio) avecMotifAccesMarkRGrpChp.get((valorisation.getVisiteAvecMotif().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 468
			// VISITE AVEC MOTIF INFO
469
			avecMotifAccesChp.setValue(valorisation.getVisiteAvecMotifInfo());
211 jp_milcent 470
 
243 jp_milcent 471
			// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
472
			valorisationOnglet.setData("acces", true);
206 jp_milcent 473
		}
192 jp_milcent 474
	}
475
 
476
	private StructureConservation collecterStructureConservation() {
306 jp_milcent 477
		StructureConservation conservationARetourner = null;
478
		if (conservationOnglet.getData("acces").equals(true)) {
206 jp_milcent 479
			// Création de l'objet
306 jp_milcent 480
			StructureConservation conservationCollectee = (StructureConservation) conservation.cloner(new StructureConservation());
192 jp_milcent 481
 
206 jp_milcent 482
			// FORMATION
483
			if (formationMarkRGrpChp.getValue() != null) {
306 jp_milcent 484
				conservationCollectee.setFormation(formationMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 485
			}
486
			// FORMATION INFO
306 jp_milcent 487
			conservationCollectee.setFormationInfo(formationChp.getValue());
206 jp_milcent 488
			// FORMATION INTERET
489
			if (interetFormationMarkRGrpChp.getValue() != null) {
306 jp_milcent 490
				conservationCollectee.setFormationInteret(interetFormationMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 491
			}
492
 
493
			// STOCKAGE LOCAL
306 jp_milcent 494
			conservationCollectee.setStockageLocal(creerChaineDenormalisee(localStockageTrukCacGrpChp.getValues()));
495
			conservationCollectee.setStockageLocal("AUTRE", localStockageAutreChp.getValue());
206 jp_milcent 496
 
497
			// STOCKAGE MEUBLE
306 jp_milcent 498
			conservationCollectee.setStockageMeuble(creerChaineDenormalisee(meubleStockageTrukCacGrpChp.getValues()));
499
			conservationCollectee.setStockageMeuble("AUTRE", meubleStockageAutreChp.getValue());
206 jp_milcent 500
 
501
			// STOCKAGE PAREMETRE
306 jp_milcent 502
			conservationCollectee.setStockageParametre(creerChaineDenormalisee(parametreStockageTrukCacGrpChp.getValues()));
503
			conservationCollectee.setStockageParametre("AUTRE", parametreStockageAutreChp.getValue());
206 jp_milcent 504
 
505
			// COLLECTION COMMUNE
506
			if (collectionCommuneMarkRGrpChp.getValue() != null) {
306 jp_milcent 507
				conservationCollectee.setCollectionCommune(collectionCommuneMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 508
			}
509
			// COLLECTION AUTRE
306 jp_milcent 510
			conservationCollectee.setCollectionAutre(creerChaineDenormalisee(collectionAutreTrukCacGrpChp.getValues()));
511
			conservationCollectee.setCollectionAutre("AUTRE", collectionAutreAutreChp.getValue());
206 jp_milcent 512
 
513
			// ACCÈS CONTROLÉ
514
			if (accesControleMarkRGrpChp.getValue() != null) {
306 jp_milcent 515
				conservationCollectee.setAccesControle(accesControleMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 516
			}
517
 
518
			// RESTAURATION
519
			if (restaurationMarkRGrpChp.getValue() != null) {
306 jp_milcent 520
				conservationCollectee.setRestauration(restaurationMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 521
			}
522
			// RESTAURATION OPÉRATION
306 jp_milcent 523
			conservationCollectee.setRestaurationOperation(creerChaineDenormalisee(opRestauTrukCacGrpChp.getValues()));
524
			conservationCollectee.setRestaurationOperation("AUTRE", opRestauAutreChp.getValue());
206 jp_milcent 525
 
526
			// MATERIEL CONSERVATION
527
			if (materielConservationCeRGrpChp.getValue() != null) {
306 jp_milcent 528
				conservationCollectee.setMaterielConservation(materielConservationCeRGrpChp.getValue().getValueAttribute());
428 jp_milcent 529
 
530
				// MATERIEL AUTRE
531
				conservationCollectee.setMaterielAutre(creerChaineDenormalisee(autreMaterielTrukCacGrpChp.getValues()));
532
				conservationCollectee.setMaterielAutre("AUTRE", autreMaterielAutreChp.getValue());
206 jp_milcent 533
			}
534
 
535
			// TRAITEMENT
536
			if (traitementMarkRGrpChp.getValue() != null) {
306 jp_milcent 537
				conservationCollectee.setTraitement(traitementMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 538
			}
539
			// TRAIEMENTS
306 jp_milcent 540
			conservationCollectee.setTraitements(creerChaineDenormalisee(traitementTrukCacGrpChp.getValues()));
541
			conservationCollectee.setTraitements("AUTRE", traitementAutreChp.getValue());
206 jp_milcent 542
 
543
 
544
			// ACQUISITION COLLECTION
545
			if (collectionAcquisitionMarkRGrpChp.getValue() != null) {
306 jp_milcent 546
				conservationCollectee.setAcquisitionCollection(collectionAcquisitionMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 547
			}
548
 
549
			// ACQUISITION ECHANTILLON
550
			if (echantillonAcquisitionMarkRGrpChp.getValue() != null) {
306 jp_milcent 551
				conservationCollectee.setAcquisitionEchantillon(echantillonAcquisitionMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 552
			}
553
			// ACQUISITION TRAITEMENT
554
			if (traitementAcquisitionMarkRGrpChp.getValue() != null) {
306 jp_milcent 555
				conservationCollectee.setAcquisitionTraitement(traitementAcquisitionMarkRGrpChp.getValue().getValueAttribute());
206 jp_milcent 556
			}
557
			// ACQUISITION TRAITEMENT POISON
306 jp_milcent 558
			conservationCollectee.setAcquisitionTraitementPoison(creerChaineDenormalisee(poisonTraitementTrukCacGrpChp.getValues()));
559
			conservationCollectee.setAcquisitionTraitementPoison("AUTRE", poisonTraitementAutreChp.getValue());
206 jp_milcent 560
			// ACQUISITION TRAITEMENT INSECTE
306 jp_milcent 561
			conservationCollectee.setAcquisitionTraitementInsecte(creerChaineDenormalisee(insecteTraitementTrukCacGrpChp.getValues()));
562
			conservationCollectee.setAcquisitionTraitementInsecte("AUTRE", insecteTraitementAutreChp.getValue());
206 jp_milcent 563
 
564
			// Retour de l'objet
306 jp_milcent 565
			if (!conservationCollectee.comparer(conservation)) {
605 jp_milcent 566
				GWT.log("Collecte différent de Retour", null);
306 jp_milcent 567
				conservationARetourner = conservation = conservationCollectee;
568
			}
192 jp_milcent 569
		}
306 jp_milcent 570
		return conservationARetourner;
188 jp_milcent 571
	}
572
 
192 jp_milcent 573
	private void peuplerStructureConservation() {
605 jp_milcent 574
		if (mode.equals(MODE_AJOUTER)) {
575
			// Indique que l'onglet a pu être modifié pour la méthode collecter...
576
			conservationOnglet.setData("acces", true);
577
			// Initialisation de l'objet Structure
578
			conservation = new StructureConservation();
579
		}
580
		if (mode.equals(MODE_MODIFIER) && conservation != null && conservationOnglet.getData("acces").equals(false)) {
206 jp_milcent 581
			// FORMATION
582
			// Bouton oui, à toujours l'index 0 donc on teste en fonction...
491 gduche 583
			((Radio) formationMarkRGrpChp.get((conservation.getFormation().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 584
			// FORMATION INFO
585
			formationChp.setValue(conservation.getFormationInfo());
586
			// FORMATION INTERET
491 gduche 587
			((Radio) interetFormationMarkRGrpChp.get((conservation.getFormationInteret().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 588
 
589
			// STOCKAGE LOCAL
590
			peuplerCasesACocher(conservation.getStockageLocal(), localStockageTrukCacGrpChp,localStockageAutreChp);
591
 
592
			// STOCKAGE MEUBLE
593
			peuplerCasesACocher(conservation.getStockageMeuble(), meubleStockageTrukCacGrpChp, meubleStockageAutreChp);
594
 
595
			// STOCKAGE PAREMETRE
596
			peuplerCasesACocher(conservation.getStockageParametre(), parametreStockageTrukCacGrpChp, parametreStockageAutreChp);
597
 
598
			// COLLECTION COMMUNE
491 gduche 599
			((Radio) collectionCommuneMarkRGrpChp.get((conservation.getCollectionCommune().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 600
			// COLLECTION AUTRE
601
			peuplerCasesACocher(conservation.getCollectionAutre(), collectionAutreTrukCacGrpChp, collectionAutreAutreChp);
602
 
603
			// ACCÈS CONTROLÉ
491 gduche 604
			((Radio) accesControleMarkRGrpChp.get((conservation.getAccesControle().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 605
 
606
			// RESTAURATION
491 gduche 607
			((Radio) restaurationMarkRGrpChp.get((conservation.getRestauration().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 608
			// RESTAURATION OPÉRATION
609
			peuplerCasesACocher(conservation.getRestaurationOperation(), opRestauTrukCacGrpChp, opRestauAutreChp);
610
 
611
			// MATERIEL CONSERVATION
612
			peuplerBoutonsRadio(conservation.getMaterielConservation(), materielConservationCeRGrpChp);
613
 
614
			// MATERIEL AUTRE
615
			peuplerCasesACocher(conservation.getMaterielAutre(), autreMaterielTrukCacGrpChp, autreMaterielAutreChp);
616
 
617
			// TRAITEMENT
491 gduche 618
			((Radio) traitementMarkRGrpChp.get((conservation.getTraitement().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 619
			// TRAITEMENTS
620
			peuplerCasesACocher(conservation.getTraitements(), traitementTrukCacGrpChp, traitementAutreChp);
621
 
622
			// ACQUISITION COLLECTION
491 gduche 623
			((Radio) collectionAcquisitionMarkRGrpChp.get((conservation.getAcquisitionCollection().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 624
 
625
			// ACQUISITION ECHANTILLON
491 gduche 626
			((Radio) echantillonAcquisitionMarkRGrpChp.get((conservation.getAcquisitionEchantillon().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 627
 
628
			// ACQUISITION TRAITEMENT
491 gduche 629
			((Radio) traitementAcquisitionMarkRGrpChp.get((conservation.getAcquisitionTraitement().equals("1") ? 0 : 1))).setValue(true);
206 jp_milcent 630
			// ACQUISITION TRAITEMENT POISON
631
			peuplerCasesACocher(conservation.getAcquisitionTraitementPoison(), poisonTraitementTrukCacGrpChp, poisonTraitementAutreChp);
632
			// ACQUISITION TRAITEMENT INSECTE
633
			peuplerCasesACocher(conservation.getAcquisitionTraitementInsecte(), insecteTraitementTrukCacGrpChp, insecteTraitementAutreChp);
211 jp_milcent 634
 
243 jp_milcent 635
			// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
636
			conservationOnglet.setData("acces", true);
206 jp_milcent 637
		}
188 jp_milcent 638
	}
639
 
192 jp_milcent 640
	private Structure collecterStructureIdentification() {
306 jp_milcent 641
		Structure structureARetourner = null;
642
		if (identificationOnglet.getData("acces").equals(true)) {
643
 
644
			Structure structureCollectee = (Structure) identification.cloner(new Structure());
645
 
646
			structureCollectee.setId(idStructureChp.getValue());
647
			structureCollectee.setNom(nomStructureChp.getValue());
277 jp_milcent 648
			// Récupération de l'identifiant du projet
649
			if (projetsCombo.getValue() != null) {
306 jp_milcent 650
				structureCollectee.setIdProjet(projetsCombo.getValue().getId());
277 jp_milcent 651
			}
211 jp_milcent 652
			// Récupération de l'acronyme (= identifiant alternatif)
306 jp_milcent 653
			structureCollectee.setIdAlternatif(null);
211 jp_milcent 654
			if (comboAcronyme.getValue() != null) {
655
				String typeAcronyme = comboAcronyme.getValue().getAbr();
656
				if (typeAcronyme == "IH") {
306 jp_milcent 657
					structureCollectee.setIdAlternatif(typeAcronyme+"##"+ihChp.getValue());
211 jp_milcent 658
				} else if (typeAcronyme == "MNHN") {
306 jp_milcent 659
					structureCollectee.setIdAlternatif(typeAcronyme+"##"+mnhnChp.getValue());
211 jp_milcent 660
				}
164 jp_milcent 661
			}
211 jp_milcent 662
			// Récupération statut de la structure
306 jp_milcent 663
			structureCollectee.setTypePublic(null);
664
			structureCollectee.setTypePrive(null);
211 jp_milcent 665
			if (comboTypeStructure.getValue() != null) {
666
				String typeStructure = comboTypeStructure.getValue().getAbr();
667
				if (typeStructure == "stpu" && comboLstpu.getValue() != null) {
306 jp_milcent 668
					structureCollectee.setTypePublic(comboLstpu.getValue().getId());
211 jp_milcent 669
				} else if (typeStructure == "stpr" && comboLstpr.getValue() != null) {
306 jp_milcent 670
					structureCollectee.setTypePrive(comboLstpr.getValue().getId());
211 jp_milcent 671
				}
164 jp_milcent 672
			}
306 jp_milcent 673
			structureCollectee.setDateFondation(dateFondationChp.getValue());
211 jp_milcent 674
 
1171 jpm 675
			structureCollectee.setDescription(descriptionChp.getValue());
676
			structureCollectee.setConditionAcces(conditionAccesChp.getValue());
677
			structureCollectee.setConditionUsage(conditionUsageChp.getValue());
678
 
306 jp_milcent 679
			structureCollectee.setAdresse(adrChp.getValue());
1171 jpm 680
			structureCollectee.setAdresseComplement(adrComplementChp.getValue());
306 jp_milcent 681
			structureCollectee.setCodePostal(cpChp.getValue());
682
			structureCollectee.setVille(villeChp.getValue());
1035 gduche 683
 
684
			String strRegion = "";
685
			Valeur valeurRegion = comboRegion.getValue();
686
			if (valeurRegion == null)	{
687
				strRegion = "AUTRE##" + comboRegion.getRawValue();
688
			} else	{
689
				strRegion = valeurRegion.getId();
690
			}
691
 
692
			structureCollectee.setRegion(strRegion);
306 jp_milcent 693
			structureCollectee.setPays(null);
211 jp_milcent 694
			if (comboPays.getValue() != null) {
419 jp_milcent 695
				structureCollectee.setPays(comboPays.getValue().getId());
211 jp_milcent 696
			} else if (comboPays.getRawValue() != "") {
306 jp_milcent 697
				structureCollectee.setPays(comboPays.getRawValue());
211 jp_milcent 698
			}
1171 jpm 699
			structureCollectee.setLatitude(latitudeChp.getValue());
700
			structureCollectee.setLongitude(longitudeChp.getValue());
211 jp_milcent 701
 
1233 cyprien 702
			/* TODELETE
602 jp_milcent 703
			structureCollectee.setTelephoneFixe(telChp.getValue());
306 jp_milcent 704
			structureCollectee.setFax(faxChp.getValue());
1233 cyprien 705
			*/
706
 
707
			//FIXME personneSelectionnee.set("truk_telephone", hmIdentite.getChampMultiValeursMultiTypes("telephones").getValeurs());
708
 
306 jp_milcent 709
			structureCollectee.setCourriel(emailChp.getValue());
710
			structureCollectee.setUrl(Structure.URL_SITE, urlChp.getValue());
211 jp_milcent 711
 
263 jp_milcent 712
			if (nbreTotalPersonneStructureChp.getValue() != null) {
306 jp_milcent 713
				structureCollectee.setNbrePersonne(nbreTotalPersonneStructureChp.getValue().intValue());
263 jp_milcent 714
			}
231 jp_milcent 715
 
306 jp_milcent 716
			if (!structureCollectee.comparer(identification)) {
717
				structureARetourner = identification = structureCollectee;
718
			}
719
 
164 jp_milcent 720
		}
1040 gduche 721
 
722
 
723
		System.out.println(structureARetourner);
306 jp_milcent 724
		return structureARetourner;
119 jpm 725
	}
726
 
211 jp_milcent 727
	private void peuplerStructureIdentification() {
295 jp_milcent 728
		if (mode.equals(MODE_AJOUTER)) {
263 jp_milcent 729
			// Indique que l'ongleta pu être modifié pour la méthode collecter...
730
			identificationOnglet.setData("acces", true);
306 jp_milcent 731
			// Initialisation de l'objet Structure
732
			identification = new Structure();
279 jp_milcent 733
			// Indication du projet sélectionné par défaut
734
			String projetCourantId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getProjetId();
295 jp_milcent 735
			if (projetCourantId != null && !projetCourantId.equals("0")) {
279 jp_milcent 736
				projetsCombo.setValue(projetsCombo.getStore().findModel("id_projet", projetCourantId));
737
			}
263 jp_milcent 738
		}
295 jp_milcent 739
		if (mode.equals(MODE_MODIFIER) && identification != null && identificationOnglet.getData("acces").equals(false)) {
211 jp_milcent 740
			idStructureChp.setValue(identification.getId());
741
			nomStructureChp.setValue(identification.getNom());
277 jp_milcent 742
			if (!identification.getIdProjet().equals("0")) {
743
				projetsCombo.setValue(projetsCombo.getStore().findModel("id_projet", identification.getIdProjet()));
744
			}
745
 
211 jp_milcent 746
			if (!identification.getIdAlternatif().isEmpty()) {
747
				String[] acronyme = identification.getIdAlternatif().split("##");
1043 gduche 748
				//#436 : Ne pas afficher "null"
749
				if (UtilString.isEmpty(acronyme[1]) || acronyme[1].equals("null"))	{
750
					acronyme[1] = "";
751
				}
752
 
211 jp_milcent 753
				if (acronyme[0].matches("^IH$")) {
754
					comboAcronyme.setValue(InterneValeurListe.getTypeAcronymeIH());
755
					ihChp.setValue(acronyme[1]);
756
				} else if (acronyme[0].matches("^MNHN$")) {
757
					comboAcronyme.setValue(InterneValeurListe.getTypeAcronymeMNHN());
758
					mnhnChp.setValue(acronyme[1]);
759
				}
188 jp_milcent 760
			}
211 jp_milcent 761
			if (!identification.getTypePrive().isEmpty()) {
762
				if (identification.getTypePrive().matches("^[0-9]+$")) {
763
					comboTypeStructure.setValue(InterneValeurListe.getTypePrivee());
764
					comboLstpr.setValue(comboLstpr.getStore().findModel("id_valeur", identification.getTypePrive()));
765
				}
766
			} else if (!identification.getTypePublic().isEmpty()) {
767
				if (identification.getTypePublic().matches("^[0-9]+$")) {
768
					comboTypeStructure.setValue(InterneValeurListe.getTypePublique());
769
					comboLstpu.setValue(comboLstpu.getStore().findModel("id_valeur", identification.getTypePublic()));
770
				}
172 jp_milcent 771
			}
211 jp_milcent 772
			dateFondationChp.setValue(identification.getDateFondation());
773
 
1171 jpm 774
			descriptionChp.setValue(identification.getDescription());
775
			conditionAccesChp.setValue(identification.getConditionAcces());
776
			conditionUsageChp.setValue(identification.getConditionUsage());
777
 
211 jp_milcent 778
			adrChp.setValue(identification.getAdresse());
1171 jpm 779
			adrComplementChp.setValue(identification.getAdresseComplement());
211 jp_milcent 780
			cpChp.setValue(identification.getCodePostal());
781
			villeChp.setValue(identification.getVille());
1035 gduche 782
			mettreAJourRegion();
783
			//(identification.getRegion());
419 jp_milcent 784
			if (identification.getPays().matches("^[0-9]+$")) {
785
				comboPays.setValue(comboPays.getStore().findModel("id_valeur", identification.getPays()));
211 jp_milcent 786
			} else {
787
				comboPays.setRawValue(identification.getPays());
172 jp_milcent 788
			}
1171 jpm 789
			latitudeChp.setValue(identification.getLatitude());
790
			longitudeChp.setValue(identification.getLongitude());
211 jp_milcent 791
 
1233 cyprien 792
			/* TODELETE
602 jp_milcent 793
			telChp.setValue(identification.getTelephoneFixe());
1233 cyprien 794
			faxChp.setValue(identification.getFax());*/
795
 
796
			//FIXME hmIdentite.getChampMultiValeurs("telephones").peupler(personne.getString("truk_telephone"));
797
 
211 jp_milcent 798
			emailChp.setValue(identification.getCourriel());
799
			urlChp.setValue(identification.getUrl("WEB"));
800
 
231 jp_milcent 801
			nbreTotalPersonneStructureChp.setValue(identification.getNbrePersonne());
802
 
243 jp_milcent 803
			// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
804
			identificationOnglet.setData("acces", true);
172 jp_milcent 805
		}
156 jp_milcent 806
	}
807
 
111 jpm 808
	private TabItem creerOngletValorisation() {
634 jp_milcent 809
		valorisationOnglet = creerOnglet("Valorisation", "valorisation");
569 jp_milcent 810
		valorisationOnglet.setLayout(creerFormLayout(650, LabelAlign.TOP));
634 jp_milcent 811
		Listener<ComponentEvent> ecouteurSelection = new Listener<ComponentEvent>() {
812
			public void handleEvent(ComponentEvent be) {
192 jp_milcent 813
				peuplerStructureValorisation();
634 jp_milcent 814
				valorisationOnglet.layout();
815
			}
816
		};
817
		valorisationOnglet.addListener(Events.Select, ecouteurSelection);
111 jpm 818
 
119 jpm 819
		actionMarkRGrpChp = creerChoixUniqueRadioGroupe("action_mark", "ouiNon");
111 jpm 820
		actionMarkRGrpChp.setFieldLabel("Avez-vous réalisé des actions de valorisation de vos collections botaniques ou avez-vous été sollicités pour la valorisation de ces collections ?");
821
		valorisationOnglet.add(actionMarkRGrpChp);
822
 
119 jpm 823
 
569 jp_milcent 824
		actionTrukCp = creerChoixMultipleCp();
111 jpm 825
		actionTrukCp.hide();
115 jpm 826
		actionTrukCacGrpChp = new CheckBoxGroup();
827
		actionTrukCacGrpChp.setFieldLabel("Si oui, lesquelles ?");
111 jpm 828
		valorisationOnglet.add(actionTrukCp);
569 jp_milcent 829
		mediateur.obtenirListeValeurEtRafraichir(this, "actionValorisation");
111 jpm 830
 
206 jp_milcent 831
		publicationChp = new TextArea();
111 jpm 832
		publicationChp.setFieldLabel("Quelques titres des ouvrages, articles scientifiques, ...");
206 jp_milcent 833
		valorisationOnglet.add(publicationChp, new FormData(550, 0));
111 jpm 834
 
569 jp_milcent 835
		autreCollectionTrukCp = creerChoixMultipleCp();
119 jpm 836
		autreCollectionTrukCacGrpChp = new CheckBoxGroup();
837
		autreCollectionTrukCacGrpChp.setFieldLabel("L'organisme dispose-t-il d'autres collections (permettant une valorisation pluridisciplinaire) ?");
111 jpm 838
		valorisationOnglet.add(autreCollectionTrukCp);
569 jp_milcent 839
		mediateur.obtenirListeValeurEtRafraichir(this, "autreCollection");
111 jpm 840
 
188 jp_milcent 841
		futureActionMarkRGrpChp = creerChoixUniqueRadioGroupe("future_action_mark", "ouiNon");
111 jpm 842
		futureActionMarkRGrpChp.setFieldLabel("Envisagez vous des actions de valorisation dans le cadre de votre politique culturelle ?");
843
		valorisationOnglet.add(futureActionMarkRGrpChp);
844
 
206 jp_milcent 845
		futureActionChp = new TextArea();
111 jpm 846
		futureActionChp.setFieldLabel("Si oui, lesquelles ?");
847
		futureActionChp.hide();
306 jp_milcent 848
		futureActionChp.addListener(Events.Hide, new Listener<BaseEvent>() {
849
 
850
			public void handleEvent(BaseEvent be) {
491 gduche 851
				((TextArea) be.getSource()).setValue("");
306 jp_milcent 852
			}
853
 
854
		});
206 jp_milcent 855
		valorisationOnglet.add(futureActionChp, new FormData(550, 0));
111 jpm 856
 
188 jp_milcent 857
		rechercheMarkRGrpChp = creerChoixUniqueRadioGroupe("recherche_mark", "ouiNon");
111 jpm 858
		rechercheMarkRGrpChp.setFieldLabel("Vos collections botaniques sont-elles utilisées pour des recherches scientifiques ?");
859
		valorisationOnglet.add(rechercheMarkRGrpChp);
860
 
569 jp_milcent 861
		provenanceRechercheTrukCp = creerChoixMultipleCp();
111 jpm 862
		provenanceRechercheTrukCp.hide();
115 jpm 863
		provenanceRechercheTrukCacGrpChp = new CheckBoxGroup();
864
		provenanceRechercheTrukCacGrpChp.setFieldLabel("Si oui, par des chercheurs (professionnels ou amateurs) de quelle provenance ?");
111 jpm 865
		valorisationOnglet.add(provenanceRechercheTrukCp);
614 jp_milcent 866
		mediateur.obtenirListeValeurEtRafraichir(this, "continentEtFr");
111 jpm 867
 
569 jp_milcent 868
		typeRechercheTrukCp = creerChoixMultipleCp();
119 jpm 869
		typeRechercheTrukCp.hide();
115 jpm 870
		typeRechercheTrukCacGrpChp = new CheckBoxGroup();
871
		typeRechercheTrukCacGrpChp.setFieldLabel("Et pour quelles recherches ?");
119 jpm 872
		valorisationOnglet.add(typeRechercheTrukCp);
569 jp_milcent 873
		mediateur.obtenirListeValeurEtRafraichir(this, "typeRecherche");
111 jpm 874
 
188 jp_milcent 875
		sansMotifAccesMarkRGrpChp = creerChoixUniqueRadioGroupe("sans_motif_acces_mark", "ouiNon");
111 jpm 876
		sansMotifAccesMarkRGrpChp.setFieldLabel("Peut-on consulter vos collections botaniques sans motif de recherches scientifiques ?");
877
		valorisationOnglet.add(sansMotifAccesMarkRGrpChp);
878
 
206 jp_milcent 879
		valorisationOnglet.add(sansMotifAccesChp = new TextArea(), new FormData(550, 0));
111 jpm 880
		sansMotifAccesChp.hide();
306 jp_milcent 881
		sansMotifAccesChp.addListener(Events.Hide, new Listener<BaseEvent>() {
882
 
883
			public void handleEvent(BaseEvent be) {
491 gduche 884
				((TextArea) be.getSource()).setValue("");
306 jp_milcent 885
			}
886
 
887
		});
111 jpm 888
		sansMotifAccesChp.setFieldLabel("Si oui, quelles démarches doit-on faire pour les consulter ?");
889
 
188 jp_milcent 890
		avecMotifAccesMarkRGrpChp = creerChoixUniqueRadioGroupe("avec_motif_acces_mark", "ouiNon");
111 jpm 891
		avecMotifAccesMarkRGrpChp.setFieldLabel("Peut-on visiter vos collections botaniques avec des objectifs de recherches scientifiques ?");
892
		valorisationOnglet.add(avecMotifAccesMarkRGrpChp);
893
 
206 jp_milcent 894
		valorisationOnglet.add(avecMotifAccesChp = new TextArea(), new FormData(550, 0));
111 jpm 895
		avecMotifAccesChp.hide();
306 jp_milcent 896
		avecMotifAccesChp.addListener(Events.Hide, new Listener<BaseEvent>() {
897
 
898
			public void handleEvent(BaseEvent be) {
491 gduche 899
				((TextArea) be.getSource()).setValue("");
306 jp_milcent 900
			}
901
 
902
		});
111 jpm 903
		avecMotifAccesChp.setFieldLabel("Si oui, quelles démarches doit-on faire pour les visiter ?");
904
 
905
		return valorisationOnglet;
906
	}
907
 
108 jpm 908
	private TabItem creerOngletConservation() {
634 jp_milcent 909
		conservationOnglet = creerOnglet("Conservation", "conservation");
569 jp_milcent 910
		conservationOnglet.setLayout(creerFormLayout(650, LabelAlign.TOP));
634 jp_milcent 911
		Listener<ComponentEvent> ecouteurSelection = new Listener<ComponentEvent>() {
912
			public void handleEvent(ComponentEvent be) {
206 jp_milcent 913
				peuplerStructureConservation();
279 jp_milcent 914
				conservationOnglet.layout();
192 jp_milcent 915
			}
634 jp_milcent 916
		};
917
		conservationOnglet.addListener(Events.Select, ecouteurSelection);
108 jpm 918
 
188 jp_milcent 919
		formationMarkRGrpChp = creerChoixUniqueRadioGroupe("formation_mark", "ouiNon");
920
		formationMarkRGrpChp.setFieldLabel("Le personnel s'occupant des collections a-t-il suivi des formations en conservations ?");
921
		conservationOnglet.add(formationMarkRGrpChp);
108 jpm 922
 
401 jp_milcent 923
		formationChp = new TextArea();
111 jpm 924
		formationChp.hide();
306 jp_milcent 925
		formationChp.addListener(Events.Hide, new Listener<BaseEvent>() {
926
 
927
			public void handleEvent(BaseEvent be) {
491 gduche 928
				((TextArea) be.getSource()).setValue("");
306 jp_milcent 929
			}
930
 
931
		});
111 jpm 932
		formationChp.setFieldLabel("Si oui, lesquelles ?");
108 jpm 933
		conservationOnglet.add(formationChp);
934
 
188 jp_milcent 935
		interetFormationMarkRGrpChp = creerChoixUniqueRadioGroupe("interet_formation_mark", "ouiNon");
936
		interetFormationMarkRGrpChp.setFieldLabel("Seriez vous intéressé par une formation à la conservation et à la restauration d'herbier ?");
937
		conservationOnglet.add(interetFormationMarkRGrpChp);
108 jpm 938
 
115 jpm 939
		localStockageTrukCacGrpChp = new CheckBoxGroup();
940
		localStockageTrukCacGrpChp.setFieldLabel("Avez vous des locaux spécifiques de stockage des collections botaniques ?");
569 jp_milcent 941
		localStockageTrukCp = creerChoixMultipleCp();
115 jpm 942
		conservationOnglet.add(localStockageTrukCp);
569 jp_milcent 943
		mediateur.obtenirListeValeurEtRafraichir(this, "localStockage");
108 jpm 944
 
569 jp_milcent 945
		meubleStockageTrukCp = creerChoixMultipleCp();
115 jpm 946
		meubleStockageTrukCacGrpChp = new CheckBoxGroup();
947
		meubleStockageTrukCacGrpChp.setFieldLabel("Avez vous des meubles spécifiques au stockage des collections botaniques ?");
948
		conservationOnglet.add(meubleStockageTrukCp);
569 jp_milcent 949
		mediateur.obtenirListeValeurEtRafraichir(this, "meubleStockage");
108 jpm 950
 
569 jp_milcent 951
		parametreStockageTrukCp = creerChoixMultipleCp();
115 jpm 952
		parametreStockageTrukCacGrpChp = new CheckBoxGroup();
953
		parametreStockageTrukCacGrpChp.setFieldLabel("Quels paramètres maîtrisez vous ?");
954
		conservationOnglet.add(parametreStockageTrukCp);
569 jp_milcent 955
		mediateur.obtenirListeValeurEtRafraichir(this, "parametreStockage");
109 jpm 956
 
188 jp_milcent 957
		collectionCommuneMarkRGrpChp = creerChoixUniqueRadioGroupe("collection_commune_mark", "ouiNon");
111 jpm 958
		collectionCommuneMarkRGrpChp.setFieldLabel("Les collections botaniques sont-elles conservées avec d'autres collections  dans les mêmes locaux (problème de conservation en commun) ?");
959
		conservationOnglet.add(collectionCommuneMarkRGrpChp);
109 jpm 960
 
569 jp_milcent 961
		collectionAutreTrukCp = creerChoixMultipleCp();
115 jpm 962
		collectionAutreTrukCacGrpChp = new CheckBoxGroup();
963
		collectionAutreTrukCacGrpChp.setFieldLabel("Si oui, lesquelles ?");
111 jpm 964
		collectionAutreTrukCp.hide();
965
		conservationOnglet.add(collectionAutreTrukCp);
569 jp_milcent 966
		mediateur.obtenirListeValeurEtRafraichir(this, "autreCollection");
110 jpm 967
 
188 jp_milcent 968
		accesControleMarkRGrpChp = creerChoixUniqueRadioGroupe("mark_acces_controle", "ouiNon");
115 jpm 969
		accesControleMarkRGrpChp.setFieldLabel("L'accès à vos collections botanique est-il contrôlé (ex. : manipulation réservées à des personnes compétentes) ?");
970
		conservationOnglet.add(accesControleMarkRGrpChp);
110 jpm 971
 
188 jp_milcent 972
		restaurationMarkRGrpChp = creerChoixUniqueRadioGroupe("restauration_mark", "ouiNon");
115 jpm 973
		restaurationMarkRGrpChp.setFieldLabel("Effectuez vous des opérations de restauration ou de remise en état de vos collections botaniques ?");
974
		conservationOnglet.add(restaurationMarkRGrpChp);
110 jpm 975
 
569 jp_milcent 976
		opRestauTrukCp = creerChoixMultipleCp();
115 jpm 977
		opRestauTrukCacGrpChp = new CheckBoxGroup();
978
		opRestauTrukCacGrpChp.setFieldLabel("Si oui, lesquelles ?");
111 jpm 979
		opRestauTrukCp.hide();
980
		conservationOnglet.add(opRestauTrukCp);
569 jp_milcent 981
		mediateur.obtenirListeValeurEtRafraichir(this, "opRestau");
110 jpm 982
 
188 jp_milcent 983
		// Création d'un ContentPanel vide et du groupe de bouton radio
984
		// Le groupe de bouton radio recevra les boutons au moment de la réception des données (rafraichir()) et ser à ce moment là ajouter au ContenetPanel
569 jp_milcent 985
		materielConservationCp = creerChoixMultipleCp();
188 jp_milcent 986
		conservationOnglet.add(materielConservationCp);
115 jpm 987
		materielConservationCeRGrpChp = creerChoixUniqueRadioGroupe("materiel_conservation_ce", "onep");
988
		materielConservationCeRGrpChp.setFieldLabel("Utilisez vous du matériel de conservation ?");
989
		materielConservationCeRGrpChp.setToolTip(new ToolTipConfig("Matériel de conservation", "matériel spécialisé pour la conservation des archives ou du patrimoine fragile. Ce matériel possède des propriétés mécaniques et chimiques qui font qu'il résiste dans le temps et que sa dégradation n'entraîne pas de dommages sur le matériel qu'il aide à conserver. Exemples : papier neutre, papier gommé, etc..."));
569 jp_milcent 990
		mediateur.obtenirListeValeurEtRafraichir(this, "onep");
110 jpm 991
 
569 jp_milcent 992
		autreMaterielTrukCp = creerChoixMultipleCp();
115 jpm 993
		autreMaterielTrukCacGrpChp = new CheckBoxGroup();
994
		autreMaterielTrukCacGrpChp.setFieldLabel("Si non, qu'utilisez vous comme matériel ?");
428 jp_milcent 995
		autreMaterielTrukCp.hide();
115 jpm 996
		conservationOnglet.add(autreMaterielTrukCp);
569 jp_milcent 997
		mediateur.obtenirListeValeurEtRafraichir(this, "autreMateriel");
110 jpm 998
 
188 jp_milcent 999
		traitementMarkRGrpChp = creerChoixUniqueRadioGroupe("traitement_mark", "ouiNon");
1000
		traitementMarkRGrpChp.setFieldLabel("Réalisez vous actuellement des traitements globaux contre les insectes ?");
1001
		conservationOnglet.add(traitementMarkRGrpChp);
110 jpm 1002
 
569 jp_milcent 1003
		traitementTrukCp = creerChoixMultipleCp();
115 jpm 1004
		traitementTrukCp.hide();
1005
		traitementTrukCacGrpChp = new CheckBoxGroup();
1006
		traitementTrukCacGrpChp.setFieldLabel("Si oui, lesquels ?");
111 jpm 1007
		conservationOnglet.add(traitementTrukCp);
569 jp_milcent 1008
		mediateur.obtenirListeValeurEtRafraichir(this, "insecteTraitement");
110 jpm 1009
 
188 jp_milcent 1010
		collectionAcquisitionMarkRGrpChp = creerChoixUniqueRadioGroupe("collection_acquisition_mark", "ouiNon");
1011
		collectionAcquisitionMarkRGrpChp.setFieldLabel("Actuellement, vos collections botaniques s'accroissent-elles de nouvelles acquisitions ?");
1012
		conservationOnglet.add(collectionAcquisitionMarkRGrpChp);
110 jpm 1013
 
188 jp_milcent 1014
		echantillonAcquisitionMarkRGrpChp = creerChoixUniqueRadioGroupe("echantillon_acquisition_mark", "ouiNon");
1015
		echantillonAcquisitionMarkRGrpChp.setFieldLabel("Actuellement, mettez vous en herbier de nouveaux échantillons ?");
1016
		conservationOnglet.add(echantillonAcquisitionMarkRGrpChp);
110 jpm 1017
 
115 jpm 1018
		traitementAcquisitionMarkRGrpChp = creerChoixUniqueRadioGroupe("traitement_acquisition_mark", "ouiNon");
1019
		traitementAcquisitionMarkRGrpChp.hide();
1020
		traitementAcquisitionMarkRGrpChp.setFieldLabel("Si oui, faites-vous un traitement contre les insectes avant l'intégration dans vos collections ?");
1021
		conservationOnglet.add(traitementAcquisitionMarkRGrpChp);
110 jpm 1022
 
115 jpm 1023
		traitementAcquisitionMarkLabel = new LabelField();
1024
		traitementAcquisitionMarkLabel.hide();
1025
		traitementAcquisitionMarkLabel.setFieldLabel("Si oui, lesquels ?");
1026
		conservationOnglet.add(traitementAcquisitionMarkLabel);
110 jpm 1027
 
569 jp_milcent 1028
		poisonTraitementTrukCp = creerChoixMultipleCp();
115 jpm 1029
		poisonTraitementTrukCp.hide();
1030
		poisonTraitementTrukCacGrpChp = new CheckBoxGroup();
1031
		poisonTraitementTrukCacGrpChp.setFieldLabel("Empoisonnement");
1032
		poisonTraitementTrukCacGrpChp.setLabelStyle("font-weight:normal;text-decoration:underline;");
1033
		poisonTraitementTrukCacGrpChp.setLabelSeparator("");
1034
		conservationOnglet.add(poisonTraitementTrukCp);
569 jp_milcent 1035
		mediateur.obtenirListeValeurEtRafraichir(this, "poisonTraitement");
110 jpm 1036
 
569 jp_milcent 1037
		insecteTraitementTrukCp = creerChoixMultipleCp();
115 jpm 1038
		insecteTraitementTrukCp.hide();
1039
		insecteTraitementTrukCacGrpChp = new CheckBoxGroup();
1040
		insecteTraitementTrukCacGrpChp.setLabelStyle("font-weight:normal;text-decoration:underline;");
1041
		insecteTraitementTrukCacGrpChp.setLabelSeparator("");
1042
		insecteTraitementTrukCacGrpChp.setFieldLabel("Désinsectisation");
111 jpm 1043
		conservationOnglet.add(insecteTraitementTrukCp);
569 jp_milcent 1044
		mediateur.obtenirListeValeurEtRafraichir(this, "insecteTraitement");
110 jpm 1045
 
579 jp_milcent 1046
		conservationOnglet.add(new Html("<br />"));
108 jpm 1047
		return conservationOnglet;
1048
	}
1049
 
231 jp_milcent 1050
	private void collecterStructurePersonnel() {
1051
		if (personnelOnglet.getData("acces").equals(true)) {
771 jpm 1052
			personnelGrilleMagazin.commitChanges();
231 jp_milcent 1053
			int nbrePersonne = personnelGrilleMagazin.getCount();
1054
			for (int i = 0; i < nbrePersonne; i++) {
1055
				StructureAPersonne personne = personnelGrilleMagazin.getAt(i);
1208 cyprien 1056
 
1057
Debug.log(":::> StructureForm.collecterStructurePersonnel()");
1058
Debug.log(":::> etat="+personne.get("etat"));
771 jpm 1059
 
231 jp_milcent 1060
				// Seules les lignes ajoutées ou modifiées sont prises en compte.
771 jpm 1061
				Record record = personnelGrilleMagazin.getRecord(personne);
1062
				if (personnelGrilleMagazin.getModifiedRecords().contains(record) == true
1208 cyprien 1063
						|| (personne.get("etat") != null && (personne.get("etat").equals(StructureAPersonne.ETAT_AJOUTE) || personne.get("etat").equals(StructureAPersonne.ETAT_MODIFIE)) )) {
245 jp_milcent 1064
 
1065
					// Gestion de l'id de la structure
1066
					if (mode.equals("MODIF")) {
1067
						personne.setIdStructure(identification.getId());
1068
					}
609 jp_milcent 1069
 
1070
					// Récupération de l'id du projet de la structure qui servira aussi pour les Personnes crées dans ce formulaire
1071
					if (personne.getIdPersonne().equals("") && projetsCombo.getValue() != null) {
1072
						personne.setIdProjetPersonne(projetsCombo.getValue().getId());
1073
					}
1074
 
231 jp_milcent 1075
					// Gestion de la fonction
1076
					String fonction = personne.get("fonction");
1077
					if (fonction != null && !fonction.equals("")) {
295 jp_milcent 1078
						Valeur valeurRecherche = fonctionsCombo.getStore().findModel("nom", fonction);
231 jp_milcent 1079
						if (valeurRecherche != null) {
1080
							personne.setFonction(valeurRecherche.getId());
1081
						} else {
1082
							personne.setFonction("AUTRE", fonction);
1083
						}
602 jp_milcent 1084
					} else {
1085
						personne.setFonction("");
231 jp_milcent 1086
					}
1208 cyprien 1087
 
1088
					// Gestion du nom complet
1089
					String nomComplet = personne.getPrenom()+" "+personne.getNom();
1090
					personne.setNomComplet(nomComplet);
231 jp_milcent 1091
 
1092
					// Gestion de la notion de "contact"
1093
					personne.setContact(false);
1094
					if (personne.get("contact").equals(true)) {
1095
						personne.setContact(true);
1096
					}
1097
 
1098
					// Gestion du statut
1099
					String statut = personne.get("statut");
1100
					if (statut != null && !statut.equals("")) {
1101
						Valeur valeurRecherche = comboLiStatut.getStore().findModel("nom", statut);
1102
						if (valeurRecherche != null) {
1103
							personne.setStatut(valeurRecherche.getId());
1104
						} else {
1105
							personne.setStatut("AUTRE", statut);
1106
						}
602 jp_milcent 1107
					} else {
1108
						personne.setStatut("");
231 jp_milcent 1109
					}
1110
 
1111
					// Gestion du temps de travail
602 jp_milcent 1112
					personne.setBotaTravailHebdoTps(personne.get("travail").toString());
231 jp_milcent 1113
 
1114
					// Gestion du téléphone
602 jp_milcent 1115
					String telephoneFixe = personne.get("tel_fix");
1116
					personne.setTelephoneFixe(telephoneFixe);
231 jp_milcent 1117
 
1118
					// Gestion du fax
602 jp_milcent 1119
					String fax = personne.get("tel_fax");
1120
					personne.setFax(fax);
1121
 
231 jp_milcent 1122
					// Gestion du courriel
1123
					String courriel = personne.get("courriel");
602 jp_milcent 1124
					personne.setCourriel(courriel);
231 jp_milcent 1125
 
602 jp_milcent 1126
					// Gestion de la spécialité
231 jp_milcent 1127
					String specialite = personne.get("specialite");
602 jp_milcent 1128
					personne.setSpecialite(specialite);
231 jp_milcent 1129
 
1130
					// Ajout de la personne dans la liste correspondant à son état (ajouté ou modifié)
771 jpm 1131
					if (personne.get("etat") != null && personne.get("etat").equals(StructureAPersonne.ETAT_AJOUTE)) {// Une personne ajoutée
231 jp_milcent 1132
						personnelAjoute.put(""+i, personne);
1133
					} else {// Une personne modifiée
1134
						personnelModifie.put(personne.getId(), personne);
1135
					}
245 jp_milcent 1136
				} else {
1137
					GWT.log("Personne non modifiées : "+personne.getPrenom()+" "+personne.getNom(), null);
231 jp_milcent 1138
				}
1139
			}
1140
		}
1141
	}
211 jp_milcent 1142
 
1143
	private void peuplerStructurePersonnel() {
295 jp_milcent 1144
		if (mode.equals(MODE_MODIFIER) && personnel != null) {
213 jp_milcent 1145
			ArrayList<StructureAPersonne> personnes = new ArrayList<StructureAPersonne>();
1146
			for (Iterator<String> it = personnel.keySet().iterator(); it.hasNext();) {
1147
				String index = it.next();
231 jp_milcent 1148
 
1149
				// Gestion de la fonction
295 jp_milcent 1150
				if (fonctionsMagazin != null && !((String) personnel.get(index).getFonction()).startsWith("AUTRE##")) {
1151
					if (fonctionsMagazin.findModel("id_valeur", personnel.get(index).getFonction()) != null) {
1152
						personnel.get(index).set("fonction", fonctionsMagazin.findModel("id_valeur", personnel.get(index).getFonction()).getNom());
243 jp_milcent 1153
					}
213 jp_milcent 1154
				} else {
214 jp_milcent 1155
					personnel.get(index).set("fonction", personnel.get(index).getFonction().replaceFirst("AUTRE##", ""));
213 jp_milcent 1156
				}
231 jp_milcent 1157
 
1158
				// Gestion de la notion de "contact"
1159
				personnel.get(index).set("contact", (personnel.get(index).getContact().equals("1") ? true : false));
1160
 
1161
				// Gestion du statut
1162
				if (magazinLiStatut != null && ((String) personnel.get(index).getStatut()).matches("^[0-9]+$")) {
1163
					personnel.get(index).set("statut", magazinLiStatut.findModel("id_valeur", personnel.get(index).getStatut()).getNom());
1164
				} else {
1165
					personnel.get(index).set("statut", personnel.get(index).getStatut().replaceFirst("AUTRE##", ""));
1166
				}
1167
 
1208 cyprien 1168
				// Gestion de la specialite
1169
				if (((String) personnel.get(index).getSpecialite()).matches("^[0-9]+$")) {
1170
					// Author : Cyprien
1171
					// TODO
1172
					// Ici faire un combobox ?
1173
					// ...
1174
				} else {
1175
					personnel.get(index).set("specialite", personnel.get(index).getSpecialite().replaceFirst("AUTRE##", ""));
1176
				}
1177
 
231 jp_milcent 1178
				// Gestion du temps de travail
1179
				String tps = personnel.get(index).getBotaTravailHebdoTps();
1180
				personnel.get(index).set("travail", (tps.matches("^[0-9]+$")  ? Integer.parseInt(tps) : 0));
1181
 
213 jp_milcent 1182
				personnes.add(personnel.get(index));
1183
			}
211 jp_milcent 1184
			personnelGrilleMagazin.removeAll();
213 jp_milcent 1185
			personnelGrilleMagazin.add(personnes);
231 jp_milcent 1186
 
214 jp_milcent 1187
			// Nous vidons la variable personnel une fois qu'elle a remplie la grille
1188
			personnel = null;
211 jp_milcent 1189
		}
1190
	}
1191
 
103 jpm 1192
	private TabItem creerOngletPersonnel() {
306 jp_milcent 1193
		// Création des objets contenant les manipulations de la grille
1194
		personnelModifie = new StructureAPersonneListe();
1195
		personnelAjoute = new StructureAPersonneListe();
1196
		personnelSupprime = new StructureAPersonneListe();
1197
 
634 jp_milcent 1198
		personnelOnglet = creerOnglet("Personnel", "personnel");
569 jp_milcent 1199
		personnelOnglet.setLayout(creerFormLayout(400, LabelAlign.LEFT));
739 jpm 1200
		personnelOnglet.setStyleAttribute("padding", "0");
634 jp_milcent 1201
		personnelOnglet.addListener(Events.Select, new Listener<ComponentEvent>() {
1202
			public void handleEvent(ComponentEvent be) {
1208 cyprien 1203
 
1204
Debug.log(":::> StructureForm.creerOngletPersonnel.HandleEvent()");
1205
 
211 jp_milcent 1206
				// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
1207
				personnelOnglet.setData("acces", true);
306 jp_milcent 1208
 
609 jp_milcent 1209
				// Rafraichissement du contenu de la grille du personnel
1210
				if (mode.equals(MODE_AJOUTER)) {
1211
					rafraichirPersonnel();
1212
				}
1215 cyprien 1213
				/*
1208 cyprien 1214
				else {
1215
					initialiserGrillePersonnelEnModification();
1216
				}
1215 cyprien 1217
				*/
211 jp_milcent 1218
			}
1219
		});
103 jpm 1220
 
211 jp_milcent 1221
		ContentPanel cp = new ContentPanel();
231 jp_milcent 1222
		cp.setHeading("Personnes travaillant sur les collections");
569 jp_milcent 1223
		cp.setIcon(Images.ICONES.table());
231 jp_milcent 1224
		//cp.setScrollMode(Scroll.AUTO);
1225
		cp.setLayout(new FitLayout());
559 jp_milcent 1226
		//cp.setWidth(1250);
1227
		//cp.setHeight("100%");
231 jp_milcent 1228
		cp.setFrame(true);
103 jpm 1229
 
231 jp_milcent 1230
		personnelGrilleMagazin = new ListStore<StructureAPersonne>();
1208 cyprien 1231
		personnelGrilleMagazin.setMonitorChanges(true);
1232
 
245 jp_milcent 1233
		personnelGrilleMagazin.addListener(Store.Add, new Listener<StoreEvent<StructureAPersonne>>() {
1234
			public void handleEvent(StoreEvent<StructureAPersonne> ce) {
1235
				// Activation du bouton supprimer si la grille contient un élément
1236
				if (grillePersonnel.getStore().getCount() > 0) {
1237
					supprimerPersonnelBtn.enable();
1238
				}
1239
 
1240
			}
1241
		});
231 jp_milcent 1242
 
1208 cyprien 1243
 
231 jp_milcent 1244
		RowNumberer r = new RowNumberer();
1245
 
102 jpm 1246
		List<ColumnConfig> configs = new ArrayList<ColumnConfig>();
1247
 
231 jp_milcent 1248
		GridSelectionModel<StructureAPersonne> sm = new GridSelectionModel<StructureAPersonne>();
1249
		configs.add(r);
103 jpm 1250
 
214 jp_milcent 1251
		ColumnConfig column = new ColumnConfig("fonction", "Fonction", 150);
295 jp_milcent 1252
		fonctionsMagazin = new ListStore<Valeur>();
103 jpm 1253
 
295 jp_milcent 1254
		fonctionsCombo = new ComboBox<Valeur>();
1255
		fonctionsCombo.setTriggerAction(TriggerAction.ALL);
1256
		fonctionsCombo.setEditable(true);
1257
		fonctionsCombo.setDisplayField("nom");
1258
		fonctionsCombo.setStore(fonctionsMagazin);
569 jp_milcent 1259
		mediateur.obtenirListeValeurEtRafraichir(this, "fonction");
103 jpm 1260
 
295 jp_milcent 1261
		fonctionEditor = new CellEditor(fonctionsCombo) {
103 jpm 1262
			@Override
211 jp_milcent 1263
			public Object preProcessValue(Object valeur) {
295 jp_milcent 1264
				Valeur retour = null;
1265
 
1266
				if (valeur != null) {
1267
					String chaineTransmise = (String) valeur;
1268
					if (fonctionsMagazin.getCount() == 0 && fonctionsListe != null) {
1269
						fonctionsMagazin.add(fonctionsListe);
1270
					}
1271
					if (fonctionsMagazin.findModel("id_valeur", chaineTransmise) != null) {
1272
						retour = fonctionsMagazin.findModel("id_valeur", chaineTransmise);
1273
					} else if (fonctionsMagazin.findModel("nom", chaineTransmise) != null) {
1274
						retour = fonctionsMagazin.findModel("nom", chaineTransmise);
213 jp_milcent 1275
					} else {
295 jp_milcent 1276
						retour = new Valeur("", chaineTransmise, "", "");
213 jp_milcent 1277
					}
211 jp_milcent 1278
				}
213 jp_milcent 1279
 
211 jp_milcent 1280
				return retour;
103 jpm 1281
			}
1282
 
1283
			@Override
211 jp_milcent 1284
			public Object postProcessValue(Object valeur) {
295 jp_milcent 1285
				String retour = "";
1286
				Valeur fonctionTrouvee = null;
211 jp_milcent 1287
				if (valeur == null) {
295 jp_milcent 1288
					String valeurBrute = this.getField().getRawValue();
1289
					if (fonctionsMagazin.getCount() == 0 && fonctionsListe != null) {
1290
						fonctionsMagazin.add(fonctionsListe);
213 jp_milcent 1291
					}
295 jp_milcent 1292
					if (valeurBrute.matches("^[0-9]+$") && fonctionsMagazin.findModel("id_valeur", valeurBrute) != null) {
1293
						fonctionTrouvee = fonctionsMagazin.findModel("id_valeur", valeurBrute);
1294
					} else {
1295
						retour = valeurBrute;
211 jp_milcent 1296
					}
295 jp_milcent 1297
				} else if (valeur instanceof Valeur) {
1298
					fonctionTrouvee = (Valeur) valeur;
103 jpm 1299
				}
295 jp_milcent 1300
 
1301
				if (fonctionTrouvee != null) {
1302
					retour = fonctionTrouvee.getNom();
1303
				}
1304
 
1305
				return retour;
211 jp_milcent 1306
			}
103 jpm 1307
		};
1308
		column.setEditor(fonctionEditor);
102 jpm 1309
		configs.add(column);
1310
 
243 jp_milcent 1311
		column = new ColumnConfig("prenom", "Prénom", 100);
103 jpm 1312
		TextField<String> prenomChp = new TextField<String>();
1313
		prenomChp.setAllowBlank(false);
1314
		prenomChp.getMessages().setBlankText("Ce champ est obligatoire.");
980 jpm 1315
		prenomChp.setAutoValidate(true);
981 jpm 1316
		prenomChp.addStyleName(ComposantClass.OBLIGATOIRE);
980 jpm 1317
		prenomChp.addListener(Events.Valid, creerEcouteurChampObligatoire());
103 jpm 1318
		column.setEditor(new CellEditor(prenomChp));
102 jpm 1319
		configs.add(column);
1320
 
243 jp_milcent 1321
		column = new ColumnConfig("nom", "Nom", 100);
103 jpm 1322
		TextField<String> nomChp = new TextField<String>();
1323
		nomChp.setAllowBlank(false);
1324
		nomChp.getMessages().setBlankText("Ce champ est obligatoire.");
980 jpm 1325
		nomChp.setAutoValidate(true);
981 jpm 1326
		nomChp.addStyleName(ComposantClass.OBLIGATOIRE);
980 jpm 1327
		nomChp.addListener(Events.Valid, creerEcouteurChampObligatoire());
103 jpm 1328
		column.setEditor(new CellEditor(nomChp));
102 jpm 1329
		configs.add(column);
1330
 
602 jp_milcent 1331
		column = new ColumnConfig("tel_fix", "Téléphone fixe", 100);
103 jpm 1332
		TextField<String> telChp = new TextField<String>();
1333
		column.setEditor(new CellEditor(telChp));
102 jpm 1334
		configs.add(column);
1335
 
602 jp_milcent 1336
		column = new ColumnConfig("tel_fax", "Fax", 100);
103 jpm 1337
		TextField<String> faxChp = new TextField<String>();
1338
		column.setEditor(new CellEditor(faxChp));
102 jpm 1339
		configs.add(column);
1340
 
214 jp_milcent 1341
		column = new ColumnConfig("courriel", "Courriel principal", 200);
103 jpm 1342
		TextField<String> emailChp = new TextField<String>();
1343
		column.setEditor(new CellEditor(emailChp));
102 jpm 1344
		configs.add(column);
1345
 
103 jpm 1346
		magazinLiStatut = new ListStore<Valeur>();
1347
		magazinLiStatut.add(new ArrayList<Valeur>());
1348
 
1349
		comboLiStatut = new ComboBox<Valeur>();
1350
		comboLiStatut.setTriggerAction(TriggerAction.ALL);
1351
		comboLiStatut.setEditable(false);
214 jp_milcent 1352
		comboLiStatut.disableTextSelection(true);
103 jpm 1353
		comboLiStatut.setDisplayField("nom");
1354
		comboLiStatut.setStore(magazinLiStatut);
569 jp_milcent 1355
		mediateur.obtenirListeValeurEtRafraichir(this, "statut");
103 jpm 1356
 
1357
		CellEditor statutEditor = new CellEditor(comboLiStatut) {
1358
			@Override
1359
			public Object preProcessValue(Object value) {
1360
				if (value == null) {
1361
					return value;
1362
				}
1363
				return comboLiStatut.getStore().findModel("nom", (String) value);
1364
			}
1365
 
1366
			@Override
1367
			public Object postProcessValue(Object value) {
1368
				if (value == null) {
1369
					return value;
1370
				}
1371
				return ((Valeur) value).get("nom");
1372
			}
214 jp_milcent 1373
		};
103 jpm 1374
		column = new ColumnConfig("statut", "Statut", 100);
1375
		column.setEditor(statutEditor);
102 jpm 1376
		configs.add(column);
1377
 
211 jp_milcent 1378
		column = new ColumnConfig("travail", "Temps travail", 100);
103 jpm 1379
		column.setNumberFormat(NumberFormat.getFormat("##"));
1380
		NumberField tpsWChp = new NumberField();
1381
		tpsWChp.setFormat(NumberFormat.getFormat("##"));
1382
		tpsWChp.setToolTip("Ce champ doit contenir un nombre");
1383
		column.setEditor(new CellEditor(tpsWChp));
1384
		configs.add(column);
1385
 
211 jp_milcent 1386
		column = new ColumnConfig("specialite", "Spécialité principale", 150);
103 jpm 1387
		TextField<String> speChp = new TextField<String>();
1388
		column.setEditor(new CellEditor(speChp));
1389
		configs.add(column);
1390
 
211 jp_milcent 1391
		CheckColumnConfig checkColumn = new CheckColumnConfig("contact", "Contact ?", 60);
102 jpm 1392
		configs.add(checkColumn);
1393
 
1394
		ToolBar toolBar = new ToolBar();
103 jpm 1395
 
491 gduche 1396
		Button ajouterPersonnelBtn = new Button("Ajouter");
569 jp_milcent 1397
		ajouterPersonnelBtn.setIcon(Images.ICONES.vcardAjouter());
491 gduche 1398
		ajouterPersonnelBtn.addSelectionListener(new SelectionListener<ButtonEvent>() {
103 jpm 1399
			@Override
491 gduche 1400
			public void componentSelected(ButtonEvent ce) {
295 jp_milcent 1401
				StructureAPersonne membreDuPersonnel = new StructureAPersonne("", StructureAPersonne.ROLE_EQUIPE, StructureAPersonne.ETAT_AJOUTE);
1402
				ajouterMembreAGrillePersonnel(membreDuPersonnel);
103 jpm 1403
			}
1404
		});
1405
		toolBar.add(ajouterPersonnelBtn);
243 jp_milcent 1406
 
103 jpm 1407
		toolBar.add(new SeparatorToolItem());
243 jp_milcent 1408
 
491 gduche 1409
		supprimerPersonnelBtn = new Button("Supprimer");
569 jp_milcent 1410
		supprimerPersonnelBtn.setIcon(Images.ICONES.vcardSupprimer());
491 gduche 1411
		supprimerPersonnelBtn.addSelectionListener(new SelectionListener<ButtonEvent>() {
103 jpm 1412
			@Override
491 gduche 1413
			public void componentSelected(ButtonEvent ce) {
231 jp_milcent 1414
				StructureAPersonne personne = grillePersonnel.getSelectionModel().getSelectedItem();
1415
				if (personne != null) {
1416
					// Ajout de la personne supprimée à la liste
243 jp_milcent 1417
					if (personne.getIdPersonne() != null && !personne.getIdPersonne().equals("")) {
231 jp_milcent 1418
						personnelSupprime.put(personne.getId(), personne);
1419
					}
1420
 
1421
					// Suppression de l'enregistrement de la grille
1422
					grillePersonnel.getStore().remove(personne);
1423
 
1424
					// Désactivation du bouton supprimer si la grille contient plus d'élément
1425
					if (grillePersonnel.getStore().getCount() == 0) {
491 gduche 1426
						//TODO : check : Item -> component
1427
						ce.getComponent().disable();
231 jp_milcent 1428
					}
1429
				}
103 jpm 1430
			}
1431
		});
243 jp_milcent 1432
		toolBar.add(supprimerPersonnelBtn);
1433
 
1434
		toolBar.add(new SeparatorToolItem());
1435
 
491 gduche 1436
		Button rafraichirPersonnelBtn = new Button("Rafraichir");
569 jp_milcent 1437
		rafraichirPersonnelBtn.setIcon(Images.ICONES.rafraichir());
491 gduche 1438
		rafraichirPersonnelBtn.addSelectionListener(new SelectionListener<ButtonEvent>() {
243 jp_milcent 1439
			@Override
491 gduche 1440
			public void componentSelected(ButtonEvent ce) {
243 jp_milcent 1441
				rafraichirPersonnel();
1442
			}
1443
		});
1444
		toolBar.add(rafraichirPersonnelBtn);
1445
 
1446
		toolBar.add(new SeparatorToolItem());
1447
 
1448
		personneExistanteMagazin = new ListStore<Personne>();
1449
		personneExistanteMagazin.add(new ArrayList<Personne>());
1450
 
245 jp_milcent 1451
		personneExistanteCombo = new ComboBox<Personne>();
243 jp_milcent 1452
		personneExistanteCombo.setWidth(200);
1453
		personneExistanteCombo.setEmptyText("Chercher une personne existante...");
1454
		personneExistanteCombo.setTriggerAction(TriggerAction.ALL);
1455
		personneExistanteCombo.setEditable(true);
1456
		personneExistanteCombo.setDisplayField("fmt_nom_complet");
1457
		personneExistanteCombo.setStore(personneExistanteMagazin);
1458
		personneExistanteCombo.addKeyListener(new KeyListener() {
1459
 
1460
			public void componentKeyUp(ComponentEvent ce) {
1461
				if (!ce.isNavKeyPress() && personneExistanteCombo.getRawValue() != null && personneExistanteCombo.getRawValue().length() > 0) {
1462
					rafraichirPersonneExistante(personneExistanteCombo.getRawValue());
1463
				}
1464
			}
1465
 
1466
		});
1467
 
1468
		// TODO : dans GXT 2.0 plus besoin de l'adaptateur, on peut ajouter la combobox directement sur la toolbar
491 gduche 1469
			//> CHECK
1470
		toolBar.add(personneExistanteCombo);
243 jp_milcent 1471
 
491 gduche 1472
		Button ajouterPersonneExistanteBtn = new Button("Ajouter");
1473
		ajouterPersonneExistanteBtn.addSelectionListener(new SelectionListener<ButtonEvent>() {
243 jp_milcent 1474
			@Override
491 gduche 1475
			public void componentSelected(ButtonEvent ce) {
243 jp_milcent 1476
				Personne personneExistante = personneExistanteCombo.getValue();
1477
 
295 jp_milcent 1478
				if (personneExistante != null) {
1479
					StructureAPersonne membreDuPersonnel = new StructureAPersonne("", StructureAPersonne.ROLE_EQUIPE, StructureAPersonne.ETAT_AJOUTE);
1480
					membreDuPersonnel.setIdPersonne(personneExistante.getId());
609 jp_milcent 1481
					membreDuPersonnel.setIdProjetPersonne(personneExistante.getIdProjet());
295 jp_milcent 1482
					membreDuPersonnel.setNom(personneExistante.getNom());
1483
					membreDuPersonnel.setPrenom(personneExistante.getPrenom());
1484
					membreDuPersonnel.setTelephone(personneExistante.getTelephone());
603 jp_milcent 1485
					membreDuPersonnel.setCourriel(personneExistante.selectionnerCourriel(1));
1486
					membreDuPersonnel.setSpecialite(personneExistante.afficherSpecialite());
295 jp_milcent 1487
 
1488
					ajouterMembreAGrillePersonnel(membreDuPersonnel);
1489
				}
243 jp_milcent 1490
			}
1491
		});
1492
		toolBar.add(ajouterPersonneExistanteBtn);
1493
 
102 jpm 1494
		cp.setTopComponent(toolBar);
1495
 
1496
		ColumnModel cm = new ColumnModel(configs);
1497
 
559 jp_milcent 1498
		grillePersonnel = new EditorGrid<StructureAPersonne>(personnelGrilleMagazin, cm);
1499
		grillePersonnel.setHeight("100%");
103 jpm 1500
		grillePersonnel.setBorders(true);
1501
		grillePersonnel.setSelectionModel(sm);
1502
		grillePersonnel.addPlugin(checkColumn);
231 jp_milcent 1503
		grillePersonnel.addPlugin(r);
1504
		grillePersonnel.getView().setForceFit(true);
211 jp_milcent 1505
  		grillePersonnel.setAutoExpandColumn("specialite");
1506
  		grillePersonnel.setStripeRows(true);
1507
  		grillePersonnel.setTrackMouseOver(true);
1208 cyprien 1508
 
1509
 
1215 cyprien 1510
		personnelGrilleMagazin.addListener(Store.Update, new Listener<StoreEvent<StructureAPersonne>>() {
1511
			public void handleEvent(StoreEvent<StructureAPersonne> ce) {
1512
				ce.getModel().set("etat", aDonnee.ETAT_MODIFIE);
1513
			}
1514
		});
1515
 
295 jp_milcent 1516
  		cp.add(grillePersonnel);
231 jp_milcent 1517
		personnelOnglet.add(cp);
306 jp_milcent 1518
 
231 jp_milcent 1519
		return personnelOnglet;
1520
	}
102 jpm 1521
 
110 jpm 1522
	private TabItem creerOngletIdentification() {
1523
		//+-----------------------------------------------------------------------------------------------------------+
1524
		// Onlget formulaire IDENTIFICATION
634 jp_milcent 1525
		identificationOnglet = creerOnglet("Identification", "identification");
211 jp_milcent 1526
		identificationOnglet.addListener(Events.Select, new Listener<ComponentEvent>() {
1527
			public void handleEvent(ComponentEvent be) {
1528
				peuplerStructureIdentification();
279 jp_milcent 1529
				identificationOnglet.layout();
211 jp_milcent 1530
			}
1531
		});
1532
 
110 jpm 1533
		//+-----------------------------------------------------------------------------------------------------------+
172 jp_milcent 1534
		// Champs cachés
1535
		idStructureChp = new HiddenField<String>();
1536
 
1537
		//+-----------------------------------------------------------------------------------------------------------+
110 jpm 1538
		// Fieldset IDENTITÉ
1539
		FieldSet fieldSetIdentite = new FieldSet();
1540
		fieldSetIdentite.setHeading("Identité");
1541
		fieldSetIdentite.setCollapsible(true);
569 jp_milcent 1542
		fieldSetIdentite.setLayout(creerFormLayout(120, LabelAlign.LEFT));
110 jpm 1543
 
119 jpm 1544
		nomStructureChp = new TextField<String>();
277 jp_milcent 1545
		nomStructureChp.setTabIndex(tabIndex++);
110 jpm 1546
		nomStructureChp.setFieldLabel("Nom de la structure");
1547
		nomStructureChp.setAllowBlank(false);
1548
		nomStructureChp.getMessages().setBlankText("Ce champ est obligatoire.");
981 jpm 1549
		nomStructureChp.addStyleName(ComposantClass.OBLIGATOIRE);
980 jpm 1550
		nomStructureChp.addListener(Events.Valid, creerEcouteurChampObligatoire());
110 jpm 1551
		fieldSetIdentite.add(nomStructureChp, new FormData(450, 0));
1552
 
634 jp_milcent 1553
 
1554
		projetsMagazin = new ListStore<Projet>();
928 jpm 1555
		mediateur.selectionnerProjet(this, null);
277 jp_milcent 1556
		projetsCombo = new ComboBox<Projet>();
1557
		projetsCombo.setTabIndex(tabIndex++);
1558
		projetsCombo.setFieldLabel("Projet");
1559
		projetsCombo.setLabelSeparator("");
1560
		projetsCombo.setDisplayField("nom");
1561
		projetsCombo.setEditable(false);
1562
		projetsCombo.setTriggerAction(TriggerAction.ALL);
1563
		projetsCombo.setStore(projetsMagazin);
981 jpm 1564
		projetsCombo.addStyleName(ComposantClass.OBLIGATOIRE);
980 jpm 1565
		projetsCombo.addListener(Events.Valid, creerEcouteurChampObligatoire());
277 jp_milcent 1566
		fieldSetIdentite.add(projetsCombo, new FormData(450, 0));
1567
 
110 jpm 1568
		// Création du sous-formulaire : Acronyme
1569
		LayoutContainer ligne = new LayoutContainer();
1570
		ligne.setLayout(new ColumnLayout());
564 jp_milcent 1571
		ligne.setSize(600, -1);
1572
 
110 jpm 1573
		LayoutContainer gauche = new LayoutContainer();
569 jp_milcent 1574
		gauche.setLayout(creerFormLayout(120, LabelAlign.LEFT));
110 jpm 1575
		LayoutContainer droite = new LayoutContainer();
569 jp_milcent 1576
		droite.setLayout(creerFormLayout(10, LabelAlign.LEFT));
110 jpm 1577
 
1578
		ListStore<InterneValeur> acronymes = new ListStore<InterneValeur>();
1579
		acronymes.add(InterneValeurListe.getTypeAcronyme());
1580
 
133 jpm 1581
		comboAcronyme = new ComboBox<InterneValeur>();
277 jp_milcent 1582
		comboAcronyme.setTabIndex(tabIndex++);
110 jpm 1583
		comboAcronyme.setEmptyText("Sélectioner un type d'acronyme...");
564 jp_milcent 1584
		comboAcronyme.setFieldLabel("Type d'acronyme");
110 jpm 1585
		comboAcronyme.setDisplayField("nom");
1586
		comboAcronyme.setStore(acronymes);
1587
		comboAcronyme.setEditable(false);
1588
		comboAcronyme.setTypeAhead(true);
1589
		comboAcronyme.setTriggerAction(TriggerAction.ALL);
1590
		comboAcronyme.addSelectionChangedListener(new SelectionChangedListener<InterneValeur>() {
1591
			@Override
1592
			public void selectionChanged(SelectionChangedEvent<InterneValeur> se) {
1593
				String acronymeAbr = se.getSelectedItem().getAbr();
1594
				if (acronymeAbr.equals("IH")) {
1595
					mnhnChp.hide();
1596
					ihChp.show();
1597
				} else if (acronymeAbr.equals("MNHN")) {
1598
					ihChp.hide();
1599
					mnhnChp.show();
1600
				} else if (acronymeAbr.equals("")) {
1601
					ihChp.hide();
1602
					mnhnChp.hide();
1603
					comboAcronyme.clearSelections();
1604
				}
1605
			}
1606
        });
564 jp_milcent 1607
		gauche.add(comboAcronyme, new FormData("95%"));
110 jpm 1608
 
1609
		ihChp = new TextField<String>();
277 jp_milcent 1610
		ihChp.setTabIndex(tabIndex++);
110 jpm 1611
		ihChp.setLabelSeparator("");
1612
		ihChp.setToolTip("Index Herbariorum : herbier de plus de 5000 échantillons");
1613
		ihChp.hide();
564 jp_milcent 1614
		droite.add(ihChp, new FormData("95%"));
110 jpm 1615
 
133 jpm 1616
		mnhnChp = new TextField<String>();
277 jp_milcent 1617
		mnhnChp.setTabIndex(tabIndex++);
110 jpm 1618
		mnhnChp.setLabelSeparator("");
1619
		mnhnChp.setToolTip("Acronyme MNHN : herbier de moins de 5000 échantillons");
1620
		mnhnChp.hide();
564 jp_milcent 1621
		droite.add(mnhnChp, new FormData("95%"));
110 jpm 1622
 
564 jp_milcent 1623
		ligne.add(gauche, new ColumnData(.5));
1624
		ligne.add(droite, new ColumnData(.5));
110 jpm 1625
		fieldSetIdentite.add(ligne);
1626
 
1627
		// Création du sous-formulaire : Type de Structure
1628
		LayoutContainer ligneTs = new LayoutContainer();
1629
		ligneTs.setLayout(new ColumnLayout());
564 jp_milcent 1630
		ligneTs.setSize(600, -1);
110 jpm 1631
 
1632
		LayoutContainer gaucheTs = new LayoutContainer();
569 jp_milcent 1633
		gaucheTs.setLayout(creerFormLayout(120, LabelAlign.LEFT));
110 jpm 1634
 
1635
		LayoutContainer droiteTs = new LayoutContainer();
569 jp_milcent 1636
		droiteTs.setLayout(creerFormLayout(10, LabelAlign.LEFT));
110 jpm 1637
 
1638
		ListStore<InterneValeur> typesStructure = new ListStore<InterneValeur>();
1639
		typesStructure.add(InterneValeurListe.getTypeStructure());
1640
 
133 jpm 1641
		comboTypeStructure = new ComboBox<InterneValeur>();
277 jp_milcent 1642
		comboTypeStructure.setTabIndex(tabIndex++);
110 jpm 1643
		comboTypeStructure.setEmptyText("Sélectioner un type de structure...");
1644
		comboTypeStructure.setFieldLabel("Statut des structures");
1645
		comboTypeStructure.setDisplayField("nom");
1646
		comboTypeStructure.setStore(typesStructure);
1647
		comboTypeStructure.setEditable(false);
1648
		comboTypeStructure.setTypeAhead(true);
1649
		comboTypeStructure.setTriggerAction(TriggerAction.ALL);
1650
		comboTypeStructure.addSelectionChangedListener(new SelectionChangedListener<InterneValeur>() {
1651
			@Override
1652
			public void selectionChanged(SelectionChangedEvent<InterneValeur> se) {
1653
				String typeAbr = se.getSelectedItem().getAbr();
1654
				if (typeAbr.equals("stpu")) {
1655
					comboLstpr.hide();
1656
					comboLstpu.show();
1657
				} else if (typeAbr.equals("stpr")) {
1658
					comboLstpu.hide();
1659
					comboLstpr.show();
1660
				} else if (typeAbr.equals("")) {
1661
					comboLstpr.hide();
1662
					comboLstpu.hide();
1663
					comboTypeStructure.clearSelections();
1664
				}
1665
			}
1666
        });
564 jp_milcent 1667
		gaucheTs.add(comboTypeStructure, new FormData("95%"));
110 jpm 1668
 
1669
		magazinLstpu = new ListStore<Valeur>();
133 jpm 1670
		comboLstpu = new ComboBox<Valeur>();
277 jp_milcent 1671
		comboLstpu.setTabIndex(tabIndex++);
110 jpm 1672
		//comboLstpu.setFieldLabel("Statut des structures publiques");
1673
		comboLstpu.setLabelSeparator("");
1674
		comboLstpu.setDisplayField("nom");
1675
		comboLstpu.setEditable(false);
1676
		comboLstpu.setTriggerAction(TriggerAction.ALL);
1677
		comboLstpu.setStore(magazinLstpu);
1678
		comboLstpu.hide();
564 jp_milcent 1679
		droiteTs.add(comboLstpu, new FormData("95%"));
569 jp_milcent 1680
		mediateur.obtenirListeValeurEtRafraichir(this, "stpu");
110 jpm 1681
 
1682
		magazinLstpr = new ListStore<Valeur>();
133 jpm 1683
		comboLstpr = new ComboBox<Valeur>();
277 jp_milcent 1684
		comboLstpr.setTabIndex(tabIndex++);
110 jpm 1685
		//comboLstpr.setFieldLabel("Statut des structures privées");
1686
		comboLstpr.setLabelSeparator("");
1687
		comboLstpr.setDisplayField("nom");
1688
		comboLstpr.setEditable(false);
1689
		comboLstpr.setTriggerAction(TriggerAction.ALL);
1690
		comboLstpr.setStore(magazinLstpr);
1691
		comboLstpr.hide();
564 jp_milcent 1692
		droiteTs.add(comboLstpr, new FormData("95%"));
569 jp_milcent 1693
		mediateur.obtenirListeValeurEtRafraichir(this, "stpr");
110 jpm 1694
 
1695
		ligneTs.add(gaucheTs, new ColumnData(0.5));
1696
		ligneTs.add(droiteTs, new ColumnData(0.5));
1697
		fieldSetIdentite.add(ligneTs);
1698
 
119 jpm 1699
		dateFondationChp = new DateField();
277 jp_milcent 1700
		dateFondationChp.setTabIndex(tabIndex++);
110 jpm 1701
		dateFondationChp.setFieldLabel("Date de fondation");
1702
		dateFondationChp.getPropertyEditor().getFormat();
1703
		dateFondationChp.getPropertyEditor().setFormat(DateTimeFormat.getFormat("dd/MM/yyyy"));
1704
		dateFondationChp.getMessages().setInvalidText("La valeur saisie n'est pas une date valide. La date doit être au format «jj/mm/aaaa».");
1705
		fieldSetIdentite.add(dateFondationChp);
1706
 
564 jp_milcent 1707
		nbreTotalPersonneStructureChp = new NumberField();
231 jp_milcent 1708
		nbreTotalPersonneStructureChp.setFieldLabel("Nombre de personne travaillant dans l'institution");
1709
		nbreTotalPersonneStructureChp.setFormat(NumberFormat.getFormat("#"));
686 jp_milcent 1710
		nbreTotalPersonneStructureChp.setToolTip(i18nC.champNumerique());
231 jp_milcent 1711
		fieldSetIdentite.add(nbreTotalPersonneStructureChp);
1712
 
279 jp_milcent 1713
		identificationOnglet.add(fieldSetIdentite);
231 jp_milcent 1714
 
110 jpm 1715
		//+-----------------------------------------------------------------------------------------------------------+
1171 jpm 1716
		// Fieldset DESCRIPTION
1717
		FieldSet fieldSetDescription = new FieldSet();
1718
		fieldSetDescription.setHeading("Description");
1719
		fieldSetDescription.setCollapsible(true);
1720
		fieldSetDescription.setLayout(creerFormLayout(120, LabelAlign.LEFT));
1721
 
1722
		descriptionChp = new TextArea();
1723
		descriptionChp.setTabIndex(tabIndex++);
1724
		descriptionChp.setFieldLabel("Description");
1725
		fieldSetDescription.add(descriptionChp, new FormData(550, 0));
1726
 
1727
		conditionAccesChp = new TextArea();
1728
		conditionAccesChp.setTabIndex(tabIndex++);
1729
		conditionAccesChp.setFieldLabel("Conditions d'accès");
1730
		fieldSetDescription.add(conditionAccesChp, new FormData(550, 0));
1731
 
1732
		conditionUsageChp = new TextArea();
1733
		conditionUsageChp.setTabIndex(tabIndex++);
1734
		conditionUsageChp.setFieldLabel("Conditions d'usage");
1735
		fieldSetDescription.add(conditionUsageChp, new FormData(550, 0));
1736
 
1737
		identificationOnglet.add(fieldSetDescription);
1738
 
1739
		//+-----------------------------------------------------------------------------------------------------------+
110 jpm 1740
		// Fieldset ADRESSE
1741
		LayoutContainer principalFdAdresse = new LayoutContainer();
1742
		principalFdAdresse.setLayout(new ColumnLayout());
564 jp_milcent 1743
		principalFdAdresse.setSize(600, -1);
110 jpm 1744
 
1745
		LayoutContainer gaucheFdAdresse = new LayoutContainer();
569 jp_milcent 1746
		gaucheFdAdresse.setLayout(creerFormLayout(null, LabelAlign.LEFT));
110 jpm 1747
 
1748
		LayoutContainer droiteFdAdresse = new LayoutContainer();
569 jp_milcent 1749
		droiteFdAdresse.setLayout(creerFormLayout(null, LabelAlign.LEFT));
110 jpm 1750
 
1751
		FieldSet fieldSetAdresse = new FieldSet();
1752
		fieldSetAdresse.setHeading("Adresse");
1753
		fieldSetAdresse.setCollapsible(true);
1754
 
569 jp_milcent 1755
		fieldSetAdresse.setLayout(creerFormLayout(null, LabelAlign.LEFT));
110 jpm 1756
 
164 jp_milcent 1757
		adrChp = new TextArea();
277 jp_milcent 1758
		adrChp.setTabIndex(tabIndex++);
1171 jpm 1759
		adrChp.setFieldLabel("Adresse (Nom du batiment, rue...)");
110 jpm 1760
		fieldSetAdresse.add(adrChp, new FormData(550, 0));
1761
 
1171 jpm 1762
		adrComplementChp = new TextArea();
1763
		adrComplementChp.setTabIndex(tabIndex++);
1764
		adrComplementChp.setFieldLabel("Complément d'adresse (BP, étage...)");
1765
		fieldSetAdresse.add(adrComplementChp, new FormData(550, 0));
1766
 
133 jpm 1767
		cpChp = new TextField<String>();
277 jp_milcent 1768
		cpChp.setTabIndex(tabIndex++);
110 jpm 1769
		cpChp.setFieldLabel("Code postal");
564 jp_milcent 1770
		gaucheFdAdresse.add(cpChp, new FormData("95%"));
110 jpm 1771
 
133 jpm 1772
		villeChp = new TextField<String>();
277 jp_milcent 1773
		villeChp.setTabIndex(tabIndex++);
110 jpm 1774
		villeChp.setFieldLabel("Ville");
1035 gduche 1775
		gaucheFdAdresse.add(villeChp, new FormData("95%"));
110 jpm 1776
 
1035 gduche 1777
		magazinPays = new ListStore<Valeur>();
164 jp_milcent 1778
		comboPays = new ComboBox<Valeur>();
277 jp_milcent 1779
		comboPays.setTabIndex(tabIndex++);
164 jp_milcent 1780
		comboPays.setFieldLabel("Pays");
1035 gduche 1781
		comboPays.setEmptyText("Sélectionner un pays...");
164 jp_milcent 1782
		comboPays.setEditable(true);
1783
		comboPays.setLabelSeparator("");
1784
		comboPays.setDisplayField("nom");
172 jp_milcent 1785
		comboPays.setTemplate(getTemplatePays());
1786
		comboPays.setTypeAhead(true);
164 jp_milcent 1787
		comboPays.setTriggerAction(TriggerAction.ALL);
1788
		comboPays.setStore(magazinPays);
1035 gduche 1789
 
1790
		SelectionChangedListener<Valeur> selectionChange = new SelectionChangedListener<Valeur>() {
1791
			public void selectionChanged(SelectionChangedEvent se) {
1792
				// Rafraichir avec le pays sélectionné
1793
				obtenirListeRegionParPays(((Valeur) se.getSelectedItem()).getAbreviation().toString());
1794
			}
1795
		};
1796
 
1797
		comboPays.addSelectionChangedListener(selectionChange);
1798
 
1799
 
564 jp_milcent 1800
		droiteFdAdresse.add(comboPays, new FormData("95%"));
569 jp_milcent 1801
		mediateur.obtenirListeValeurEtRafraichir(this, "pays");
110 jpm 1802
 
1035 gduche 1803
		magazinRegion = new ListStore<Valeur>();
1804
		comboRegion = new ComboBox<Valeur>();
1805
		comboRegion.setTabIndex(tabIndex++);
1806
		comboRegion.setFieldLabel("Région");
1807
		comboRegion.setEmptyText("Sélectionner une région...");
1808
		comboRegion.setDisplayField("nom");
1809
		comboRegion.setTypeAhead(true);
1810
		comboRegion.setTriggerAction(TriggerAction.ALL);
1811
		comboRegion.setStore(magazinRegion);
1812
 
1813
		droiteFdAdresse.add(comboRegion, new FormData("95%"));
1814
 
1171 jpm 1815
		latitudeChp = new TextField<String>();
1816
		latitudeChp.setRegex(Pattern.latitude);
1817
		latitudeChp.setToolTip("Format : nombre décimal positif ou négatif de 0 à 90.");
1818
		latitudeChp.getMessages().setRegexText("La valeur saisie n'est pas une latitude valide. Exemples de latitude : -45,302010 ou 45.252423 ou 25,16.");
1819
		latitudeChp.setTabIndex(tabIndex++);
1820
		latitudeChp.setFieldLabel("Latitude (Nord)");
1821
		gaucheFdAdresse.add(latitudeChp, new FormData("95%"));
1035 gduche 1822
 
1171 jpm 1823
		longitudeChp = new TextField<String>();
1824
		longitudeChp.setRegex(Pattern.longitude);
1825
		longitudeChp.setToolTip("Format : nombre décimal positif ou négatif de 0 à 180.");
1826
		longitudeChp.getMessages().setRegexText("La valeur saisie n'est pas une longitude valide. Exemples de longitude : -150,302010 ou 150.252423 ou 25,16.");
1827
		longitudeChp.setTabIndex(tabIndex++);
1828
		longitudeChp.setFieldLabel("Longitude (Est)");
1829
		droiteFdAdresse.add(longitudeChp, new FormData("95%"));
1830
 
110 jpm 1831
		principalFdAdresse.add(gaucheFdAdresse, new ColumnData(.5));
1832
		principalFdAdresse.add(droiteFdAdresse, new ColumnData(.5));
1833
		fieldSetAdresse.add(principalFdAdresse);
279 jp_milcent 1834
 
110 jpm 1835
		identificationOnglet.add(fieldSetAdresse);
279 jp_milcent 1836
 
110 jpm 1837
		//+-----------------------------------------------------------------------------------------------------------+
1838
		// Fieldset TÉLÉPHONE et EMAIL
1839
		LayoutContainer principalFdTelMail = new LayoutContainer();
1840
		principalFdTelMail.setLayout(new ColumnLayout());
569 jp_milcent 1841
		principalFdTelMail.setSize(700, -1);
110 jpm 1842
 
1843
		LayoutContainer gaucheFdTelMail = new LayoutContainer();
569 jp_milcent 1844
		gaucheFdTelMail.setLayout(creerFormLayout(60, LabelAlign.LEFT));
110 jpm 1845
 
1846
		LayoutContainer droiteFdTelMail = new LayoutContainer();
569 jp_milcent 1847
		droiteFdTelMail.setLayout(creerFormLayout(60, LabelAlign.LEFT));
110 jpm 1848
 
1849
		FieldSet fieldSetTelMail = new FieldSet();
1850
		fieldSetTelMail.setHeading("Communication");
1851
		fieldSetTelMail.setCollapsible(true);
1852
 
569 jp_milcent 1853
		fieldSetTelMail.setLayout(creerFormLayout(null, LabelAlign.LEFT));
110 jpm 1854
 
133 jpm 1855
		telChp = new TextField<String>();
277 jp_milcent 1856
		telChp.setTabIndex(tabIndex++);
602 jp_milcent 1857
		telChp.setFieldLabel("Téléphone fixe");
564 jp_milcent 1858
		gaucheFdTelMail.add(telChp, new FormData("95%"));
110 jpm 1859
 
133 jpm 1860
		faxChp = new TextField<String>();
277 jp_milcent 1861
		faxChp.setTabIndex(tabIndex++);
110 jpm 1862
		faxChp.setFieldLabel("Fax");
564 jp_milcent 1863
		droiteFdTelMail.add(faxChp, new FormData("95%"));
110 jpm 1864
 
133 jpm 1865
		emailChp = new TextField<String>();
277 jp_milcent 1866
		emailChp.setTabIndex(tabIndex++);
110 jpm 1867
		emailChp.setFieldLabel("Courriel");
1868
		emailChp.setToolTip("Saisir le courriel de l'organisation, pas de courriel individuel. Ex. : accueil@organisation.org");
564 jp_milcent 1869
		gaucheFdTelMail.add(emailChp, new FormData("95%"));
110 jpm 1870
 
133 jpm 1871
		urlChp = new TextField<String>();
277 jp_milcent 1872
		urlChp.setTabIndex(tabIndex++);
110 jpm 1873
		urlChp.setFieldLabel("Site web");
564 jp_milcent 1874
		droiteFdTelMail.add(urlChp, new FormData("95%"));
110 jpm 1875
 
1876
		principalFdTelMail.add(gaucheFdTelMail, new ColumnData(.5));
1877
		principalFdTelMail.add(droiteFdTelMail, new ColumnData(.5));
1878
		fieldSetTelMail.add(principalFdTelMail);
279 jp_milcent 1879
 
110 jpm 1880
		identificationOnglet.add(fieldSetTelMail);
1881
 
1882
		return identificationOnglet;
1883
	}
1884
 
1035 gduche 1885
	public void obtenirListeRegionParPays(String strPays)	{
1886
		mediateur.obtenirListeRegionsEtRafraichir(this, "region", strPays);
1887
	}
1888
 
1889
	private void mettreAJourRegion()	{
1890
		//Met à jour la combo box en sélectionnant la valeur enregistrée pour la personne
1891
		if (identification.get("ce_truk_region") != null && comboRegion.getStore().getCount() > 0)	{
1892
			Valeur valeurRegion = comboRegion.getStore().findModel("id_valeur", identification.get("ce_truk_region"));
1893
			if (valeurRegion!=null)	{
1894
				comboRegion.setValue(valeurRegion);
1895
			} else if (identification.get("ce_truk_region").toString().startsWith("AUTRE##")) {
1896
				comboRegion.setRawValue(identification.get("ce_truk_region").toString().replaceFirst("^AUTRE##", ""));
1897
			}
1898
		}
1899
	}
1900
 
172 jp_milcent 1901
	private native String getTemplatePays() /*-{
1902
		return  [
1903
		'<tpl for=".">',
1904
		'<div class="x-combo-list-item">{nom} ({abreviation})</div>',
1905
		'</tpl>'
1906
		].join("");
1907
		}-*/;
1908
 
192 jp_milcent 1909
	private void peuplerCasesACocher(String donnees, CheckBoxGroup groupeCac, TextField<String> champAutre) {
1910
		String[] valeurs = donnees.split(";;");
1911
		for (int i = 0; i < valeurs.length; i++) {
1912
			if (valeurs[i].startsWith("AUTRE##")) {
1913
				champAutre.setValue(valeurs[i].replaceFirst("^AUTRE##", ""));
1914
			} else {
491 gduche 1915
				//TODO : check : List<CheckBox> cases = groupeCac.getAll();
1916
				List<Field<?>> cases = groupeCac.getAll();
192 jp_milcent 1917
				for (int j = 0; j < cases.size(); j++) {
1918
					if (cases.get(j).getId().equals("val-"+valeurs[i])) {
491 gduche 1919
						((CheckBox) cases.get(j)).setValue(true);
192 jp_milcent 1920
					}
1921
				}
1922
			}
1923
		}
1924
	}
1925
 
1926
	private void peuplerBoutonsRadio(String valeur, RadioGroup groupeBr) {
491 gduche 1927
		//List<Radio> boutons = groupeBr.getAll();
1928
		List<Field<?>> boutons = groupeBr.getAll();
192 jp_milcent 1929
		String id = valeur+"_"+groupeBr.getName().replace("_grp", "");
1930
		for (int i = 0; i < boutons.size(); i++) {
1931
			if (boutons.get(i).getId().equals(id)) {
491 gduche 1932
				((Radio) boutons.get(i)).setValue(true);
192 jp_milcent 1933
			}
1934
		}
1935
	}
1936
 
1937
	private String creerChaineDenormalisee(List<CheckBox> liste) {
1938
		String identifiants = "";
306 jp_milcent 1939
		if (liste != null) {
1940
			int taille = liste.size();
1941
			for (int i = 0; i < taille; i++) {
1942
				CheckBox cac = liste.get(i);
1943
				if (cac.isEnabled()) {
1944
					identifiants = identifiants.concat(";;"+cac.getData("id"));
1945
				}
192 jp_milcent 1946
			}
306 jp_milcent 1947
			identifiants.replaceFirst("^;;", "");
192 jp_milcent 1948
		}
306 jp_milcent 1949
		return identifiants;
192 jp_milcent 1950
	}
1951
 
934 jpm 1952
	public void afficherChampSupplementaire(Radio radioBtn) {
119 jpm 1953
		//GWT.log("Nom btn : "+radioBtn.getName()+" - Nom group : "+radioBtn.getGroup().getName(), null);
115 jpm 1954
		// Valeur du bouton radio déclenchant l'affichage des composants cachés
1955
		String valeurPourAfficher = "oui";
111 jpm 1956
 
115 jpm 1957
		// Construction de la liste des composants à afficher/cacher
1958
		String radioGroupeNom = radioBtn.getGroup().getName();
1959
		ArrayList<Object> composants = new ArrayList<Object>();
1960
		if (radioGroupeNom.equals("action_mark_grp")) {
1961
			composants.add(actionTrukCp);
1962
		} else if (radioGroupeNom.equals("future_action_mark_grp")) {
1963
			composants.add(futureActionChp);
1964
		} else if (radioGroupeNom.equals("sans_motif_acces_mark_grp")) {
1965
			composants.add(sansMotifAccesChp);
1966
		} else if (radioGroupeNom.equals("avec_motif_acces_mark_grp")) {
1967
			composants.add(avecMotifAccesChp);
1968
		} else if (radioGroupeNom.equals("recherche_mark_grp")) {
1969
			composants.add(provenanceRechercheTrukCp);
119 jpm 1970
			composants.add(typeRechercheTrukCp);
115 jpm 1971
		} else if (radioGroupeNom.equals("formation_mark_grp")) {
1972
			composants.add(formationChp);
1973
		} else if (radioGroupeNom.equals("collection_commune_mark_grp")) {
1974
			composants.add(collectionAutreTrukCp);
1975
		} else if (radioGroupeNom.equals("restauration_mark_grp")) {
1976
			composants.add(opRestauTrukCp);
1977
		} else if (radioGroupeNom.equals("traitement_mark_grp")) {
1978
			composants.add(traitementTrukCp);
1979
		} else if (radioGroupeNom.equals("echantillon_acquisition_mark_grp")) {
1980
			composants.add(traitementAcquisitionMarkRGrpChp);
1981
		} else if (radioGroupeNom.equals("traitement_acquisition_mark_grp")) {
1982
			composants.add(traitementAcquisitionMarkLabel);
1983
			composants.add(poisonTraitementTrukCp);
1984
			composants.add(insecteTraitementTrukCp);
1985
		} else if (radioGroupeNom.equals("materiel_conservation_ce_grp")) {
1986
			composants.add(autreMaterielTrukCp);
1987
			valeurPourAfficher = "non";
1988
		}
111 jpm 1989
 
115 jpm 1990
		// Nous affichons/cachons les composant de la liste
211 jp_milcent 1991
		final int nbreComposants = composants.size();
115 jpm 1992
		//GWT.log("Id : "+radioBtn.getId()+" - Class : "+radioBtn.getClass().toString()+"- Taille : "+tailleMax, null);
119 jpm 1993
		//Window.alert("Radio grp nom : "+radioGroupeNom+" - Id btn : "+radioBtn.getId()+" - Class : "+radioBtn.getClass().toString()+"- Taille : "+tailleMax);
211 jp_milcent 1994
		for (int i = 0; i < nbreComposants; i++) {
111 jpm 1995
			// En fonction du type de bouton cliquer, on affiche ou cache les champs
115 jpm 1996
			String type = radioBtn.getBoxLabel().toLowerCase();
119 jpm 1997
			//GWT.log(type, null);
115 jpm 1998
			if (radioBtn.getValue() == true) {
1999
				if (type.equals(valeurPourAfficher)) {
2000
					((Component) composants.get(i)).show();
2001
				} else {
2002
					((Component) composants.get(i)).hide();
2003
				}
111 jpm 2004
			}
2005
			// Si on a à faire à un ContentPanel, on l'actualise pour déclencher l'affichage
115 jpm 2006
			if (composants.get(i) instanceof ContentPanel) {
2007
				((ContentPanel) composants.get(i)).layout();
111 jpm 2008
			}
2009
		}
2010
 
2011
	}
2012
 
639 jp_milcent 2013
	public void rafraichir(Object nouvellesDonnees) {
1208 cyprien 2014
 
2015
Debug.log("|0> StructureForm.rafraichir, nouvellesDonnees.getClass() = "+nouvellesDonnees.getClass());
2016
 
639 jp_milcent 2017
		try {
2018
			if (nouvellesDonnees instanceof Information) {
2019
				Information info = (Information) nouvellesDonnees;
2020
				rafraichirInformation(info);
2021
			} else if (nouvellesDonnees instanceof ValeurListe) {
2022
				ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
2023
				rafraichirValeurListe(listeValeurs);
2024
			} else if (nouvellesDonnees instanceof ProjetListe) {
2025
				ProjetListe projets = (ProjetListe) nouvellesDonnees;
2026
				rafraichirProjetListe(projets);
2027
			} else {
2028
				GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
295 jp_milcent 2029
			}
639 jp_milcent 2030
		} catch (Exception e) {
875 jpm 2031
			GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), e);
109 jpm 2032
		}
2033
 
1218 cyprien 2034
		controlerFermeture();
109 jpm 2035
	}
2036
 
639 jp_milcent 2037
	public void rafraichirInformation(Information info) {
2038
		if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
2039
			GWT.log("MESSAGES:\n"+info.getMessages().toString(), null);
2040
		}
1208 cyprien 2041
 
2042
Debug.log("|0> StructureForm.rafraichirInformation, info.getType() = "+info.getType());
639 jp_milcent 2043
 
2044
		if (info.getType().equals("modif_structure")) {
1208 cyprien 2045
			InfoLogger.display("Modification d'une institution", info.toString());
639 jp_milcent 2046
		} else if (info.getType().equals("ajout_structure")) {
770 jpm 2047
			if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
2048
				String structureId = (String) info.getDonnee(0);
1208 cyprien 2049
				InfoLogger.display("Ajout d'une Institution", "L'intitution '"+structureId+"' a bien été ajoutée");
770 jpm 2050
 
639 jp_milcent 2051
				// Suite à la récupération de l'id de l'institution nouvellement ajoutée nous ajoutons le personnel
770 jpm 2052
				mediateur.ajouterStructureAPersonne(this, structureId, personnelAjoute);
639 jp_milcent 2053
			} else {
1208 cyprien 2054
				InfoLogger.display("Ajout d'une Institution", info.toString());
639 jp_milcent 2055
			}
2056
		} else if (info.getType().equals("modif_structure_a_personne")) {
1208 cyprien 2057
			InfoLogger.display("Modification du Personnel", info.toString());
639 jp_milcent 2058
			GWT.log("Decompte:"+decompteRafraichissementPersonnel, null);
2059
			testerLancementRafraichirPersonnel();
2060
		} else if (info.getType().equals("suppression_structure_a_personne")) {
1208 cyprien 2061
			InfoLogger.display("Suppression du Personnel", info.toString());
639 jp_milcent 2062
			GWT.log("Decompte:"+decompteRafraichissementPersonnel, null);
2063
			testerLancementRafraichirPersonnel();
2064
		} else if (info.getType().equals("ajout_structure_a_personne")) {
1208 cyprien 2065
			InfoLogger.display("Ajout du Personnel", info.toString());
639 jp_milcent 2066
			GWT.log("Decompte:"+decompteRafraichissementPersonnel, null);
2067
			testerLancementRafraichirPersonnel();
2068
		} else if (info.getType().equals("selection_structure")) {
1208 cyprien 2069
			InfoLogger.display("Modification d'une institution", info.toString());
639 jp_milcent 2070
			String titre = i18nC.titreModifFormStructurePanneau();
2071
			if (info.getDonnee(0) != null) {
2072
				identification = (Structure) info.getDonnee(0);
2073
				if (onglets.getSelectedItem().equals(identificationOnglet)) {
2074
					peuplerStructureIdentification();
188 jp_milcent 2075
				}
639 jp_milcent 2076
				// Composition du titre
2077
				titre += " - ID : "+identification.getId();
2078
			}
2079
			if (info.getDonnee(1) != null) {
2080
				conservation = (StructureConservation) info.getDonnee(1);
2081
				if (onglets.getSelectedItem().equals(conservationOnglet)) {
2082
					peuplerStructureConservation();
2083
				}
2084
			}
2085
			if (info.getDonnee(2) != null) {
2086
				valorisation = (StructureValorisation) info.getDonnee(2);
2087
				if (valorisation != null) {
2088
					if (onglets.getSelectedItem().equals(valorisationOnglet)) {
2089
						peuplerStructureValorisation();
231 jp_milcent 2090
					}
639 jp_milcent 2091
				}
2092
			}
2093
		} else if (info.getType().equals("liste_structure_a_personne")) {
1208 cyprien 2094
			Debug.log("==> StructureForm.rafraichirInformation, typeInfo=liste_structure_a_personne");
639 jp_milcent 2095
			if (info.getDonnee(0) != null) {
2096
				personnel = (StructureAPersonneListe) info.getDonnee(0);
1208 cyprien 2097
 
639 jp_milcent 2098
				peuplerStructurePersonnel();
1208 cyprien 2099
 
639 jp_milcent 2100
				personnelOnglet.layout();
1208 cyprien 2101
				InfoLogger.display("Chargement du Personnel", "ok");
609 jp_milcent 2102
 
639 jp_milcent 2103
				// Remise à zéro des modification dans la liste du personnel
2104
				personnelModifie = new StructureAPersonneListe();
2105
				personnelAjoute = new StructureAPersonneListe();
2106
				personnelSupprime = new StructureAPersonneListe();
2107
			}
2108
		} else if (info.getType().equals("liste_personne")) {
2109
			if (info.getDonnee(0) != null) {
2110
				PersonneListe personnes = (PersonneListe) info.getDonnee(0);
704 jp_milcent 2111
				List<Personne> liste = personnes.toList();
639 jp_milcent 2112
 
2113
				personneExistanteMagazin.removeAll();
2114
				personneExistanteMagazin.add(liste);
2115
				personneExistanteCombo.setStore(personneExistanteMagazin);
2116
				personneExistanteCombo.expand();
2117
			}
2118
		}
2119
	}
2120
 
2121
	public void rafraichirValeurListe(ValeurListe listeValeurs) {
2122
		List<Valeur> liste = listeValeurs.toList();
407 jp_milcent 2123
 
639 jp_milcent 2124
		// Test pour savoir si la liste contient des éléments
2125
		if (liste.size() > 0) {
2126
			if (listeValeurs.getId().equals(config.getListeId("stpr"))) {
2127
				magazinLstpr.removeAll();
2128
				magazinLstpr.add(liste);
2129
				comboLstpr.setStore(magazinLstpr);
2130
			}
2131
			if (listeValeurs.getId().equals(config.getListeId("stpu"))) {
2132
				magazinLstpu.removeAll();
2133
				magazinLstpu.add(liste);
2134
				comboLstpu.setStore(magazinLstpu);
2135
			}
2136
			if (listeValeurs.getId().equals(config.getListeId("statut"))) {
2137
				magazinLiStatut.removeAll();
2138
				magazinLiStatut.add(liste);
2139
				comboLiStatut.setStore(magazinLiStatut);
2140
			}
2141
			if (listeValeurs.getId().equals(config.getListeId("fonction"))) {
2142
				// FIXME : le store ne contient pas tout le temps les données, chose étrange.
2143
				// On stocke donc les données dans une variables de la classe pour recharger le store si besoin.
2144
				fonctionsListe = liste;
2145
				fonctionsMagazin.removeAll();
2146
				fonctionsMagazin.add(liste);
2147
				fonctionsCombo.setStore(fonctionsMagazin);
2148
			}
2149
			if (listeValeurs.getId().equals(config.getListeId("pays"))) {
2150
				magazinPays.removeAll();
2151
				magazinPays.add(liste);
2152
				comboPays.setStore(magazinPays);
2153
			}
1035 gduche 2154
 
2155
			if (listeValeurs.getId().equals(config.getListeId("region"))) {
2156
				magazinRegion.removeAll();
2157
				magazinRegion.add(liste);
2158
				comboRegion.setStore(magazinRegion);
2159
 
2160
				mettreAJourRegion();
2161
			}
2162
 
2163
 
639 jp_milcent 2164
			if (listeValeurs.getId().equals(config.getListeId("localStockage"))) {
2165
				localStockageAutreChp = new TextField<String>();
2166
				creerChoixMultipleCac(localStockageTrukCp, localStockageTrukCacGrpChp, listeValeurs, localStockageAutreChp);
2167
			}
2168
			if (listeValeurs.getId().equals(config.getListeId("meubleStockage"))) {
2169
				meubleStockageAutreChp = new TextField<String>();
2170
				creerChoixMultipleCac(meubleStockageTrukCp, meubleStockageTrukCacGrpChp, listeValeurs, meubleStockageAutreChp);
2171
			}
2172
			if (listeValeurs.getId().equals(config.getListeId("parametreStockage"))) {
2173
				parametreStockageAutreChp = new TextField<String>();
2174
				creerChoixMultipleCac(parametreStockageTrukCp, parametreStockageTrukCacGrpChp, listeValeurs, parametreStockageAutreChp);
2175
			}
2176
			if (listeValeurs.getId().equals(config.getListeId("autreCollection"))) {
2177
				if (collectionAutreTrukCp != null && collectionAutreTrukCp.getItemByItemId("collectionAutreTrukCacGrpChp") == null) {
2178
					collectionAutreTrukCacGrpChp.setId("collectionAutreTrukCacGrpChp");
2179
					collectionAutreAutreChp = new TextField<String>();
2180
					creerChoixMultipleCac(collectionAutreTrukCp, collectionAutreTrukCacGrpChp, listeValeurs, collectionAutreAutreChp);
110 jpm 2181
				}
639 jp_milcent 2182
				if (autreCollectionTrukCp != null && autreCollectionTrukCp.getItemByItemId("autreCollectionTrukCacGrpChp") == null) {
2183
					autreCollectionTrukCacGrpChp.setId("autreCollectionTrukCacGrpChp");
2184
					autreCollectionAutreChp = new TextField<String>();
2185
					creerChoixMultipleCac(autreCollectionTrukCp, autreCollectionTrukCacGrpChp, listeValeurs, autreCollectionAutreChp);
277 jp_milcent 2186
				}
91 jpm 2187
			}
639 jp_milcent 2188
			if (listeValeurs.getId().equals(config.getListeId("opRestau"))) {
2189
				opRestauAutreChp = new TextField<String>();
2190
				creerChoixMultipleCac(opRestauTrukCp, opRestauTrukCacGrpChp, listeValeurs, opRestauAutreChp);
2191
			}
2192
			if (listeValeurs.getId().equals(config.getListeId("onep"))) {
2193
				creerChoixUniqueBoutonRadio(materielConservationCeRGrpChp, listeValeurs);
2194
				materielConservationCp.add(materielConservationCeRGrpChp);
2195
				materielConservationCp.layout();
2196
			}
2197
			if (listeValeurs.getId().equals(config.getListeId("autreMateriel"))) {
2198
				autreMaterielAutreChp = new TextField<String>();
2199
				creerChoixMultipleCac(autreMaterielTrukCp, autreMaterielTrukCacGrpChp, listeValeurs, autreMaterielAutreChp);
2200
			}
2201
			if (listeValeurs.getId().equals(config.getListeId("poisonTraitement"))) {
2202
				poisonTraitementAutreChp = new TextField<String>();
2203
				creerChoixMultipleCac(poisonTraitementTrukCp, poisonTraitementTrukCacGrpChp, listeValeurs, poisonTraitementAutreChp);
2204
			}
2205
			if (listeValeurs.getId().equals(config.getListeId("insecteTraitement"))) {
2206
				if (traitementTrukCp != null && traitementTrukCp.getItemByItemId("traitementTrukCacGrpChp") == null) {
2207
					traitementTrukCacGrpChp.setId("traitementTrukCacGrpChp");
2208
					traitementAutreChp = new TextField<String>();
2209
					creerChoixMultipleCac(traitementTrukCp, traitementTrukCacGrpChp, listeValeurs, traitementAutreChp);
2210
				}
2211
				if (insecteTraitementTrukCp != null && insecteTraitementTrukCp.getItemByItemId("insecteTraitementTrukCacGrpChp") == null) {
2212
					insecteTraitementTrukCacGrpChp.setId("insecteTraitementTrukCacGrpChp");
2213
					insecteTraitementAutreChp = new TextField<String>();
2214
					creerChoixMultipleCac(insecteTraitementTrukCp, insecteTraitementTrukCacGrpChp, listeValeurs, insecteTraitementAutreChp);
2215
				}
2216
			}
2217
			if (listeValeurs.getId().equals(config.getListeId("actionValorisation"))) {
2218
				actionAutreChp = new TextField<String>();
2219
				creerChoixMultipleCac(actionTrukCp, actionTrukCacGrpChp, listeValeurs, actionAutreChp);
2220
			}
2221
			if (listeValeurs.getId().equals(config.getListeId("continentEtFr"))) {
2222
				provenanceRechercheAutreChp = new TextField<String>();
2223
				creerChoixMultipleCac(provenanceRechercheTrukCp, provenanceRechercheTrukCacGrpChp, listeValeurs, provenanceRechercheAutreChp);
2224
			}
2225
			if (listeValeurs.getId().equals(config.getListeId("typeRecherche"))) {
2226
				typeRechercheAutreChp = new TextField<String>();
2227
				creerChoixMultipleCac(typeRechercheTrukCp, typeRechercheTrukCacGrpChp, listeValeurs, typeRechercheAutreChp);
2228
			}
2229
			//GWT.log("La liste #"+listeValeurs.getId()+" a été reçue!", null);
2230
		} else {
2231
			GWT.log("La liste #"+listeValeurs.getId()+" ne contient aucune valeurs!", null);
91 jpm 2232
		}
639 jp_milcent 2233
	}
2234
 
2235
	private void rafraichirProjetListe(ProjetListe projets) {
686 jp_milcent 2236
		List<Projet> liste = projets.toList();
639 jp_milcent 2237
		projetsMagazin.removeAll();
2238
		projetsMagazin.add(liste);
2239
		projetsCombo.setStore(projetsMagazin);
69 jpm 2240
	}
243 jp_milcent 2241
 
609 jp_milcent 2242
	private void testerLancementRafraichirPersonnel() {
1208 cyprien 2243
Debug.log("==> BEGIN StructureForm.testerLancementRafraichirPersonnel()");
2244
 
609 jp_milcent 2245
		decompteRafraichissementPersonnel--;
2246
		if (decompteRafraichissementPersonnel == 0) {
2247
			// Nous rechargeons la liste du Personnel
2248
			rafraichirPersonnel();
1208 cyprien 2249
		}
2250
Debug.log("==> END StructureForm.testerLancementRafraichirPersonnel()");
609 jp_milcent 2251
	}
2252
 
243 jp_milcent 2253
	private void rafraichirPersonnel() {
1208 cyprien 2254
Debug.log("==> BEGIN StructureForm.rafraichirPersonnel()");
2255
 
609 jp_milcent 2256
		decompteRafraichissementPersonnel = 0;
295 jp_milcent 2257
		if (mode.equals(MODE_MODIFIER)) {
609 jp_milcent 2258
			initialiserGrillePersonnelEnModification();
295 jp_milcent 2259
		} else if (mode.equals(MODE_AJOUTER)) {
2260
			initialiserGrillePersonnelEnAjout();
2261
		}
1208 cyprien 2262
Debug.log("==> END StructureForm.rafraichirPersonnel()");
243 jp_milcent 2263
	}
2264
 
2265
	private void rafraichirPersonneExistante(String nom) {
245 jp_milcent 2266
		mediateur.selectionnerPersonneParNomComplet(this, null, nom+"%");
243 jp_milcent 2267
	}
295 jp_milcent 2268
 
2269
	private void ajouterMembreAGrillePersonnel(StructureAPersonne personnel) {
2270
		grillePersonnel.stopEditing();
306 jp_milcent 2271
		personnelGrilleMagazin.insert(personnel, 0);
295 jp_milcent 2272
		grillePersonnel.startEditing(0, 0);
2273
	}
2274
 
2275
	private void initialiserGrillePersonnelEnAjout() {
2276
		personnelGrilleMagazin.removeAll();
2277
		StructureAPersonne conservateurDesCollections = new StructureAPersonne(StructureAPersonne.FONCTION_CONSERVATEUR, StructureAPersonne.ROLE_EQUIPE, StructureAPersonne.ETAT_AJOUTE);
2278
		ajouterMembreAGrillePersonnel(conservateurDesCollections);
2279
		StructureAPersonne directeurDuPersonnel = new StructureAPersonne(StructureAPersonne.FONCTION_DIRECTEUR, StructureAPersonne.ROLE_EQUIPE, StructureAPersonne.ETAT_AJOUTE);
2280
		ajouterMembreAGrillePersonnel(directeurDuPersonnel);
609 jp_milcent 2281
		personnelOnglet.layout();
295 jp_milcent 2282
	}
2283
 
1208 cyprien 2284
	private void initialiserGrillePersonnelEnModification() {
2285
		mediateur.selectionnerStructureAPersonne(this, identification.getId(), StructureAPersonne.ROLE_EQUIPE);
295 jp_milcent 2286
	}
1208 cyprien 2287
}