935 |
jpm |
1 |
package org.tela_botanica.client.vues.publication;
|
219 |
aurelien |
2 |
|
227 |
aurelien |
3 |
import java.util.ArrayList;
|
|
|
4 |
import java.util.Iterator;
|
365 |
jp_milcent |
5 |
import java.util.List;
|
227 |
aurelien |
6 |
|
981 |
jpm |
7 |
import org.tela_botanica.client.ComposantClass;
|
219 |
aurelien |
8 |
import org.tela_botanica.client.Mediateur;
|
822 |
jpm |
9 |
import org.tela_botanica.client.images.Images;
|
219 |
aurelien |
10 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
705 |
aurelien |
11 |
import org.tela_botanica.client.modeles.Information;
|
775 |
jpm |
12 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
935 |
jpm |
13 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
14 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
1032 |
jpm |
15 |
import org.tela_botanica.client.modeles.projet.Projet;
|
|
|
16 |
import org.tela_botanica.client.modeles.projet.ProjetListe;
|
935 |
jpm |
17 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
18 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
|
|
|
19 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
20 |
import org.tela_botanica.client.modeles.structure.Structure;
|
|
|
21 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
792 |
jpm |
22 |
import org.tela_botanica.client.util.Pattern;
|
782 |
jpm |
23 |
import org.tela_botanica.client.util.UtilArray;
|
884 |
jpm |
24 |
import org.tela_botanica.client.util.UtilString;
|
935 |
jpm |
25 |
import org.tela_botanica.client.vues.Formulaire;
|
219 |
aurelien |
26 |
|
505 |
jp_milcent |
27 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
980 |
jpm |
28 |
import com.extjs.gxt.ui.client.event.Events;
|
219 |
aurelien |
29 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
30 |
import com.extjs.gxt.ui.client.store.ListStore;
|
227 |
aurelien |
31 |
import com.extjs.gxt.ui.client.widget.HorizontalPanel;
|
1095 |
jpm |
32 |
import com.extjs.gxt.ui.client.widget.Info;
|
219 |
aurelien |
33 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
705 |
aurelien |
34 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
219 |
aurelien |
35 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
36 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
1032 |
jpm |
37 |
import com.extjs.gxt.ui.client.widget.form.Field;
|
219 |
aurelien |
38 |
import com.extjs.gxt.ui.client.widget.form.FieldSet;
|
|
|
39 |
import com.extjs.gxt.ui.client.widget.form.TextField;
|
1032 |
jpm |
40 |
import com.extjs.gxt.ui.client.widget.form.Validator;
|
219 |
aurelien |
41 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
|
|
42 |
import com.extjs.gxt.ui.client.widget.layout.FlowLayout;
|
|
|
43 |
import com.extjs.gxt.ui.client.widget.layout.FormData;
|
|
|
44 |
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
|
705 |
aurelien |
45 |
import com.google.gwt.core.client.GWT;
|
219 |
aurelien |
46 |
|
877 |
aurelien |
47 |
|
775 |
jpm |
48 |
public class PublicationForm extends Formulaire implements Rafraichissable {
|
219 |
aurelien |
49 |
|
786 |
jpm |
50 |
private Publication publication;
|
|
|
51 |
private PublicationAPersonneListe publicationAPersonneListe = null;
|
901 |
jpm |
52 |
private static boolean publicationAPersonneListeChargementOk = false;
|
|
|
53 |
private PublicationAPersonneListe auteursAjoutes = null;
|
|
|
54 |
private PublicationAPersonneListe auteursSupprimes = null;
|
219 |
aurelien |
55 |
|
775 |
jpm |
56 |
private FieldSet auteursFieldset = null;
|
1032 |
jpm |
57 |
private ComboBox<Projet> projetsCombo = null;
|
775 |
jpm |
58 |
private ArrayList<ComboBox<Personne>> auteurComboboxListe = null;
|
|
|
59 |
private LayoutContainer conteneurChamps;
|
|
|
60 |
private ListStore<Personne> auteursStorePartage = null;
|
901 |
jpm |
61 |
private static boolean auteurStorePartageChargementOk = false;
|
227 |
aurelien |
62 |
|
775 |
jpm |
63 |
private FieldSet generalitesFieldset = null;
|
786 |
jpm |
64 |
private TextField<String> titreChp = null;
|
|
|
65 |
private TextField<String> collectionChp = null;
|
|
|
66 |
private TextField<String> uriChp = null;
|
219 |
aurelien |
67 |
|
775 |
jpm |
68 |
private FieldSet editionFieldset = null;
|
792 |
jpm |
69 |
private ComboBox<Structure> editeurCombobox = null;
|
786 |
jpm |
70 |
private TextField<String> datePublicationChp = null;
|
|
|
71 |
private TextField<String> tomeChp = null;
|
|
|
72 |
private TextField<String> fasciculeChp = null;
|
|
|
73 |
private TextField<String> pagesChp = null;
|
219 |
aurelien |
74 |
|
775 |
jpm |
75 |
private String idStructureEdition = "";
|
786 |
jpm |
76 |
|
901 |
jpm |
77 |
private static boolean formulaireValideOk = false;
|
|
|
78 |
private static boolean publicationValideOk = false;
|
|
|
79 |
private static boolean auteursValideOk = false;
|
|
|
80 |
private static boolean attenteAjoutAuteursOk = true;
|
|
|
81 |
private static boolean attenteSuppressionAuteursOk = true;
|
786 |
jpm |
82 |
|
781 |
jpm |
83 |
public PublicationForm(Mediateur mediateurCourrant, String publicationId) {
|
782 |
jpm |
84 |
initialiserPublicationForm(mediateurCourrant, publicationId);
|
|
|
85 |
}
|
|
|
86 |
|
|
|
87 |
public PublicationForm(Mediateur mediateurCourrant, String publicationId, Rafraichissable vueARafraichirApresValidation) {
|
822 |
jpm |
88 |
vueExterneARafraichirApresValidation = vueARafraichirApresValidation;
|
782 |
jpm |
89 |
initialiserPublicationForm(mediateurCourrant, publicationId);
|
|
|
90 |
}
|
|
|
91 |
|
|
|
92 |
private void initialiserPublicationForm(Mediateur mediateurCourrant, String publicationId) {
|
905 |
jpm |
93 |
publicationAPersonneListe = new PublicationAPersonneListe();
|
901 |
jpm |
94 |
initialiserValidation();
|
|
|
95 |
initialiserAffichageAuteurs();
|
|
|
96 |
|
799 |
jpm |
97 |
publication = new Publication();
|
822 |
jpm |
98 |
publication.setId(publicationId);
|
|
|
99 |
|
884 |
jpm |
100 |
String modeDeCreation = (UtilString.isEmpty(publication.getId()) ? Formulaire.MODE_AJOUTER : Formulaire.MODE_MODIFIER);
|
775 |
jpm |
101 |
initialiserFormulaire(mediateurCourrant, modeDeCreation, MenuApplicationId.PUBLICATION);
|
781 |
jpm |
102 |
|
775 |
jpm |
103 |
panneauFormulaire.setLayout(new FlowLayout());
|
1095 |
jpm |
104 |
genererTitreFormulaire();
|
|
|
105 |
|
775 |
jpm |
106 |
creerZoneAuteurs();
|
|
|
107 |
panneauFormulaire.add(auteursFieldset);
|
219 |
aurelien |
108 |
|
775 |
jpm |
109 |
creerZoneGeneralites();
|
|
|
110 |
panneauFormulaire.add(generalitesFieldset);
|
239 |
aurelien |
111 |
|
775 |
jpm |
112 |
creerZoneEdition();
|
|
|
113 |
panneauFormulaire.add(editionFieldset);
|
822 |
jpm |
114 |
|
|
|
115 |
if (modeDeCreation.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
116 |
mediateurCourrant.selectionnerPublication(this, publicationId);
|
|
|
117 |
mediateurCourrant.selectionnerPublicationAPersonne(this, publicationId, null, PublicationAPersonne.ROLE_AUTEUR);
|
|
|
118 |
}
|
781 |
jpm |
119 |
}
|
782 |
jpm |
120 |
|
1095 |
jpm |
121 |
private void genererTitreFormulaire() {
|
989 |
jpm |
122 |
String titre = i18nC.publicationTitreFormAjout();
|
822 |
jpm |
123 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
1095 |
jpm |
124 |
titre = i18nC.publicationTitreFormModif();
|
|
|
125 |
if (publication != null) {
|
|
|
126 |
titre += " - "+i18nC.id()+": "+publication.getId();
|
|
|
127 |
}
|
822 |
jpm |
128 |
}
|
1095 |
jpm |
129 |
panneauFormulaire.setHeading(titre);
|
822 |
jpm |
130 |
}
|
|
|
131 |
|
775 |
jpm |
132 |
private void creerZoneAuteurs() {
|
|
|
133 |
FormLayout layout = new FormLayout();
|
|
|
134 |
layout.setLabelWidth(200);
|
|
|
135 |
|
|
|
136 |
// Fieldset Auteur
|
|
|
137 |
auteursFieldset = new FieldSet();
|
989 |
jpm |
138 |
auteursFieldset.setHeading(i18nC.publicationAuteursTitre());
|
775 |
jpm |
139 |
auteursFieldset.setCollapsible(true);
|
|
|
140 |
auteursFieldset.setLayout(layout);
|
|
|
141 |
|
|
|
142 |
auteurComboboxListe = new ArrayList<ComboBox<Personne>>(0);
|
|
|
143 |
auteursStorePartage = new ListStore<Personne>();
|
792 |
jpm |
144 |
mediateur.clicObtenirListeAuteurs(this);
|
775 |
jpm |
145 |
|
822 |
jpm |
146 |
creerChampsAuteur();
|
775 |
jpm |
147 |
}
|
|
|
148 |
|
822 |
jpm |
149 |
private void creerChampsAuteur() {
|
775 |
jpm |
150 |
auteursFieldset.removeAll();
|
|
|
151 |
conteneurChamps = new LayoutContainer();
|
|
|
152 |
|
989 |
jpm |
153 |
Button ajouterAuteurBouton = new Button(i18nC.publicationAuteurBoutonAjouter());
|
822 |
jpm |
154 |
ajouterAuteurBouton.setIcon(Images.ICONES.ajouter());
|
|
|
155 |
ajouterAuteurBouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
775 |
jpm |
156 |
@Override
|
|
|
157 |
public void componentSelected(ButtonEvent be) {
|
822 |
jpm |
158 |
creerChampAuteurEtBoutonSupprimer(null);
|
775 |
jpm |
159 |
}
|
|
|
160 |
});
|
219 |
aurelien |
161 |
|
775 |
jpm |
162 |
auteursFieldset.add(conteneurChamps);
|
822 |
jpm |
163 |
auteursFieldset.add(ajouterAuteurBouton);
|
775 |
jpm |
164 |
auteursFieldset.layout(true);
|
219 |
aurelien |
165 |
|
822 |
jpm |
166 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
167 |
creerChampAuteurEtBoutonSupprimer(null);
|
775 |
jpm |
168 |
}
|
|
|
169 |
}
|
|
|
170 |
|
822 |
jpm |
171 |
public void creerChampAuteurEtBoutonSupprimer(Personne auteur) {
|
775 |
jpm |
172 |
final HorizontalPanel panneauHorizontal = new HorizontalPanel();
|
|
|
173 |
panneauHorizontal.setLayout(new FormLayout());
|
219 |
aurelien |
174 |
|
775 |
jpm |
175 |
final ComboBox<Personne> auteursSaisisComboBox = creerComboBoxAuteursSaisis();
|
|
|
176 |
if (auteur != null) {
|
|
|
177 |
auteursSaisisComboBox.setValue(auteursStorePartage.findModel("id_personne", auteur.getId()));
|
901 |
jpm |
178 |
auteursSaisisComboBox.validate();
|
775 |
jpm |
179 |
}
|
|
|
180 |
auteurComboboxListe.add(auteursSaisisComboBox);
|
989 |
jpm |
181 |
auteursSaisisComboBox.setFieldLabel(i18nC.publicationAuteurSingulier()+" "+auteurComboboxListe.size());
|
758 |
aurelien |
182 |
|
822 |
jpm |
183 |
LayoutContainer panneauChampTxtEtBouton = new LayoutContainer();
|
|
|
184 |
panneauChampTxtEtBouton.setLayout(new FormLayout());
|
|
|
185 |
panneauChampTxtEtBouton.add(auteursSaisisComboBox, new FormData(300, 0));
|
|
|
186 |
panneauHorizontal.add(panneauChampTxtEtBouton);
|
219 |
aurelien |
187 |
|
822 |
jpm |
188 |
Button supprimerAuteurBouton = new Button();
|
|
|
189 |
supprimerAuteurBouton.setIcon(Images.ICONES.supprimer());
|
|
|
190 |
supprimerAuteurBouton.setToolTip(i18nC.supprimer());
|
|
|
191 |
supprimerAuteurBouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
775 |
jpm |
192 |
@Override
|
|
|
193 |
public void componentSelected(ButtonEvent be) {
|
|
|
194 |
auteurComboboxListe.remove(auteursSaisisComboBox);
|
|
|
195 |
conteneurChamps.remove(panneauHorizontal);
|
822 |
jpm |
196 |
|
|
|
197 |
int numeroAuteurs = 1;
|
|
|
198 |
for (Iterator<ComboBox<Personne>> it = auteurComboboxListe.iterator(); it.hasNext();) {
|
989 |
jpm |
199 |
it.next().setFieldLabel(i18nC.publicationAuteurSingulier()+" "+numeroAuteurs);
|
822 |
jpm |
200 |
numeroAuteurs++;
|
|
|
201 |
}
|
|
|
202 |
|
775 |
jpm |
203 |
auteursFieldset.layout(true);
|
|
|
204 |
}
|
|
|
205 |
});
|
822 |
jpm |
206 |
panneauHorizontal.add(supprimerAuteurBouton);
|
|
|
207 |
|
775 |
jpm |
208 |
conteneurChamps.add(panneauHorizontal);
|
|
|
209 |
auteursFieldset.layout(true);
|
|
|
210 |
}
|
|
|
211 |
|
|
|
212 |
private ComboBox<Personne> creerComboBoxAuteursSaisis() {
|
|
|
213 |
ComboBox<Personne> comboBox = new ComboBox<Personne>();
|
860 |
jpm |
214 |
comboBox.setEmptyText(i18nC.chercherPersonneSaisi());
|
775 |
jpm |
215 |
comboBox.setEditable(true);
|
|
|
216 |
comboBox.setForceSelection(true);
|
|
|
217 |
comboBox.setDisplayField("fmt_nom_complet");
|
|
|
218 |
comboBox.setTriggerAction(TriggerAction.ALL);
|
|
|
219 |
comboBox.setStore(auteursStorePartage);
|
981 |
jpm |
220 |
comboBox.addStyleName(ComposantClass.OBLIGATOIRE);
|
980 |
jpm |
221 |
comboBox.addListener(Events.Valid, creerEcouteurChampObligatoire());
|
775 |
jpm |
222 |
|
|
|
223 |
return comboBox;
|
|
|
224 |
}
|
|
|
225 |
|
|
|
226 |
private void creerZoneGeneralites() {
|
|
|
227 |
FormLayout layout = new FormLayout();
|
|
|
228 |
layout.setLabelWidth(200);
|
219 |
aurelien |
229 |
|
|
|
230 |
// Fieldset Infos Générales
|
775 |
jpm |
231 |
generalitesFieldset = new FieldSet();
|
|
|
232 |
generalitesFieldset.setHeading("Informations générales");
|
|
|
233 |
generalitesFieldset.setCollapsible(true);
|
|
|
234 |
generalitesFieldset.setLayout(layout);
|
219 |
aurelien |
235 |
|
1032 |
jpm |
236 |
projetsCombo = new ComboBox<Projet>();
|
|
|
237 |
projetsCombo.setTabIndex(tabIndex++);
|
|
|
238 |
projetsCombo.setFieldLabel(i18nC.projetChamp());
|
|
|
239 |
projetsCombo.setDisplayField("nom");
|
|
|
240 |
projetsCombo.setForceSelection(true);
|
|
|
241 |
projetsCombo.setValidator(new Validator() {
|
|
|
242 |
@Override
|
|
|
243 |
public String validate(Field<?> field, String value) {
|
|
|
244 |
String retour = null;
|
|
|
245 |
if (field.getRawValue().equals("")) {
|
|
|
246 |
field.setValue(null);
|
|
|
247 |
} else if (projetsCombo.getStore().findModel("nom", field.getRawValue()) == null) {
|
|
|
248 |
String contenuBrut = field.getRawValue();
|
|
|
249 |
field.setValue(null);
|
|
|
250 |
field.setRawValue(contenuBrut);
|
|
|
251 |
retour = "Veuillez sélectionner une valeur ou laisser le champ vide";
|
|
|
252 |
}
|
|
|
253 |
return retour;
|
|
|
254 |
}
|
|
|
255 |
});
|
|
|
256 |
projetsCombo.setTriggerAction(TriggerAction.ALL);
|
|
|
257 |
projetsCombo.setStore(new ListStore<Projet>());
|
|
|
258 |
projetsCombo.addStyleName(ComposantClass.OBLIGATOIRE);
|
|
|
259 |
projetsCombo.addListener(Events.Valid, Formulaire.creerEcouteurChampObligatoire());
|
|
|
260 |
generalitesFieldset.add(projetsCombo, new FormData(450, 0));
|
|
|
261 |
mediateur.selectionnerProjet(this, null);
|
|
|
262 |
|
786 |
jpm |
263 |
titreChp = new TextField<String>();
|
|
|
264 |
titreChp.setName("cpu");
|
|
|
265 |
titreChp.setFieldLabel("Titre de l'article ou de l'ouvrage");
|
981 |
jpm |
266 |
titreChp.addStyleName(ComposantClass.OBLIGATOIRE);
|
980 |
jpm |
267 |
titreChp.addListener(Events.Valid, creerEcouteurChampObligatoire());
|
792 |
jpm |
268 |
generalitesFieldset.add(titreChp, new FormData(450, 0));
|
219 |
aurelien |
269 |
|
786 |
jpm |
270 |
collectionChp = new TextField<String>();
|
792 |
jpm |
271 |
collectionChp.setFieldLabel("Intitulé de la revue ou de la collection");
|
|
|
272 |
generalitesFieldset.add(collectionChp, new FormData(450, 0));
|
219 |
aurelien |
273 |
|
786 |
jpm |
274 |
uriChp = new TextField<String>();
|
792 |
jpm |
275 |
uriChp.setFieldLabel("URL de la publication");
|
|
|
276 |
generalitesFieldset.add(uriChp, new FormData(450, 0));
|
775 |
jpm |
277 |
}
|
|
|
278 |
|
|
|
279 |
private void creerZoneEdition() {
|
|
|
280 |
FormLayout layout = new FormLayout();
|
|
|
281 |
layout.setLabelWidth(200);
|
|
|
282 |
|
219 |
aurelien |
283 |
// Fieldset Edition
|
775 |
jpm |
284 |
editionFieldset = new FieldSet();
|
792 |
jpm |
285 |
editionFieldset.setHeading("Édition");
|
775 |
jpm |
286 |
editionFieldset.setCollapsible(true);
|
|
|
287 |
editionFieldset.setLayout(layout);
|
219 |
aurelien |
288 |
|
792 |
jpm |
289 |
ListStore<Structure> editeurStore = new ListStore<Structure>();
|
|
|
290 |
editeurCombobox = new ComboBox<Structure>();
|
|
|
291 |
editeurCombobox.setEmptyText("Sélectionner un éditeur...");
|
|
|
292 |
editeurCombobox.setFieldLabel("Éditeur de la publication");
|
|
|
293 |
editeurCombobox.setDisplayField("nom");
|
|
|
294 |
editeurCombobox.setStore(editeurStore);
|
|
|
295 |
editeurCombobox.setEditable(true);
|
|
|
296 |
editeurCombobox.setTriggerAction(TriggerAction.ALL);
|
|
|
297 |
editionFieldset.add(editeurCombobox, new FormData(450, 0));
|
|
|
298 |
mediateur.clicObtenirListeEditeurs(this);
|
219 |
aurelien |
299 |
|
786 |
jpm |
300 |
datePublicationChp = new TextField<String>();
|
|
|
301 |
datePublicationChp.setMaxLength(4);
|
|
|
302 |
datePublicationChp.setMinLength(4);
|
|
|
303 |
datePublicationChp.setFieldLabel("Année de publication");
|
981 |
jpm |
304 |
datePublicationChp.addStyleName(ComposantClass.OBLIGATOIRE);
|
980 |
jpm |
305 |
datePublicationChp.addListener(Events.Valid, creerEcouteurChampObligatoire());
|
792 |
jpm |
306 |
editionFieldset.add(datePublicationChp, new FormData(40, 0));
|
219 |
aurelien |
307 |
|
786 |
jpm |
308 |
tomeChp = new TextField<String>();
|
792 |
jpm |
309 |
tomeChp.setFieldLabel("Série de la revue ou tome");
|
|
|
310 |
editionFieldset.add(tomeChp, new FormData(75, 0));
|
219 |
aurelien |
311 |
|
786 |
jpm |
312 |
fasciculeChp = new TextField<String>();
|
792 |
jpm |
313 |
fasciculeChp.setFieldLabel("Fascicule de la revue");
|
|
|
314 |
editionFieldset.add(fasciculeChp, new FormData(75, 0));
|
219 |
aurelien |
315 |
|
786 |
jpm |
316 |
pagesChp = new TextField<String>();
|
|
|
317 |
pagesChp.setFieldLabel("Pages");
|
887 |
aurelien |
318 |
pagesChp.setToolTip("Fomat : NBRE ou NBRE-NBRE. ('NBRE' correspond à une suite de chiffres arabes ou romains ou à un point d'interrogation '?' dans le cas d'une donnée inconnue)");
|
792 |
jpm |
319 |
editionFieldset.add(pagesChp, new FormData(100, 0));
|
219 |
aurelien |
320 |
}
|
775 |
jpm |
321 |
|
705 |
aurelien |
322 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
323 |
if (nouvellesDonnees instanceof Publication) {
|
782 |
jpm |
324 |
// Si on a reçu les details d'une publication
|
|
|
325 |
rafraichirPublication((Publication) nouvellesDonnees);
|
|
|
326 |
} else if (nouvellesDonnees instanceof StructureListe) {
|
|
|
327 |
// Si on a reçu une liste des editeurs
|
|
|
328 |
rafraichirListeEditeurs((StructureListe) nouvellesDonnees);
|
|
|
329 |
} else if (nouvellesDonnees instanceof PublicationAPersonneListe) {
|
|
|
330 |
rafraichirListeAuteurs((PublicationAPersonneListe) nouvellesDonnees);
|
|
|
331 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
332 |
rafraichirInformation((Information) nouvellesDonnees);
|
1032 |
jpm |
333 |
} else if (nouvellesDonnees instanceof ProjetListe) {
|
|
|
334 |
ProjetListe projets = (ProjetListe) nouvellesDonnees;
|
|
|
335 |
Formulaire.rafraichirComboBox(projets, projetsCombo);
|
|
|
336 |
setValeurComboProjets();
|
782 |
jpm |
337 |
} else {
|
|
|
338 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
227 |
aurelien |
339 |
}
|
|
|
340 |
|
822 |
jpm |
341 |
if (etrePretAAfficherAuteurs()) {
|
901 |
jpm |
342 |
initialiserAffichageAuteurs();
|
822 |
jpm |
343 |
afficherAuteurs();
|
|
|
344 |
}
|
|
|
345 |
|
782 |
jpm |
346 |
if (etreValide()) {
|
822 |
jpm |
347 |
initialiserValidation();
|
782 |
jpm |
348 |
repandreRafraichissement();
|
|
|
349 |
controlerFermetureApresRafraichissement();
|
219 |
aurelien |
350 |
}
|
782 |
jpm |
351 |
}
|
901 |
jpm |
352 |
|
|
|
353 |
private void miseAJourPublicationAPersonneListe() {
|
|
|
354 |
Iterator<String> clesAjoutees = auteursAjoutes.keySet().iterator();
|
|
|
355 |
while (clesAjoutees.hasNext()) {
|
|
|
356 |
String id = clesAjoutees.next();
|
|
|
357 |
publicationAPersonneListe.put(id, auteursAjoutes.get(id));
|
|
|
358 |
}
|
|
|
359 |
|
|
|
360 |
Iterator<String> clesSupprimees = auteursSupprimes.keySet().iterator();
|
|
|
361 |
while (clesSupprimees.hasNext()) {
|
|
|
362 |
String id = clesSupprimees.next();
|
|
|
363 |
publicationAPersonneListe.remove(id);
|
|
|
364 |
}
|
|
|
365 |
}
|
|
|
366 |
|
786 |
jpm |
367 |
private void rafraichirPublication(Publication publi) {
|
|
|
368 |
publication = publi;
|
822 |
jpm |
369 |
peuplerFormulaire();
|
1095 |
jpm |
370 |
genererTitreFormulaire();
|
782 |
jpm |
371 |
}
|
|
|
372 |
|
|
|
373 |
private void rafraichirListeEditeurs(StructureListe editeurs) {
|
792 |
jpm |
374 |
editeurCombobox.getStore().removeAll();
|
|
|
375 |
editeurCombobox.getStore().add((List<Structure>) editeurs.toList());
|
782 |
jpm |
376 |
|
|
|
377 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
792 |
jpm |
378 |
editeurCombobox.setValue((Structure) editeurs.get(idStructureEdition));
|
782 |
jpm |
379 |
}
|
792 |
jpm |
380 |
editeurCombobox.expand();
|
782 |
jpm |
381 |
}
|
|
|
382 |
|
|
|
383 |
private void rafraichirListeAuteurs(PublicationAPersonneListe auteurs) {
|
786 |
jpm |
384 |
publicationAPersonneListe = auteurs;
|
822 |
jpm |
385 |
publicationAPersonneListeChargementOk = true;
|
782 |
jpm |
386 |
}
|
|
|
387 |
|
|
|
388 |
private void rafraichirInformation(Information info) {
|
1095 |
jpm |
389 |
String type = info.getType();
|
|
|
390 |
if (type.equals("ajout_publication") || type.equals("modif_publication")) {
|
|
|
391 |
publicationValideOk = true;
|
|
|
392 |
if (vueExterneARafraichirApresValidation != null) {
|
|
|
393 |
publication.setId((String) info.getDonnee(0));
|
|
|
394 |
}
|
|
|
395 |
|
|
|
396 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
397 |
attenteAjoutAuteursOk = true;
|
|
|
398 |
mediateur.ajouterPublicationAPersonne(this, publication.getId(), auteursAjoutes, PublicationAPersonne.ROLE_AUTEUR);
|
|
|
399 |
}
|
|
|
400 |
}
|
|
|
401 |
|
782 |
jpm |
402 |
if (info.getType().equals("liste_personne")) {
|
822 |
jpm |
403 |
PersonneListe listePersonneAuteur = (PersonneListe) info.getDonnee(0);
|
|
|
404 |
|
782 |
jpm |
405 |
List<Personne> liste = listePersonneAuteur.toList();
|
|
|
406 |
auteursStorePartage.removeAll();
|
|
|
407 |
auteursStorePartage.add(liste);
|
822 |
jpm |
408 |
|
|
|
409 |
auteurStorePartageChargementOk = true;
|
901 |
jpm |
410 |
} else if (info.getType().equals("ajout_publication_a_personne")) {
|
|
|
411 |
attenteAjoutAuteursOk = false;
|
|
|
412 |
GWT.log("attenteAjoutAuteursOk", null);
|
|
|
413 |
} else if (info.getType().equals("suppression_publication_a_personne")) {
|
|
|
414 |
attenteSuppressionAuteursOk = false;
|
|
|
415 |
GWT.log("attenteSuppressionAuteursOk", null);
|
1095 |
jpm |
416 |
} else if (info.getType().equals("modif_publication")) {
|
|
|
417 |
Info.display("Modification d'une publication", info.toString());
|
|
|
418 |
} else if (info.getType().equals("ajout_publication")) {
|
|
|
419 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
|
|
|
420 |
String publicationId = (String) info.getDonnee(0);
|
|
|
421 |
Info.display("Ajout d'une publication", "La publication '"+publicationId+"' a bien été ajoutée");
|
|
|
422 |
if (vueExterneARafraichirApresValidation != null) {
|
|
|
423 |
publication.setId(publicationId);
|
|
|
424 |
}
|
|
|
425 |
} else {
|
|
|
426 |
Info.display("Ajout d'une publication", info.toString());
|
|
|
427 |
}
|
901 |
jpm |
428 |
}
|
|
|
429 |
|
|
|
430 |
if (avoirAuteursMiseAJourCorrectement()) {
|
822 |
jpm |
431 |
auteursValideOk = true;
|
901 |
jpm |
432 |
miseAJourPublicationAPersonneListe();
|
|
|
433 |
initialiserAuteurs();
|
782 |
jpm |
434 |
}
|
|
|
435 |
}
|
|
|
436 |
|
901 |
jpm |
437 |
private boolean avoirAuteursMiseAJourCorrectement() {
|
|
|
438 |
boolean ok = false;
|
|
|
439 |
if (attenteAjoutAuteursOk == false && attenteSuppressionAuteursOk == false) {
|
|
|
440 |
ok = true;
|
|
|
441 |
}
|
|
|
442 |
return ok;
|
|
|
443 |
}
|
|
|
444 |
|
822 |
jpm |
445 |
private void afficherAuteurs() {
|
|
|
446 |
Iterator<String> itap = publicationAPersonneListe.keySet().iterator();
|
|
|
447 |
while (itap.hasNext()) {
|
|
|
448 |
creerChampAuteurEtBoutonSupprimer(publicationAPersonneListe.get(itap.next()).getPersonne());
|
|
|
449 |
}
|
|
|
450 |
}
|
|
|
451 |
|
|
|
452 |
private void initialiserAffichageAuteurs() {
|
|
|
453 |
auteurStorePartageChargementOk = false;
|
|
|
454 |
publicationAPersonneListeChargementOk = false;
|
|
|
455 |
}
|
|
|
456 |
|
|
|
457 |
private boolean etrePretAAfficherAuteurs() {
|
|
|
458 |
boolean ok = false;
|
|
|
459 |
if (auteurStorePartageChargementOk && publicationAPersonneListeChargementOk) {
|
|
|
460 |
ok = true;
|
|
|
461 |
}
|
|
|
462 |
return ok;
|
|
|
463 |
}
|
|
|
464 |
|
782 |
jpm |
465 |
private Boolean etreValide() {
|
|
|
466 |
Boolean valide = false;
|
989 |
jpm |
467 |
//Debug.log("formulaire"+formulaireValideOk+" - Publication :"+publicationValideOk+" - Auteurs :"+auteursValideOk, null);
|
822 |
jpm |
468 |
if (formulaireValideOk && publicationValideOk && auteursValideOk) {
|
782 |
jpm |
469 |
valide = true;
|
|
|
470 |
}
|
|
|
471 |
return valide;
|
|
|
472 |
}
|
|
|
473 |
|
822 |
jpm |
474 |
private void initialiserValidation() {
|
|
|
475 |
formulaireValideOk = false;
|
|
|
476 |
publicationValideOk = false;
|
901 |
jpm |
477 |
initialiserAuteurs();
|
822 |
jpm |
478 |
auteursValideOk = false;
|
782 |
jpm |
479 |
}
|
|
|
480 |
|
901 |
jpm |
481 |
private void initialiserAuteurs() {
|
|
|
482 |
attenteAjoutAuteursOk = true;
|
|
|
483 |
auteursAjoutes = new PublicationAPersonneListe();
|
|
|
484 |
attenteSuppressionAuteursOk = true;
|
|
|
485 |
auteursSupprimes = new PublicationAPersonneListe();
|
|
|
486 |
}
|
|
|
487 |
|
782 |
jpm |
488 |
private void repandreRafraichissement() {
|
|
|
489 |
if (vueExterneARafraichirApresValidation != null) {
|
786 |
jpm |
490 |
String type = "publication_modifiee";
|
|
|
491 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
492 |
type = "publication_ajoutee";
|
|
|
493 |
}
|
|
|
494 |
Information info = new Information(type);
|
|
|
495 |
info.setDonnee(0, publication);
|
782 |
jpm |
496 |
vueExterneARafraichirApresValidation.rafraichir(info);
|
|
|
497 |
}
|
|
|
498 |
}
|
|
|
499 |
|
786 |
jpm |
500 |
public boolean soumettreFormulaire() {
|
822 |
jpm |
501 |
formulaireValideOk = verifierFormulaire();
|
|
|
502 |
if (formulaireValideOk) {
|
901 |
jpm |
503 |
soumettrePublication();
|
|
|
504 |
soumettreAuteurs();
|
|
|
505 |
}
|
|
|
506 |
return formulaireValideOk;
|
|
|
507 |
}
|
|
|
508 |
|
|
|
509 |
private void soumettrePublication() {
|
|
|
510 |
Publication publicationCollectee = collecterPublication();
|
|
|
511 |
if (publicationCollectee != null) {
|
|
|
512 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
513 |
mediateur.ajouterPublication(this, publicationCollectee);
|
|
|
514 |
} else if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
515 |
mediateur.modifierPublication(this, publicationCollectee);
|
|
|
516 |
}
|
|
|
517 |
}
|
|
|
518 |
}
|
|
|
519 |
|
|
|
520 |
private void soumettreAuteurs() {
|
|
|
521 |
attenteAjoutAuteursOk = false;
|
|
|
522 |
attenteSuppressionAuteursOk = false;
|
|
|
523 |
|
|
|
524 |
PersonneListe personnesInitiales = new PersonneListe();
|
|
|
525 |
if (publicationAPersonneListe != null) {
|
|
|
526 |
Iterator<String> itap = publicationAPersonneListe.keySet().iterator();
|
|
|
527 |
while (itap.hasNext()) {
|
|
|
528 |
Personne personne = publicationAPersonneListe.get(itap.next()).getPersonne();
|
|
|
529 |
personnesInitiales.put(personne.getId(), personne);
|
|
|
530 |
}
|
|
|
531 |
}
|
|
|
532 |
|
|
|
533 |
PersonneListe personnesActuelles = new PersonneListe();
|
|
|
534 |
for (int i = 0; i < auteurComboboxListe.size(); i++) {
|
|
|
535 |
if (auteurComboboxListe.get(i).getValue() != null) {
|
|
|
536 |
Personne personne = auteurComboboxListe.get(i).getValue();
|
|
|
537 |
personnesActuelles.put(personne.getId(), personne);
|
|
|
538 |
}
|
|
|
539 |
}
|
|
|
540 |
|
|
|
541 |
// Auteurs ajoutés
|
|
|
542 |
Iterator<String> clesActuelles = personnesActuelles.keySet().iterator();
|
|
|
543 |
while (clesActuelles.hasNext()) {
|
|
|
544 |
String idActuel = clesActuelles.next();
|
|
|
545 |
if (personnesInitiales.size() == 0 || personnesInitiales.get(idActuel) == null) {
|
|
|
546 |
Personne personne = personnesActuelles.get(idActuel);
|
|
|
547 |
PublicationAPersonne publicationAAuteur = new PublicationAPersonne();
|
|
|
548 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
549 |
publicationAAuteur.setIdPublication(publication.getId());
|
741 |
aurelien |
550 |
}
|
901 |
jpm |
551 |
publicationAAuteur.setPersonne(personne);
|
|
|
552 |
publicationAAuteur.setIdRole(PublicationAPersonne.ROLE_AUTEUR);
|
|
|
553 |
auteursAjoutes.put(publicationAAuteur.getId(), publicationAAuteur);
|
|
|
554 |
attenteAjoutAuteursOk = true;
|
239 |
aurelien |
555 |
}
|
|
|
556 |
}
|
901 |
jpm |
557 |
|
|
|
558 |
// Auteurs supprimés
|
|
|
559 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
560 |
Iterator<String> clesInitiales = personnesInitiales.keySet().iterator();
|
|
|
561 |
while (clesInitiales.hasNext()) {
|
|
|
562 |
String idInitial = clesInitiales.next();
|
|
|
563 |
if (personnesActuelles.size() == 0 || personnesActuelles.get(idInitial) == null) {
|
|
|
564 |
Personne personne = personnesInitiales.get(idInitial);
|
|
|
565 |
PublicationAPersonne publicationAAuteur = new PublicationAPersonne();
|
|
|
566 |
publicationAAuteur.setIdPublication(publication.getId());
|
|
|
567 |
publicationAAuteur.setPersonne(personne);
|
|
|
568 |
publicationAAuteur.setIdRole(PublicationAPersonne.ROLE_AUTEUR);
|
|
|
569 |
auteursSupprimes.put(publicationAAuteur.getId(), publicationAAuteur);
|
|
|
570 |
attenteSuppressionAuteursOk = true;
|
|
|
571 |
}
|
|
|
572 |
}
|
|
|
573 |
}
|
|
|
574 |
|
|
|
575 |
// Execution de les mise à jour pour le mode MODIFICATION
|
|
|
576 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
577 |
if (auteursAjoutes != null && auteursAjoutes.size() != 0) {
|
|
|
578 |
mediateur.ajouterPublicationAPersonne(this, publication.getId(), auteursAjoutes, PublicationAPersonne.ROLE_AUTEUR);
|
|
|
579 |
}
|
|
|
580 |
|
|
|
581 |
if (auteursSupprimes != null && auteursSupprimes.size() != 0) {
|
|
|
582 |
mediateur.supprimerPublicationAPersonne(this, auteursSupprimes);
|
|
|
583 |
}
|
|
|
584 |
}
|
219 |
aurelien |
585 |
}
|
|
|
586 |
|
934 |
jpm |
587 |
public boolean verifierFormulaire() {
|
782 |
jpm |
588 |
boolean valide = true;
|
|
|
589 |
ArrayList<String> messages = new ArrayList<String>();
|
|
|
590 |
|
786 |
jpm |
591 |
boolean auteurErreur = true;
|
775 |
jpm |
592 |
for (int i = 0; i < auteurComboboxListe.size(); i++) {
|
|
|
593 |
if (auteurComboboxListe.get(i).getValue() != null) {
|
786 |
jpm |
594 |
auteurErreur = false;
|
782 |
jpm |
595 |
break;
|
227 |
aurelien |
596 |
}
|
|
|
597 |
}
|
782 |
jpm |
598 |
if (auteurErreur) {
|
|
|
599 |
messages.add("Veuillez saisir au moins un auteur !");
|
705 |
aurelien |
600 |
}
|
|
|
601 |
|
786 |
jpm |
602 |
String titre = titreChp.getValue();
|
782 |
jpm |
603 |
if (titre == null || titre.equals("")) {
|
|
|
604 |
messages.add("Veuillez saisir le titre de la publication !");
|
705 |
aurelien |
605 |
}
|
|
|
606 |
|
792 |
jpm |
607 |
String uri = uriChp.getValue();
|
|
|
608 |
if (uri != null && ! uri.isEmpty() && ! uri.matches(Pattern.url)) {
|
|
|
609 |
messages.add("L'URL saisie n'est pas valide !");
|
|
|
610 |
}
|
|
|
611 |
|
799 |
jpm |
612 |
String datePublication = datePublicationChp.getRawValue();
|
|
|
613 |
if (datePublication == null || datePublication.equals("")) {
|
|
|
614 |
messages.add("Veuillez saisir une année de parution !");
|
725 |
aurelien |
615 |
} else {
|
799 |
jpm |
616 |
if (!etreDateValide(datePublication)) {
|
792 |
jpm |
617 |
messages.add("Le format de l'année saisie est incorrect !");
|
725 |
aurelien |
618 |
}
|
705 |
aurelien |
619 |
}
|
717 |
aurelien |
620 |
|
792 |
jpm |
621 |
String pages = pagesChp.getValue();
|
|
|
622 |
String valeurPage = "(?:[0-9]+|[IVXLCDM]+|\\?)";
|
799 |
jpm |
623 |
if (pages != null && ! pages.matches("^(?:"+valeurPage+"|"+valeurPage+"-"+valeurPage+")$")) {
|
792 |
jpm |
624 |
messages.add("Le format des pages est incorrect !");
|
|
|
625 |
}
|
|
|
626 |
|
782 |
jpm |
627 |
if (messages.size() != 0) {
|
|
|
628 |
String[] tableauDeMessages = {};
|
|
|
629 |
tableauDeMessages = messages.toArray(tableauDeMessages);
|
799 |
jpm |
630 |
MessageBox.alert("Erreurs de saisies", UtilArray.implode(tableauDeMessages, "<br />"), null);
|
782 |
jpm |
631 |
valide = false;
|
705 |
aurelien |
632 |
}
|
782 |
jpm |
633 |
return valide;
|
775 |
jpm |
634 |
}
|
|
|
635 |
|
822 |
jpm |
636 |
private void peuplerFormulaire() {
|
|
|
637 |
creerChampsAuteur();
|
1032 |
jpm |
638 |
setValeurComboProjets();
|
822 |
jpm |
639 |
titreChp.setValue(publication.getTitre());
|
|
|
640 |
collectionChp.setValue(publication.getCollection());
|
|
|
641 |
uriChp.setValue(publication.getURI());
|
1032 |
jpm |
642 |
datePublicationChp.setValue(reduireDateParAnnee(publication.getDateParution()));
|
822 |
jpm |
643 |
tomeChp.setValue(publication.getIndicationNvt());
|
|
|
644 |
fasciculeChp.setValue(publication.getFascicule());
|
|
|
645 |
pagesChp.setValue(publication.getPages());
|
|
|
646 |
|
|
|
647 |
if (publication.getEditeur().matches("^[0-9]+$")) {
|
|
|
648 |
editeurCombobox.setValue(editeurCombobox.getStore().findModel("id_structure", publication.getEditeur()));
|
|
|
649 |
idStructureEdition = publication.getEditeur();
|
|
|
650 |
} else {
|
|
|
651 |
editeurCombobox.setRawValue(publication.getEditeur());
|
|
|
652 |
}
|
|
|
653 |
}
|
|
|
654 |
|
786 |
jpm |
655 |
private Publication collecterPublication() {
|
|
|
656 |
Publication publicationCollectee = (Publication) publication.cloner(new Publication());
|
|
|
657 |
|
1032 |
jpm |
658 |
publicationCollectee.setIdProjet(getValeurComboProjets());
|
|
|
659 |
|
822 |
jpm |
660 |
String auteurIntituleFormate = "";
|
|
|
661 |
int auteursNombre = auteurComboboxListe.size();
|
|
|
662 |
for (int i = 0; i < auteursNombre; i++) {
|
786 |
jpm |
663 |
if (auteurComboboxListe.get(i).getValue() != null) {
|
822 |
jpm |
664 |
Personne auteur = auteurComboboxListe.get(i).getValue();
|
|
|
665 |
auteurIntituleFormate += auteur.getNom()+ " "+auteur.getPrenom();
|
|
|
666 |
if (i != (auteursNombre - 1)) {
|
|
|
667 |
auteurIntituleFormate += ", ";
|
786 |
jpm |
668 |
}
|
|
|
669 |
}
|
|
|
670 |
}
|
822 |
jpm |
671 |
publicationCollectee.setAuteur(auteurIntituleFormate);
|
786 |
jpm |
672 |
|
|
|
673 |
String titre = titreChp.getValue();
|
|
|
674 |
publicationCollectee.setTitre(titre);
|
|
|
675 |
|
|
|
676 |
String collection = collectionChp.getValue();
|
|
|
677 |
publicationCollectee.setCollection(collection);
|
|
|
678 |
|
|
|
679 |
String nomComplet = titreChp.getValue()+" "+collectionChp.getValue();
|
|
|
680 |
publicationCollectee.setNomComplet(nomComplet);
|
|
|
681 |
|
|
|
682 |
String uri = uriChp.getValue();
|
|
|
683 |
publicationCollectee.setUri(uri);
|
|
|
684 |
|
|
|
685 |
String editeur = "";
|
792 |
jpm |
686 |
if (editeurCombobox.getValue() != null) {
|
|
|
687 |
editeur = editeurCombobox.getValue().getId();
|
799 |
jpm |
688 |
publicationCollectee.setStructureEditeur(editeurCombobox.getValue());
|
792 |
jpm |
689 |
} else if (editeurCombobox.getRawValue() != "") {
|
|
|
690 |
editeur = editeurCombobox.getRawValue();
|
786 |
jpm |
691 |
}
|
|
|
692 |
publicationCollectee.setEditeur(editeur);
|
|
|
693 |
|
792 |
jpm |
694 |
String anneePublication = datePublicationChp.getRawValue();
|
|
|
695 |
String datePublication = anneePublication+"-00-00";
|
|
|
696 |
publicationCollectee.setDateParution(datePublication);
|
786 |
jpm |
697 |
|
|
|
698 |
String tome = tomeChp.getValue();
|
|
|
699 |
publicationCollectee.setIndicationNvt(tome);
|
|
|
700 |
|
|
|
701 |
String fascicule = fasciculeChp.getValue();
|
|
|
702 |
publicationCollectee.setFascicule(fascicule);
|
|
|
703 |
|
|
|
704 |
String pages = pagesChp.getValue();
|
|
|
705 |
publicationCollectee.setPages(pages);
|
|
|
706 |
|
927 |
jpm |
707 |
Publication publicationARetourner = null;
|
786 |
jpm |
708 |
if (!publicationCollectee.comparer(publication)) {
|
|
|
709 |
publicationARetourner = publication = publicationCollectee;
|
|
|
710 |
}
|
|
|
711 |
return publicationARetourner;
|
|
|
712 |
}
|
|
|
713 |
|
934 |
jpm |
714 |
public void reinitialiserFormulaire() {
|
781 |
jpm |
715 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
786 |
jpm |
716 |
mediateur.afficherFormPublication(publication.getId());
|
775 |
jpm |
717 |
} else {
|
|
|
718 |
mediateur.afficherFormPublication(null);
|
219 |
aurelien |
719 |
}
|
|
|
720 |
}
|
227 |
aurelien |
721 |
|
792 |
jpm |
722 |
private boolean etreDateValide(String anneePublication) {
|
782 |
jpm |
723 |
boolean valide = true;
|
792 |
jpm |
724 |
if (!anneePublication.matches("^[0-2][0-9]{3}$")) {
|
782 |
jpm |
725 |
valide = false;
|
725 |
aurelien |
726 |
}
|
782 |
jpm |
727 |
return valide;
|
725 |
aurelien |
728 |
}
|
758 |
aurelien |
729 |
|
|
|
730 |
private String reduireDateParAnnee(String datePar) {
|
775 |
jpm |
731 |
if (datePar.matches("^[0-2][0-9]{3}(-[0-9]{2}){2}$")) {
|
758 |
aurelien |
732 |
return datePar.split("-")[0];
|
505 |
jp_milcent |
733 |
} else {
|
758 |
aurelien |
734 |
return "";
|
227 |
aurelien |
735 |
}
|
758 |
aurelien |
736 |
}
|
1032 |
jpm |
737 |
|
|
|
738 |
private String getValeurComboProjets() {
|
|
|
739 |
String valeur = "";
|
|
|
740 |
if (projetsCombo.getValue() != null) {
|
|
|
741 |
valeur = projetsCombo.getValue().getId();
|
|
|
742 |
}
|
|
|
743 |
return valeur;
|
|
|
744 |
}
|
|
|
745 |
private void setValeurComboProjets() {
|
|
|
746 |
if (projetsCombo.getStore() != null ) {
|
|
|
747 |
if (mode.equals(Formulaire.MODE_MODIFIER) && publication != null) {
|
|
|
748 |
projetsCombo.setValue(projetsCombo.getStore().findModel("id_projet", publication.getIdProjet()));
|
|
|
749 |
} else if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
750 |
projetsCombo.setValue(projetsCombo.getStore().findModel("id_projet", mediateur.getProjetId()));
|
|
|
751 |
}
|
|
|
752 |
}
|
|
|
753 |
}
|
505 |
jp_milcent |
754 |
}
|