Subversion Repositories eFlore/Applications.coel

Rev

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

Rev Author Line No. Line
127 gduche 1
package org.tela_botanica.client.vues;
2
 
283 gduche 3
import java.util.ArrayList;
352 gduche 4
import java.util.Collection;
376 gduche 5
import java.util.Date;
276 gduche 6
import java.util.HashMap;
283 gduche 7
import java.util.Iterator;
352 gduche 8
import java.util.LinkedList;
283 gduche 9
import java.util.List;
276 gduche 10
 
11
import org.tela_botanica.client.ComposantClass;
12
import org.tela_botanica.client.Mediateur;
13
import org.tela_botanica.client.RegistreId;
519 gduche 14
import org.tela_botanica.client.images.Images;
127 gduche 15
import org.tela_botanica.client.interfaces.Rafraichissable;
283 gduche 16
import org.tela_botanica.client.modeles.Configuration;
293 gduche 17
 
352 gduche 18
import org.tela_botanica.client.modeles.Information;
286 gduche 19
import org.tela_botanica.client.modeles.Personne;
352 gduche 20
import org.tela_botanica.client.modeles.PersonneListe;
456 gduche 21
import org.tela_botanica.client.modeles.Projet;
22
import org.tela_botanica.client.modeles.ProjetListe;
668 gduche 23
import org.tela_botanica.client.modeles.Utilisateur;
280 gduche 24
import org.tela_botanica.client.modeles.Valeur;
283 gduche 25
import org.tela_botanica.client.modeles.ValeurListe;
622 gduche 26
import org.tela_botanica.client.util.UtilString;
127 gduche 27
 
488 gduche 28
import com.extjs.gxt.ui.client.event.Events;
276 gduche 29
import com.extjs.gxt.ui.client.Registry;
30
import com.extjs.gxt.ui.client.Style.HorizontalAlignment;
519 gduche 31
import com.extjs.gxt.ui.client.Style.IconAlign;
283 gduche 32
import com.extjs.gxt.ui.client.Style.Scroll;
386 gduche 33
 
376 gduche 34
import com.extjs.gxt.ui.client.binding.FormBinding;
386 gduche 35
 
488 gduche 36
import com.extjs.gxt.ui.client.event.ButtonEvent;
276 gduche 37
import com.extjs.gxt.ui.client.event.ComponentEvent;
488 gduche 38
import com.extjs.gxt.ui.client.event.IconButtonEvent;
276 gduche 39
import com.extjs.gxt.ui.client.event.KeyListener;
446 gduche 40
import com.extjs.gxt.ui.client.event.Listener;
280 gduche 41
import com.extjs.gxt.ui.client.event.SelectionChangedEvent;
42
import com.extjs.gxt.ui.client.event.SelectionChangedListener;
276 gduche 43
import com.extjs.gxt.ui.client.event.SelectionListener;
280 gduche 44
import com.extjs.gxt.ui.client.store.ListStore;
127 gduche 45
import com.extjs.gxt.ui.client.widget.LayoutContainer;
319 gduche 46
import com.extjs.gxt.ui.client.widget.MessageBox;
338 gduche 47
 
386 gduche 48
import com.extjs.gxt.ui.client.widget.Info;
276 gduche 49
import com.extjs.gxt.ui.client.widget.TabItem;
50
import com.extjs.gxt.ui.client.widget.TabPanel;
293 gduche 51
import com.extjs.gxt.ui.client.widget.Text;
283 gduche 52
 
356 gduche 53
import com.extjs.gxt.ui.client.widget.button.Button;
54
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
280 gduche 55
import com.extjs.gxt.ui.client.widget.form.ComboBox;
56
import com.extjs.gxt.ui.client.widget.form.DateField;
276 gduche 57
import com.extjs.gxt.ui.client.widget.form.FieldSet;
352 gduche 58
import com.extjs.gxt.ui.client.widget.form.FormPanel;
293 gduche 59
import com.extjs.gxt.ui.client.widget.form.HiddenField;
276 gduche 60
import com.extjs.gxt.ui.client.widget.form.LabelField;
446 gduche 61
import com.extjs.gxt.ui.client.widget.form.Radio;
62
import com.extjs.gxt.ui.client.widget.form.RadioGroup;
286 gduche 63
import com.extjs.gxt.ui.client.widget.form.TextArea;
276 gduche 64
import com.extjs.gxt.ui.client.widget.form.TextField;
456 gduche 65
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
276 gduche 66
import com.extjs.gxt.ui.client.widget.layout.ColumnData;
67
import com.extjs.gxt.ui.client.widget.layout.ColumnLayout;
68
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
319 gduche 69
import com.extjs.gxt.ui.client.widget.layout.FormData;
276 gduche 70
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
356 gduche 71
import com.extjs.gxt.ui.client.widget.layout.RowLayout;
276 gduche 72
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
386 gduche 73
import com.google.gwt.core.client.GWT;
339 gduche 74
import com.google.gwt.i18n.client.DateTimeFormat;
276 gduche 75
import com.google.gwt.user.client.ui.Widget;
127 gduche 76
 
446 gduche 77
public class PersonneForm extends FormPanel implements Rafraichissable {
127 gduche 78
 
276 gduche 79
	/*--------------------------------------------------------------------------------------
80
	 * 		VARIABLES
81
	 * -------------------------------------------------------------------------------------
82
	 */
83
 
84
	private TabItem tiIdentite, tiAdresses, tiInfosNat;
283 gduche 85
	private Mediateur mediateur = Registry.get(RegistreId.MEDIATEUR);
86
	private Configuration config = (Configuration) Registry.get(RegistreId.CONFIG);
376 gduche 87
	private Personne personneSelectionnee, personneSauvegarde = null;
456 gduche 88
	private String mode = "";
276 gduche 89
 
657 gduche 90
	//hmIdentite[...] référence par une chaine de caractère tous les composants de l'onglet Identite
91
	private HashMap<String, Widget>hmIdentite = new HashMap<String, Widget>();
92
	private HashMap<String, Widget>hmAdresse = new HashMap<String, Widget>();
93
	private HashMap<String, Widget>hmInfosNat = new HashMap<String, Widget>();
94
	private FormData fd100 = new FormData("1");
95
 
668 gduche 96
	private Button enregistrer, enregistrerEtRevenir;
97
 
456 gduche 98
	public static final String MODE_AJOUTER = "AJOUT";
99
	public static final String MODE_MODIFIER = "MODIF";
100
 
101
 
376 gduche 102
	private FormBinding binding = null;
103
 
276 gduche 104
	/*--------------------------------------------------------------------------------------
105
	 * 		CONSTRUCTEUR
106
	 * -------------------------------------------------------------------------------------
107
	 */
446 gduche 108
 
276 gduche 109
	/**
110
	 * Constructeur du panneau
111
	 *
112
	 * Initialise le panneau et ajoute une barre d'outils à deux boutons (réinitialiser le
113
	 * formulaire et annuler la saisie).
114
	 *
115
	 * */
456 gduche 116
	public PersonneForm(String mode) {
117
		this.mode = mode;
386 gduche 118
		initialiserComposants();
352 gduche 119
	}
120
 
386 gduche 121
	public void initialiserComposants()	{
352 gduche 122
 
376 gduche 123
		personneSelectionnee = new Personne();
124
		personneSauvegarde = new Personne();
125
 
283 gduche 126
		initialiserPanneau();
276 gduche 127
 
356 gduche 128
		ButtonBar barreOutilsBas = new ButtonBar();
488 gduche 129
		//barreOutilsBas.setButtonAlign(HorizontalAlignment.CENTER);
130
		barreOutilsBas.setAlignment(HorizontalAlignment.CENTER);
276 gduche 131
 
352 gduche 132
		ajouterBoutonEnregistrer(barreOutilsBas);
133
		ajouterBoutonEnregistrerEtRevenir(barreOutilsBas);
134
		ajouterBoutonAnnuler(barreOutilsBas);
668 gduche 135
		gererEtatActivationBouton();
276 gduche 136
 
352 gduche 137
		setBottomComponent(barreOutilsBas);
276 gduche 138
 
352 gduche 139
		ToolBar barreOutilsHaut = new ToolBar();
140
		ajouterBoutonReinitialiser(barreOutilsHaut);
141
		setTopComponent(barreOutilsHaut);
338 gduche 142
 
276 gduche 143
		initialiserOnglets();
144
 
145
		creerComposantsIdentite();
293 gduche 146
		creerComposantsAdresse();
280 gduche 147
 
352 gduche 148
		layout();
338 gduche 149
 
376 gduche 150
		binderPersonne(personneSelectionnee);
276 gduche 151
	}
152
 
153
	/*---------------------------------------------------------------------------------------
154
	 * 		SOUS-METHODES
155
	 * --------------------------------------------------------------------------------------
156
	 */
157
	/**
158
	 * Inialise le panneau donné
159
	 *
160
	 * @param contentPanel le panneau à initialiser
161
	 * */
283 gduche 162
	public void initialiserPanneau()	{
276 gduche 163
 
283 gduche 164
		setCollapsible(false);
461 gduche 165
		if (this.mode.equals(MODE_AJOUTER))	{
166
			setHeading(mediateur.i18nC.personneModeAjout());
519 gduche 167
			setIcon(Images.ICONES.ajouter());
461 gduche 168
		} else 	{
169
			setHeading(mediateur.i18nC.personneModeModifier());
519 gduche 170
			setIcon(Images.ICONES.formModifier());
461 gduche 171
		}
283 gduche 172
		setButtonAlign(HorizontalAlignment.CENTER);
386 gduche 173
		setLayout(new FitLayout());
376 gduche 174
		setBodyBorder(false);
175
		setBorders(false);
176
		setPadding(0);
177
		setWidth("100%");
446 gduche 178
 
276 gduche 179
	}
180
 
181
	/**
182
	 * Crée les onglets identité, adresse et informations naturaliste
183
	 *
184
	 * */
185
	public void initialiserOnglets()	{
186
		//TabPanel
187
		TabPanel formulaireOnglets = new TabPanel();
188
 
189
		//Tab 1 : identite
461 gduche 190
		tiIdentite = new TabItem(mediateur.i18nC.personneIdentite());
276 gduche 191
		tiIdentite.setLayout(new FormLayout());
283 gduche 192
		tiIdentite.setScrollMode(Scroll.AUTO);
446 gduche 193
 
276 gduche 194
		formulaireOnglets.add(tiIdentite);
293 gduche 195
		hmIdentite.put("tiIdentite", tiIdentite);
276 gduche 196
 
197
		//Tab 2 : Adresse
461 gduche 198
		tiAdresses = new TabItem(mediateur.i18nC.adresse());
304 gduche 199
		tiAdresses.setLayout(new FormLayout());
283 gduche 200
		tiAdresses.setScrollMode(Scroll.AUTO);
446 gduche 201
 
276 gduche 202
		formulaireOnglets.add(tiAdresses);
203
 
204
		//Tab 3 : Infos Naturalistes
461 gduche 205
		tiInfosNat = new TabItem(mediateur.i18nC.personneInfoNat());
276 gduche 206
		tiInfosNat.setLayout(new FormLayout());
283 gduche 207
		tiInfosNat.setScrollMode(Scroll.AUTO);
446 gduche 208
 
276 gduche 209
		formulaireOnglets.add(tiInfosNat);
210
		add(formulaireOnglets);
211
	}
212
 
213
	/**
214
	 * Crée les widgets pour l'onglet identité
215
	 *
216
	 * */
217
 
218
 
219
	public void creerComposantsIdentite()	{
220
 
676 gduche 221
		// Gestion de l'affichage en colonnes : 3 Layout container : principal, gauche & droite
222
		LayoutContainer left = new LayoutContainer();
223
		left.setLayout(new FormLayout());
224
		LayoutContainer right = new LayoutContainer();
225
		right.setLayout(new FormLayout());
456 gduche 226
 
676 gduche 227
		LayoutContainer main = new LayoutContainer();
228
 
229
		main.add(left, new ColumnData(.45));
230
		main.add(right, new ColumnData(.45));
231
 
232
		main.setLayout(new ColumnLayout());
233
		main.setHeight("100%");
234
		main.setScrollMode(Scroll.AUTO);
235
 
236
		// Création des champs
237
		FormLayout formLayout = new FormLayout();
238
		formLayout.setLabelAlign(LabelAlign.LEFT);
239
 
240
		FieldSet fsProjet = new FieldSet();
241
		fsProjet.setHeading(mediateur.i18nC.menuProjet());
242
		fsProjet.setLayout(new FormLayout());
243
 
244
		ListStore<Projet> storeProjets = new ListStore<Projet>();
245
		ComboBox cbProjets = new ComboBox<Projet>();
246
		cbProjets.setFieldLabel(mediateur.i18nC.personneProjet()+ " :");
247
		cbProjets.setEmptyText(mediateur.i18nC.txtListeProjetDefaut());
248
		cbProjets.setLabelSeparator("");
249
		cbProjets.setDisplayField("nom");
250
		cbProjets.setEditable(false);
251
		cbProjets.setTriggerAction(TriggerAction.ALL);
252
		cbProjets.setStore(storeProjets);
253
		cbProjets.setAllowBlank(false);
254
		fsProjet.add(cbProjets);
255
 
256
		hmIdentite.put("cbProjets", cbProjets);
257
 
258
		mediateur.selectionnerProjets(this);
456 gduche 259
 
676 gduche 260
		left.add(fsProjet);
456 gduche 261
 
676 gduche 262
		FieldSet fsNoms = new FieldSet();
263
		fsNoms.setHeading("Noms");
264
		fsNoms.setLayout(formLayout);
456 gduche 265
 
676 gduche 266
		// Nom complet : Affiché que si valeurs saisies
267
		LabelField nomComplet = new LabelField();
268
		nomComplet.setFieldLabel(mediateur.i18nC.personneNomComplet() +" :");
269
		nomComplet.hide();
456 gduche 270
 
676 gduche 271
		fsNoms.add(nomComplet);
272
		hmIdentite.put("nomComplet", nomComplet);
276 gduche 273
 
676 gduche 274
		//Préfixe
275
		ListStore<Valeur> storePrefixe = new ListStore<Valeur>();
276
		ComboBox<Valeur> cbPrefixe = new ComboBox<Valeur>();
277
		cbPrefixe.setStore(storePrefixe);
278
		cbPrefixe.setDisplayField("nom");
279
		cbPrefixe.setEmptyText("Choisissez le préfixe:");
280
		cbPrefixe.setFieldLabel("Prefix");
281
 
282
		fsNoms.add(cbPrefixe);
283
		hmIdentite.put("cbPrefixe", cbPrefixe);
284
 
285
		mediateur.obtenirListeValeurEtRafraichir(this, "prefixe");
286
 
287
		//Prénom
288
		TextField<String> tfPrenom = new TextField<String>();
289
		tfPrenom.setFieldLabel("Prénom");
290
		tfPrenom.setName("prenom");
291
 
292
		fsNoms.add(tfPrenom);
293
		hmIdentite.put("tfPrenom", tfPrenom);
294
 
295
		//Nom
296
		TextField<String> tfNom = new TextField<String>();
297
		tfNom.setFieldLabel("Nom");
298
		tfNom.setAllowBlank(false);
299
		tfNom.setName("nom");
300
 
301
		fsNoms.add(tfNom);
302
		hmIdentite.put("tfNom", tfNom);
303
 
304
		//Suffixe
305
		ListStore<Valeur> storeSuffixe = new ListStore<Valeur>();
306
		ComboBox<Valeur> cbSuffixe = new ComboBox<Valeur>();
307
		cbSuffixe.setStore(storeSuffixe);
308
		cbSuffixe.setFieldLabel("Suffixe");
309
		cbSuffixe.setDisplayField("nom");
310
		cbSuffixe.setEmptyText("Choisissez un suffixe:");
311
 
312
		fsNoms.add(cbSuffixe);
313
		hmIdentite.put("cbSuffixe", cbSuffixe);
314
 
315
		mediateur.obtenirListeValeurEtRafraichir(this, "suffixes");
316
 
317
		TextField<String> tfNomAutre = new TextField();
318
		tfNomAutre.setFieldLabel("Autres noms");
319
		tfNomAutre.setName("truk_nom_autre");
320
 
321
		fsNoms.add(tfNomAutre);
322
		hmIdentite.put("tfNomAutre", tfNomAutre);
323
 
324
		TextField<String> tfAbreviation = new TextField<String>();
325
		tfAbreviation.setFieldLabel("Abréviation");
326
		tfAbreviation.setName("abreviation");
327
 
328
		fsNoms.add(tfAbreviation);
329
		hmIdentite.put("tfAbreviation", tfAbreviation);
330
 
331
		//Abréviation autres
332
		TextField<String> tfAbreviationAutre = new TextField<String>();
333
		tfAbreviationAutre.setFieldLabel("Autres Abrév.");
334
		tfAbreviationAutre.setName("truk_abreviation_autre");
335
 
336
		fsNoms.add(tfAbreviationAutre);
337
		hmIdentite.put("tfAbreviationAutre", tfAbreviationAutre);
376 gduche 338
 
676 gduche 339
		left.add(fsNoms);
340
 
341
		formLayout = new FormLayout();
342
		formLayout.setLabelAlign(LabelAlign.LEFT);
343
 
344
		FieldSet fsNaissance = new FieldSet();
345
		fsNaissance.setHeading("Naissance");
346
		fsNaissance.setLayout(formLayout);
347
 
348
		DateField dfDateNaissance = new DateField();
349
		dfDateNaissance.getPropertyEditor().setFormat(DateTimeFormat.getFormat("dd/MM/yyyy"));
350
		dfDateNaissance.setFieldLabel("Date");
351
		dfDateNaissance.getMessages().setInvalidText("La valeur saisie n'est pas une date valide. La date doit être au format «jj/mm/aaaa».");
352
 
353
		fsNaissance.add(dfDateNaissance);
354
		hmIdentite.put("dfDateNaissance", dfDateNaissance);
355
 
356
		// Lieu naissance
357
		TextField<String> tfLieuNaissance = new TextField();
358
		tfLieuNaissance.setFieldLabel("Lieu");
359
		tfLieuNaissance.setName("naissance_lieu");
360
 
361
		fsNaissance.add(tfLieuNaissance);
362
		hmIdentite.put("tfLieuNaissance", tfLieuNaissance);
276 gduche 363
 
676 gduche 364
		left.add(fsNaissance);
365
 
366
		formLayout = new FormLayout();
367
		formLayout.setLabelAlign(LabelAlign.LEFT);
368
 
369
		FieldSet fsDeces = new FieldSet();
370
		fsDeces.setHeading("Décès");
371
		fsDeces.setLayout(formLayout);
276 gduche 372
 
676 gduche 373
		Radio rbEstDecedee = new Radio();
374
		rbEstDecedee.setBoxLabel("oui");
375
 
376
		rbEstDecedee.addListener(Events.Change, new Listener<ComponentEvent>() {
446 gduche 377
 
676 gduche 378
			public void handleEvent(ComponentEvent be) {
379
				if(((Radio) be.getComponent()).getValue().equals(true))	{
380
					((DateField) hmIdentite.get("dfDateDeces")).setVisible(true);
381
					((TextField) hmIdentite.get("tfLieuDeces")).setVisible(true);
382
				} else	{
383
					((DateField) hmIdentite.get("dfDateDeces")).setVisible(false);
384
					((TextField) hmIdentite.get("tfLieuDeces")).setVisible(false);
385
				}
386
			}
387
		});
446 gduche 388
 
676 gduche 389
		hmIdentite.put("rbEstDecedee", rbEstDecedee);
390
 
391
		Radio rbNestPasDecedee = new Radio();
392
		rbNestPasDecedee.setBoxLabel("non");
393
		rbNestPasDecedee.setValue(true);
394
 
395
		RadioGroup rbgDeces = new RadioGroup();
396
		rbgDeces.setFieldLabel("Est décédée");
397
		rbgDeces.add(rbEstDecedee);
398
		rbgDeces.add(rbNestPasDecedee);
399
 
400
		fsDeces.add(rbgDeces);
401
 
402
		DateField dfDateDeces = new DateField();
403
		dfDateDeces.getPropertyEditor().setFormat(DateTimeFormat.getFormat("dd/MM/yyyy"));
404
		dfDateDeces.setFormatValue(true);
405
		dfDateDeces.getMessages().setInvalidText("La valeur saisie n'est pas une date valide. La date doit être au format «jj/mm/aaaa».");
406
		dfDateDeces.setFieldLabel("Date");
407
		dfDateDeces.setVisible(false);
408
 
409
		fsDeces.add(dfDateDeces);
410
		hmIdentite.put("dfDateDeces", dfDateDeces);
411
 
412
		TextField<String> tfLieuDeces = new TextField();
413
		tfLieuDeces.setFieldLabel("Lieu");
414
		tfLieuDeces.setName("deces_lieu");
415
		tfLieuDeces.setVisible(false);
416
 
417
		fsDeces.add(tfLieuDeces);
418
		hmIdentite.put("tfLieuDeces", tfLieuDeces);
376 gduche 419
 
676 gduche 420
		left.add(fsDeces);
276 gduche 421
 
676 gduche 422
		tiIdentite.add(main);
283 gduche 423
 
676 gduche 424
		FieldSet fsContactTel = new FieldSet();
425
		fsContactTel.setHeading("Contact - Téléphones");
426
		fsContactTel.setLayout(new RowLayout());
427
 
428
		right.add(fsContactTel);
429
		hmIdentite.put("fsContactTel", fsContactTel);
376 gduche 430
 
676 gduche 431
		LayoutContainer lcTelephone = new LayoutContainer();
432
		lcTelephone.setLayout(new ColumnLayout());
376 gduche 433
 
676 gduche 434
		TextField tfTelephone = new TextField();
435
		tfTelephone.setFieldLabel("tel");
436
		lcTelephone.add(tfTelephone, new ColumnData(0.40));
437
 
438
		hmIdentite.put("tfTelephone", tfTelephone);
439
 
440
		ListStore<Valeur> storeTel = new ListStore<Valeur>();
441
		ComboBox<Valeur> cbTelephone = new ComboBox<Valeur>();
442
		cbTelephone.setDisplayField("nom");
443
		cbTelephone.setEmptyText("Choisissez:");
444
		cbTelephone.setStore(storeTel);
445
 
446
		lcTelephone.add(cbTelephone, new ColumnData(0.40));
447
		hmIdentite.put("cbTelephone", cbTelephone);
448
 
449
		mediateur.obtenirListeValeurEtRafraichir(this, "tel");
450
 
451
		Button bAjouter = new Button();
452
		bAjouter.setIcon(Images.ICONES.ajouter());
453
		// TODO : taille du bouton trop grande
454
		bAjouter.addSelectionListener(
455
		new SelectionListener<ButtonEvent>() {
456
			public void componentSelected(ButtonEvent ce) {
457
 
458
				String strTelephone = ((TextField<String>) hmIdentite.get("tfTelephone")).getValue();
459
				if ((strTelephone==null)||(strTelephone.trim().equals("")))	{
460
					MessageBox.alert("Erreur de saisie", "Vous devez saisir un numéro de téléphone", null);
461
				} else if (hmIdentite.get("tel-" + strTelephone) != null){
462
					MessageBox.alert("Erreur de saisie", "Le numéro saisi est déjà présent dans la liste", null);
463
				} else {
464
						String strValeurTypeTel = "";
465
						String idTel = "";
466
						Valeur valeurTypeTel = ((ComboBox<Valeur>) hmIdentite.get("cbTelephone")).getValue();
283 gduche 467
 
676 gduche 468
						if (valeurTypeTel != null)	{
469
							strValeurTypeTel = valeurTypeTel.getNom();
470
							idTel = valeurTypeTel.get("abreviation");
471
						}	else {
472
							strValeurTypeTel = ((ComboBox<Valeur>) hmIdentite.get("cbTelephone")).getRawValue();
473
							idTel = strValeurTypeTel;
474
						}
475
 
476
						if (strValeurTypeTel.trim().equals(""))	{
477
							MessageBox.alert("Erreur de saisie", "Vous devez saisir un type de téléphone", null);
478
						}	else {
479
							ajouterTelephone(strTelephone, strValeurTypeTel, idTel);
480
						}
481
					}
482
				}
483
			}
484
		);
276 gduche 485
 
676 gduche 486
		lcTelephone.add(bAjouter, new ColumnData(0.15));
487
 
488
		HiddenField<String> hfTelephone = new HiddenField<String>();
489
		add(hfTelephone);
490
		hmIdentite.put("hfTelephone", hfTelephone);
491
 
492
		fsContactTel.add(lcTelephone);
493
 
494
		FieldSet fsContact = new FieldSet();
495
		fsContact.setHeading("Contact - Autres");
496
		fsContact.setId("fsContact");
497
		fsContact.setLayout(new RowLayout());
498
 
499
		right.add(fsContact);
500
		hmIdentite.put("fsContact", fsContact);
501
 
502
		LabelField lfCourriel = new LabelField();
503
		lfCourriel.setText("<b>Courriels:</b>");
504
 
505
		fsContact.add(lfCourriel);
506
 
507
		LayoutContainer lcCourriel = new LayoutContainer();
508
		lcCourriel.setLayout(new ColumnLayout());
446 gduche 509
 
676 gduche 510
		TextField tfCourriel = new TextField();
511
		lcCourriel.add(tfCourriel, new ColumnData(0.80));
512
 
513
		HiddenField hfHiddenCourriel = new HiddenField();
514
		hfHiddenCourriel.setId("tfHiddenCourriel");
515
		hfHiddenCourriel.setValue("");
516
 
517
		add(hfHiddenCourriel);
518
		hmIdentite.put("hfHiddenCourriel", hfHiddenCourriel);
519
		hmIdentite.put("tfCourriel", tfCourriel);
520
 
521
		Button bAjouterCourriel = new Button();
522
		bAjouterCourriel.setIcon(Images.ICONES.ajouter());
523
		bAjouterCourriel.addSelectionListener(
524
			new SelectionListener<ButtonEvent>() {
525
 
526
				public void componentSelected(ButtonEvent ce) {
376 gduche 527
 
676 gduche 528
					String strEmail = ((TextField<String>) hmIdentite.get("tfCourriel")).getValue();
529
					if ((strEmail==null)||(strEmail.trim().equals("")))	{
530
						MessageBox.alert("Erreur de saisie", "Vous devez saisir une adresse", null);
531
					} else if (hmIdentite.get("email-" + strEmail) != null){
532
						MessageBox.alert("Erreur de saisie", "L'adresse saisie est déjà dans la liste", null);
533
					} else {
376 gduche 534
 
676 gduche 535
						if (!strEmail.matches("(\\w+)@(\\w+\\.)(\\w+)(\\.\\w+)*"))	{
536
							MessageBox.alert("Erreur de saisie", "L'adresse n'est pas au bon format (ex: me@domain.com)", null);
537
						} else if (strEmail.length()>255){
538
							MessageBox.alert("Erreur de saisie", "L'adresse ne peut dépasser 255 caractères", null);
539
						} else {
540
							ajouterCourriel(strEmail);
541
						}
446 gduche 542
 
676 gduche 543
					}
376 gduche 544
 
676 gduche 545
 
546
				}
547
			});
276 gduche 548
 
676 gduche 549
		lcCourriel.add(bAjouterCourriel, new ColumnData(0.15));
376 gduche 550
 
676 gduche 551
		fsContact.add(lcCourriel);
376 gduche 552
 
676 gduche 553
		LayoutContainer lcCourrielContainer = new LayoutContainer(new RowLayout());
554
 
555
		fsContact.add(lcCourrielContainer);
556
		hmIdentite.put("lcCourrielContainer", lcCourrielContainer);
557
 
558
 
559
		LabelField lfUrl = new LabelField();
560
		lfUrl.setText("<b>Sites Web:</b>");
561
 
562
		fsContact.add(lfUrl);
563
 
564
		LayoutContainer lcUrl = new LayoutContainer(new ColumnLayout());
565
		hmIdentite.put("lcUrl", lcUrl);
566
 
567
		HiddenField<String> hfUrl = new HiddenField<String>();
568
		hmIdentite.put("hfUrl", hfUrl);
569
		add(hfUrl);
376 gduche 570
 
676 gduche 571
		TextField tfUrl = new TextField();
572
		tfUrl.setValue("http://");
376 gduche 573
 
676 gduche 574
		lcUrl.add(tfUrl, new ColumnData(0.8));
575
		hmIdentite.put("tfUrl", tfUrl);
576
 
577
		Button ibAjouterUrl = new Button();
578
		ibAjouterUrl.setIcon(Images.ICONES.ajouter());
579
		ibAjouterUrl.addSelectionListener(new SelectionListener<ButtonEvent>() {
580
 
581
			public void componentSelected(ButtonEvent ce) {
582
 
583
				TextField<String> tfUrl = (TextField) hmIdentite.get("tfUrl");
584
				String strUrl = tfUrl.getValue();
585
 
586
				if ((strUrl == null)||(strUrl.trim().equals("http://"))||(strUrl.trim().equals("")))	{
587
					MessageBox.alert("Erreur de saisie", "Vous devez saisir un URL", null);
588
				} else if(hmIdentite.get("url-" + strUrl) != null)	{
589
					MessageBox.alert("Erreur de saisie", "L'url est déjà présente dans la liste.", null);
590
				}	else	{
591
					tfUrl.setValue("http://");
592
						//if (!strUrl.matches("[a-z]{3,}://[a-z0-9-]+.[.a-z0-9-]+(?::[0-9]*)?"))	{
593
						if (!strUrl.startsWith("http://"))	{
594
							MessageBox.alert("Erreur de saisie", "L'adresse n'est pas au bon format (ex: http://www.domain.com)", null);
595
						} else if (strUrl.length()>255){
596
							MessageBox.alert("Erreur de saisie", "L'adresse ne peut dépasser 255 caractères", null);
597
						} else {
598
							ajouterUrl(strUrl);
599
						}
376 gduche 600
 
676 gduche 601
				}
602
 
603
			}
604
		});
286 gduche 605
 
676 gduche 606
		lcUrl.add(ibAjouterUrl, new ColumnData(0.15));
607
		fsContact.add(lcUrl);
286 gduche 608
 
676 gduche 609
		LayoutContainer lcUrlContainer = new LayoutContainer(new RowLayout());
386 gduche 610
 
676 gduche 611
		fsContact.add(lcUrlContainer);
612
		hmIdentite.put("lcUrlContainer", lcUrlContainer);
613
 
614
		FieldSet fsAutresInfos = new FieldSet();
615
		fsAutresInfos.setHeading("Autres informations");
616
 
617
		formLayout = new FormLayout();
618
		formLayout.setLabelAlign(LabelAlign.LEFT);
619
		fsAutresInfos.setLayout(formLayout);
356 gduche 620
 
386 gduche 621
 
676 gduche 622
		formLayout = new FormLayout();
623
		formLayout.setLabelAlign(LabelAlign.TOP);
624
		LayoutContainer lcAutreInformations1 = new LayoutContainer(formLayout);
625
 
626
		//Civilité
627
		ListStore<Valeur> storeSexe = new ListStore<Valeur>();
628
		ComboBox<Valeur> cbSexe = new ComboBox<Valeur>();
629
		cbSexe.setStore(storeSexe);
630
		cbSexe.setFieldLabel("Sexe");
631
		cbSexe.setDisplayField("nom");
632
		cbSexe.setEmptyText("Choisissez le sexe:");
386 gduche 633
 
676 gduche 634
		lcAutreInformations1.add(cbSexe, fd100);
635
		hmIdentite.put("cbSexe", cbSexe);
386 gduche 636
 
676 gduche 637
		mediateur.obtenirListeValeurEtRafraichir(this, "sexe");
638
 
639
		//Description
640
		TextArea taDescription = new TextArea();
641
		taDescription.setEmptyText("Saisissez une description");
642
		taDescription.setFieldLabel("Description");
643
		taDescription.setWidth("100%");
644
		taDescription.setName("description");
645
 
646
		lcAutreInformations1.add(taDescription, fd100);
647
		hmIdentite.put("taDescription", taDescription);
648
 
649
		fsAutresInfos.add(lcAutreInformations1);
650
 
651
		// Logo
652
		LayoutContainer lcAutreInformations2 = new LayoutContainer();
653
		hmIdentite.put("lcAutreInformations2", lcAutreInformations2);
654
 
655
		LabelField lfUrlLogo = new LabelField();
656
		lfUrlLogo.setText("<b>Logo:</b>");
657
		lcAutreInformations2.add(lfUrlLogo);
658
 
659
		LayoutContainer lcUrlLogo = new LayoutContainer(new ColumnLayout());
660
		hmIdentite.put("lcUrlLogo", lcUrlLogo);
661
 
662
		TextField tfUrlLogo = new TextField();
663
		tfUrlLogo.setValue("http://");
664
 
665
		HiddenField<String> hfUrlLogo = new HiddenField<String>();
666
		hmIdentite.put("hfUrlLogo", hfUrlLogo);
386 gduche 667
 
676 gduche 668
		lcUrlLogo.add(tfUrlLogo, new ColumnData(0.8));
669
		hmIdentite.put("tfUrlLogo", tfUrlLogo);
670
 
671
		Button ibAjouterUrlLogo = new Button();
672
		ibAjouterUrlLogo.setIcon(Images.ICONES.ajouter());
673
		ibAjouterUrlLogo.addSelectionListener(new SelectionListener<ButtonEvent>() {
674
 
675
			public void componentSelected(ButtonEvent ce) {
676
 
677
				TextField<String> tfUrlLogo = (TextField) hmIdentite.get("tfUrlLogo");
678
				String strUrl = tfUrlLogo.getValue();
679
 
680
				if ((strUrl == null)||(strUrl.trim().equals("http://"))||(strUrl.trim().equals("")))	{
681
					MessageBox.alert("Erreur de saisie", "Vous devez saisir un URL", null);
682
				} else if(hmIdentite.get("url-" + strUrl) != null)	{
683
					MessageBox.alert("Erreur de saisie", "L'url est déjà présente dans la liste.", null);
684
				}	else	{
685
					tfUrlLogo.setValue("http://");
686
					//if (!strUrl.matches("[a-z]{3,}://[a-z0-9-]+.[.a-z0-9-]+(?::[0-9]*)?"))	{
687
					if (!strUrl.startsWith("http://"))	{
688
							MessageBox.alert("Erreur de saisie", "L'adresse n'est pas au bon format (ex: http://www.domain.com)", null);
689
						} else if (strUrl.length()>255){
690
							MessageBox.alert("Erreur de saisie", "L'adresse ne peut dépasser 255 caractères", null);
691
						} else {
692
							ajouterUrlLogo(strUrl);
386 gduche 693
						}
676 gduche 694
 
695
				}
696
 
697
			}
698
		});
386 gduche 699
 
676 gduche 700
		lcUrlLogo.add(ibAjouterUrlLogo, new ColumnData(0.15));
701
		lcAutreInformations2.add(lcUrlLogo);
386 gduche 702
 
676 gduche 703
		fsAutresInfos.add(lcAutreInformations2);
386 gduche 704
 
676 gduche 705
		TextArea taLogo = new TextArea();
706
		taLogo.setFieldLabel("Logos");
707
		taLogo.setWidth("100%");
708
		taLogo.setEmptyText("Saisissez les adresses des logos séparées par un saut de ligne");
709
		//fsAutresInfos.add(taLogo, fd100);
293 gduche 710
 
676 gduche 711
		hmIdentite.put("taLogo", taLogo);
293 gduche 712
 
676 gduche 713
		right.add(fsAutresInfos);
293 gduche 714
 
676 gduche 715
		// Ajout des évènements saisi
716
		KeyListener klNoms = new KeyListener()	{
717
			public void componentKeyUp(ComponentEvent ev)	{
718
				rafraichir(null);
719
			}
720
		};
721
 
722
		SelectionChangedListener<Valeur> selectionChange = new SelectionChangedListener<Valeur>() {
723
			public void selectionChanged(SelectionChangedEvent se) {
724
					rafraichir(null);
725
				}
726
		};
283 gduche 727
 
676 gduche 728
		cbPrefixe.addSelectionChangedListener(selectionChange);
729
		cbPrefixe.addKeyListener(klNoms);
730
		tfPrenom.addKeyListener(klNoms);
731
		tfNom.addKeyListener(klNoms);
732
		cbSuffixe.addSelectionChangedListener(selectionChange);
276 gduche 733
 
734
	}
735
 
293 gduche 736
	public void creerComposantsAdresse()	{
737
 
738
		// Gauche
739
		LayoutContainer left = new LayoutContainer();
740
		left.setLayout(new FormLayout());
741
 
742
		// Droite
743
		LayoutContainer right = new LayoutContainer();
744
		right.setLayout(new FormLayout());
745
 
746
		// Principal
747
		LayoutContainer main = new LayoutContainer();
748
		main.setLayout(new ColumnLayout());
749
 
750
		// Ajout au principal
751
		main.add(left, new ColumnData(.49));
752
		main.add(right, new ColumnData(.49));
753
 
754
		TextField<String> tfAdresse1 = new TextField();
755
		tfAdresse1.setFieldLabel("Adresse");
376 gduche 756
		tfAdresse1.setName("adresse_01");
319 gduche 757
		left.add(tfAdresse1, fd100);
293 gduche 758
		hmAdresse.put("tfAdresse1", tfAdresse1);
759
 
760
		TextField<String> tfAdresse2 = new TextField();
761
		tfAdresse2.setFieldLabel("Complément d'adresse");
376 gduche 762
		tfAdresse2.setName("adresse_02");
319 gduche 763
		left.add(tfAdresse2, fd100);
293 gduche 764
		hmAdresse.put("tfAdresse2", tfAdresse2);
765
 
766
		ComboBox<Valeur> cbPays = new ComboBox<Valeur>();
767
		cbPays.setFieldLabel("Pays");
768
		cbPays.setDisplayField("nom");
769
		cbPays.setEmptyText("Sélectionnez le pays:");
770
 
771
		ListStore<Valeur> storePays = new ListStore<Valeur>();
772
		cbPays.setStore(storePays);
773
 
319 gduche 774
		right.add(cbPays, fd100);
293 gduche 775
		hmAdresse.put("cbPays", cbPays);
776
 
777
		SelectionChangedListener<Valeur> selectionChange = new SelectionChangedListener<Valeur>() {
778
			public void selectionChanged(SelectionChangedEvent se) {
779
					// Rafraichir avec le pays sélectionné
780
					obtenirListeRegionParPays(((Valeur) se.getSelectedItem()).getAbreviation().toString());
781
 
782
				}
783
		};
784
 
785
		cbPays.addSelectionChangedListener(selectionChange);
786
 
787
 
788
		ComboBox<Valeur> cbRegion = new ComboBox<Valeur>();
789
		cbRegion.setFieldLabel("Region");
790
		cbRegion.setDisplayField("nom");
791
		cbRegion.setEmptyText("Sélectionnez la région:");
792
		cbRegion.setVisible(false);
793
 
794
		ListStore<Valeur> storeRegion = new ListStore<Valeur>();
795
		cbRegion.setStore(storeRegion);
796
 
352 gduche 797
 
319 gduche 798
		right.add(cbRegion, fd100);
293 gduche 799
		hmAdresse.put("cbRegion", cbRegion);
800
 
801
		TextField<String> tfBoitePostale = new TextField<String>();
802
		tfBoitePostale.setFieldLabel("Boite postale");
376 gduche 803
		tfBoitePostale.setName("bp");
804
 
319 gduche 805
		left.add(tfBoitePostale, fd100);
293 gduche 806
		hmAdresse.put("tfBoitePostale", tfBoitePostale);
807
 
808
		TextField<Integer> tfCodePostal = new TextField<Integer>();
809
		tfCodePostal.setFieldLabel("Code postal");
376 gduche 810
		tfCodePostal.setName("code_postal");
811
 
319 gduche 812
		right.add(tfCodePostal, fd100);
293 gduche 813
		hmAdresse.put("tfCodePostal", tfCodePostal);
814
 
815
		TextField tfVille = new TextField();
816
		tfVille.setFieldLabel("Ville");
376 gduche 817
		tfVille.setName("ville");
293 gduche 818
 
319 gduche 819
		right.add(tfVille, fd100);
293 gduche 820
		hmAdresse.put("tfVille", tfVille);
821
 
822
		// MAJ ComboBox
823
		mediateur.obtenirListeValeurEtRafraichir(this, "pays");
824
 
304 gduche 825
		FieldSet fsAdresse = new FieldSet();
826
		fsAdresse.setHeading("Adresse personnelle");
827
		fsAdresse.add(main);
293 gduche 828
 
304 gduche 829
		tiAdresses.add(fsAdresse);
352 gduche 830
		((ComboBox) hmIdentite.get("cbPrefixe")).setRawValue("ljkhlkj");
293 gduche 831
	}
338 gduche 832
 
276 gduche 833
	/**
834
	 * Ajouter le bouton réinitialiser à la barre d'outils donnée
835
	 *
836
	 * @param barreOutils la barre d'outils à modifier
837
	 * */
376 gduche 838
	public void ajouterBoutonReinitialiser(ToolBar barreOutils)	{
276 gduche 839
 
840
		//Le bouton réintialiser recharge la page sans sauvegarder les informations
488 gduche 841
		Button reinitialiser = new Button("Réinitialiser le formulaire");
519 gduche 842
		reinitialiser.setIcon(Images.ICONES.rafraichir());
488 gduche 843
		reinitialiser.addSelectionListener(new SelectionListener<ButtonEvent>() {
844
			public void componentSelected(ButtonEvent ce) {
376 gduche 845
				//((Mediateur) Registry.get(RegistreId.MEDIATEUR)).clicAjouterPersonne();
846
				reinitialiser();
276 gduche 847
			}
848
		});
849
		barreOutils.add(reinitialiser);
850
	}
851
 
852
	/**
338 gduche 853
	 * Ajouter le bouton Sauvegarder et revenir à la liste à la barre d'outils donnée
854
	 *
855
	 * @param barreOutils la barre d'outils à modifier
856
	 * */
456 gduche 857
	private void ajouterBoutonEnregistrerEtRevenir(ButtonBar barreOutils)	{
338 gduche 858
 
859
		//Le bouton réintialiser recharge la page sans sauvegarder les informations
668 gduche 860
		enregistrerEtRevenir = new Button("Enregistrer et revenir à la liste");
861
		enregistrerEtRevenir.setIcon(Images.ICONES.scriptGo());
862
		enregistrerEtRevenir.setIconAlign(IconAlign.LEFT);
863
		enregistrerEtRevenir.addSelectionListener(new SelectionListener<ButtonEvent>() {
488 gduche 864
			public void componentSelected(ButtonEvent ce) {
676 gduche 865
				if (enregistrer() == true)	{
866
					((Mediateur) Registry.get(RegistreId.MEDIATEUR)).clicMenu("Personnes");
867
				}
338 gduche 868
			}
869
		});
456 gduche 870
 
668 gduche 871
		hmIdentite.put("btnEnregistrerRevenir", enregistrerEtRevenir);
872
		barreOutils.add(enregistrerEtRevenir);
873
		enregistrerEtRevenir.setEnabled(false);
456 gduche 874
 
338 gduche 875
	}
876
 
877
	/**
276 gduche 878
	 * Ajouter le bouton Sauvegarder à la barre d'outils donnée
879
	 *
880
	 * @param barreOutils la barre d'outils à modifier
881
	 * */
456 gduche 882
	private void ajouterBoutonEnregistrer(ButtonBar barreOutils)	{
276 gduche 883
 
884
		//Le bouton réintialiser recharge la page sans sauvegarder les informations
668 gduche 885
		enregistrer = new Button("Enregistrer");
519 gduche 886
		enregistrer.setIcon(Images.ICONES.scriptSave());
887
		enregistrer.setIconAlign(IconAlign.LEFT);
352 gduche 888
		enregistrer.setId("main-button");
488 gduche 889
		enregistrer.addSelectionListener(new SelectionListener<ButtonEvent>() {
890
			public void componentSelected(ButtonEvent ce) {
376 gduche 891
				enregistrer();
276 gduche 892
			}
893
		});
456 gduche 894
		enregistrer.setEnabled(false);
895
		hmIdentite.put("btnEnregistrer", enregistrer);
286 gduche 896
		barreOutils.add(enregistrer);
276 gduche 897
	}
898
 
899
	/**
900
	 * Ajouter le bouton annuler à la barre d'outils donnée
901
	 *
902
	 * @param barreOutils la barre d'outils à modifier
903
	 * */
356 gduche 904
	public static void ajouterBoutonAnnuler(ButtonBar barreOutils)	{
276 gduche 905
 
906
		// Le bouton annuler ne sauvegarde pas les informations et renvoie vers la page précédente
356 gduche 907
		Button annuler = new Button("Revenir à la liste");
488 gduche 908
		annuler.addSelectionListener(new SelectionListener<ButtonEvent>() {
909
			public void componentSelected(ButtonEvent ce) {
276 gduche 910
				((Mediateur) Registry.get(RegistreId.MEDIATEUR)).clicMenu("Personnes");
911
			}
912
		});
913
		annuler.setIconStyle(ComposantClass.ICONE_SUPPRIMER);
914
		barreOutils.add(annuler);
915
	}
916
 
293 gduche 917
	public void obtenirListeRegionParPays(String strPays)	{
918
		mediateur.obtenirListeRegionsEtRafraichir(this, "region", strPays);
919
	}
276 gduche 920
 
921
 
293 gduche 922
 
276 gduche 923
	/*---------------------------------------------------------------------------------------
924
	 * 		RAFRAICHISSEMENT DU PANNEAU
925
	 * --------------------------------------------------------------------------------------
926
	 */
283 gduche 927
	public void rafraichir(Object nouvellesDonnees) {
386 gduche 928
 
929
 
930
 
456 gduche 931
		if (nouvellesDonnees instanceof ValeurListe) {
283 gduche 932
 
933
 
934
			ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
935
 
936
			// Créer une liste de valeurs
937
			List<Valeur> liste = new ArrayList<Valeur>();
938
			for (Iterator<String> it = listeValeurs.keySet().iterator(); it.hasNext();) {
939
				liste.add(listeValeurs.get(it.next()));
940
			}
941
 
942
			if (listeValeurs.getId().equals(config.getListeId("prefixe")))	{
943
 
319 gduche 944
				remplirCombobox("cbPrefixe", liste, "hmIdentite");
293 gduche 945
 
946
			} else if (listeValeurs.getId().equals(config.getListeId("suffixes"))) {
947
 
948
				remplirCombobox("cbSuffixe", liste, "hmIdentite");
949
 
950
			} else if (listeValeurs.getId().equals(config.getListeId("sexe"))) {
951
 
952
				remplirCombobox("cbSexe", liste, "hmIdentite");
283 gduche 953
 
293 gduche 954
			} else if (listeValeurs.getId().equals(config.getListeId("tel"))) {
955
 
956
				remplirCombobox("cbTelephone", liste, "hmIdentite");
319 gduche 957
 
958
				//Préselection du tél
959
				ComboBox<Valeur> cbTelephone = (ComboBox<Valeur>) hmIdentite.get("cbTelephone");
960
				cbTelephone.setValue(liste.get(1));
293 gduche 961
 
962
			} else if (listeValeurs.getId().equals(config.getListeId("pays")))	{
283 gduche 963
 
293 gduche 964
				remplirCombobox("cbPays", liste, "hmAdresse");
283 gduche 965
 
293 gduche 966
			} else if (listeValeurs.getId().equals(config.getListeId("region")))	{
283 gduche 967
 
293 gduche 968
				remplirCombobox("cbRegion", liste, "hmAdresse");
283 gduche 969
 
293 gduche 970
				((ComboBox) hmAdresse.get("cbRegion")).setVisible(true);
283 gduche 971
			}
293 gduche 972
 
973
 
456 gduche 974
		} else if (nouvellesDonnees instanceof ProjetListe) {
975
 
976
			ProjetListe projets = (ProjetListe) nouvellesDonnees;
977
 
978
			List<Projet> liste = new ArrayList<Projet>();
979
			for (Iterator<String> it = projets.keySet().iterator(); it.hasNext();) {
980
				liste.add(projets.get(it.next()));
981
			}
982
			ComboBox cbProjets = (ComboBox) hmIdentite.get("cbProjets");
983
			ListStore<Projet> storeProjets= cbProjets.getStore();
984
			storeProjets.removeAll();
985
			storeProjets.add(liste);
986
			cbProjets.setStore(storeProjets);
987
 
352 gduche 988
		} else if (nouvellesDonnees instanceof Information)	{
286 gduche 989
 
352 gduche 990
			Information info = (Information) nouvellesDonnees;
386 gduche 991
			if (info.getType().equals("ajout_personne"))	{
352 gduche 992
 
386 gduche 993
				GWT.log("Ajout de la personne " + personneSelectionnee.getId(), null);
461 gduche 994
				Info.display("Enregistrement", "La personne a été ajoutée (id: " + personneSelectionnee.getId() + ")");
376 gduche 995
 
433 gduche 996
			} else if (info.getType().equals("modification_personne"))	{
997
 
998
				Info.display("Enregistrement", "Les modifications apportées à la personne " + personneSelectionnee.getId() + " ont été correctement enregistrées.");
668 gduche 999
			}
1000
			else if (info.getType().equals("maj_utilisateur"))	{
1001
				gererEtatActivationBouton();
386 gduche 1002
			} else if (info.getDonnee(0) instanceof PersonneListe)	{
1003
 
1004
 
1005
					Collection colPersonneListe = ((PersonneListe) info.getDonnee(0)).values();
1006
					Iterator itPersonneListe = colPersonneListe.iterator();
1007
					Personne personne = (Personne) itPersonneListe.next();
376 gduche 1008
 
386 gduche 1009
					personneSauvegarde = new Personne();
1010
					personneSauvegarde = (Personne) personne.cloner(personneSauvegarde);
376 gduche 1011
 
386 gduche 1012
					binderPersonne(personne);
1013
					//Mise à jour de la personne
1014
					//Personne personne = (Personne) nouvellesDonnees;
1015
 
456 gduche 1016
					ComboBox cbProjets = (ComboBox) hmIdentite.get("cbProjets");
1017
					cbProjets.setValue(cbProjets.getStore().findModel("id_projet", personne.get("ce_projet")));
386 gduche 1018
 
1019
					//Prefixe
1020
					String prefixe = personne.get("ce_truk_prefix");
1021
					ComboBox<Valeur> cbPrefixe = (ComboBox<Valeur>) hmIdentite.get("cbPrefixe");
1022
 
1023
 
1024
					String prefixeCourant = personne.get("ce_truk_prefix");
1025
					if (cbPrefixe.getStore().findModel("id_valeur", prefixeCourant) != null)	{
1026
						cbPrefixe.setValue(cbPrefixe.getStore().findModel("id_valeur", prefixeCourant));
1027
					}	else	{
1028
						cbPrefixe.setRawValue(prefixeCourant);
376 gduche 1029
					}
1030
 
1031
 
386 gduche 1032
					((TextField) hmIdentite.get("tfPrenom")).setValue(personne.get("prenom"));
1033
					((TextField) hmIdentite.get("tfNom")).setValue(personne.get("nom"));
1034
 
1035
					//Suffixe
1036
					String suffixe = personne.get("ce_truk_suffixe");
1037
					ComboBox<Valeur> cbSuffixe = (ComboBox<Valeur>) hmIdentite.get("cbSuffixe");
1038
 
1039
					String suffixeCourant = personne.get("ce_truk_suffix");
1040
					if (cbSuffixe.getStore().findModel("id_valeur", suffixeCourant) != null)	{
1041
						cbSuffixe.setValue(cbSuffixe.getStore().findModel("id_valeur", suffixeCourant));
1042
					}	else	{
1043
						cbSuffixe.setRawValue(suffixeCourant);
1044
					}
1045
 
1046
					((TextField) hmIdentite.get("tfNomAutre")).setValue(personne.get("truk_nom_autre"));
1047
					((TextField) hmIdentite.get("tfAbreviation")).setValue(personne.get("abreviation"));
1048
					((TextField) hmIdentite.get("tfAbreviationAutre")).setValue(personne.get("truk_abreviation_autre"));
1049
 
1050
 
1051
					(((DateField) hmIdentite.get("dfDateNaissance"))).setValue(personne.getDate("naissance_date"));
1052
					((TextField) hmIdentite.get("tfLieuNaissance")).setValue(personne.get("naissance_lieu"));
1053
 
1054
					(((DateField) hmIdentite.get("dfDateDeces"))).setValue(personne.getDate("deces_date"));
1055
					((TextField) hmIdentite.get("tfLieuDeces")).setValue(personne.get("deces_lieu"));
1056
 
473 gduche 1057
 
386 gduche 1058
					// Telephone
1059
					HashMap<String, String> hmTelephone = (HashMap<String, String>) personne.getChaineDenormaliseAsMapOrList("truk_telephone");
1060
					if (hmTelephone!=null)	{
1061
 
1062
						ListStore storeTelephone = ((ComboBox) hmIdentite.get("cbTelephone")).getStore();
1063
						List lstModelsTelephone = storeTelephone.getModels();
1064
						Iterator<Valeur> itStore = lstModelsTelephone.iterator();
1065
						HashMap<String, String> hmTel = new HashMap();
1066
						while (itStore.hasNext())	{
1067
							Valeur v = itStore.next();
1068
							hmTel.put(v.getAbreviation(), v.getNom());
376 gduche 1069
						}
1070
 
386 gduche 1071
						Collection<String> colTelephone = hmTelephone.keySet();
1072
						Iterator<String> itTelephone = colTelephone.iterator();
1073
 
1074
						while (itTelephone.hasNext())	{
473 gduche 1075
							String strTelephone = itTelephone.next();
1076
							String strTypeTelephone = hmTelephone.get(strTelephone);
386 gduche 1077
							String idTel = hmTel.get(strTypeTelephone);
1078
							if (idTel == null)	{
1079
								idTel = strTypeTelephone;
1080
							}
1081
 
1082
							ajouterTelephone(strTelephone, idTel, strTypeTelephone);
1083
						}
376 gduche 1084
					}
352 gduche 1085
 
386 gduche 1086
					//Courriel
1087
					LinkedList<String> lCourriels = (LinkedList<String>) personne.getChaineDenormaliseAsMapOrList("truk_courriel");
440 gduche 1088
					if (lCourriels != null) {
1089
						Iterator<String> itCourriels = lCourriels.iterator();
386 gduche 1090
 
440 gduche 1091
						while (itCourriels.hasNext())	{
1092
							String strEmail = itCourriels.next();
1093
							ajouterCourriel(strEmail);
1094
						}
386 gduche 1095
					}
1096
 
1097
					// Sites
1098
					LinkedList<String> lUrl = (LinkedList<String>) personne.getChaineDenormaliseAsMapOrList("truk_url");
433 gduche 1099
					if (lUrl!=null) {
1100
						Iterator<String> itUrl = lUrl.iterator();
1101
						while (itUrl.hasNext())	{
1102
							String strUrl = itUrl.next();
1103
							ajouterUrl(strUrl);
1104
						}
386 gduche 1105
					}
1106
 
1107
					// Sexe
1108
					String strSexe = personne.get("ce_sexe");
1109
					ComboBox<Valeur> cbSexe = (ComboBox<Valeur>) hmIdentite.get("cbSexe");
681 gduche 1110
 
678 gduche 1111
					if (cbSexe.getStore().findModel("id_valeur", strSexe) != null)	{
1112
						cbSexe.setValue(cbSexe.getStore().findModel("id_valeur", strSexe));
352 gduche 1113
					}	else	{
386 gduche 1114
						cbSexe.setRawValue(strSexe);
352 gduche 1115
					}
386 gduche 1116
 
1117
					((TextArea) hmIdentite.get("taDescription")).setRawValue((String) personne.get("description"));
1118
 
1119
					// Logos
1120
					TextArea taLogo = (TextArea) hmIdentite.get("taLogo");
1121
					LinkedList<String> lLogo = (LinkedList<String>) personne.getChaineDenormaliseAsMapOrList("truk_logo");
433 gduche 1122
					if (lLogo!=null)	{
1123
						Iterator<String> itLogo = lLogo.iterator();
1124
						String strValeurLogo = "";
1125
						while (itLogo.hasNext())	{
473 gduche 1126
							strValeurLogo += itLogo.next();
1127
							if (!strValeurLogo.trim().equals(""))	{
1128
								ajouterUrlLogo(strValeurLogo);
1129
							}
433 gduche 1130
						}
386 gduche 1131
					}
1132
 
1133
					/*--------------------------------------------------
1134
					                      Adresse
1135
					 ---------------------------------------------------*/
1136
 
1137
					// Adresse
1138
					((TextField<String>) hmAdresse.get("tfAdresse1")).setValue((String) personne.get("adresse_01"));
1139
 
1140
					// Complément
1141
					((TextField<String>) hmAdresse.get("tfAdresse2")).setValue((String) personne.get("adresse_02"));
1142
 
1143
					//Boite postale
1144
					((TextField<String>) hmAdresse.get("tfBoitePostale")).setValue((String) personne.get("bp"));
1145
 
1146
					//Pays
1147
					String strPays = personne.get("pays");
1148
					ComboBox<Valeur> cbPays = (ComboBox<Valeur>) hmAdresse.get("cbPays");
1149
 
1150
 
1151
					if (cbPays.getStore().findModel("nom", strPays) != null)	{
1152
						cbPays.setValue(cbPays.getStore().findModel("nom", strPays));
1153
					}	else	{
1154
						cbPays.setRawValue(strPays);
1155
					}
1156
 
1157
 
1158
					//Région
1159
					String strRegion = personne.get("region");
1160
					if ((strRegion!=null)&&(!strRegion.equals("")))	{
1161
						ComboBox<Valeur> cbRegion = (ComboBox<Valeur>) hmAdresse.get("cbRegion");
1162
						cbRegion.setVisible(true);
1163
 
1164
						if (cbRegion.getStore().findModel("nom", strRegion) != null)	{
1165
							cbRegion.setValue(cbRegion.getStore().findModel("nom", strRegion));
1166
						}	else	{
1167
							cbRegion.setRawValue(strRegion);
1168
						}
1169
					}
1170
 
1171
					//Cp
1172
					((TextField) hmAdresse.get("tfCodePostal")).setValue(personne.get("code_postal"));
1173
 
1174
					//Ville
1175
					((TextField) hmAdresse.get("tfVille")).setValue(personne.get("ville"));
1176
 
1177
 
668 gduche 1178
					gererEtatActivationBouton();
456 gduche 1179
 
461 gduche 1180
					nouvellesDonnees = null;
386 gduche 1181
				} else {
1182
					Info.display("messages", info.getMessages().toString());
352 gduche 1183
				}
293 gduche 1184
		}
283 gduche 1185
 
1186
		if (nouvellesDonnees == null)
1187
		{
319 gduche 1188
			ComboBox cb= (ComboBox) hmIdentite.get("cbPrefixe");
293 gduche 1189
 
1190
			//Met à jour le nom Complet du formulaire
283 gduche 1191
			String valeurRetour = "";
1192
 
1193
			// Prefixe
1194
			String prefixe = "";
319 gduche 1195
			Valeur valPrefixe = (Valeur) ((ComboBox) hmIdentite.get("cbPrefixe")).getValue();
283 gduche 1196
 
1197
			if (valPrefixe != null)	{
1198
				prefixe = valPrefixe.getNom();
293 gduche 1199
			} else 	{
319 gduche 1200
				prefixe =  (String) ((ComboBox) hmIdentite.get("cbPrefixe")).getRawValue();
293 gduche 1201
			}
283 gduche 1202
 
293 gduche 1203
 
283 gduche 1204
			// Prénom
1205
			String prenom = (String) ((TextField) hmIdentite.get("tfPrenom")).getValue();
1206
 
1207
			// Nom
1208
			String nom = (String) ((TextField) hmIdentite.get("tfNom")).getValue();
1209
 
1210
			// Suffixe
1211
			String suffixe = "";
1212
			Valeur valSuffixe = (Valeur) ((ComboBox) hmIdentite.get("cbSuffixe")).getValue();
1213
 
1214
			if (valSuffixe != null)	{
1215
				suffixe = valSuffixe.getNom();
293 gduche 1216
			} else 	{
1217
				suffixe =  (String) ((ComboBox) hmIdentite.get("cbSuffixe")).getRawValue();
283 gduche 1218
			}
1219
 
1220
			// Mettre à jour la valeur
1221
			valeurRetour = prefixe + " " + prenom + " " + nom + " " + suffixe;
1222
			valeurRetour = valeurRetour.replaceAll("null", "");
1223
 
1224
			((LabelField) hmIdentite.get("nomComplet")).setValue(valeurRetour);
1225
 
1226
			if (!valeurRetour.trim().equals(""))	{
1227
				((LabelField) hmIdentite.get("nomComplet")).show();
1228
			} else {
1229
				((LabelField) hmIdentite.get("nomComplet")).hide();
1230
			}
1231
		}
338 gduche 1232
 
1233
		mediateur.masquerPopinChargement();
456 gduche 1234
 
461 gduche 1235
		if (this.mode.equals(MODE_AJOUTER))	{
668 gduche 1236
			gererEtatActivationBouton();
456 gduche 1237
		}
127 gduche 1238
	}
1239
 
352 gduche 1240
	private HashMap<String, Valeur> hmCbSelectionnee = new HashMap();
293 gduche 1241
	public void remplirCombobox(String idComboBox, List liste, String hashMapId)	{
352 gduche 1242
 
293 gduche 1243
		HashMap hm = null;
1244
		if (hashMapId.equals("hmIdentite"))	{
1245
			hm = hmIdentite;
1246
		} else if (hashMapId.equals("hmAdresse")){
1247
			hm = hmAdresse;
1248
		} else {
1249
			hm = hmInfosNat;
1250
		}
1251
 
1252
		ListStore<Valeur> store = ((ComboBox) hm.get(idComboBox)).getStore();
376 gduche 1253
 
293 gduche 1254
		store.removeAll();
1255
		store.add(liste);
1256
		((ComboBox) hm.get(idComboBox)).setStore(store);
376 gduche 1257
 
293 gduche 1258
	}
130 gduche 1259
 
352 gduche 1260
 
668 gduche 1261
	private void gererEtatActivationBouton()	{
1262
 
1263
		if (((Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT)).isIdentifie() == false)	{
1264
			enregistrer.setEnabled(false);
1265
			enregistrerEtRevenir.setEnabled(false);
1266
		} else	{
1267
			enregistrer.setEnabled(true);
1268
			enregistrerEtRevenir.setEnabled(true);
1269
		}
1270
 
1271
	}
1272
 
376 gduche 1273
	public void ajouterTelephone(String strTelephone, String strValeurTypeTel, String idTel) 	{
352 gduche 1274
 
1275
 
1276
				//Ajout d'un champ à la liste
376 gduche 1277
				String strIdTelephone =  idTel + "##" + strTelephone + ";;";
352 gduche 1278
 
1279
				FieldSet fsContactTel = (FieldSet) hmIdentite.get("fsContactTel");
1280
 
356 gduche 1281
				LayoutContainer lcTelephone = new LayoutContainer();
1282
				lcTelephone.setLayout(new ColumnLayout());
1283
 
352 gduche 1284
				Text tTypeTelephone = new Text();
1285
				tTypeTelephone.setText(strValeurTypeTel+":");
1286
 
376 gduche 1287
				hmIdentite.put("type-" + strIdTelephone, tTypeTelephone);
356 gduche 1288
				lcTelephone.add(tTypeTelephone, new ColumnData(0.40));
352 gduche 1289
 
1290
				Text tTelephone = new Text();
1291
				tTelephone.setText(strTelephone);
376 gduche 1292
				hmIdentite.put("tel-" + strIdTelephone, tTelephone);
356 gduche 1293
				lcTelephone.add(tTelephone, new ColumnData(0.40));
352 gduche 1294
 
540 gduche 1295
				Button bSupprimer = new Button();
1296
				bSupprimer.setIcon(Images.ICONES.supprimer());
376 gduche 1297
				bSupprimer.setId(strIdTelephone);
352 gduche 1298
 
540 gduche 1299
				bSupprimer.addSelectionListener(new SelectionListener<ButtonEvent>() {
1300
						public void componentSelected(ButtonEvent ce) {
352 gduche 1301
 
488 gduche 1302
							String strIdTelephone = ce.getComponent().getId();
376 gduche 1303
							LayoutContainer lcContactTel = (LayoutContainer) hmIdentite.get("lc-"+strIdTelephone);
352 gduche 1304
 
376 gduche 1305
							lcContactTel.remove(hmIdentite.get("type-" + strIdTelephone));
1306
							hmIdentite.remove("type-" + strIdTelephone);
352 gduche 1307
 
376 gduche 1308
							lcContactTel.remove(hmIdentite.get("tel-" + strIdTelephone));
1309
							hmIdentite.remove("tel-" + strIdTelephone);
352 gduche 1310
 
488 gduche 1311
							lcContactTel.remove(ce.getComponent());
352 gduche 1312
 
356 gduche 1313
							FieldSet fsContactTel = (FieldSet) hmIdentite.get("fsContactTel");
1314
							fsContactTel.remove(lcContactTel);
1315
 
376 gduche 1316
							HiddenField<String> hfTelephone = (HiddenField) hmIdentite.get("hfTelephone");
1317
							String strValeurTelephone = hfTelephone.getValue();
1318
							strValeurTelephone = strValeurTelephone.replace(strIdTelephone, "");
1319
							hfTelephone.setValue(strValeurTelephone);
1320
 
352 gduche 1321
							layout();
1322
 
1323
						}
1324
				});
1325
 
356 gduche 1326
				lcTelephone.add(bSupprimer, new ColumnData(0.15));
352 gduche 1327
 
376 gduche 1328
				hmIdentite.put("lc-"+strIdTelephone, lcTelephone);
356 gduche 1329
				fsContactTel.add(lcTelephone);
1330
 
376 gduche 1331
				HiddenField<String> hfTelephone = (HiddenField) hmIdentite.get("hfTelephone");
1332
				String strValeurTelephone = hfTelephone.getValue();
1333
				if (strValeurTelephone==null)	{
1334
					strValeurTelephone = "";
1335
				}
1336
				strValeurTelephone += strIdTelephone;
1337
				hfTelephone.setValue(strValeurTelephone);
352 gduche 1338
 
1339
				layout();
1340
 
1341
 
1342
 
1343
 
1344
	}
1345
 
376 gduche 1346
	public void ajouterCourriel(String strEmail)	{
1347
 
1348
			TextField<String> tfCourriel = (TextField<String>) hmIdentite.get("tfCourriel");
1349
			tfCourriel.setValue("");
1350
 
1351
			//Ajouter adresse email
1352
			LayoutContainer lcCourrielContainer = (LayoutContainer) hmIdentite.get("lcCourrielContainer");
1353
 
1354
			LayoutContainer lcCourriel = new LayoutContainer();
1355
			lcCourriel.setLayout(new ColumnLayout());
1356
 
1357
			LabelField lfCourriel = new LabelField();
1358
			lfCourriel.setText(strEmail);
1359
 
1360
			lcCourriel.add(lfCourriel, new ColumnData(0.8));
1361
			hmIdentite.put("lc-" + strEmail, lcCourriel);
1362
 
1363
			//Bouton supprimer
540 gduche 1364
			Button btnSupprimerCourriel = new Button();
1365
			btnSupprimerCourriel.setIcon(Images.ICONES.supprimer());
376 gduche 1366
			btnSupprimerCourriel.setId(strEmail);
540 gduche 1367
			btnSupprimerCourriel.addSelectionListener(new SelectionListener<ButtonEvent>() {
376 gduche 1368
 
540 gduche 1369
				public void componentSelected(ButtonEvent ce) {
376 gduche 1370
					//Suppression de l'adresse email
488 gduche 1371
					String strEmail = ce.getComponent().getId();
376 gduche 1372
					LayoutContainer lcCourrielContainer = (LayoutContainer) hmIdentite.get("lcCourrielContainer");
1373
					LayoutContainer lcCourriel = (LayoutContainer) hmIdentite.get("lc-" + strEmail);
1374
					lcCourrielContainer.remove(lcCourriel);
1375
 
1376
					hmIdentite.remove("lc-" + strEmail);
1377
					hmIdentite.remove("email-" + strEmail);
1378
 
1379
						HiddenField<String> hfHiddenCourriel = (HiddenField) hmIdentite.get("hfHiddenCourriel");
1380
					String strValeurCourriel = hfHiddenCourriel.getValue();
1381
					strValeurCourriel = strValeurCourriel.replace(strEmail + ";;", "");
1382
					hfHiddenCourriel.setValue(strValeurCourriel);
1383
 
1384
				}
1385
 
1386
			});
1387
 
1388
			lcCourriel.add(btnSupprimerCourriel);
1389
 
1390
 
1391
 
1392
			lcCourrielContainer.add(lcCourriel);
1393
			hmIdentite.put("email-" + strEmail, lfCourriel);
1394
 
1395
			HiddenField<String> hfHiddenCourriel = (HiddenField) hmIdentite.get("hfHiddenCourriel");
1396
			String strHiddenCourrielValue = hfHiddenCourriel.getValue();
1397
			if (strHiddenCourrielValue == null) {
1398
				strHiddenCourrielValue = "";
1399
			}
1400
			hfHiddenCourriel.setRawValue(strHiddenCourrielValue + strEmail + ";;");
1401
 
1402
 
1403
			layout();
1404
 
1405
	}
1406
 
1407
	public void ajouterUrl(String strUrl)	{
1408
 
1409
		LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcUrlContainer");
1410
 
1411
		LayoutContainer lcUrl = new LayoutContainer();
1412
		lcUrl.setLayout(new ColumnLayout());
1413
		hmIdentite.put("lc-" + strUrl, lcUrl);
1414
 
1415
 
1416
		Text tUrl = new Text(strUrl);
1417
		hmIdentite.put("url-"+strUrl, tUrl);
1418
 
1419
		lcUrl.add(tUrl, new ColumnData(0.8));
1420
 
540 gduche 1421
		Button ibSupprimerUrl = new Button();
1422
		ibSupprimerUrl.setIcon(Images.ICONES.supprimer());
376 gduche 1423
		ibSupprimerUrl.setId(strUrl);
540 gduche 1424
		ibSupprimerUrl.addSelectionListener(new SelectionListener<ButtonEvent>() {
130 gduche 1425
 
540 gduche 1426
			public void componentSelected(ButtonEvent ce) {
376 gduche 1427
 
1428
				//Suppression url
488 gduche 1429
				String strUrl = ce.getComponent().getId();
376 gduche 1430
				LayoutContainer lcUrl = (LayoutContainer) hmIdentite.get("lc-" + strUrl);
1431
				LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcUrlContainer");
1432
 
1433
				lcUrlContainer.remove(lcUrl);
1434
 
386 gduche 1435
 
1436
				HiddenField<String> hfUrl = (HiddenField<String>) hmIdentite.get("hfUrl");
1437
				String strValeurUrl = hfUrl.getValue();
1438
				strValeurUrl = strValeurUrl.replace(strUrl, "");
1439
				hfUrl.setValue(strValeurUrl);
1440
 
376 gduche 1441
			}
1442
		});
1443
 
1444
		lcUrl.add(ibSupprimerUrl, new ColumnData(0.15));
1445
		lcUrlContainer.add(lcUrl);
1446
 
386 gduche 1447
		HiddenField<String> hfUrl = (HiddenField<String>) hmIdentite.get("hfUrl");
1448
		String strValeurUrl = hfUrl.getValue();
1449
		if (strValeurUrl == null)	{
1450
			strValeurUrl = "";
1451
		}
1452
 
1453
		strValeurUrl += strUrl + ";;";
1454
		hfUrl.setValue(strValeurUrl);
1455
 
376 gduche 1456
		layout();
1457
 
1458
 
1459
 
1460
	}
1461
 
386 gduche 1462
	public void ajouterUrlLogo(String strUrl)	{
1463
 
1464
		LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcAutreInformations2");
1465
 
1466
		LayoutContainer lcUrl = new LayoutContainer();
1467
		lcUrl.setLayout(new ColumnLayout());
1468
		hmIdentite.put("lc-" + strUrl, lcUrl);
1469
 
1470
 
1471
		Text tUrl = new Text(strUrl);
1472
		hmIdentite.put("url-"+strUrl, tUrl);
1473
 
1474
		lcUrl.add(tUrl, new ColumnData(0.8));
1475
 
540 gduche 1476
		Button ibSupprimerUrl = new Button();
1477
		ibSupprimerUrl.setIcon(Images.ICONES.supprimer());
386 gduche 1478
		ibSupprimerUrl.setId(strUrl);
540 gduche 1479
		ibSupprimerUrl.addSelectionListener(new SelectionListener<ButtonEvent>() {
386 gduche 1480
 
540 gduche 1481
			public void componentSelected(ButtonEvent ce) {
386 gduche 1482
 
1483
				//Suppression url
488 gduche 1484
				String strUrl = ce.getComponent().getId();
386 gduche 1485
				LayoutContainer lcUrl = (LayoutContainer) hmIdentite.get("lc-" + strUrl);
1486
				LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcAutreInformations2");
1487
 
1488
				lcUrlContainer.remove(lcUrl);
1489
 
1490
				HiddenField<String> hfUrlLogo = (HiddenField<String>) hmIdentite.get("hfUrlLogo");
1491
				String strValeurUrl = hfUrlLogo.getValue();
1492
				strValeurUrl = strUrl.replace(strUrl, "");
1493
 
1494
				hfUrlLogo.setValue(strValeurUrl);
1495
			}
1496
		});
1497
 
1498
		lcUrl.add(ibSupprimerUrl, new ColumnData(0.15));
1499
		lcUrlContainer.add(lcUrl);
1500
 
1501
		HiddenField<String> hfUrlLogo = (HiddenField<String>) hmIdentite.get("hfUrlLogo");
1502
		String strValeurUrl = hfUrlLogo.getValue();
1503
		if (strValeurUrl == null)	{
1504
			strValeurUrl = "";
1505
		}
1506
 
1507
		strValeurUrl += strUrl + ";;";
1508
 
1509
		hfUrlLogo.setValue(strValeurUrl);
1510
 
1511
		layout();
1512
	}
1513
 
376 gduche 1514
	public void reinitialiser()	{
1515
 
461 gduche 1516
		mediateur.afficherPopinChargement();
376 gduche 1517
 
1518
		binderPersonne(personneSauvegarde);
1519
		layout();
1520
 
1521
		mediateur.masquerPopinChargement();
1522
	}
1523
 
1524
 
1525
 
1526
	public void binderPersonne(Personne personne)	{
1527
 
1528
		binding = new FormBinding(this);
1529
 
1530
		personneSelectionnee = personne;
1531
		binding.autoBind();
1532
		binding.bind(personneSelectionnee);
1533
 
1534
		layout();
1535
	}
130 gduche 1536
 
376 gduche 1537
	/**
1538
	 * Enregistre les information de la personne en cours
1539
	 *
1540
	 */
676 gduche 1541
	public boolean enregistrer()	{
376 gduche 1542
 
676 gduche 1543
		boolean success = false;
376 gduche 1544
		LinkedList lstMessageErreur = new LinkedList<String>();
1545
 
456 gduche 1546
		ComboBox<Projet> cbProjets = (ComboBox<Projet>) hmIdentite.get("cbProjets");
1547
		Projet projet = cbProjets.getValue();
1548
		if (projet == null)	{
1549
			lstMessageErreur.add("Le projet n'a pas été renseigné");
681 gduche 1550
		} else {
1551
			personneSelectionnee.set("ce_projet", projet.getId());
456 gduche 1552
		}
461 gduche 1553
 
1554
		String strTfNom = ((TextField<String>) hmIdentite.get("tfNom")).getValue();
1555
		if ((strTfNom == null)||(strTfNom.trim().equals("")))	{
1556
			lstMessageErreur.add("Le nom n'a pas été saisi");
622 gduche 1557
		} else {
1558
			strTfNom = UtilString.ucFirst(strTfNom);
1559
			personneSelectionnee.set("nom", strTfNom);
461 gduche 1560
		}
456 gduche 1561
 
622 gduche 1562
		String strTfPrenom = ((TextField<String>) hmIdentite.get("tfPrenom")).getValue();
1563
		personneSelectionnee.set("prenom", UtilString.ucFirst(strTfPrenom));
1564
 
376 gduche 1565
		//Préparer les données
1566
		ComboBox combo = (ComboBox) hmIdentite.get("cbSexe");
1567
		Valeur valeur;
1568
		String strValeur = "";
1569
 
678 gduche 1570
		valeur = (Valeur) combo.getValue();
1571
		if (valeur!=null)	{
1572
			personneSelectionnee.set("ce_sexe", valeur.getId());
1573
		}
376 gduche 1574
 
1575
		strValeur = obtenirValeurCombo("cbPrefixe");
1576
		personneSelectionnee.set("ce_truk_prefix", strValeur);
1577
 
1578
		strValeur = obtenirValeurCombo("cbSuffixe");
1579
		personneSelectionnee.set("ce_truk_suffix", strValeur);
1580
 
1581
		personneSelectionnee.set("truk_courriel", ((HiddenField<String>) hmIdentite.get("hfHiddenCourriel")).getValue());
1582
 
386 gduche 1583
 
1584
		//Pour le nom complet, on enregistre dans la bdd la valeur du prefixe/suffixe et non l'id
1585
		String strPrefixe = "";
1586
		combo = (ComboBox) hmIdentite.get("cbPrefixe");
1587
		valeur = (Valeur) combo.getValue();
1588
		if (valeur != null)	{
1589
			strPrefixe = valeur.getNom();
1590
		} else {
1591
			strPrefixe = combo.getRawValue();
1592
		}
1593
 
1594
		String strSuffixe = "";
1595
		combo = (ComboBox) hmIdentite.get("cbSuffixe");
1596
		valeur = (Valeur) combo.getValue();
1597
		if (valeur != null)	{
456 gduche 1598
			strSuffixe = valeur.getNom() + " ";
386 gduche 1599
		} else {
456 gduche 1600
			strSuffixe = combo.getRawValue() +" ";
386 gduche 1601
		}
376 gduche 1602
 
456 gduche 1603
		personneSelectionnee.setFmtNomComplet(strPrefixe, strSuffixe);
376 gduche 1604
 
1605
 
456 gduche 1606
		DateField dfDateNaissance = (DateField) hmIdentite.get("dfDateNaissance");
1607
		Date naissanceDate = dfDateNaissance.getValue();
1608
		personneSelectionnee.setNaissanceDate(naissanceDate);
376 gduche 1609
 
456 gduche 1610
		Radio rbEstDecedee = (Radio) hmIdentite.get("rbEstDecedee");
1611
		if (rbEstDecedee.getValue().equals(true))	{
1612
 
1613
			DateField dfDecesDate = (DateField) hmIdentite.get("dfDateDeces");
1614
			Date decesDate = dfDecesDate.getValue();
1615
			if (decesDate == null)	{
1616
				decesDate = new Date();
1617
			}
1618
			personneSelectionnee.setDecesDate(decesDate);
1619
			personneSelectionnee.set("deces_lieu", ((TextField<String>) hmIdentite.get("tfLieuDeces")).getValue());
1620
		}
1621
 
1622
		personneSelectionnee.setDecesDate(new Date());
1623
 
376 gduche 1624
		strValeur = obtenirValeurCombo("cbPays");
676 gduche 1625
		personneSelectionnee.set("ce_truk_pays", strValeur);
376 gduche 1626
 
1627
		strValeur = obtenirValeurCombo("cbRegion");
676 gduche 1628
		personneSelectionnee.set("ce_truk_region", strValeur);
376 gduche 1629
 
1630
		personneSelectionnee.set("truk_telephone", ((HiddenField<String>) hmIdentite.get("hfTelephone")).getValue());
1631
 
386 gduche 1632
		String logoUrls = ((HiddenField<String>) hmIdentite.get("hfUrlLogo")).getValue();
1633
		if (logoUrls == null)	{
1634
			logoUrls = "";
1635
		}
1636
		personneSelectionnee.set("truk_logo", logoUrls);
376 gduche 1637
 
386 gduche 1638
		personneSelectionnee.set("truk_url", ((HiddenField) hmIdentite.get("hfUrl")).getValue());
376 gduche 1639
 
461 gduche 1640
		if (lstMessageErreur.size() == 0)	{
386 gduche 1641
			mediateur.enregistrerPersonne(this, personneSelectionnee);
676 gduche 1642
			success = true;
456 gduche 1643
		} else {
1644
			String strMessagesErreur = "<span><br />";
386 gduche 1645
			Iterator<String> itMessagesErreur = lstMessageErreur.iterator();
1646
			while (itMessagesErreur.hasNext())	{
456 gduche 1647
				strMessagesErreur += "<br /> - " + itMessagesErreur.next();
386 gduche 1648
			}
456 gduche 1649
			strMessagesErreur += "</span>";
386 gduche 1650
 
1651
 			MessageBox.alert("Erreurs", "Les erreurs suivantes ont été commises : \n" + strMessagesErreur, null);
676 gduche 1652
 			success = false;
456 gduche 1653
		}
676 gduche 1654
 
1655
		return success;
376 gduche 1656
	}
1657
 
1658
	private String obtenirValeurCombo(String strComboName)	{
1659
 
1660
		String strValeur = "";
1661
		Valeur valeur;
1662
 
1663
		ComboBox combo = (ComboBox) hmIdentite.get(strComboName);
1664
		if (combo == null)	{
1665
			combo = (ComboBox) hmAdresse.get(strComboName);
1666
		}
1667
		if (combo.getValue()!=null)	{
1668
			valeur = (Valeur) combo.getValue();
1669
			strValeur = valeur.getId();
1670
		} else {
1671
			strValeur = combo.getRawValue();
1672
		}
1673
 
1674
		return strValeur;
1675
	}
127 gduche 1676
}