Subversion Repositories eFlore/Applications.coel

Rev

Rev 676 | Rev 681 | 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
 
461 gduche 996
				personneSelectionnee.set("id_personne", info.toString());
519 gduche 997
				this.mode = MODE_MODIFIER;
461 gduche 998
				this.setHeading(mediateur.i18nC.personneModeModifier());
519 gduche 999
				setIcon(Images.ICONES.formModifier());
376 gduche 1000
 
433 gduche 1001
			} else if (info.getType().equals("modification_personne"))	{
1002
 
1003
				Info.display("Enregistrement", "Les modifications apportées à la personne " + personneSelectionnee.getId() + " ont été correctement enregistrées.");
668 gduche 1004
			}
1005
			else if (info.getType().equals("maj_utilisateur"))	{
1006
				gererEtatActivationBouton();
386 gduche 1007
			} else if (info.getDonnee(0) instanceof PersonneListe)	{
1008
 
1009
 
1010
					Collection colPersonneListe = ((PersonneListe) info.getDonnee(0)).values();
1011
					Iterator itPersonneListe = colPersonneListe.iterator();
1012
					Personne personne = (Personne) itPersonneListe.next();
376 gduche 1013
 
386 gduche 1014
					personneSauvegarde = new Personne();
1015
					personneSauvegarde = (Personne) personne.cloner(personneSauvegarde);
376 gduche 1016
 
386 gduche 1017
					binderPersonne(personne);
1018
					//Mise à jour de la personne
1019
					//Personne personne = (Personne) nouvellesDonnees;
1020
 
456 gduche 1021
					ComboBox cbProjets = (ComboBox) hmIdentite.get("cbProjets");
1022
					cbProjets.setValue(cbProjets.getStore().findModel("id_projet", personne.get("ce_projet")));
386 gduche 1023
 
1024
					//Prefixe
1025
					String prefixe = personne.get("ce_truk_prefix");
1026
					ComboBox<Valeur> cbPrefixe = (ComboBox<Valeur>) hmIdentite.get("cbPrefixe");
1027
 
1028
 
1029
					String prefixeCourant = personne.get("ce_truk_prefix");
1030
					if (cbPrefixe.getStore().findModel("id_valeur", prefixeCourant) != null)	{
1031
						cbPrefixe.setValue(cbPrefixe.getStore().findModel("id_valeur", prefixeCourant));
1032
					}	else	{
1033
						cbPrefixe.setRawValue(prefixeCourant);
376 gduche 1034
					}
1035
 
1036
 
386 gduche 1037
					((TextField) hmIdentite.get("tfPrenom")).setValue(personne.get("prenom"));
1038
					((TextField) hmIdentite.get("tfNom")).setValue(personne.get("nom"));
1039
 
1040
					//Suffixe
1041
					String suffixe = personne.get("ce_truk_suffixe");
1042
					ComboBox<Valeur> cbSuffixe = (ComboBox<Valeur>) hmIdentite.get("cbSuffixe");
1043
 
1044
					String suffixeCourant = personne.get("ce_truk_suffix");
1045
					if (cbSuffixe.getStore().findModel("id_valeur", suffixeCourant) != null)	{
1046
						cbSuffixe.setValue(cbSuffixe.getStore().findModel("id_valeur", suffixeCourant));
1047
					}	else	{
1048
						cbSuffixe.setRawValue(suffixeCourant);
1049
					}
1050
 
1051
					((TextField) hmIdentite.get("tfNomAutre")).setValue(personne.get("truk_nom_autre"));
1052
					((TextField) hmIdentite.get("tfAbreviation")).setValue(personne.get("abreviation"));
1053
					((TextField) hmIdentite.get("tfAbreviationAutre")).setValue(personne.get("truk_abreviation_autre"));
1054
 
1055
 
1056
					(((DateField) hmIdentite.get("dfDateNaissance"))).setValue(personne.getDate("naissance_date"));
1057
					((TextField) hmIdentite.get("tfLieuNaissance")).setValue(personne.get("naissance_lieu"));
1058
 
1059
					(((DateField) hmIdentite.get("dfDateDeces"))).setValue(personne.getDate("deces_date"));
1060
					((TextField) hmIdentite.get("tfLieuDeces")).setValue(personne.get("deces_lieu"));
1061
 
473 gduche 1062
 
386 gduche 1063
					// Telephone
1064
					HashMap<String, String> hmTelephone = (HashMap<String, String>) personne.getChaineDenormaliseAsMapOrList("truk_telephone");
1065
					if (hmTelephone!=null)	{
1066
 
1067
						ListStore storeTelephone = ((ComboBox) hmIdentite.get("cbTelephone")).getStore();
1068
						List lstModelsTelephone = storeTelephone.getModels();
1069
						Iterator<Valeur> itStore = lstModelsTelephone.iterator();
1070
						HashMap<String, String> hmTel = new HashMap();
1071
						while (itStore.hasNext())	{
1072
							Valeur v = itStore.next();
1073
							hmTel.put(v.getAbreviation(), v.getNom());
376 gduche 1074
						}
1075
 
386 gduche 1076
						Collection<String> colTelephone = hmTelephone.keySet();
1077
						Iterator<String> itTelephone = colTelephone.iterator();
1078
 
1079
						while (itTelephone.hasNext())	{
473 gduche 1080
							String strTelephone = itTelephone.next();
1081
							String strTypeTelephone = hmTelephone.get(strTelephone);
386 gduche 1082
							String idTel = hmTel.get(strTypeTelephone);
1083
							if (idTel == null)	{
1084
								idTel = strTypeTelephone;
1085
							}
1086
 
1087
							ajouterTelephone(strTelephone, idTel, strTypeTelephone);
1088
						}
376 gduche 1089
					}
352 gduche 1090
 
386 gduche 1091
					//Courriel
1092
					LinkedList<String> lCourriels = (LinkedList<String>) personne.getChaineDenormaliseAsMapOrList("truk_courriel");
440 gduche 1093
					if (lCourriels != null) {
1094
						Iterator<String> itCourriels = lCourriels.iterator();
386 gduche 1095
 
440 gduche 1096
						while (itCourriels.hasNext())	{
1097
							String strEmail = itCourriels.next();
1098
							ajouterCourriel(strEmail);
1099
						}
386 gduche 1100
					}
1101
 
1102
					// Sites
1103
					LinkedList<String> lUrl = (LinkedList<String>) personne.getChaineDenormaliseAsMapOrList("truk_url");
433 gduche 1104
					if (lUrl!=null) {
1105
						Iterator<String> itUrl = lUrl.iterator();
1106
						while (itUrl.hasNext())	{
1107
							String strUrl = itUrl.next();
1108
							ajouterUrl(strUrl);
1109
						}
386 gduche 1110
					}
1111
 
1112
					// Sexe
1113
					String strSexe = personne.get("ce_sexe");
1114
					ComboBox<Valeur> cbSexe = (ComboBox<Valeur>) hmIdentite.get("cbSexe");
1115
 
1116
 
1117
					//FIXME : le lien avec la bdd ne peut pas se faire
678 gduche 1118
					if (cbSexe.getStore().findModel("id_valeur", strSexe) != null)	{
1119
						cbSexe.setValue(cbSexe.getStore().findModel("id_valeur", strSexe));
352 gduche 1120
					}	else	{
386 gduche 1121
						cbSexe.setRawValue(strSexe);
352 gduche 1122
					}
386 gduche 1123
 
1124
					((TextArea) hmIdentite.get("taDescription")).setRawValue((String) personne.get("description"));
1125
 
1126
					// Logos
1127
					TextArea taLogo = (TextArea) hmIdentite.get("taLogo");
1128
					LinkedList<String> lLogo = (LinkedList<String>) personne.getChaineDenormaliseAsMapOrList("truk_logo");
433 gduche 1129
					if (lLogo!=null)	{
1130
						Iterator<String> itLogo = lLogo.iterator();
1131
						String strValeurLogo = "";
1132
						while (itLogo.hasNext())	{
473 gduche 1133
							strValeurLogo += itLogo.next();
1134
							if (!strValeurLogo.trim().equals(""))	{
1135
								ajouterUrlLogo(strValeurLogo);
1136
							}
433 gduche 1137
						}
386 gduche 1138
					}
1139
 
1140
					/*--------------------------------------------------
1141
					                      Adresse
1142
					 ---------------------------------------------------*/
1143
 
1144
					// Adresse
1145
					((TextField<String>) hmAdresse.get("tfAdresse1")).setValue((String) personne.get("adresse_01"));
1146
 
1147
					// Complément
1148
					((TextField<String>) hmAdresse.get("tfAdresse2")).setValue((String) personne.get("adresse_02"));
1149
 
1150
					//Boite postale
1151
					((TextField<String>) hmAdresse.get("tfBoitePostale")).setValue((String) personne.get("bp"));
1152
 
1153
					//Pays
1154
					String strPays = personne.get("pays");
1155
					ComboBox<Valeur> cbPays = (ComboBox<Valeur>) hmAdresse.get("cbPays");
1156
 
1157
 
1158
					if (cbPays.getStore().findModel("nom", strPays) != null)	{
1159
						cbPays.setValue(cbPays.getStore().findModel("nom", strPays));
1160
					}	else	{
1161
						cbPays.setRawValue(strPays);
1162
					}
1163
 
1164
 
1165
					//Région
1166
					String strRegion = personne.get("region");
1167
					if ((strRegion!=null)&&(!strRegion.equals("")))	{
1168
						ComboBox<Valeur> cbRegion = (ComboBox<Valeur>) hmAdresse.get("cbRegion");
1169
						cbRegion.setVisible(true);
1170
 
1171
						if (cbRegion.getStore().findModel("nom", strRegion) != null)	{
1172
							cbRegion.setValue(cbRegion.getStore().findModel("nom", strRegion));
1173
						}	else	{
1174
							cbRegion.setRawValue(strRegion);
1175
						}
1176
					}
1177
 
1178
					//Cp
1179
					((TextField) hmAdresse.get("tfCodePostal")).setValue(personne.get("code_postal"));
1180
 
1181
					//Ville
1182
					((TextField) hmAdresse.get("tfVille")).setValue(personne.get("ville"));
1183
 
1184
 
668 gduche 1185
					gererEtatActivationBouton();
456 gduche 1186
 
461 gduche 1187
					nouvellesDonnees = null;
386 gduche 1188
				} else {
1189
					Info.display("messages", info.getMessages().toString());
352 gduche 1190
				}
293 gduche 1191
		}
283 gduche 1192
 
1193
		if (nouvellesDonnees == null)
1194
		{
319 gduche 1195
			ComboBox cb= (ComboBox) hmIdentite.get("cbPrefixe");
293 gduche 1196
 
1197
			//Met à jour le nom Complet du formulaire
283 gduche 1198
			String valeurRetour = "";
1199
 
1200
			// Prefixe
1201
			String prefixe = "";
319 gduche 1202
			Valeur valPrefixe = (Valeur) ((ComboBox) hmIdentite.get("cbPrefixe")).getValue();
283 gduche 1203
 
1204
			if (valPrefixe != null)	{
1205
				prefixe = valPrefixe.getNom();
293 gduche 1206
			} else 	{
319 gduche 1207
				prefixe =  (String) ((ComboBox) hmIdentite.get("cbPrefixe")).getRawValue();
293 gduche 1208
			}
283 gduche 1209
 
293 gduche 1210
 
283 gduche 1211
			// Prénom
1212
			String prenom = (String) ((TextField) hmIdentite.get("tfPrenom")).getValue();
1213
 
1214
			// Nom
1215
			String nom = (String) ((TextField) hmIdentite.get("tfNom")).getValue();
1216
 
1217
			// Suffixe
1218
			String suffixe = "";
1219
			Valeur valSuffixe = (Valeur) ((ComboBox) hmIdentite.get("cbSuffixe")).getValue();
1220
 
1221
			if (valSuffixe != null)	{
1222
				suffixe = valSuffixe.getNom();
293 gduche 1223
			} else 	{
1224
				suffixe =  (String) ((ComboBox) hmIdentite.get("cbSuffixe")).getRawValue();
283 gduche 1225
			}
1226
 
1227
			// Mettre à jour la valeur
1228
			valeurRetour = prefixe + " " + prenom + " " + nom + " " + suffixe;
1229
			valeurRetour = valeurRetour.replaceAll("null", "");
1230
 
1231
			((LabelField) hmIdentite.get("nomComplet")).setValue(valeurRetour);
1232
 
1233
			if (!valeurRetour.trim().equals(""))	{
1234
				((LabelField) hmIdentite.get("nomComplet")).show();
1235
			} else {
1236
				((LabelField) hmIdentite.get("nomComplet")).hide();
1237
			}
1238
		}
338 gduche 1239
 
1240
		mediateur.masquerPopinChargement();
456 gduche 1241
 
461 gduche 1242
		if (this.mode.equals(MODE_AJOUTER))	{
668 gduche 1243
			gererEtatActivationBouton();
456 gduche 1244
		}
127 gduche 1245
	}
1246
 
352 gduche 1247
	private HashMap<String, Valeur> hmCbSelectionnee = new HashMap();
293 gduche 1248
	public void remplirCombobox(String idComboBox, List liste, String hashMapId)	{
352 gduche 1249
 
293 gduche 1250
		HashMap hm = null;
1251
		if (hashMapId.equals("hmIdentite"))	{
1252
			hm = hmIdentite;
1253
		} else if (hashMapId.equals("hmAdresse")){
1254
			hm = hmAdresse;
1255
		} else {
1256
			hm = hmInfosNat;
1257
		}
1258
 
1259
		ListStore<Valeur> store = ((ComboBox) hm.get(idComboBox)).getStore();
376 gduche 1260
 
293 gduche 1261
		store.removeAll();
1262
		store.add(liste);
1263
		((ComboBox) hm.get(idComboBox)).setStore(store);
376 gduche 1264
 
293 gduche 1265
	}
130 gduche 1266
 
352 gduche 1267
 
668 gduche 1268
	private void gererEtatActivationBouton()	{
1269
 
1270
		if (((Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT)).isIdentifie() == false)	{
1271
			enregistrer.setEnabled(false);
1272
			enregistrerEtRevenir.setEnabled(false);
1273
		} else	{
1274
			enregistrer.setEnabled(true);
1275
			enregistrerEtRevenir.setEnabled(true);
1276
		}
1277
 
1278
	}
1279
 
376 gduche 1280
	public void ajouterTelephone(String strTelephone, String strValeurTypeTel, String idTel) 	{
352 gduche 1281
 
1282
 
1283
				//Ajout d'un champ à la liste
376 gduche 1284
				String strIdTelephone =  idTel + "##" + strTelephone + ";;";
352 gduche 1285
 
1286
				FieldSet fsContactTel = (FieldSet) hmIdentite.get("fsContactTel");
1287
 
356 gduche 1288
				LayoutContainer lcTelephone = new LayoutContainer();
1289
				lcTelephone.setLayout(new ColumnLayout());
1290
 
352 gduche 1291
				Text tTypeTelephone = new Text();
1292
				tTypeTelephone.setText(strValeurTypeTel+":");
1293
 
376 gduche 1294
				hmIdentite.put("type-" + strIdTelephone, tTypeTelephone);
356 gduche 1295
				lcTelephone.add(tTypeTelephone, new ColumnData(0.40));
352 gduche 1296
 
1297
				Text tTelephone = new Text();
1298
				tTelephone.setText(strTelephone);
376 gduche 1299
				hmIdentite.put("tel-" + strIdTelephone, tTelephone);
356 gduche 1300
				lcTelephone.add(tTelephone, new ColumnData(0.40));
352 gduche 1301
 
540 gduche 1302
				Button bSupprimer = new Button();
1303
				bSupprimer.setIcon(Images.ICONES.supprimer());
376 gduche 1304
				bSupprimer.setId(strIdTelephone);
352 gduche 1305
 
540 gduche 1306
				bSupprimer.addSelectionListener(new SelectionListener<ButtonEvent>() {
1307
						public void componentSelected(ButtonEvent ce) {
352 gduche 1308
 
488 gduche 1309
							String strIdTelephone = ce.getComponent().getId();
376 gduche 1310
							LayoutContainer lcContactTel = (LayoutContainer) hmIdentite.get("lc-"+strIdTelephone);
352 gduche 1311
 
376 gduche 1312
							lcContactTel.remove(hmIdentite.get("type-" + strIdTelephone));
1313
							hmIdentite.remove("type-" + strIdTelephone);
352 gduche 1314
 
376 gduche 1315
							lcContactTel.remove(hmIdentite.get("tel-" + strIdTelephone));
1316
							hmIdentite.remove("tel-" + strIdTelephone);
352 gduche 1317
 
488 gduche 1318
							lcContactTel.remove(ce.getComponent());
352 gduche 1319
 
356 gduche 1320
							FieldSet fsContactTel = (FieldSet) hmIdentite.get("fsContactTel");
1321
							fsContactTel.remove(lcContactTel);
1322
 
376 gduche 1323
							HiddenField<String> hfTelephone = (HiddenField) hmIdentite.get("hfTelephone");
1324
							String strValeurTelephone = hfTelephone.getValue();
1325
							strValeurTelephone = strValeurTelephone.replace(strIdTelephone, "");
1326
							hfTelephone.setValue(strValeurTelephone);
1327
 
352 gduche 1328
							layout();
1329
 
1330
						}
1331
				});
1332
 
356 gduche 1333
				lcTelephone.add(bSupprimer, new ColumnData(0.15));
352 gduche 1334
 
376 gduche 1335
				hmIdentite.put("lc-"+strIdTelephone, lcTelephone);
356 gduche 1336
				fsContactTel.add(lcTelephone);
1337
 
376 gduche 1338
				HiddenField<String> hfTelephone = (HiddenField) hmIdentite.get("hfTelephone");
1339
				String strValeurTelephone = hfTelephone.getValue();
1340
				if (strValeurTelephone==null)	{
1341
					strValeurTelephone = "";
1342
				}
1343
				strValeurTelephone += strIdTelephone;
1344
				hfTelephone.setValue(strValeurTelephone);
352 gduche 1345
 
1346
				layout();
1347
 
1348
 
1349
 
1350
 
1351
	}
1352
 
376 gduche 1353
	public void ajouterCourriel(String strEmail)	{
1354
 
1355
			TextField<String> tfCourriel = (TextField<String>) hmIdentite.get("tfCourriel");
1356
			tfCourriel.setValue("");
1357
 
1358
			//Ajouter adresse email
1359
			LayoutContainer lcCourrielContainer = (LayoutContainer) hmIdentite.get("lcCourrielContainer");
1360
 
1361
			LayoutContainer lcCourriel = new LayoutContainer();
1362
			lcCourriel.setLayout(new ColumnLayout());
1363
 
1364
			LabelField lfCourriel = new LabelField();
1365
			lfCourriel.setText(strEmail);
1366
 
1367
			lcCourriel.add(lfCourriel, new ColumnData(0.8));
1368
			hmIdentite.put("lc-" + strEmail, lcCourriel);
1369
 
1370
			//Bouton supprimer
540 gduche 1371
			Button btnSupprimerCourriel = new Button();
1372
			btnSupprimerCourriel.setIcon(Images.ICONES.supprimer());
376 gduche 1373
			btnSupprimerCourriel.setId(strEmail);
540 gduche 1374
			btnSupprimerCourriel.addSelectionListener(new SelectionListener<ButtonEvent>() {
376 gduche 1375
 
540 gduche 1376
				public void componentSelected(ButtonEvent ce) {
376 gduche 1377
					//Suppression de l'adresse email
488 gduche 1378
					String strEmail = ce.getComponent().getId();
376 gduche 1379
					LayoutContainer lcCourrielContainer = (LayoutContainer) hmIdentite.get("lcCourrielContainer");
1380
					LayoutContainer lcCourriel = (LayoutContainer) hmIdentite.get("lc-" + strEmail);
1381
					lcCourrielContainer.remove(lcCourriel);
1382
 
1383
					hmIdentite.remove("lc-" + strEmail);
1384
					hmIdentite.remove("email-" + strEmail);
1385
 
1386
						HiddenField<String> hfHiddenCourriel = (HiddenField) hmIdentite.get("hfHiddenCourriel");
1387
					String strValeurCourriel = hfHiddenCourriel.getValue();
1388
					strValeurCourriel = strValeurCourriel.replace(strEmail + ";;", "");
1389
					hfHiddenCourriel.setValue(strValeurCourriel);
1390
 
1391
				}
1392
 
1393
			});
1394
 
1395
			lcCourriel.add(btnSupprimerCourriel);
1396
 
1397
 
1398
 
1399
			lcCourrielContainer.add(lcCourriel);
1400
			hmIdentite.put("email-" + strEmail, lfCourriel);
1401
 
1402
			HiddenField<String> hfHiddenCourriel = (HiddenField) hmIdentite.get("hfHiddenCourriel");
1403
			String strHiddenCourrielValue = hfHiddenCourriel.getValue();
1404
			if (strHiddenCourrielValue == null) {
1405
				strHiddenCourrielValue = "";
1406
			}
1407
			hfHiddenCourriel.setRawValue(strHiddenCourrielValue + strEmail + ";;");
1408
 
1409
 
1410
			layout();
1411
 
1412
	}
1413
 
1414
	public void ajouterUrl(String strUrl)	{
1415
 
1416
		LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcUrlContainer");
1417
 
1418
		LayoutContainer lcUrl = new LayoutContainer();
1419
		lcUrl.setLayout(new ColumnLayout());
1420
		hmIdentite.put("lc-" + strUrl, lcUrl);
1421
 
1422
 
1423
		Text tUrl = new Text(strUrl);
1424
		hmIdentite.put("url-"+strUrl, tUrl);
1425
 
1426
		lcUrl.add(tUrl, new ColumnData(0.8));
1427
 
540 gduche 1428
		Button ibSupprimerUrl = new Button();
1429
		ibSupprimerUrl.setIcon(Images.ICONES.supprimer());
376 gduche 1430
		ibSupprimerUrl.setId(strUrl);
540 gduche 1431
		ibSupprimerUrl.addSelectionListener(new SelectionListener<ButtonEvent>() {
130 gduche 1432
 
540 gduche 1433
			public void componentSelected(ButtonEvent ce) {
376 gduche 1434
 
1435
				//Suppression url
488 gduche 1436
				String strUrl = ce.getComponent().getId();
376 gduche 1437
				LayoutContainer lcUrl = (LayoutContainer) hmIdentite.get("lc-" + strUrl);
1438
				LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcUrlContainer");
1439
 
1440
				lcUrlContainer.remove(lcUrl);
1441
 
386 gduche 1442
 
1443
				HiddenField<String> hfUrl = (HiddenField<String>) hmIdentite.get("hfUrl");
1444
				String strValeurUrl = hfUrl.getValue();
1445
				strValeurUrl = strValeurUrl.replace(strUrl, "");
1446
				hfUrl.setValue(strValeurUrl);
1447
 
376 gduche 1448
			}
1449
		});
1450
 
1451
		lcUrl.add(ibSupprimerUrl, new ColumnData(0.15));
1452
		lcUrlContainer.add(lcUrl);
1453
 
386 gduche 1454
		HiddenField<String> hfUrl = (HiddenField<String>) hmIdentite.get("hfUrl");
1455
		String strValeurUrl = hfUrl.getValue();
1456
		if (strValeurUrl == null)	{
1457
			strValeurUrl = "";
1458
		}
1459
 
1460
		strValeurUrl += strUrl + ";;";
1461
		hfUrl.setValue(strValeurUrl);
1462
 
376 gduche 1463
		layout();
1464
 
1465
 
1466
 
1467
	}
1468
 
386 gduche 1469
	public void ajouterUrlLogo(String strUrl)	{
1470
 
1471
		LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcAutreInformations2");
1472
 
1473
		LayoutContainer lcUrl = new LayoutContainer();
1474
		lcUrl.setLayout(new ColumnLayout());
1475
		hmIdentite.put("lc-" + strUrl, lcUrl);
1476
 
1477
 
1478
		Text tUrl = new Text(strUrl);
1479
		hmIdentite.put("url-"+strUrl, tUrl);
1480
 
1481
		lcUrl.add(tUrl, new ColumnData(0.8));
1482
 
540 gduche 1483
		Button ibSupprimerUrl = new Button();
1484
		ibSupprimerUrl.setIcon(Images.ICONES.supprimer());
386 gduche 1485
		ibSupprimerUrl.setId(strUrl);
540 gduche 1486
		ibSupprimerUrl.addSelectionListener(new SelectionListener<ButtonEvent>() {
386 gduche 1487
 
540 gduche 1488
			public void componentSelected(ButtonEvent ce) {
386 gduche 1489
 
1490
				//Suppression url
488 gduche 1491
				String strUrl = ce.getComponent().getId();
386 gduche 1492
				LayoutContainer lcUrl = (LayoutContainer) hmIdentite.get("lc-" + strUrl);
1493
				LayoutContainer lcUrlContainer  = (LayoutContainer) hmIdentite.get("lcAutreInformations2");
1494
 
1495
				lcUrlContainer.remove(lcUrl);
1496
 
1497
				HiddenField<String> hfUrlLogo = (HiddenField<String>) hmIdentite.get("hfUrlLogo");
1498
				String strValeurUrl = hfUrlLogo.getValue();
1499
				strValeurUrl = strUrl.replace(strUrl, "");
1500
 
1501
				hfUrlLogo.setValue(strValeurUrl);
1502
			}
1503
		});
1504
 
1505
		lcUrl.add(ibSupprimerUrl, new ColumnData(0.15));
1506
		lcUrlContainer.add(lcUrl);
1507
 
1508
		HiddenField<String> hfUrlLogo = (HiddenField<String>) hmIdentite.get("hfUrlLogo");
1509
		String strValeurUrl = hfUrlLogo.getValue();
1510
		if (strValeurUrl == null)	{
1511
			strValeurUrl = "";
1512
		}
1513
 
1514
		strValeurUrl += strUrl + ";;";
1515
 
1516
		hfUrlLogo.setValue(strValeurUrl);
1517
 
1518
		layout();
1519
	}
1520
 
376 gduche 1521
	public void reinitialiser()	{
1522
 
461 gduche 1523
		mediateur.afficherPopinChargement();
376 gduche 1524
 
1525
		binderPersonne(personneSauvegarde);
1526
		layout();
1527
 
1528
		mediateur.masquerPopinChargement();
1529
	}
1530
 
1531
 
1532
 
1533
	public void binderPersonne(Personne personne)	{
1534
 
1535
		binding = new FormBinding(this);
1536
 
1537
		personneSelectionnee = personne;
1538
		binding.autoBind();
1539
		binding.bind(personneSelectionnee);
1540
 
1541
		layout();
1542
	}
130 gduche 1543
 
376 gduche 1544
	/**
1545
	 * Enregistre les information de la personne en cours
1546
	 *
1547
	 */
676 gduche 1548
	public boolean enregistrer()	{
376 gduche 1549
 
676 gduche 1550
		boolean success = false;
376 gduche 1551
		LinkedList lstMessageErreur = new LinkedList<String>();
1552
 
456 gduche 1553
		ComboBox<Projet> cbProjets = (ComboBox<Projet>) hmIdentite.get("cbProjets");
1554
		Projet projet = cbProjets.getValue();
1555
		if (projet == null)	{
1556
			lstMessageErreur.add("Le projet n'a pas été renseigné");
1557
		}
461 gduche 1558
 
1559
		String strTfNom = ((TextField<String>) hmIdentite.get("tfNom")).getValue();
1560
		if ((strTfNom == null)||(strTfNom.trim().equals("")))	{
1561
			lstMessageErreur.add("Le nom n'a pas été saisi");
622 gduche 1562
		} else {
1563
			strTfNom = UtilString.ucFirst(strTfNom);
1564
			personneSelectionnee.set("nom", strTfNom);
461 gduche 1565
		}
456 gduche 1566
 
622 gduche 1567
		String strTfPrenom = ((TextField<String>) hmIdentite.get("tfPrenom")).getValue();
1568
		personneSelectionnee.set("prenom", UtilString.ucFirst(strTfPrenom));
1569
 
376 gduche 1570
		//Préparer les données
1571
		ComboBox combo = (ComboBox) hmIdentite.get("cbSexe");
1572
		Valeur valeur;
1573
		String strValeur = "";
1574
 
678 gduche 1575
		valeur = (Valeur) combo.getValue();
1576
		if (valeur!=null)	{
1577
			personneSelectionnee.set("ce_sexe", valeur.getId());
1578
		}
376 gduche 1579
 
1580
		strValeur = obtenirValeurCombo("cbPrefixe");
1581
		personneSelectionnee.set("ce_truk_prefix", strValeur);
1582
 
1583
		strValeur = obtenirValeurCombo("cbSuffixe");
1584
		personneSelectionnee.set("ce_truk_suffix", strValeur);
1585
 
1586
		personneSelectionnee.set("truk_courriel", ((HiddenField<String>) hmIdentite.get("hfHiddenCourriel")).getValue());
1587
 
386 gduche 1588
 
1589
		//Pour le nom complet, on enregistre dans la bdd la valeur du prefixe/suffixe et non l'id
1590
		String strPrefixe = "";
1591
		combo = (ComboBox) hmIdentite.get("cbPrefixe");
1592
		valeur = (Valeur) combo.getValue();
1593
		if (valeur != null)	{
1594
			strPrefixe = valeur.getNom();
1595
		} else {
1596
			strPrefixe = combo.getRawValue();
1597
		}
1598
 
1599
		String strSuffixe = "";
1600
		combo = (ComboBox) hmIdentite.get("cbSuffixe");
1601
		valeur = (Valeur) combo.getValue();
1602
		if (valeur != null)	{
456 gduche 1603
			strSuffixe = valeur.getNom() + " ";
386 gduche 1604
		} else {
456 gduche 1605
			strSuffixe = combo.getRawValue() +" ";
386 gduche 1606
		}
376 gduche 1607
 
456 gduche 1608
		personneSelectionnee.setFmtNomComplet(strPrefixe, strSuffixe);
376 gduche 1609
 
1610
 
456 gduche 1611
		DateField dfDateNaissance = (DateField) hmIdentite.get("dfDateNaissance");
1612
		Date naissanceDate = dfDateNaissance.getValue();
1613
		personneSelectionnee.setNaissanceDate(naissanceDate);
376 gduche 1614
 
456 gduche 1615
		Radio rbEstDecedee = (Radio) hmIdentite.get("rbEstDecedee");
1616
		if (rbEstDecedee.getValue().equals(true))	{
1617
 
1618
			DateField dfDecesDate = (DateField) hmIdentite.get("dfDateDeces");
1619
			Date decesDate = dfDecesDate.getValue();
1620
			if (decesDate == null)	{
1621
				decesDate = new Date();
1622
			}
1623
			personneSelectionnee.setDecesDate(decesDate);
1624
			personneSelectionnee.set("deces_lieu", ((TextField<String>) hmIdentite.get("tfLieuDeces")).getValue());
1625
		}
1626
 
1627
		personneSelectionnee.setDecesDate(new Date());
1628
 
376 gduche 1629
		strValeur = obtenirValeurCombo("cbPays");
676 gduche 1630
		personneSelectionnee.set("ce_truk_pays", strValeur);
376 gduche 1631
 
1632
		strValeur = obtenirValeurCombo("cbRegion");
676 gduche 1633
		personneSelectionnee.set("ce_truk_region", strValeur);
376 gduche 1634
 
1635
		personneSelectionnee.set("truk_telephone", ((HiddenField<String>) hmIdentite.get("hfTelephone")).getValue());
1636
 
386 gduche 1637
		String logoUrls = ((HiddenField<String>) hmIdentite.get("hfUrlLogo")).getValue();
1638
		if (logoUrls == null)	{
1639
			logoUrls = "";
1640
		}
1641
		personneSelectionnee.set("truk_logo", logoUrls);
376 gduche 1642
 
386 gduche 1643
		personneSelectionnee.set("truk_url", ((HiddenField) hmIdentite.get("hfUrl")).getValue());
376 gduche 1644
 
461 gduche 1645
		if (lstMessageErreur.size() == 0)	{
386 gduche 1646
			mediateur.enregistrerPersonne(this, personneSelectionnee);
676 gduche 1647
			success = true;
456 gduche 1648
		} else {
1649
			String strMessagesErreur = "<span><br />";
386 gduche 1650
			Iterator<String> itMessagesErreur = lstMessageErreur.iterator();
1651
			while (itMessagesErreur.hasNext())	{
456 gduche 1652
				strMessagesErreur += "<br /> - " + itMessagesErreur.next();
386 gduche 1653
			}
456 gduche 1654
			strMessagesErreur += "</span>";
386 gduche 1655
 
1656
 			MessageBox.alert("Erreurs", "Les erreurs suivantes ont été commises : \n" + strMessagesErreur, null);
676 gduche 1657
 			success = false;
456 gduche 1658
		}
676 gduche 1659
 
1660
		return success;
376 gduche 1661
	}
1662
 
1663
	private String obtenirValeurCombo(String strComboName)	{
1664
 
1665
		String strValeur = "";
1666
		Valeur valeur;
1667
 
1668
		ComboBox combo = (ComboBox) hmIdentite.get(strComboName);
1669
		if (combo == null)	{
1670
			combo = (ComboBox) hmAdresse.get(strComboName);
1671
		}
1672
		if (combo.getValue()!=null)	{
1673
			valeur = (Valeur) combo.getValue();
1674
			strValeur = valeur.getId();
1675
		} else {
1676
			strValeur = combo.getRawValue();
1677
		}
1678
 
1679
		return strValeur;
1680
	}
127 gduche 1681
}