935 |
jpm |
1 |
package org.tela_botanica.client.vues.personne;
|
127 |
gduche |
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;
|
692 |
gduche |
14 |
import org.tela_botanica.client.composants.ChampMultiValeurs;
|
701 |
gduche |
15 |
import org.tela_botanica.client.composants.ChampMultiValeursImage;
|
722 |
gduche |
16 |
import org.tela_botanica.client.composants.ChampMultiValeursMultiTypes;
|
1292 |
cyprien |
17 |
import org.tela_botanica.client.composants.ChampMultiValeursMultiTypesPaginable;
|
973 |
gduche |
18 |
import org.tela_botanica.client.composants.HashMapComposants;
|
907 |
jpm |
19 |
import org.tela_botanica.client.configuration.Configuration;
|
991 |
gduche |
20 |
import org.tela_botanica.client.images.Images;
|
127 |
gduche |
21 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
293 |
gduche |
22 |
|
352 |
gduche |
23 |
import org.tela_botanica.client.modeles.Information;
|
850 |
gduche |
24 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
280 |
gduche |
25 |
import org.tela_botanica.client.modeles.Valeur;
|
283 |
gduche |
26 |
import org.tela_botanica.client.modeles.ValeurListe;
|
935 |
jpm |
27 |
import org.tela_botanica.client.modeles.personne.Personne;
|
1845 |
aurelien |
28 |
import org.tela_botanica.client.modeles.personne.PersonneAsyncDao;
|
935 |
jpm |
29 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
991 |
gduche |
30 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
31 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
32 |
import org.tela_botanica.client.modeles.publication.PublicationListe;
|
1322 |
gduche |
33 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
1468 |
jpm |
34 |
import org.tela_botanica.client.util.Debug;
|
729 |
jp_milcent |
35 |
import org.tela_botanica.client.util.Pattern;
|
1845 |
aurelien |
36 |
import org.tela_botanica.client.util.UtilDate;
|
622 |
gduche |
37 |
import org.tela_botanica.client.util.UtilString;
|
935 |
jpm |
38 |
import org.tela_botanica.client.vues.Formulaire;
|
127 |
gduche |
39 |
|
1292 |
cyprien |
40 |
import com.extjs.gxt.ui.client.data.ModelData;
|
|
|
41 |
import com.extjs.gxt.ui.client.data.ModelType;
|
|
|
42 |
import com.extjs.gxt.ui.client.data.PagingLoadResult;
|
488 |
gduche |
43 |
import com.extjs.gxt.ui.client.event.Events;
|
276 |
gduche |
44 |
import com.extjs.gxt.ui.client.Registry;
|
283 |
gduche |
45 |
import com.extjs.gxt.ui.client.Style.Scroll;
|
1292 |
cyprien |
46 |
import com.extjs.gxt.ui.client.Style.SortDir;
|
821 |
gduche |
47 |
import com.extjs.gxt.ui.client.Style.VerticalAlignment;
|
386 |
gduche |
48 |
|
1186 |
gduche |
49 |
import com.extjs.gxt.ui.client.binding.FieldBinding;
|
376 |
gduche |
50 |
import com.extjs.gxt.ui.client.binding.FormBinding;
|
386 |
gduche |
51 |
|
1845 |
aurelien |
52 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
488 |
gduche |
53 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
276 |
gduche |
54 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
55 |
import com.extjs.gxt.ui.client.event.KeyListener;
|
446 |
gduche |
56 |
import com.extjs.gxt.ui.client.event.Listener;
|
280 |
gduche |
57 |
import com.extjs.gxt.ui.client.event.SelectionChangedEvent;
|
|
|
58 |
import com.extjs.gxt.ui.client.event.SelectionChangedListener;
|
276 |
gduche |
59 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
1846 |
aurelien |
60 |
import com.extjs.gxt.ui.client.event.WidgetListener;
|
280 |
gduche |
61 |
import com.extjs.gxt.ui.client.store.ListStore;
|
127 |
gduche |
62 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
319 |
gduche |
63 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
338 |
gduche |
64 |
|
991 |
gduche |
65 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
1239 |
cyprien |
66 |
import org.tela_botanica.client.composants.InfoLogger;
|
1292 |
cyprien |
67 |
import org.tela_botanica.client.composants.pagination.Proxy;
|
|
|
68 |
import org.tela_botanica.client.composants.pagination.ProxyValeur;
|
|
|
69 |
|
276 |
gduche |
70 |
import com.extjs.gxt.ui.client.widget.TabItem;
|
|
|
71 |
import com.extjs.gxt.ui.client.widget.TabPanel;
|
973 |
gduche |
72 |
import com.extjs.gxt.ui.client.widget.Text;
|
283 |
gduche |
73 |
|
356 |
gduche |
74 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
75 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
280 |
gduche |
76 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
|
|
77 |
import com.extjs.gxt.ui.client.widget.form.DateField;
|
1329 |
cyprien |
78 |
import com.extjs.gxt.ui.client.widget.form.Field;
|
276 |
gduche |
79 |
import com.extjs.gxt.ui.client.widget.form.FieldSet;
|
|
|
80 |
import com.extjs.gxt.ui.client.widget.form.LabelField;
|
446 |
gduche |
81 |
import com.extjs.gxt.ui.client.widget.form.Radio;
|
|
|
82 |
import com.extjs.gxt.ui.client.widget.form.RadioGroup;
|
286 |
gduche |
83 |
import com.extjs.gxt.ui.client.widget.form.TextArea;
|
276 |
gduche |
84 |
import com.extjs.gxt.ui.client.widget.form.TextField;
|
1329 |
cyprien |
85 |
import com.extjs.gxt.ui.client.widget.form.Validator;
|
456 |
gduche |
86 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
850 |
gduche |
87 |
import com.extjs.gxt.ui.client.widget.form.FormPanel.LabelAlign;
|
276 |
gduche |
88 |
import com.extjs.gxt.ui.client.widget.layout.ColumnData;
|
|
|
89 |
import com.extjs.gxt.ui.client.widget.layout.ColumnLayout;
|
991 |
gduche |
90 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
319 |
gduche |
91 |
import com.extjs.gxt.ui.client.widget.layout.FormData;
|
276 |
gduche |
92 |
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
|
356 |
gduche |
93 |
import com.extjs.gxt.ui.client.widget.layout.RowLayout;
|
821 |
gduche |
94 |
import com.extjs.gxt.ui.client.widget.layout.TableData;
|
|
|
95 |
import com.extjs.gxt.ui.client.widget.layout.TableLayout;
|
991 |
gduche |
96 |
import com.extjs.gxt.ui.client.widget.toolbar.SeparatorToolItem;
|
|
|
97 |
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
|
1845 |
aurelien |
98 |
import com.google.gwt.core.client.Callback;
|
386 |
gduche |
99 |
import com.google.gwt.core.client.GWT;
|
1845 |
aurelien |
100 |
import com.google.gwt.json.client.JSONArray;
|
|
|
101 |
import com.google.gwt.json.client.JSONObject;
|
991 |
gduche |
102 |
import com.google.gwt.user.client.Window;
|
127 |
gduche |
103 |
|
850 |
gduche |
104 |
public class PersonneForm extends Formulaire implements Rafraichissable {
|
127 |
gduche |
105 |
|
730 |
jp_milcent |
106 |
// VARIABLES
|
276 |
gduche |
107 |
private TabItem tiIdentite, tiAdresses, tiInfosNat;
|
991 |
gduche |
108 |
PersonneFormPublication tiPubli;
|
283 |
gduche |
109 |
private Configuration config = (Configuration) Registry.get(RegistreId.CONFIG);
|
991 |
gduche |
110 |
protected Personne personneSelectionnee, personneSauvegarde = null;
|
276 |
gduche |
111 |
|
657 |
gduche |
112 |
//hmIdentite[...] référence par une chaine de caractère tous les composants de l'onglet Identite
|
973 |
gduche |
113 |
private HashMapComposants hmIdentite = new HashMapComposants();
|
976 |
gduche |
114 |
private HashMapComposants hmAdresse = new HashMapComposants();
|
979 |
gduche |
115 |
private HashMapComposants hmInfosNat = new HashMapComposants();
|
730 |
jp_milcent |
116 |
private HashMap<String, Valeur> hmCbSelectionnee = new HashMap();
|
829 |
gduche |
117 |
private FormData fd100 = new FormData("95%");
|
657 |
gduche |
118 |
|
668 |
gduche |
119 |
private Button enregistrer, enregistrerEtRevenir;
|
|
|
120 |
|
875 |
jpm |
121 |
private Personne personne = null;
|
|
|
122 |
private String personneId = null;
|
376 |
gduche |
123 |
private FormBinding binding = null;
|
|
|
124 |
|
1322 |
gduche |
125 |
//Gestion du mode synchrone
|
|
|
126 |
private Sequenceur sequenceur;
|
|
|
127 |
|
991 |
gduche |
128 |
//Publi
|
|
|
129 |
private ComboBox<Publication> cbPubli;
|
|
|
130 |
private ListStore<Publication> storePubli;
|
|
|
131 |
|
1845 |
aurelien |
132 |
// Gestion de la vérification des doublons
|
|
|
133 |
private boolean verificationDoublonEffectuee = false;
|
|
|
134 |
|
991 |
gduche |
135 |
// CONSTRUCTEUR
|
915 |
jpm |
136 |
public PersonneForm(Mediateur mediateurCourrant, String personneId) {
|
875 |
jpm |
137 |
initialiserPersonneForm(mediateurCourrant, personneId);
|
|
|
138 |
}
|
446 |
gduche |
139 |
|
875 |
jpm |
140 |
public PersonneForm(Mediateur mediateurCourrant, String personneId, Rafraichissable vueARafraichirApresValidation) {
|
|
|
141 |
vueExterneARafraichirApresValidation = vueARafraichirApresValidation;
|
1014 |
gduche |
142 |
initialiserPersonneForm(mediateurCourrant, personneId);
|
875 |
jpm |
143 |
}
|
850 |
gduche |
144 |
|
875 |
jpm |
145 |
private void initialiserPersonneForm(Mediateur mediateurCourrant, String personneIdCourrant) {
|
1014 |
gduche |
146 |
|
1322 |
gduche |
147 |
//Initialisation du séquenceur
|
|
|
148 |
sequenceur = new Sequenceur();
|
875 |
jpm |
149 |
personne = new Personne();
|
|
|
150 |
personne.setId(personneIdCourrant);
|
|
|
151 |
personneId = personneIdCourrant;
|
850 |
gduche |
152 |
|
884 |
jpm |
153 |
String modeDeCreation = (UtilString.isEmpty(personneId) ? Formulaire.MODE_AJOUTER : Formulaire.MODE_MODIFIER);
|
875 |
jpm |
154 |
initialiserFormulaire(mediateurCourrant, modeDeCreation, MenuApplicationId.PERSONNE);
|
|
|
155 |
|
386 |
gduche |
156 |
initialiserComposants();
|
875 |
jpm |
157 |
genererTitreFormulaire();
|
850 |
gduche |
158 |
|
1369 |
cyprien |
159 |
mediateur.obtenirListeValeurEtRafraichir(this, "relationPersonnePublication", sequenceur);
|
1367 |
cyprien |
160 |
mediateur.obtenirListeValeurEtRafraichir(this, "relationPersonnePublication", null);
|
875 |
jpm |
161 |
if (modeDeCreation.equals(Formulaire.MODE_MODIFIER)) {
|
1764 |
aurelien |
162 |
mediateur.selectionnerPersonne(this, personne.getId(), sequenceur);
|
850 |
gduche |
163 |
}
|
352 |
gduche |
164 |
}
|
|
|
165 |
|
875 |
jpm |
166 |
private void genererTitreFormulaire() {
|
|
|
167 |
String titre = i18nC.personneModeAjout();
|
|
|
168 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
169 |
titre = i18nC.personneModeModifier()+" - "+i18nC.id()+": "+personneId;
|
|
|
170 |
}
|
1680 |
raphael |
171 |
panneauFormulaire.setHeadingHtml(titre);
|
875 |
jpm |
172 |
}
|
|
|
173 |
|
386 |
gduche |
174 |
public void initialiserComposants() {
|
376 |
gduche |
175 |
personneSelectionnee = new Personne();
|
|
|
176 |
personneSauvegarde = new Personne();
|
|
|
177 |
|
276 |
gduche |
178 |
initialiserOnglets();
|
|
|
179 |
|
|
|
180 |
creerComposantsIdentite();
|
293 |
gduche |
181 |
creerComposantsAdresse();
|
821 |
gduche |
182 |
creerComposantsInfosNat();
|
991 |
gduche |
183 |
//creerComposantsPubli();
|
338 |
gduche |
184 |
|
376 |
gduche |
185 |
binderPersonne(personneSelectionnee);
|
276 |
gduche |
186 |
}
|
|
|
187 |
|
|
|
188 |
/**
|
|
|
189 |
* Crée les onglets identité, adresse et informations naturaliste
|
|
|
190 |
*
|
|
|
191 |
* */
|
|
|
192 |
public void initialiserOnglets() {
|
|
|
193 |
//TabPanel
|
|
|
194 |
TabPanel formulaireOnglets = new TabPanel();
|
|
|
195 |
|
|
|
196 |
//Tab 1 : identite
|
991 |
gduche |
197 |
tiIdentite = creerOnglet(i18nC.personneIdentite(), "tiIdentite");
|
|
|
198 |
tiIdentite.setStyleAttribute("padding", "0");
|
276 |
gduche |
199 |
formulaireOnglets.add(tiIdentite);
|
|
|
200 |
|
|
|
201 |
//Tab 2 : Adresse
|
991 |
gduche |
202 |
tiAdresses = creerOnglet(i18nC.adresse(), "tiAdresses");
|
276 |
gduche |
203 |
formulaireOnglets.add(tiAdresses);
|
|
|
204 |
|
|
|
205 |
//Tab 3 : Infos Naturalistes
|
991 |
gduche |
206 |
tiInfosNat = creerOnglet(i18nC.personneInfoNat(), "tiInfosNat");
|
|
|
207 |
formulaireOnglets.add(tiInfosNat);
|
446 |
gduche |
208 |
|
1239 |
cyprien |
209 |
//Tab 4 : Publications
|
991 |
gduche |
210 |
tiPubli = new PersonneFormPublication(this);
|
|
|
211 |
formulaireOnglets.add(tiPubli);
|
|
|
212 |
|
850 |
gduche |
213 |
getFormulaire().add(formulaireOnglets);
|
276 |
gduche |
214 |
}
|
|
|
215 |
|
|
|
216 |
/**
|
|
|
217 |
* Crée les widgets pour l'onglet identité
|
|
|
218 |
*
|
|
|
219 |
* */
|
|
|
220 |
|
|
|
221 |
|
|
|
222 |
public void creerComposantsIdentite() {
|
676 |
gduche |
223 |
// Gestion de l'affichage en colonnes : 3 Layout container : principal, gauche & droite
|
|
|
224 |
LayoutContainer left = new LayoutContainer();
|
|
|
225 |
left.setLayout(new FormLayout());
|
829 |
gduche |
226 |
left.setStyleAttribute("padding", "15px");
|
|
|
227 |
|
676 |
gduche |
228 |
LayoutContainer right = new LayoutContainer();
|
|
|
229 |
right.setLayout(new FormLayout());
|
829 |
gduche |
230 |
right.setStyleAttribute("padding", "15px");
|
456 |
gduche |
231 |
|
676 |
gduche |
232 |
LayoutContainer main = new LayoutContainer();
|
|
|
233 |
|
|
|
234 |
main.add(left, new ColumnData(.45));
|
1844 |
aurelien |
235 |
main.add(right, new ColumnData(.50));
|
676 |
gduche |
236 |
|
|
|
237 |
main.setLayout(new ColumnLayout());
|
|
|
238 |
main.setHeight("100%");
|
|
|
239 |
main.setScrollMode(Scroll.AUTO);
|
|
|
240 |
|
|
|
241 |
// Création des champs
|
|
|
242 |
FormLayout formLayout = new FormLayout();
|
|
|
243 |
formLayout.setLabelAlign(LabelAlign.LEFT);
|
1086 |
jpm |
244 |
|
|
|
245 |
//+------------------------------------------------------------------------------------------------------------+
|
|
|
246 |
// Fieldset NOM
|
676 |
gduche |
247 |
FieldSet fsNoms = new FieldSet();
|
1680 |
raphael |
248 |
fsNoms.setHeadingHtml("Noms");
|
676 |
gduche |
249 |
fsNoms.setLayout(formLayout);
|
456 |
gduche |
250 |
|
676 |
gduche |
251 |
// Nom complet : Affiché que si valeurs saisies
|
|
|
252 |
LabelField nomComplet = new LabelField();
|
875 |
jpm |
253 |
nomComplet.setFieldLabel(i18nC.personneNomComplet() +" :");
|
676 |
gduche |
254 |
nomComplet.hide();
|
456 |
gduche |
255 |
|
676 |
gduche |
256 |
fsNoms.add(nomComplet);
|
|
|
257 |
hmIdentite.put("nomComplet", nomComplet);
|
276 |
gduche |
258 |
|
676 |
gduche |
259 |
//Préfixe
|
|
|
260 |
ListStore<Valeur> storePrefixe = new ListStore<Valeur>();
|
|
|
261 |
ComboBox<Valeur> cbPrefixe = new ComboBox<Valeur>();
|
|
|
262 |
cbPrefixe.setStore(storePrefixe);
|
|
|
263 |
cbPrefixe.setDisplayField("nom");
|
|
|
264 |
cbPrefixe.setEmptyText("Choisissez le préfixe:");
|
|
|
265 |
cbPrefixe.setFieldLabel("Prefix");
|
|
|
266 |
|
|
|
267 |
fsNoms.add(cbPrefixe);
|
|
|
268 |
hmIdentite.put("cbPrefixe", cbPrefixe);
|
|
|
269 |
|
1369 |
cyprien |
270 |
mediateur.obtenirListeValeurEtRafraichir(this, "prefixe", sequenceur);
|
676 |
gduche |
271 |
|
|
|
272 |
//Prénom
|
|
|
273 |
TextField<String> tfPrenom = new TextField<String>();
|
|
|
274 |
tfPrenom.setFieldLabel("Prénom");
|
|
|
275 |
tfPrenom.setName("prenom");
|
|
|
276 |
|
1086 |
jpm |
277 |
fsNoms.add(tfPrenom, new FormData(300, 0));
|
676 |
gduche |
278 |
hmIdentite.put("tfPrenom", tfPrenom);
|
1845 |
aurelien |
279 |
|
|
|
280 |
tfPrenom.addListener(Events.Blur, creerEcouteurNomPrenomExistant());
|
|
|
281 |
tfPrenom.addListener(Events.Change, new Listener<BaseEvent>() {
|
|
|
282 |
@Override
|
|
|
283 |
public void handleEvent(BaseEvent be) {
|
|
|
284 |
verificationDoublonEffectuee = false;
|
|
|
285 |
}
|
|
|
286 |
});
|
676 |
gduche |
287 |
|
|
|
288 |
//Nom
|
|
|
289 |
TextField<String> tfNom = new TextField<String>();
|
|
|
290 |
tfNom.setFieldLabel("Nom");
|
|
|
291 |
tfNom.setAllowBlank(false);
|
|
|
292 |
tfNom.setName("nom");
|
981 |
jpm |
293 |
tfNom.addStyleName(ComposantClass.OBLIGATOIRE);
|
|
|
294 |
tfNom.addListener(Events.Valid, creerEcouteurChampObligatoire());
|
676 |
gduche |
295 |
|
1845 |
aurelien |
296 |
tfNom.addListener(Events.Blur, creerEcouteurNomPrenomExistant());
|
|
|
297 |
tfNom.addListener(Events.Change, new Listener<BaseEvent>() {
|
|
|
298 |
@Override
|
|
|
299 |
public void handleEvent(BaseEvent be) {
|
|
|
300 |
verificationDoublonEffectuee = false;
|
|
|
301 |
}
|
|
|
302 |
});
|
|
|
303 |
|
1086 |
jpm |
304 |
fsNoms.add(tfNom, new FormData(300, 0));
|
676 |
gduche |
305 |
hmIdentite.put("tfNom", tfNom);
|
|
|
306 |
|
|
|
307 |
//Suffixe
|
|
|
308 |
ListStore<Valeur> storeSuffixe = new ListStore<Valeur>();
|
|
|
309 |
ComboBox<Valeur> cbSuffixe = new ComboBox<Valeur>();
|
|
|
310 |
cbSuffixe.setStore(storeSuffixe);
|
|
|
311 |
cbSuffixe.setFieldLabel("Suffixe");
|
|
|
312 |
cbSuffixe.setDisplayField("nom");
|
|
|
313 |
cbSuffixe.setEmptyText("Choisissez un suffixe:");
|
|
|
314 |
|
|
|
315 |
fsNoms.add(cbSuffixe);
|
|
|
316 |
hmIdentite.put("cbSuffixe", cbSuffixe);
|
|
|
317 |
|
1369 |
cyprien |
318 |
mediateur.obtenirListeValeurEtRafraichir(this, "suffixes", sequenceur);
|
676 |
gduche |
319 |
|
|
|
320 |
TextField<String> tfAbreviation = new TextField<String>();
|
|
|
321 |
tfAbreviation.setFieldLabel("Abréviation");
|
|
|
322 |
tfAbreviation.setName("abreviation");
|
|
|
323 |
|
|
|
324 |
fsNoms.add(tfAbreviation);
|
|
|
325 |
hmIdentite.put("tfAbreviation", tfAbreviation);
|
|
|
326 |
|
821 |
gduche |
327 |
TableLayout layoutAutreNoms = new TableLayout(2);
|
|
|
328 |
layoutAutreNoms.setCellVerticalAlign(VerticalAlignment.TOP);
|
|
|
329 |
LayoutContainer autresNoms = new LayoutContainer(layoutAutreNoms);
|
|
|
330 |
ChampMultiValeurs nomAutre = new ChampMultiValeurs("Autres noms",150);
|
|
|
331 |
hmIdentite.put("nomAutre", nomAutre);
|
|
|
332 |
autresNoms.add(nomAutre, new TableData("200px", "15px"));
|
676 |
gduche |
333 |
|
821 |
gduche |
334 |
ChampMultiValeurs abreviationAutre = new ChampMultiValeurs("Autres abréviation",150);
|
|
|
335 |
hmIdentite.put("abreviationAutre", abreviationAutre);
|
|
|
336 |
autresNoms.add(abreviationAutre, new TableData("200px", "15px"));
|
|
|
337 |
fsNoms.add(autresNoms);
|
376 |
gduche |
338 |
|
676 |
gduche |
339 |
left.add(fsNoms);
|
|
|
340 |
|
1086 |
jpm |
341 |
//+------------------------------------------------------------------------------------------------------------+
|
|
|
342 |
// Fieldset NAISSANCE ET DÉCÈS
|
973 |
gduche |
343 |
FieldSet fsNaissanceEtDeces = new FieldSet();
|
1680 |
raphael |
344 |
fsNaissanceEtDeces.setHeadingHtml("Naissance et Décès");
|
973 |
gduche |
345 |
fsNaissanceEtDeces.setLayout(new ColumnLayout());
|
|
|
346 |
|
676 |
gduche |
347 |
formLayout = new FormLayout();
|
973 |
gduche |
348 |
formLayout.setLabelAlign(LabelAlign.TOP);
|
|
|
349 |
LayoutContainer containerNaissance = new LayoutContainer(formLayout);
|
|
|
350 |
|
1284 |
gduche |
351 |
//Remplacement du DateField par un champ texte
|
|
|
352 |
TextField tfDateNaissance = new TextField();
|
|
|
353 |
tfDateNaissance.setFieldLabel("Date de naissance");
|
|
|
354 |
containerNaissance.add(tfDateNaissance);
|
|
|
355 |
hmIdentite.put("tfDateNaissance", tfDateNaissance);
|
676 |
gduche |
356 |
|
|
|
357 |
// Lieu naissance
|
730 |
jp_milcent |
358 |
TextField<String> tfLieuNaissance = new TextField<String>();
|
973 |
gduche |
359 |
tfLieuNaissance.setFieldLabel("Lieu de naissance");
|
676 |
gduche |
360 |
tfLieuNaissance.setName("naissance_lieu");
|
|
|
361 |
|
973 |
gduche |
362 |
containerNaissance.add(tfLieuNaissance);
|
676 |
gduche |
363 |
hmIdentite.put("tfLieuNaissance", tfLieuNaissance);
|
|
|
364 |
|
973 |
gduche |
365 |
fsNaissanceEtDeces.add(containerNaissance, new ColumnData(.5));
|
|
|
366 |
left.add(fsNaissanceEtDeces);
|
|
|
367 |
|
676 |
gduche |
368 |
formLayout = new FormLayout();
|
973 |
gduche |
369 |
formLayout.setLabelAlign(LabelAlign.TOP);
|
|
|
370 |
LayoutContainer containerDeces = new LayoutContainer(formLayout);
|
676 |
gduche |
371 |
|
|
|
372 |
Radio rbEstDecedee = new Radio();
|
973 |
gduche |
373 |
rbEstDecedee.setId("ce_deces");
|
|
|
374 |
|
676 |
gduche |
375 |
rbEstDecedee.setBoxLabel("oui");
|
829 |
gduche |
376 |
rbEstDecedee.setValueAttribute("1");
|
973 |
gduche |
377 |
rbEstDecedee.setId("rbEstD");
|
|
|
378 |
|
676 |
gduche |
379 |
rbEstDecedee.addListener(Events.Change, new Listener<ComponentEvent>() {
|
446 |
gduche |
380 |
|
676 |
gduche |
381 |
public void handleEvent(ComponentEvent be) {
|
|
|
382 |
if(((Radio) be.getComponent()).getValue().equals(true)) {
|
1284 |
gduche |
383 |
hmIdentite.getTextField("tfDateDeces").setVisible(true);
|
973 |
gduche |
384 |
hmIdentite.getTextField("tfLieuDeces").setVisible(true);
|
676 |
gduche |
385 |
} else {
|
1284 |
gduche |
386 |
TextField tfDateDeces = hmIdentite.getTextField("tfDateDeces");
|
|
|
387 |
tfDateDeces.setValue(null);
|
|
|
388 |
tfDateDeces.setVisible(false);
|
829 |
gduche |
389 |
|
973 |
gduche |
390 |
TextField tfLieuDeces = hmIdentite.getTextField("tfLieuDeces");
|
829 |
gduche |
391 |
tfLieuDeces.setValue(null);
|
|
|
392 |
tfLieuDeces.setVisible(false);
|
676 |
gduche |
393 |
}
|
|
|
394 |
}
|
|
|
395 |
});
|
446 |
gduche |
396 |
|
1284 |
gduche |
397 |
TextField tfDateDeces = new TextField();
|
|
|
398 |
tfDateDeces.setFieldLabel("Date de décès");
|
|
|
399 |
tfDateDeces.setVisible(false);
|
676 |
gduche |
400 |
|
1284 |
gduche |
401 |
containerDeces.add(tfDateDeces);
|
|
|
402 |
hmIdentite.put("tfDateDeces", tfDateDeces);
|
676 |
gduche |
403 |
|
730 |
jp_milcent |
404 |
TextField<String> tfLieuDeces = new TextField<String>();
|
973 |
gduche |
405 |
tfLieuDeces.setFieldLabel("Lieu de décès");
|
676 |
gduche |
406 |
tfLieuDeces.setName("deces_lieu");
|
|
|
407 |
tfLieuDeces.setVisible(false);
|
|
|
408 |
|
973 |
gduche |
409 |
containerDeces.add(tfLieuDeces);
|
676 |
gduche |
410 |
hmIdentite.put("tfLieuDeces", tfLieuDeces);
|
973 |
gduche |
411 |
hmIdentite.put("rbEstDecedee", rbEstDecedee);
|
|
|
412 |
|
|
|
413 |
Radio rbNestPasDecedee = new Radio();
|
|
|
414 |
rbNestPasDecedee.setValueAttribute("0");
|
|
|
415 |
rbNestPasDecedee.setBoxLabel("non");
|
|
|
416 |
rbNestPasDecedee.setValue(true);
|
276 |
gduche |
417 |
|
973 |
gduche |
418 |
RadioGroup rbgDeces = new RadioGroup();
|
1186 |
gduche |
419 |
rbgDeces.setId("rbgDeces");
|
|
|
420 |
|
973 |
gduche |
421 |
rbgDeces.setFieldLabel("Est décédée");
|
|
|
422 |
rbgDeces.add(rbEstDecedee);
|
|
|
423 |
rbgDeces.add(rbNestPasDecedee);
|
1186 |
gduche |
424 |
hmIdentite.put("rbgDeces", rbgDeces);
|
973 |
gduche |
425 |
|
|
|
426 |
containerDeces.add(rbgDeces);
|
|
|
427 |
|
|
|
428 |
fsNaissanceEtDeces.add(containerDeces, new ColumnData(.5));
|
676 |
gduche |
429 |
tiIdentite.add(main);
|
1086 |
jpm |
430 |
|
|
|
431 |
//+------------------------------------------------------------------------------------------------------------+
|
|
|
432 |
// Fieldset CONTACT
|
973 |
gduche |
433 |
FieldSet fsContact = new FieldSet();
|
1680 |
raphael |
434 |
fsContact.setHeadingHtml("Contact");
|
1846 |
aurelien |
435 |
fsContact.setWidth("95%");
|
973 |
gduche |
436 |
fsContact.setLayout(new RowLayout());
|
676 |
gduche |
437 |
|
973 |
gduche |
438 |
ChampMultiValeursMultiTypes telephones = new ChampMultiValeursMultiTypes("Téléphones", 180, 100);
|
1086 |
jpm |
439 |
telephones.initialiserType("tel");
|
|
|
440 |
fsContact.add(telephones, new FormData(450, 0));
|
722 |
gduche |
441 |
hmIdentite.put("telephones", telephones);
|
676 |
gduche |
442 |
|
973 |
gduche |
443 |
ChampMultiValeurs courriels = new ChampMultiValeurs("Courriels", 280);
|
|
|
444 |
courriels.setValidation(Pattern.email, "moi@domaine.fr");
|
1086 |
jpm |
445 |
fsContact.add(courriels, new FormData(450, 0));
|
692 |
gduche |
446 |
hmIdentite.put("courriels", courriels);
|
676 |
gduche |
447 |
|
|
|
448 |
LayoutContainer lcCourrielContainer = new LayoutContainer(new RowLayout());
|
|
|
449 |
fsContact.add(lcCourrielContainer);
|
|
|
450 |
hmIdentite.put("lcCourrielContainer", lcCourrielContainer);
|
|
|
451 |
|
973 |
gduche |
452 |
fsContact.add(new Text(""));
|
|
|
453 |
|
692 |
gduche |
454 |
ChampMultiValeurs sites = new ChampMultiValeurs("Sites web");
|
1846 |
aurelien |
455 |
sites.setWidth("95%");
|
695 |
gduche |
456 |
sites.setValeurParDefaut("http://");
|
729 |
jp_milcent |
457 |
sites.setValidation(Pattern.url, "http://www.monsite.com");
|
692 |
gduche |
458 |
fsContact.add(sites);
|
|
|
459 |
hmIdentite.put("sites", sites);
|
1086 |
jpm |
460 |
|
|
|
461 |
right.add(fsContact);
|
|
|
462 |
|
|
|
463 |
//+------------------------------------------------------------------------------------------------------------+
|
|
|
464 |
// Fieldset AUTRES INFOS
|
676 |
gduche |
465 |
FieldSet fsAutresInfos = new FieldSet();
|
1680 |
raphael |
466 |
fsAutresInfos.setHeadingHtml("Autres informations");
|
1846 |
aurelien |
467 |
fsAutresInfos.setWidth("95%");
|
676 |
gduche |
468 |
|
|
|
469 |
formLayout = new FormLayout();
|
|
|
470 |
formLayout.setLabelAlign(LabelAlign.LEFT);
|
|
|
471 |
fsAutresInfos.setLayout(formLayout);
|
356 |
gduche |
472 |
|
386 |
gduche |
473 |
|
676 |
gduche |
474 |
formLayout = new FormLayout();
|
|
|
475 |
formLayout.setLabelAlign(LabelAlign.TOP);
|
|
|
476 |
LayoutContainer lcAutreInformations1 = new LayoutContainer(formLayout);
|
1086 |
jpm |
477 |
|
676 |
gduche |
478 |
ListStore<Valeur> storeSexe = new ListStore<Valeur>();
|
|
|
479 |
ComboBox<Valeur> cbSexe = new ComboBox<Valeur>();
|
|
|
480 |
cbSexe.setStore(storeSexe);
|
|
|
481 |
cbSexe.setFieldLabel("Sexe");
|
|
|
482 |
cbSexe.setDisplayField("nom");
|
|
|
483 |
cbSexe.setEmptyText("Choisissez le sexe:");
|
1101 |
gduche |
484 |
cbSexe.setTypeAhead(true);
|
|
|
485 |
cbSexe.setTriggerAction(TriggerAction.ALL);
|
973 |
gduche |
486 |
|
|
|
487 |
FormData fd = new FormData();
|
|
|
488 |
fd.setWidth(100);
|
|
|
489 |
lcAutreInformations1.add(cbSexe, fd);
|
676 |
gduche |
490 |
hmIdentite.put("cbSexe", cbSexe);
|
386 |
gduche |
491 |
|
1369 |
cyprien |
492 |
mediateur.obtenirListeValeurEtRafraichir(this, "sexe", sequenceur);
|
676 |
gduche |
493 |
|
|
|
494 |
//Description
|
1846 |
aurelien |
495 |
final TextArea taDescription = new TextArea();
|
676 |
gduche |
496 |
taDescription.setEmptyText("Saisissez une description");
|
|
|
497 |
taDescription.setFieldLabel("Description");
|
|
|
498 |
taDescription.setName("description");
|
|
|
499 |
|
1846 |
aurelien |
500 |
lcAutreInformations1.add(taDescription, new FormData(300, 200));
|
676 |
gduche |
501 |
hmIdentite.put("taDescription", taDescription);
|
|
|
502 |
|
|
|
503 |
fsAutresInfos.add(lcAutreInformations1);
|
1846 |
aurelien |
504 |
|
676 |
gduche |
505 |
// Logo
|
689 |
gduche |
506 |
LayoutContainer lcLogoUrl = new LayoutContainer();
|
|
|
507 |
hmIdentite.put("lcLogoUrl", lcLogoUrl);
|
676 |
gduche |
508 |
|
1846 |
aurelien |
509 |
final ChampMultiValeursImage logo = new ChampMultiValeursImage(i18nC.personneLogos());
|
701 |
gduche |
510 |
logo.setImageHeight("150px");
|
|
|
511 |
logo.setValeurParDefaut("http://");
|
729 |
jp_milcent |
512 |
logo.setValidation(Pattern.url, "http://www.monsite.com/mon_image.jpg");
|
701 |
gduche |
513 |
logo.setValeurBoutonSupprimer("Supprimer");
|
1846 |
aurelien |
514 |
logo.setWidth("95%");
|
701 |
gduche |
515 |
hmIdentite.put("logos", logo);
|
676 |
gduche |
516 |
|
701 |
gduche |
517 |
lcLogoUrl.add(logo);
|
676 |
gduche |
518 |
|
701 |
gduche |
519 |
fsAutresInfos.add(logo);
|
689 |
gduche |
520 |
|
|
|
521 |
LayoutContainer lcAutreInformations2 = new LayoutContainer(new ColumnLayout());
|
|
|
522 |
hmIdentite.put("lcAutreInformations2", lcAutreInformations2);
|
676 |
gduche |
523 |
fsAutresInfos.add(lcAutreInformations2);
|
386 |
gduche |
524 |
|
676 |
gduche |
525 |
right.add(fsAutresInfos);
|
1086 |
jpm |
526 |
|
|
|
527 |
//+------------------------------------------------------------------------------------------------------------+
|
676 |
gduche |
528 |
// Ajout des évènements saisi
|
|
|
529 |
KeyListener klNoms = new KeyListener() {
|
|
|
530 |
public void componentKeyUp(ComponentEvent ev) {
|
|
|
531 |
rafraichir(null);
|
|
|
532 |
}
|
|
|
533 |
};
|
|
|
534 |
|
|
|
535 |
SelectionChangedListener<Valeur> selectionChange = new SelectionChangedListener<Valeur>() {
|
|
|
536 |
public void selectionChanged(SelectionChangedEvent se) {
|
730 |
jp_milcent |
537 |
rafraichir(null);
|
|
|
538 |
}
|
676 |
gduche |
539 |
};
|
283 |
gduche |
540 |
|
676 |
gduche |
541 |
cbPrefixe.addSelectionChangedListener(selectionChange);
|
|
|
542 |
cbPrefixe.addKeyListener(klNoms);
|
|
|
543 |
tfPrenom.addKeyListener(klNoms);
|
|
|
544 |
tfNom.addKeyListener(klNoms);
|
|
|
545 |
cbSuffixe.addSelectionChangedListener(selectionChange);
|
276 |
gduche |
546 |
|
|
|
547 |
}
|
|
|
548 |
|
293 |
gduche |
549 |
public void creerComposantsAdresse() {
|
|
|
550 |
// Gauche
|
|
|
551 |
LayoutContainer left = new LayoutContainer();
|
|
|
552 |
left.setLayout(new FormLayout());
|
821 |
gduche |
553 |
left.setStyleAttribute("padding", "15px");
|
293 |
gduche |
554 |
// Droite
|
|
|
555 |
LayoutContainer right = new LayoutContainer();
|
|
|
556 |
right.setLayout(new FormLayout());
|
|
|
557 |
|
|
|
558 |
// Principal
|
|
|
559 |
LayoutContainer main = new LayoutContainer();
|
821 |
gduche |
560 |
main.setLayout(new TableLayout(2));
|
293 |
gduche |
561 |
|
|
|
562 |
// Ajout au principal
|
821 |
gduche |
563 |
main.add(left);
|
|
|
564 |
main.add(right);
|
293 |
gduche |
565 |
|
|
|
566 |
TextField<String> tfAdresse1 = new TextField();
|
|
|
567 |
tfAdresse1.setFieldLabel("Adresse");
|
376 |
gduche |
568 |
tfAdresse1.setName("adresse_01");
|
319 |
gduche |
569 |
left.add(tfAdresse1, fd100);
|
293 |
gduche |
570 |
hmAdresse.put("tfAdresse1", tfAdresse1);
|
|
|
571 |
|
|
|
572 |
ComboBox<Valeur> cbPays = new ComboBox<Valeur>();
|
|
|
573 |
cbPays.setFieldLabel("Pays");
|
|
|
574 |
cbPays.setDisplayField("nom");
|
|
|
575 |
cbPays.setEmptyText("Sélectionnez le pays:");
|
|
|
576 |
|
|
|
577 |
ListStore<Valeur> storePays = new ListStore<Valeur>();
|
|
|
578 |
cbPays.setStore(storePays);
|
|
|
579 |
|
319 |
gduche |
580 |
right.add(cbPays, fd100);
|
293 |
gduche |
581 |
hmAdresse.put("cbPays", cbPays);
|
|
|
582 |
|
|
|
583 |
TextField<String> tfBoitePostale = new TextField<String>();
|
|
|
584 |
tfBoitePostale.setFieldLabel("Boite postale");
|
376 |
gduche |
585 |
tfBoitePostale.setName("bp");
|
|
|
586 |
|
319 |
gduche |
587 |
left.add(tfBoitePostale, fd100);
|
293 |
gduche |
588 |
hmAdresse.put("tfBoitePostale", tfBoitePostale);
|
|
|
589 |
|
|
|
590 |
TextField<Integer> tfCodePostal = new TextField<Integer>();
|
|
|
591 |
tfCodePostal.setFieldLabel("Code postal");
|
376 |
gduche |
592 |
tfCodePostal.setName("code_postal");
|
|
|
593 |
|
319 |
gduche |
594 |
right.add(tfCodePostal, fd100);
|
293 |
gduche |
595 |
hmAdresse.put("tfCodePostal", tfCodePostal);
|
|
|
596 |
|
|
|
597 |
TextField tfVille = new TextField();
|
|
|
598 |
tfVille.setFieldLabel("Ville");
|
376 |
gduche |
599 |
tfVille.setName("ville");
|
293 |
gduche |
600 |
|
319 |
gduche |
601 |
right.add(tfVille, fd100);
|
293 |
gduche |
602 |
hmAdresse.put("tfVille", tfVille);
|
|
|
603 |
|
|
|
604 |
// MAJ ComboBox
|
1369 |
cyprien |
605 |
mediateur.obtenirListeValeurEtRafraichir(this, "pays", sequenceur);
|
293 |
gduche |
606 |
|
304 |
gduche |
607 |
FieldSet fsAdresse = new FieldSet();
|
1680 |
raphael |
608 |
fsAdresse.setHeadingHtml("Adresse personnelle");
|
304 |
gduche |
609 |
fsAdresse.add(main);
|
293 |
gduche |
610 |
|
304 |
gduche |
611 |
tiAdresses.add(fsAdresse);
|
293 |
gduche |
612 |
}
|
821 |
gduche |
613 |
|
|
|
614 |
public void creerComposantsInfosNat() {
|
338 |
gduche |
615 |
|
979 |
gduche |
616 |
FormLayout fl = new FormLayout();
|
|
|
617 |
fl.setLabelAlign(LabelAlign.TOP);
|
821 |
gduche |
618 |
FieldSet fsInfosNat = new FieldSet();
|
979 |
gduche |
619 |
fsInfosNat.setLayout(fl);
|
821 |
gduche |
620 |
fsInfosNat.setTitle("Informations Naturaliste");
|
1292 |
cyprien |
621 |
|
979 |
gduche |
622 |
TextArea taBiographie = new TextArea();
|
|
|
623 |
taBiographie.setFieldLabel("Vie et renommée de l'auteur");
|
|
|
624 |
taBiographie.setWidth("400");
|
|
|
625 |
taBiographie.setName("biographie");
|
1086 |
jpm |
626 |
fsInfosNat.add(taBiographie, new FormData(800, 200));
|
1292 |
cyprien |
627 |
|
875 |
jpm |
628 |
ChampMultiValeurs specialite = new ChampMultiValeurs(i18nC.personneSpecialite());
|
821 |
gduche |
629 |
fsInfosNat.add(specialite);
|
|
|
630 |
hmInfosNat.put("specialite", specialite);
|
1292 |
cyprien |
631 |
|
|
|
632 |
ModelType typeTypes = new ModelType();
|
|
|
633 |
typeTypes.setRoot("valeurs");
|
|
|
634 |
typeTypes.setTotalName("nbElements");
|
|
|
635 |
typeTypes.addField("cmlv_nom");
|
|
|
636 |
typeTypes.addField("cmlv_id_valeur");
|
|
|
637 |
typeTypes.addField("cmlv_abreviation");
|
|
|
638 |
typeTypes.addField("cmlv_description");
|
821 |
gduche |
639 |
|
1292 |
cyprien |
640 |
String displayNameTypes = "cmlv_nom";
|
|
|
641 |
String nomListeTypes = "pays";
|
1468 |
jpm |
642 |
ProxyValeur<ModelData> proxyTypes = new ProxyValeur<ModelData>(nomListeTypes, null);
|
1292 |
cyprien |
643 |
|
|
|
644 |
ChampMultiValeursMultiTypesPaginable recolte = new ChampMultiValeursMultiTypesPaginable(i18nC.personneRecolte(), 450, false, null, null, null, typeTypes, proxyTypes, displayNameTypes);
|
|
|
645 |
|
821 |
gduche |
646 |
hmInfosNat.put("recolte", recolte);
|
|
|
647 |
fsInfosNat.add(recolte);
|
|
|
648 |
tiInfosNat.add(fsInfosNat);
|
|
|
649 |
}
|
|
|
650 |
|
991 |
gduche |
651 |
public void creerComposantsPubli(){
|
|
|
652 |
//Création des composants de l'onglet publication
|
|
|
653 |
|
|
|
654 |
ContentPanel cp = new ContentPanel();
|
1680 |
raphael |
655 |
cp.setHeadingHtml("Publications dont la personne est le sujet");
|
991 |
gduche |
656 |
cp.setIcon(Images.ICONES.table());
|
|
|
657 |
cp.setLayout(new FitLayout());
|
|
|
658 |
cp.setFrame(true);
|
|
|
659 |
|
|
|
660 |
ToolBar toolBar = new ToolBar();
|
|
|
661 |
|
|
|
662 |
Button ajouterPubli = new Button("Ajouter");
|
|
|
663 |
ajouterPubli.setIcon(Images.ICONES.vcardAjouter());
|
|
|
664 |
ajouterPubli.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
665 |
@Override
|
|
|
666 |
public void componentSelected(ButtonEvent ce) {
|
|
|
667 |
/*StructureAPersonne membreDuPersonnel = new StructureAPersonne("", StructureAPersonne.ROLE_EQUIPE, StructureAPersonne.ETAT_AJOUTE);
|
|
|
668 |
ajouterMembreAGrillePersonnel(membreDuPersonnel);*/
|
|
|
669 |
}
|
|
|
670 |
});
|
|
|
671 |
toolBar.add(ajouterPubli);
|
|
|
672 |
|
|
|
673 |
toolBar.add(new SeparatorToolItem());
|
|
|
674 |
|
|
|
675 |
Button supprimerPubli = new Button("Supprimer");
|
|
|
676 |
supprimerPubli.setIcon(Images.ICONES.vcardSupprimer());
|
|
|
677 |
supprimerPubli.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
678 |
@Override
|
|
|
679 |
public void componentSelected(ButtonEvent ce) {
|
|
|
680 |
/*StructureAPersonne personne = grillePersonnel.getSelectionModel().getSelectedItem();
|
|
|
681 |
if (personne != null) {
|
|
|
682 |
// Ajout de la personne supprimée à la liste
|
|
|
683 |
if (personne.getIdPersonne() != null && !personne.getIdPersonne().equals("")) {
|
|
|
684 |
personnelSupprime.put(personne.getId(), personne);
|
|
|
685 |
}
|
|
|
686 |
|
|
|
687 |
// Suppression de l'enregistrement de la grille
|
|
|
688 |
grillePersonnel.getStore().remove(personne);
|
|
|
689 |
|
|
|
690 |
// Désactivation du bouton supprimer si la grille contient plus d'élément
|
|
|
691 |
if (grillePersonnel.getStore().getCount() == 0) {
|
|
|
692 |
//TODO : check : Item -> component
|
|
|
693 |
ce.getComponent().disable();
|
|
|
694 |
}
|
|
|
695 |
}*/
|
|
|
696 |
Window.alert("supprimer");
|
|
|
697 |
}
|
|
|
698 |
});
|
|
|
699 |
toolBar.add(supprimerPubli);
|
|
|
700 |
|
|
|
701 |
toolBar.add(new SeparatorToolItem());
|
|
|
702 |
|
|
|
703 |
Button rafraichirPersonnelBtn = new Button("Rafraichir");
|
|
|
704 |
rafraichirPersonnelBtn.setIcon(Images.ICONES.rafraichir());
|
|
|
705 |
rafraichirPersonnelBtn.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
706 |
@Override
|
|
|
707 |
public void componentSelected(ButtonEvent ce) {
|
|
|
708 |
//rafraichirPersonnel();
|
|
|
709 |
Window.alert("rafraichir");
|
|
|
710 |
}
|
|
|
711 |
});
|
|
|
712 |
toolBar.add(rafraichirPersonnelBtn);
|
|
|
713 |
|
|
|
714 |
//Ajout d'une ComboBox
|
|
|
715 |
storePubli = new ListStore<Publication>();
|
|
|
716 |
storePubli.add(new ArrayList<Publication>());
|
|
|
717 |
|
|
|
718 |
cbPubli = new ComboBox<Publication>();
|
|
|
719 |
cbPubli.setWidth(200);
|
|
|
720 |
cbPubli.setEmptyText("Chercher une publication existante...");
|
|
|
721 |
cbPubli.setTriggerAction(TriggerAction.ALL);
|
|
|
722 |
cbPubli.setEditable(true);
|
|
|
723 |
cbPubli.setDisplayField("fmt_nom_complet");
|
|
|
724 |
cbPubli.setStore(storePubli);
|
|
|
725 |
cbPubli.addKeyListener(new KeyListener() {
|
|
|
726 |
|
|
|
727 |
public void componentKeyUp(ComponentEvent ce) {
|
|
|
728 |
if (!ce.isNavKeyPress() && cbPubli.getRawValue() != null && cbPubli.getRawValue().length() > 0) {
|
|
|
729 |
rafraichirPublicationsExistante(cbPubli.getRawValue());
|
|
|
730 |
}
|
|
|
731 |
}
|
|
|
732 |
|
|
|
733 |
});
|
|
|
734 |
|
|
|
735 |
toolBar.add(cbPubli);
|
|
|
736 |
toolBar.add(new SeparatorToolItem());
|
|
|
737 |
cp.setTopComponent(toolBar);
|
|
|
738 |
|
|
|
739 |
|
|
|
740 |
tiPubli.add(cp);
|
|
|
741 |
}
|
|
|
742 |
|
1262 |
cyprien |
743 |
public void rafraichirPublicationsExistante(String nomPubli) {
|
991 |
gduche |
744 |
nomPubli +="%";
|
1764 |
aurelien |
745 |
mediateur.selectionnerPublicationParNomComplet(this, nomPubli);
|
991 |
gduche |
746 |
}
|
|
|
747 |
|
276 |
gduche |
748 |
/**
|
|
|
749 |
* Ajouter le bouton annuler à la barre d'outils donnée
|
|
|
750 |
*
|
|
|
751 |
* @param barreOutils la barre d'outils à modifier
|
|
|
752 |
* */
|
356 |
gduche |
753 |
public static void ajouterBoutonAnnuler(ButtonBar barreOutils) {
|
276 |
gduche |
754 |
|
|
|
755 |
// Le bouton annuler ne sauvegarde pas les informations et renvoie vers la page précédente
|
356 |
gduche |
756 |
Button annuler = new Button("Revenir à la liste");
|
488 |
gduche |
757 |
annuler.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
758 |
public void componentSelected(ButtonEvent ce) {
|
276 |
gduche |
759 |
((Mediateur) Registry.get(RegistreId.MEDIATEUR)).clicMenu("Personnes");
|
|
|
760 |
}
|
|
|
761 |
});
|
|
|
762 |
annuler.setIconStyle(ComposantClass.ICONE_SUPPRIMER);
|
|
|
763 |
barreOutils.add(annuler);
|
|
|
764 |
}
|
|
|
765 |
|
730 |
jp_milcent |
766 |
// RAFRAICHISSEMENT DU PANNEAU
|
|
|
767 |
|
283 |
gduche |
768 |
public void rafraichir(Object nouvellesDonnees) {
|
1292 |
cyprien |
769 |
|
1262 |
cyprien |
770 |
if (nouvellesDonnees instanceof PublicationAPersonneListe) {
|
991 |
gduche |
771 |
Information info = new Information();
|
|
|
772 |
info.setType("publication_liees");
|
|
|
773 |
info.setDonnee(0, (PublicationAPersonneListe) nouvellesDonnees);
|
|
|
774 |
tiPubli.rafraichir(info);
|
1014 |
gduche |
775 |
|
1292 |
cyprien |
776 |
} else if (nouvellesDonnees instanceof ValeurListe) {
|
283 |
gduche |
777 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
|
|
778 |
// Créer une liste de valeurs
|
|
|
779 |
List<Valeur> liste = new ArrayList<Valeur>();
|
|
|
780 |
for (Iterator<String> it = listeValeurs.keySet().iterator(); it.hasNext();) {
|
|
|
781 |
liste.add(listeValeurs.get(it.next()));
|
|
|
782 |
}
|
1014 |
gduche |
783 |
if (listeValeurs.getId().equals(config.getListeId("relationPersonnePublication"))) {
|
1262 |
cyprien |
784 |
tiPubli.rafraichir(nouvellesDonnees);
|
1014 |
gduche |
785 |
} else if (listeValeurs.getId().equals(config.getListeId("prefixe"))) {
|
319 |
gduche |
786 |
remplirCombobox("cbPrefixe", liste, "hmIdentite");
|
293 |
gduche |
787 |
} else if (listeValeurs.getId().equals(config.getListeId("suffixes"))) {
|
|
|
788 |
remplirCombobox("cbSuffixe", liste, "hmIdentite");
|
|
|
789 |
} else if (listeValeurs.getId().equals(config.getListeId("sexe"))) {
|
1101 |
gduche |
790 |
|
|
|
791 |
//Ajout de la valeur "Inconnu"
|
|
|
792 |
ComboBox<Valeur> cbSexe = hmAdresse.getComboBoxValeur("cbSexe");
|
|
|
793 |
Valeur inconnu = new Valeur();
|
|
|
794 |
inconnu.set("nom", "Inconnu");
|
|
|
795 |
inconnu.set("id", "0");
|
|
|
796 |
liste.add(0, inconnu);
|
|
|
797 |
|
293 |
gduche |
798 |
remplirCombobox("cbSexe", liste, "hmIdentite");
|
1101 |
gduche |
799 |
|
|
|
800 |
/*List<Valeur> selection = new LinkedList<Valeur>();
|
|
|
801 |
selection.add(inconnu);
|
|
|
802 |
cbSexe.setSelection(s);*/
|
|
|
803 |
|
|
|
804 |
|
293 |
gduche |
805 |
} else if (listeValeurs.getId().equals(config.getListeId("tel"))) {
|
|
|
806 |
remplirCombobox("cbTelephone", liste, "hmIdentite");
|
730 |
jp_milcent |
807 |
|
319 |
gduche |
808 |
//Préselection du tél
|
973 |
gduche |
809 |
ComboBox<Valeur> cbTelephone = hmIdentite.getComboBoxValeur("cbTelephone");
|
319 |
gduche |
810 |
cbTelephone.setValue(liste.get(1));
|
293 |
gduche |
811 |
} else if (listeValeurs.getId().equals(config.getListeId("pays"))) {
|
|
|
812 |
remplirCombobox("cbPays", liste, "hmAdresse");
|
283 |
gduche |
813 |
}
|
991 |
gduche |
814 |
} else if (nouvellesDonnees instanceof PublicationListe) {
|
|
|
815 |
PublicationListe publicationListe = (PublicationListe) nouvellesDonnees;
|
|
|
816 |
List<Publication> liste = publicationListe.toList();
|
|
|
817 |
storePubli.removeAll();
|
|
|
818 |
storePubli.add(liste);
|
|
|
819 |
cbPubli.setStore(storePubli);
|
1262 |
cyprien |
820 |
} else if (nouvellesDonnees instanceof Information) {
|
352 |
gduche |
821 |
Information info = (Information) nouvellesDonnees;
|
386 |
gduche |
822 |
if (info.getType().equals("ajout_personne")) {
|
884 |
jpm |
823 |
if (info.getDonnee(0) != null) {
|
|
|
824 |
personneSelectionnee.setId(info.getDonnee(0).toString());
|
|
|
825 |
GWT.log("Ajout de la personne " + personneSelectionnee.getId(), null);
|
1329 |
cyprien |
826 |
this.personne = personneSelectionnee;
|
|
|
827 |
this.personneId = personneSelectionnee.getId();
|
1239 |
cyprien |
828 |
InfoLogger.display("Enregistrement", "La personne a été ajoutée (id: " + personneSelectionnee.getId() + ")");
|
884 |
jpm |
829 |
repandreRafraichissement();
|
|
|
830 |
if (clicBoutonvalidation) {
|
|
|
831 |
mediateur.clicMenu(menuIdCourant);
|
1617 |
aurelien |
832 |
} else {
|
|
|
833 |
this.mode = MODE_MODIFIER;
|
884 |
jpm |
834 |
}
|
|
|
835 |
} else {
|
1239 |
cyprien |
836 |
InfoLogger.display("Enregistrement", info.getMessages().toString());
|
852 |
gduche |
837 |
}
|
433 |
gduche |
838 |
} else if (info.getType().equals("modification_personne")) {
|
1239 |
cyprien |
839 |
InfoLogger.display("Enregistrement", "Les modifications apportées à la personne " + personneSelectionnee.getId() + " ont été correctement enregistrées.");
|
884 |
jpm |
840 |
repandreRafraichissement();
|
1613 |
aurelien |
841 |
controlerFermeture();
|
884 |
jpm |
842 |
} else if (info.getType().equals("maj_utilisateur")) {
|
668 |
gduche |
843 |
gererEtatActivationBouton();
|
386 |
gduche |
844 |
} else if (info.getDonnee(0) instanceof PersonneListe) {
|
776 |
gduche |
845 |
|
730 |
jp_milcent |
846 |
Collection colPersonneListe = ((PersonneListe) info.getDonnee(0)).values();
|
|
|
847 |
Iterator itPersonneListe = colPersonneListe.iterator();
|
|
|
848 |
Personne personne = (Personne) itPersonneListe.next();
|
|
|
849 |
|
991 |
gduche |
850 |
//TODO : Je vois pas l'intérêt des lignes ci dessous..
|
730 |
jp_milcent |
851 |
personneSauvegarde = new Personne();
|
|
|
852 |
personneSauvegarde = (Personne) personne.cloner(personneSauvegarde);
|
|
|
853 |
|
|
|
854 |
binderPersonne(personne);
|
|
|
855 |
|
776 |
gduche |
856 |
mettreAJourPersonne(personne);
|
730 |
jp_milcent |
857 |
|
1329 |
cyprien |
858 |
this.personne = personne;
|
|
|
859 |
this.personneId = personne.getId();
|
|
|
860 |
|
1513 |
jpm |
861 |
tiPubli.rafraichirInformation(new Information("personne"));
|
|
|
862 |
|
730 |
jp_milcent |
863 |
nouvellesDonnees = null;
|
|
|
864 |
} else {
|
1239 |
cyprien |
865 |
InfoLogger.display("messages", info.getMessages().toString());
|
730 |
jp_milcent |
866 |
}
|
776 |
gduche |
867 |
}
|
283 |
gduche |
868 |
|
1262 |
cyprien |
869 |
if (nouvellesDonnees == null) {
|
973 |
gduche |
870 |
ComboBox<Valeur> cb= hmIdentite.getComboBoxValeur("cbPrefixe");
|
293 |
gduche |
871 |
|
|
|
872 |
//Met à jour le nom Complet du formulaire
|
283 |
gduche |
873 |
String valeurRetour = "";
|
|
|
874 |
|
|
|
875 |
// Prefixe
|
|
|
876 |
String prefixe = "";
|
973 |
gduche |
877 |
Valeur valPrefixe = cb.getValue();
|
283 |
gduche |
878 |
|
|
|
879 |
if (valPrefixe != null) {
|
|
|
880 |
prefixe = valPrefixe.getNom();
|
293 |
gduche |
881 |
} else {
|
973 |
gduche |
882 |
prefixe = (String) cb.getRawValue();
|
293 |
gduche |
883 |
}
|
283 |
gduche |
884 |
|
|
|
885 |
// Prénom
|
973 |
gduche |
886 |
String prenom = (String) hmIdentite.getTextField("tfPrenom").getValue();
|
283 |
gduche |
887 |
|
|
|
888 |
// Nom
|
973 |
gduche |
889 |
String nom = (String) hmIdentite.getTextField("tfNom").getValue();
|
283 |
gduche |
890 |
|
|
|
891 |
// Suffixe
|
973 |
gduche |
892 |
ComboBox<Valeur> cbSuffixe = hmIdentite.getComboBoxValeur("cbSuffixe");
|
|
|
893 |
|
283 |
gduche |
894 |
String suffixe = "";
|
973 |
gduche |
895 |
Valeur valSuffixe = cbSuffixe.getValue();
|
283 |
gduche |
896 |
|
|
|
897 |
if (valSuffixe != null) {
|
|
|
898 |
suffixe = valSuffixe.getNom();
|
293 |
gduche |
899 |
} else {
|
973 |
gduche |
900 |
suffixe = (String) cbSuffixe.getRawValue();
|
283 |
gduche |
901 |
}
|
|
|
902 |
|
|
|
903 |
// Mettre à jour la valeur
|
|
|
904 |
valeurRetour = prefixe + " " + prenom + " " + nom + " " + suffixe;
|
|
|
905 |
valeurRetour = valeurRetour.replaceAll("null", "");
|
|
|
906 |
|
973 |
gduche |
907 |
hmIdentite.getLabelField("nomComplet").setValue(valeurRetour);
|
283 |
gduche |
908 |
|
|
|
909 |
if (!valeurRetour.trim().equals("")) {
|
973 |
gduche |
910 |
hmIdentite.getLabelField("nomComplet").show();
|
283 |
gduche |
911 |
} else {
|
973 |
gduche |
912 |
hmIdentite.getLabelField("nomComplet").hide();
|
283 |
gduche |
913 |
}
|
|
|
914 |
}
|
338 |
gduche |
915 |
|
|
|
916 |
mediateur.masquerPopinChargement();
|
456 |
gduche |
917 |
|
461 |
gduche |
918 |
if (this.mode.equals(MODE_AJOUTER)) {
|
668 |
gduche |
919 |
gererEtatActivationBouton();
|
1262 |
cyprien |
920 |
}
|
127 |
gduche |
921 |
}
|
|
|
922 |
|
1262 |
cyprien |
923 |
private void repandreRafraichissement() {
|
884 |
jpm |
924 |
if (vueExterneARafraichirApresValidation != null) {
|
|
|
925 |
String type = "personne_modifiee";
|
|
|
926 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
927 |
type = "personne_ajoutee";
|
|
|
928 |
}
|
|
|
929 |
Information info = new Information(type);
|
|
|
930 |
info.setDonnee(0, personneSelectionnee);
|
|
|
931 |
vueExterneARafraichirApresValidation.rafraichir(info);
|
|
|
932 |
}
|
|
|
933 |
}
|
|
|
934 |
|
776 |
gduche |
935 |
private void mettreAJourPersonne(Personne personne) {
|
1292 |
cyprien |
936 |
|
1329 |
cyprien |
937 |
//Mise à jour de la personne
|
776 |
gduche |
938 |
|
|
|
939 |
//Prefixe
|
|
|
940 |
String prefixe = personne.get("ce_truk_prefix");
|
973 |
gduche |
941 |
ComboBox<Valeur> cbPrefixe = hmIdentite.getComboBoxValeur("cbPrefixe");
|
776 |
gduche |
942 |
|
|
|
943 |
|
|
|
944 |
String prefixeCourant = personne.get("ce_truk_prefix");
|
|
|
945 |
if (cbPrefixe.getStore().findModel("id_valeur", prefixeCourant) != null) {
|
|
|
946 |
cbPrefixe.setValue(cbPrefixe.getStore().findModel("id_valeur", prefixeCourant));
|
|
|
947 |
} else {
|
|
|
948 |
cbPrefixe.setRawValue(prefixeCourant);
|
|
|
949 |
}
|
|
|
950 |
|
973 |
gduche |
951 |
hmIdentite.getTextField("tfPrenom").setValue(personne.get("prenom"));
|
|
|
952 |
hmIdentite.getTextField("tfNom").setValue(personne.get("nom"));
|
776 |
gduche |
953 |
|
|
|
954 |
//Suffixe
|
|
|
955 |
String suffixe = personne.get("ce_truk_suffixe");
|
973 |
gduche |
956 |
ComboBox<Valeur> cbSuffixe = hmIdentite.getComboBoxValeur("cbSuffixe");
|
776 |
gduche |
957 |
|
|
|
958 |
String suffixeCourant = personne.get("ce_truk_suffix");
|
|
|
959 |
if (cbSuffixe.getStore().findModel("id_valeur", suffixeCourant) != null) {
|
|
|
960 |
cbSuffixe.setValue(cbSuffixe.getStore().findModel("id_valeur", suffixeCourant));
|
|
|
961 |
} else {
|
|
|
962 |
cbSuffixe.setRawValue(suffixeCourant);
|
|
|
963 |
}
|
|
|
964 |
|
973 |
gduche |
965 |
hmIdentite.getChampMultiValeurs("nomAutre").peupler(personne.getString("truk_nom_autre"));
|
|
|
966 |
hmIdentite.getTextField("tfAbreviation").setValue(personne.get("abreviation"));
|
|
|
967 |
hmIdentite.getChampMultiValeurs("abreviationAutre").peupler(personne.getString("truk_abreviation_autre"));
|
776 |
gduche |
968 |
|
1284 |
gduche |
969 |
hmIdentite.getTextField("tfDateNaissance").setValue(personne.getAnneeOuDateNaiss());
|
973 |
gduche |
970 |
hmIdentite.getTextField("tfLieuNaissance").setValue(personne.get("naissance_lieu"));
|
776 |
gduche |
971 |
|
1186 |
gduche |
972 |
|
829 |
gduche |
973 |
if (personne.estDecedee()) {
|
1284 |
gduche |
974 |
hmIdentite.getTextField("tfDateDeces").setValue(personne.getAnneeOuDateDeces());
|
973 |
gduche |
975 |
hmIdentite.getTextField("tfLieuDeces").setValue(personne.get("deces_lieu"));
|
|
|
976 |
Radio rbEstDecede = hmIdentite.getRadio("rbEstDecedee");
|
829 |
gduche |
977 |
rbEstDecede.setValue(true);
|
|
|
978 |
}
|
776 |
gduche |
979 |
|
973 |
gduche |
980 |
hmIdentite.getChampMultiValeurs("telephones").peupler(personne.getString("truk_telephone"));
|
776 |
gduche |
981 |
|
|
|
982 |
//Courriel
|
973 |
gduche |
983 |
hmIdentite.getChampMultiValeurs("courriels").peupler(personne.getCourriel());
|
776 |
gduche |
984 |
|
|
|
985 |
//Sites web
|
973 |
gduche |
986 |
hmIdentite.getChampMultiValeurs("sites").peupler(personne.getString("truk_url"));
|
776 |
gduche |
987 |
|
|
|
988 |
// Sexe
|
|
|
989 |
String strSexe = personne.get("ce_sexe");
|
973 |
gduche |
990 |
ComboBox<Valeur> cbSexe = hmIdentite.getComboBoxValeur("cbSexe");
|
776 |
gduche |
991 |
|
|
|
992 |
if (cbSexe.getStore().findModel("id_valeur", strSexe) != null) {
|
|
|
993 |
cbSexe.setValue(cbSexe.getStore().findModel("id_valeur", strSexe));
|
|
|
994 |
}
|
|
|
995 |
|
973 |
gduche |
996 |
hmIdentite.getTextArea("taDescription").setRawValue((String) personne.get("description"));
|
776 |
gduche |
997 |
|
|
|
998 |
//Logo
|
973 |
gduche |
999 |
hmIdentite.getChampMultiValeurs("logos").peupler(personne.getString("truk_logo"));
|
776 |
gduche |
1000 |
|
|
|
1001 |
/*--------------------------------------------------
|
|
|
1002 |
Adresse
|
|
|
1003 |
---------------------------------------------------*/
|
|
|
1004 |
|
|
|
1005 |
// Adresse
|
976 |
gduche |
1006 |
hmAdresse.getTextField("tfAdresse1").setValue((String) personne.get("adresse_01"));
|
776 |
gduche |
1007 |
|
|
|
1008 |
//Boite postale
|
976 |
gduche |
1009 |
hmAdresse.getTextField("tfBoitePostale").setValue((String) personne.get("bp"));
|
776 |
gduche |
1010 |
|
|
|
1011 |
//Pays
|
1026 |
gduche |
1012 |
String strPays = personne.get("ce_truk_pays");
|
976 |
gduche |
1013 |
ComboBox<Valeur> cbPays = hmAdresse.getComboBoxValeur("cbPays");
|
1292 |
cyprien |
1014 |
cbPays.getStore().sort("nom", SortDir.ASC);
|
|
|
1015 |
|
1026 |
gduche |
1016 |
if (cbPays.getStore().findModel("id_valeur", strPays) != null) {
|
|
|
1017 |
cbPays.setValue(cbPays.getStore().findModel("id_valeur", strPays));
|
|
|
1018 |
cbPays.fireEvent(Events.OnChange);
|
776 |
gduche |
1019 |
} else {
|
|
|
1020 |
cbPays.setRawValue(strPays);
|
|
|
1021 |
}
|
|
|
1022 |
|
|
|
1023 |
//Cp
|
976 |
gduche |
1024 |
hmAdresse.getTextField("tfCodePostal").setValue(personne.get("code_postal"));
|
776 |
gduche |
1025 |
|
|
|
1026 |
//Ville
|
976 |
gduche |
1027 |
hmAdresse.getTextField("tfVille").setValue(personne.get("ville"));
|
776 |
gduche |
1028 |
|
821 |
gduche |
1029 |
/*--------------------------------------------------------
|
|
|
1030 |
* Infos naturalistes
|
|
|
1031 |
* -----------------------------------------------------*/
|
|
|
1032 |
|
979 |
gduche |
1033 |
hmInfosNat.getChampMultiValeurs("specialite").peupler(personne.getString("ce_truk_specialite"));
|
1292 |
cyprien |
1034 |
String tr = personne.getString("truk_recolte");
|
|
|
1035 |
hmInfosNat.getChampMultiValeursMultiTypesPaginable("recolte").peupler(tr);
|
991 |
gduche |
1036 |
|
1262 |
cyprien |
1037 |
//Onglet publi
|
991 |
gduche |
1038 |
tiPubli.mettreAJourPersonne();
|
776 |
gduche |
1039 |
gererEtatActivationBouton();
|
|
|
1040 |
}
|
730 |
jp_milcent |
1041 |
|
293 |
gduche |
1042 |
public void remplirCombobox(String idComboBox, List liste, String hashMapId) {
|
|
|
1043 |
HashMap hm = null;
|
|
|
1044 |
if (hashMapId.equals("hmIdentite")) {
|
|
|
1045 |
hm = hmIdentite;
|
|
|
1046 |
} else if (hashMapId.equals("hmAdresse")){
|
|
|
1047 |
hm = hmAdresse;
|
|
|
1048 |
} else {
|
|
|
1049 |
hm = hmInfosNat;
|
|
|
1050 |
}
|
|
|
1051 |
|
|
|
1052 |
ListStore<Valeur> store = ((ComboBox) hm.get(idComboBox)).getStore();
|
376 |
gduche |
1053 |
|
293 |
gduche |
1054 |
store.removeAll();
|
|
|
1055 |
store.add(liste);
|
|
|
1056 |
((ComboBox) hm.get(idComboBox)).setStore(store);
|
|
|
1057 |
}
|
130 |
gduche |
1058 |
|
668 |
gduche |
1059 |
private void gererEtatActivationBouton() {
|
850 |
gduche |
1060 |
/* if (((Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT)).isIdentifie() == false) {
|
668 |
gduche |
1061 |
enregistrer.setEnabled(false);
|
|
|
1062 |
enregistrerEtRevenir.setEnabled(false);
|
|
|
1063 |
} else {
|
|
|
1064 |
enregistrer.setEnabled(true);
|
|
|
1065 |
enregistrerEtRevenir.setEnabled(true);
|
850 |
gduche |
1066 |
}*/
|
668 |
gduche |
1067 |
}
|
|
|
1068 |
|
376 |
gduche |
1069 |
public void binderPersonne(Personne personne) {
|
850 |
gduche |
1070 |
binding = new FormBinding(getFormulaire());
|
731 |
jp_milcent |
1071 |
|
376 |
gduche |
1072 |
personneSelectionnee = personne;
|
1186 |
gduche |
1073 |
|
|
|
1074 |
FieldBinding f = new FieldBinding((RadioGroup) hmIdentite.get("rbgDeces"), null);
|
376 |
gduche |
1075 |
binding.autoBind();
|
1186 |
gduche |
1076 |
binding.removeFieldBinding(f);
|
|
|
1077 |
|
376 |
gduche |
1078 |
binding.bind(personneSelectionnee);
|
|
|
1079 |
layout();
|
|
|
1080 |
}
|
1292 |
cyprien |
1081 |
|
376 |
gduche |
1082 |
private String obtenirValeurCombo(String strComboName) {
|
|
|
1083 |
String strValeur = "";
|
|
|
1084 |
Valeur valeur;
|
|
|
1085 |
|
973 |
gduche |
1086 |
ComboBox<Valeur> combo = hmIdentite.getComboBoxValeur(strComboName);
|
376 |
gduche |
1087 |
if (combo == null) {
|
976 |
gduche |
1088 |
combo = hmAdresse.getComboBoxValeur(strComboName);
|
376 |
gduche |
1089 |
}
|
829 |
gduche |
1090 |
strValeur = combo.getRawValue();
|
1026 |
gduche |
1091 |
valeur = combo.getValue();
|
829 |
gduche |
1092 |
if (valeur != null) {
|
|
|
1093 |
strValeur = valeur.getId();
|
|
|
1094 |
}
|
|
|
1095 |
|
376 |
gduche |
1096 |
return strValeur;
|
|
|
1097 |
}
|
850 |
gduche |
1098 |
|
934 |
jpm |
1099 |
public boolean soumettreFormulaire() {
|
1014 |
gduche |
1100 |
tiPubli.collecter();
|
850 |
gduche |
1101 |
if (verifierFormulaire()) {
|
991 |
gduche |
1102 |
tiPubli.soumettre();
|
850 |
gduche |
1103 |
mediateur.enregistrerPersonne(this, personneSelectionnee);
|
1262 |
cyprien |
1104 |
return true;
|
850 |
gduche |
1105 |
}
|
1262 |
cyprien |
1106 |
else return false;
|
850 |
gduche |
1107 |
}
|
|
|
1108 |
|
934 |
jpm |
1109 |
public boolean verifierFormulaire() {
|
884 |
jpm |
1110 |
boolean success = true;
|
|
|
1111 |
LinkedList<String> lstMessageErreur = new LinkedList<String>();
|
850 |
gduche |
1112 |
|
973 |
gduche |
1113 |
String strTfNom = (String) hmIdentite.getTextField("tfNom").getValue();
|
850 |
gduche |
1114 |
if ((strTfNom == null)||(strTfNom.trim().equals(""))) {
|
|
|
1115 |
lstMessageErreur.add("Le nom n'a pas été saisi");
|
|
|
1116 |
} else {
|
|
|
1117 |
strTfNom = UtilString.ucFirst(strTfNom);
|
|
|
1118 |
personneSelectionnee.set("nom", strTfNom);
|
|
|
1119 |
}
|
|
|
1120 |
|
973 |
gduche |
1121 |
String strTfPrenom = (String) hmIdentite.getTextField("tfPrenom").getValue();
|
850 |
gduche |
1122 |
personneSelectionnee.set("prenom", UtilString.ucFirst(strTfPrenom));
|
|
|
1123 |
|
|
|
1124 |
//Préparer les données
|
973 |
gduche |
1125 |
ComboBox<Valeur> combo = hmIdentite.getComboBoxValeur("cbSexe");
|
850 |
gduche |
1126 |
Valeur valeur;
|
|
|
1127 |
String strValeur = "";
|
|
|
1128 |
|
973 |
gduche |
1129 |
valeur = combo.getValue();
|
850 |
gduche |
1130 |
if (valeur!=null) {
|
|
|
1131 |
personneSelectionnee.set("ce_sexe", valeur.getId());
|
|
|
1132 |
}
|
|
|
1133 |
|
|
|
1134 |
strValeur = obtenirValeurCombo("cbPrefixe");
|
|
|
1135 |
personneSelectionnee.set("ce_truk_prefix", strValeur);
|
|
|
1136 |
|
|
|
1137 |
strValeur = obtenirValeurCombo("cbSuffixe");
|
|
|
1138 |
personneSelectionnee.set("ce_truk_suffix", strValeur);
|
|
|
1139 |
|
973 |
gduche |
1140 |
String nomAutre = hmIdentite.getChampMultiValeurs("nomAutre").getValeurs();
|
850 |
gduche |
1141 |
personneSelectionnee.set("truk_nom_autre", nomAutre);
|
|
|
1142 |
|
973 |
gduche |
1143 |
String abreviationAutre = hmIdentite.getChampMultiValeurs("abreviationAutre").getValeurs();
|
850 |
gduche |
1144 |
personneSelectionnee.set("truk_abreviation_autre", abreviationAutre);
|
|
|
1145 |
|
973 |
gduche |
1146 |
personneSelectionnee.set("truk_courriel", hmIdentite.getChampMultiValeurs("courriels").getValeurs());
|
850 |
gduche |
1147 |
|
|
|
1148 |
|
|
|
1149 |
//Pour le nom complet, on enregistre dans la bdd la valeur du prefixe/suffixe et non l'id
|
|
|
1150 |
String strPrefixe = "";
|
973 |
gduche |
1151 |
combo = hmIdentite.getComboBoxValeur("cbPrefixe");
|
|
|
1152 |
valeur = combo.getValue();
|
850 |
gduche |
1153 |
if (valeur != null) {
|
|
|
1154 |
strPrefixe = valeur.getNom();
|
|
|
1155 |
} else {
|
|
|
1156 |
strPrefixe = combo.getRawValue();
|
|
|
1157 |
}
|
|
|
1158 |
|
|
|
1159 |
String strSuffixe = "";
|
973 |
gduche |
1160 |
combo = hmIdentite.getComboBox("cbSuffixe");
|
|
|
1161 |
valeur = combo.getValue();
|
850 |
gduche |
1162 |
if (valeur != null) {
|
|
|
1163 |
strSuffixe = valeur.getNom() + " ";
|
|
|
1164 |
} else {
|
|
|
1165 |
strSuffixe = combo.getRawValue() +" ";
|
|
|
1166 |
}
|
|
|
1167 |
|
|
|
1168 |
personneSelectionnee.setFmtNomComplet(strPrefixe, strSuffixe);
|
1329 |
cyprien |
1169 |
|
|
|
1170 |
/** NAISSANCE **/
|
1284 |
gduche |
1171 |
String valeurDateNaissance = (String) hmIdentite.getTextField("tfDateNaissance").getValue();
|
1329 |
cyprien |
1172 |
traiterDate("naissance", valeurDateNaissance, personneSelectionnee, lstMessageErreur);
|
850 |
gduche |
1173 |
|
1329 |
cyprien |
1174 |
/** DECES **/
|
973 |
gduche |
1175 |
Radio rbEstDecedee = hmIdentite.getRadio("rbEstDecedee");
|
1329 |
cyprien |
1176 |
if (rbEstDecedee.getValue() == true) {
|
|
|
1177 |
// date
|
|
|
1178 |
String valeurDateDeces = (String) hmIdentite.getTextField("tfDateDeces").getValue();
|
|
|
1179 |
traiterDate("décès", valeurDateDeces, personneSelectionnee, lstMessageErreur);
|
|
|
1180 |
// lieu
|
973 |
gduche |
1181 |
String decesLieu = (String) hmIdentite.getTextField("tfLieuDeces").getValue();
|
1329 |
cyprien |
1182 |
personneSelectionnee.setDecesLieu(decesLieu);
|
|
|
1183 |
} else {
|
1468 |
jpm |
1184 |
personneSelectionnee.setNonDecedee();
|
850 |
gduche |
1185 |
}
|
|
|
1186 |
|
1292 |
cyprien |
1187 |
strValeur = obtenirValeurCombo("cbPays");
|
850 |
gduche |
1188 |
personneSelectionnee.set("ce_truk_pays", strValeur);
|
|
|
1189 |
|
1643 |
aurelien |
1190 |
success = hmIdentite.getChampMultiValeursMultiTypes("telephones").estValide(true);
|
973 |
gduche |
1191 |
personneSelectionnee.set("truk_telephone", hmIdentite.getChampMultiValeursMultiTypes("telephones").getValeurs());
|
850 |
gduche |
1192 |
|
973 |
gduche |
1193 |
String logoUrls = hmIdentite.getChampMultiValeursImage("logos").getValeurs();
|
850 |
gduche |
1194 |
personneSelectionnee.set("truk_logo", logoUrls);
|
|
|
1195 |
|
973 |
gduche |
1196 |
personneSelectionnee.set("truk_url", hmIdentite.getChampMultiValeurs("sites").getValeurs());
|
850 |
gduche |
1197 |
|
|
|
1198 |
//Infos Naturalistes
|
1292 |
cyprien |
1199 |
String recolte = ((ChampMultiValeursMultiTypesPaginable) hmInfosNat.get("recolte")).getValeurs();
|
850 |
gduche |
1200 |
personneSelectionnee.set("truk_recolte", recolte);
|
|
|
1201 |
|
|
|
1202 |
String specialite = ((ChampMultiValeurs) hmInfosNat.get("specialite")).getValeurs();
|
|
|
1203 |
personneSelectionnee.set("ce_truk_specialite", specialite);
|
|
|
1204 |
|
1014 |
gduche |
1205 |
lstMessageErreur.addAll(tiPubli.verifier());
|
850 |
gduche |
1206 |
|
884 |
jpm |
1207 |
if (lstMessageErreur.size() != 0) {
|
850 |
gduche |
1208 |
String strMessagesErreur = "<span><br />";
|
|
|
1209 |
Iterator<String> itMessagesErreur = lstMessageErreur.iterator();
|
|
|
1210 |
while (itMessagesErreur.hasNext()) {
|
|
|
1211 |
strMessagesErreur += "<br /> - " + itMessagesErreur.next();
|
|
|
1212 |
}
|
|
|
1213 |
strMessagesErreur += "</span>";
|
|
|
1214 |
|
|
|
1215 |
MessageBox.alert("Erreurs", "Les erreurs suivantes ont été commises : \n" + strMessagesErreur, null);
|
|
|
1216 |
success = false;
|
|
|
1217 |
}
|
|
|
1218 |
|
|
|
1219 |
return success;
|
|
|
1220 |
}
|
1329 |
cyprien |
1221 |
|
|
|
1222 |
private void traiterDate(String typeDate, String date, Personne personneSelectionnee, LinkedList<String> lstMessageErreur) {
|
1468 |
jpm |
1223 |
|
1329 |
cyprien |
1224 |
String valeurDate = date;
|
1468 |
jpm |
1225 |
|
1329 |
cyprien |
1226 |
if (!UtilString.isEmpty(valeurDate)){
|
|
|
1227 |
String jour = "";
|
|
|
1228 |
String mois = "";
|
|
|
1229 |
String annee = "";
|
1591 |
delphine |
1230 |
String dateComplete = "";
|
|
|
1231 |
String messageErreur = null;
|
1329 |
cyprien |
1232 |
|
|
|
1233 |
/** JJ/MM/AAAA **/
|
|
|
1234 |
if (valeurDate.matches("\\d{2}/\\d{2}/\\d{4}")) {
|
|
|
1235 |
jour = valeurDate.substring(0,2);
|
|
|
1236 |
mois = valeurDate.substring(3,5);
|
|
|
1237 |
annee = valeurDate.substring(6,10);
|
1591 |
delphine |
1238 |
if (jour.equals("00") || mois.equals("00") || annee.equals("0000")) {
|
|
|
1239 |
messageErreur = "La date de "+typeDate+" n'est pas au format JJ/MM/AAAA ou MM/AAAA ou AAAA.";
|
|
|
1240 |
} else {
|
|
|
1241 |
dateComplete = annee+"-"+mois+"-"+jour;
|
1329 |
cyprien |
1242 |
}
|
|
|
1243 |
|
1591 |
delphine |
1244 |
|
1329 |
cyprien |
1245 |
/** MM/AAAA **/
|
|
|
1246 |
} else if (valeurDate.matches("\\d{2}/\\d{4}")) {
|
|
|
1247 |
jour = "00";
|
|
|
1248 |
mois = valeurDate.substring(0,2);
|
|
|
1249 |
annee = valeurDate.substring(3,7);
|
1591 |
delphine |
1250 |
if (mois.equals("00") || annee.equals("0000")) {
|
|
|
1251 |
messageErreur = "La date de "+typeDate+" n'est pas au format JJ/MM/AAAA ou MM/AAAA ou AAAA.";
|
|
|
1252 |
} else {
|
|
|
1253 |
dateComplete = annee+"-"+mois+"-"+jour;
|
1329 |
cyprien |
1254 |
}
|
1591 |
delphine |
1255 |
|
1329 |
cyprien |
1256 |
}
|
|
|
1257 |
|
|
|
1258 |
/** AAAA **/
|
|
|
1259 |
else if (valeurDate.matches("\\d{4}")) {
|
1591 |
delphine |
1260 |
if (valeurDate.equals("0000")) {
|
|
|
1261 |
messageErreur = "La date de "+typeDate+" n'est pas au format JJ/MM/AAAA ou MM/AAAA ou AAAA.";
|
1329 |
cyprien |
1262 |
}
|
|
|
1263 |
else {
|
1591 |
delphine |
1264 |
dateComplete = valeurDate + "-00-00";
|
|
|
1265 |
|
1329 |
cyprien |
1266 |
}
|
1468 |
jpm |
1267 |
}
|
|
|
1268 |
else {
|
1329 |
cyprien |
1269 |
lstMessageErreur.add("La date de "+typeDate+" n'est pas au format JJ/MM/AAAA ou MM/AAAA ou AAAA.");
|
|
|
1270 |
}
|
1591 |
delphine |
1271 |
if (messageErreur == null) {
|
|
|
1272 |
if (typeDate=="naissance") personneSelectionnee.set("naissance_date", dateComplete);
|
|
|
1273 |
else if (typeDate=="décès") {
|
|
|
1274 |
personneSelectionnee.set("deces_date", dateComplete);
|
|
|
1275 |
personneSelectionnee.set("ce_deces", personneSelectionnee.ETRE_DECEDE);
|
|
|
1276 |
}
|
|
|
1277 |
} else {
|
|
|
1278 |
lstMessageErreur.add(messageErreur);
|
|
|
1279 |
}
|
1468 |
jpm |
1280 |
|
1603 |
aurelien |
1281 |
if(typeDate.equals("décès")) {
|
|
|
1282 |
String valeurDateDeces = hmIdentite.getTextField("tfDateDeces").getRawValue();
|
|
|
1283 |
String valeurDateNaissance = hmIdentite.getTextField("tfDateNaissance").getRawValue();
|
|
|
1284 |
|
1784 |
aurelien |
1285 |
if(valeurDateDeces != null && valeurDateNaissance != null &&
|
|
|
1286 |
!valeurDateDeces.isEmpty() && !valeurDateNaissance.isEmpty()) {
|
|
|
1287 |
Date dateNaissance = parserDate(valeurDateNaissance);
|
|
|
1288 |
Date dateDeces = parserDate(valeurDateDeces);
|
|
|
1289 |
|
|
|
1290 |
if(dateDeces.compareTo(dateNaissance) < 0) {
|
|
|
1291 |
lstMessageErreur.add("La date de décès ne peut pas précéder la date de naissance");
|
|
|
1292 |
}
|
1603 |
aurelien |
1293 |
}
|
|
|
1294 |
}
|
1468 |
jpm |
1295 |
/** Date vide **/
|
|
|
1296 |
} else {
|
1591 |
delphine |
1297 |
if (typeDate=="naissance") {
|
|
|
1298 |
personneSelectionnee.setNaissanceDate(null);
|
|
|
1299 |
} else if (typeDate=="décès") {
|
|
|
1300 |
personneSelectionnee.setDecesDate(null);
|
|
|
1301 |
personneSelectionnee.set("ce_deces", personneSelectionnee.ETRE_DECEDE);
|
|
|
1302 |
}
|
1468 |
jpm |
1303 |
}
|
1591 |
delphine |
1304 |
|
1329 |
cyprien |
1305 |
}
|
|
|
1306 |
|
1604 |
aurelien |
1307 |
private Date parserDate(String valeurDate) {
|
|
|
1308 |
Date dateParsee = new Date();
|
|
|
1309 |
String[] composantsDate = valeurDate.split("/");
|
|
|
1310 |
// Attention : la fonction setYear ajoute 1900 à l'année
|
|
|
1311 |
int annee = Integer.parseInt(composantsDate[(composantsDate.length-1)]) - 1900;
|
|
|
1312 |
// Attention : les mois commencent à 0, donc janvier = 0, février = 1
|
|
|
1313 |
int mois = (composantsDate.length > 1) ? Integer.parseInt(composantsDate[(composantsDate.length-2)]) - 1 : 0;
|
|
|
1314 |
int jour = (composantsDate.length > 2) ? Integer.parseInt(composantsDate[0]) : 1;
|
|
|
1315 |
|
|
|
1316 |
dateParsee.setYear(annee);
|
|
|
1317 |
dateParsee.setMonth(mois);
|
|
|
1318 |
dateParsee.setDate(jour);
|
|
|
1319 |
|
|
|
1320 |
return dateParsee;
|
|
|
1321 |
}
|
|
|
1322 |
|
1329 |
cyprien |
1323 |
public Personne getPersonne() {
|
|
|
1324 |
return this.personne;
|
|
|
1325 |
}
|
|
|
1326 |
|
|
|
1327 |
public String getPersonneId() {
|
|
|
1328 |
return this.personneId;
|
|
|
1329 |
}
|
1845 |
aurelien |
1330 |
|
|
|
1331 |
private Listener<BaseEvent> creerEcouteurNomPrenomExistant() {
|
|
|
1332 |
return new Listener<BaseEvent>() {
|
|
|
1333 |
public void handleEvent(BaseEvent be) {
|
|
|
1334 |
if(mode.equals(MODE_AJOUTER) && !verificationDoublonEffectuee) {
|
|
|
1335 |
|
|
|
1336 |
TextField<String> nom = (TextField<String>) hmIdentite.get("tfNom");
|
|
|
1337 |
TextField<String> prenom = (TextField<String>) hmIdentite.get("tfPrenom");
|
|
|
1338 |
LabelField nomComplet = (LabelField) hmIdentite.get("nomComplet");
|
|
|
1339 |
|
|
|
1340 |
if(nom.getValue() != null && !nom.getValue().isEmpty()) {
|
|
|
1341 |
PersonneAsyncDao dao = new PersonneAsyncDao(PersonneForm.this);
|
|
|
1342 |
// Suppression d'éventuels doubles espaces (ou plus) et ajout d'un joker devant
|
|
|
1343 |
// (pour gérer la recherche lorsqu'on a qu'un nom de famille)
|
|
|
1344 |
String nomCompletStr = "%"+nomComplet.getValue().toString().trim().replaceAll(" +", " ");
|
|
|
1345 |
|
|
|
1346 |
if(prenom.getValue() != null && !prenom.getValue().isEmpty()) {
|
|
|
1347 |
// Ajouter un % derrière le prénom permet de gérer facilement le cas de l'initiale
|
|
|
1348 |
// et également de rechercher des noms potentiels si l'on a saisi qu'une initiale
|
|
|
1349 |
nomCompletStr = nomCompletStr.replaceAll(prenom+" ", prenom+"%");
|
|
|
1350 |
}
|
|
|
1351 |
|
|
|
1352 |
dao.testerExistencePersonne(nomCompletStr, new Callback<JSONObject, String>() {
|
|
|
1353 |
@Override
|
|
|
1354 |
public void onSuccess(JSONObject objet) {
|
|
|
1355 |
|
|
|
1356 |
String message = formaterMessageAvertissementDoublon(objet);
|
|
|
1357 |
verificationDoublonEffectuee = true;
|
|
|
1358 |
|
|
|
1359 |
if(!message.isEmpty()) {
|
|
|
1360 |
Window.alert(message);
|
|
|
1361 |
}
|
|
|
1362 |
}
|
|
|
1363 |
|
|
|
1364 |
@Override
|
|
|
1365 |
public void onFailure(String reason) {
|
|
|
1366 |
// TODO Auto-generated method stub
|
|
|
1367 |
}
|
|
|
1368 |
});
|
|
|
1369 |
}
|
|
|
1370 |
}
|
|
|
1371 |
}
|
|
|
1372 |
};
|
|
|
1373 |
}
|
|
|
1374 |
|
|
|
1375 |
private String formaterMessageAvertissementDoublon(JSONObject objet) {
|
|
|
1376 |
|
|
|
1377 |
double nbPers = objet.get("nbElements").isNumber().getValue();
|
|
|
1378 |
JSONArray personnes = objet.isObject().get("personnes").isArray();
|
|
|
1379 |
String message = "";
|
|
|
1380 |
if(nbPers > 0) {
|
|
|
1381 |
String pers = nbPers == 1 ? "personne" : "personnes";
|
|
|
1382 |
String exist = nbPers == 1 ? "existe" : "existent";
|
|
|
1383 |
message = "Attention : "+(int)nbPers+" "+pers+" portant ce nom "+exist+" déjà"+"\n";
|
|
|
1384 |
for(int i = 0; i < personnes.size(); i++) {
|
|
|
1385 |
message += "- "+personnes.get(i).isObject().get("cp_fmt_nom_complet").isString().stringValue();
|
|
|
1386 |
if(personnes.get(i).isObject().get("cp_ville") != null && personnes.get(i).isObject().get("cp_ville").isString() != null) {
|
|
|
1387 |
message += " à "+personnes.get(i).isObject().get("cp_ville").isString().stringValue();
|
|
|
1388 |
}
|
|
|
1389 |
|
|
|
1390 |
if(personnes.get(i).isObject().get("cp_naissance_date") != null
|
|
|
1391 |
&& personnes.get(i).isObject().get("cp_naissance_date").isString()!= null
|
|
|
1392 |
&& !personnes.get(i).isObject().get("cp_naissance_date").isString().stringValue().equals("0000-00-00")) {
|
|
|
1393 |
String dateChaine = personnes.get(i).isObject().get("cp_naissance_date").isString().stringValue();
|
|
|
1394 |
|
|
|
1395 |
String dateNaissance = "";
|
|
|
1396 |
// Quelque fois on ne possède que l'année de naissance de la personne,
|
|
|
1397 |
// dans ce cas là la date est de la forme XXXX-00-00
|
|
|
1398 |
if(dateChaine.endsWith("-00-00")) {
|
|
|
1399 |
dateNaissance = dateChaine.substring(0, 4);
|
|
|
1400 |
} else {
|
|
|
1401 |
dateNaissance = UtilDate.formaterEnStringFormatFr(UtilString.formaterEnDate(dateChaine));
|
|
|
1402 |
}
|
|
|
1403 |
|
|
|
1404 |
message += ", date de naissance : "+dateNaissance;
|
|
|
1405 |
}
|
|
|
1406 |
message += "\n";
|
|
|
1407 |
}
|
|
|
1408 |
}
|
|
|
1409 |
|
|
|
1410 |
return message;
|
|
|
1411 |
}
|
|
|
1412 |
}
|