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;
|
1327 |
cyprien |
9 |
import org.tela_botanica.client.composants.ChampComboBoxRechercheTempsReelPaginable;
|
1218 |
cyprien |
10 |
import org.tela_botanica.client.composants.InfoLogger;
|
1331 |
cyprien |
11 |
import org.tela_botanica.client.composants.pagination.ProxyPersonnes;
|
1327 |
cyprien |
12 |
import org.tela_botanica.client.composants.pagination.ProxyProjets;
|
|
|
13 |
import org.tela_botanica.client.composants.pagination.ProxyStructures;
|
822 |
jpm |
14 |
import org.tela_botanica.client.images.Images;
|
219 |
aurelien |
15 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
705 |
aurelien |
16 |
import org.tela_botanica.client.modeles.Information;
|
775 |
jpm |
17 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
1273 |
gduche |
18 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
19 |
import org.tela_botanica.client.modeles.aDonnee;
|
935 |
jpm |
20 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
21 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
1032 |
jpm |
22 |
import org.tela_botanica.client.modeles.projet.Projet;
|
|
|
23 |
import org.tela_botanica.client.modeles.projet.ProjetListe;
|
935 |
jpm |
24 |
import org.tela_botanica.client.modeles.publication.Publication;
|
|
|
25 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonne;
|
|
|
26 |
import org.tela_botanica.client.modeles.publication.PublicationAPersonneListe;
|
|
|
27 |
import org.tela_botanica.client.modeles.structure.Structure;
|
|
|
28 |
import org.tela_botanica.client.modeles.structure.StructureListe;
|
1131 |
jpm |
29 |
import org.tela_botanica.client.util.Debug;
|
792 |
jpm |
30 |
import org.tela_botanica.client.util.Pattern;
|
782 |
jpm |
31 |
import org.tela_botanica.client.util.UtilArray;
|
884 |
jpm |
32 |
import org.tela_botanica.client.util.UtilString;
|
1273 |
gduche |
33 |
import org.tela_botanica.client.vues.FenetreForm;
|
935 |
jpm |
34 |
import org.tela_botanica.client.vues.Formulaire;
|
1273 |
gduche |
35 |
import org.tela_botanica.client.vues.FormulaireBarreValidation;
|
|
|
36 |
import org.tela_botanica.client.vues.personne.PersonneForm;
|
219 |
aurelien |
37 |
|
1273 |
gduche |
38 |
import com.extjs.gxt.ui.client.Style.Scroll;
|
1275 |
gduche |
39 |
import com.extjs.gxt.ui.client.Style.SortDir;
|
1273 |
gduche |
40 |
import com.extjs.gxt.ui.client.core.XTemplate;
|
1327 |
cyprien |
41 |
import com.extjs.gxt.ui.client.data.ModelData;
|
|
|
42 |
import com.extjs.gxt.ui.client.data.ModelType;
|
1273 |
gduche |
43 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
505 |
jp_milcent |
44 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
1273 |
gduche |
45 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
980 |
jpm |
46 |
import com.extjs.gxt.ui.client.event.Events;
|
1273 |
gduche |
47 |
import com.extjs.gxt.ui.client.event.KeyListener;
|
|
|
48 |
import com.extjs.gxt.ui.client.event.Listener;
|
219 |
aurelien |
49 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
|
|
50 |
import com.extjs.gxt.ui.client.store.ListStore;
|
1273 |
gduche |
51 |
import com.extjs.gxt.ui.client.store.Store;
|
|
|
52 |
import com.extjs.gxt.ui.client.store.StoreEvent;
|
1325 |
cyprien |
53 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
227 |
aurelien |
54 |
import com.extjs.gxt.ui.client.widget.HorizontalPanel;
|
1095 |
jpm |
55 |
import com.extjs.gxt.ui.client.widget.Info;
|
219 |
aurelien |
56 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
705 |
aurelien |
57 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
1273 |
gduche |
58 |
import com.extjs.gxt.ui.client.widget.Text;
|
219 |
aurelien |
59 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
1273 |
gduche |
60 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
219 |
aurelien |
61 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
1032 |
jpm |
62 |
import com.extjs.gxt.ui.client.widget.form.Field;
|
219 |
aurelien |
63 |
import com.extjs.gxt.ui.client.widget.form.FieldSet;
|
1273 |
gduche |
64 |
import com.extjs.gxt.ui.client.widget.form.FormPanel;
|
219 |
aurelien |
65 |
import com.extjs.gxt.ui.client.widget.form.TextField;
|
1032 |
jpm |
66 |
import com.extjs.gxt.ui.client.widget.form.Validator;
|
219 |
aurelien |
67 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
1273 |
gduche |
68 |
import com.extjs.gxt.ui.client.widget.grid.CellEditor;
|
|
|
69 |
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
|
|
|
70 |
import com.extjs.gxt.ui.client.widget.grid.ColumnData;
|
|
|
71 |
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
|
|
|
72 |
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
|
|
|
73 |
import com.extjs.gxt.ui.client.widget.grid.Grid;
|
|
|
74 |
import com.extjs.gxt.ui.client.widget.grid.GridCellRenderer;
|
|
|
75 |
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
|
|
|
76 |
import com.extjs.gxt.ui.client.widget.grid.RowExpander;
|
|
|
77 |
import com.extjs.gxt.ui.client.widget.grid.RowNumberer;
|
|
|
78 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
219 |
aurelien |
79 |
import com.extjs.gxt.ui.client.widget.layout.FlowLayout;
|
|
|
80 |
import com.extjs.gxt.ui.client.widget.layout.FormData;
|
|
|
81 |
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
|
1273 |
gduche |
82 |
import com.extjs.gxt.ui.client.widget.layout.RowData;
|
|
|
83 |
import com.extjs.gxt.ui.client.widget.layout.RowLayout;
|
|
|
84 |
import com.extjs.gxt.ui.client.widget.toolbar.SeparatorToolItem;
|
|
|
85 |
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
|
705 |
aurelien |
86 |
import com.google.gwt.core.client.GWT;
|
1273 |
gduche |
87 |
import com.google.gwt.user.client.Window;
|
219 |
aurelien |
88 |
|
877 |
aurelien |
89 |
|
775 |
jpm |
90 |
public class PublicationForm extends Formulaire implements Rafraichissable {
|
219 |
aurelien |
91 |
|
786 |
jpm |
92 |
private Publication publication;
|
1133 |
jpm |
93 |
private PersonneListe auteursInitialListe = null;
|
901 |
jpm |
94 |
private static boolean publicationAPersonneListeChargementOk = false;
|
1273 |
gduche |
95 |
private PersonneListe auteursAjoutes = null;
|
|
|
96 |
private PersonneListe auteursSupprimes = null;
|
219 |
aurelien |
97 |
|
1325 |
cyprien |
98 |
private ContentPanel auteursFieldset = null;
|
1327 |
cyprien |
99 |
private ChampComboBoxRechercheTempsReelPaginable projetsCombo = null;
|
775 |
jpm |
100 |
private ArrayList<ComboBox<Personne>> auteurComboboxListe = null;
|
|
|
101 |
private ListStore<Personne> auteursStorePartage = null;
|
901 |
jpm |
102 |
private static boolean auteurStorePartageChargementOk = false;
|
227 |
aurelien |
103 |
|
775 |
jpm |
104 |
private FieldSet generalitesFieldset = null;
|
786 |
jpm |
105 |
private TextField<String> titreChp = null;
|
|
|
106 |
private TextField<String> collectionChp = null;
|
|
|
107 |
private TextField<String> uriChp = null;
|
219 |
aurelien |
108 |
|
775 |
jpm |
109 |
private FieldSet editionFieldset = null;
|
1327 |
cyprien |
110 |
private ChampComboBoxRechercheTempsReelPaginable editeurCombobox = null;
|
1178 |
jpm |
111 |
private static boolean editeursOk = false;
|
786 |
jpm |
112 |
private TextField<String> datePublicationChp = null;
|
|
|
113 |
private TextField<String> tomeChp = null;
|
|
|
114 |
private TextField<String> fasciculeChp = null;
|
|
|
115 |
private TextField<String> pagesChp = null;
|
219 |
aurelien |
116 |
|
1178 |
jpm |
117 |
boolean auteursAffiches = false;
|
901 |
jpm |
118 |
private static boolean formulaireValideOk = false;
|
|
|
119 |
private static boolean publicationValideOk = false;
|
|
|
120 |
private static boolean auteursValideOk = false;
|
1131 |
jpm |
121 |
private static boolean publicationOk = false;
|
901 |
jpm |
122 |
private static boolean attenteAjoutAuteursOk = true;
|
|
|
123 |
private static boolean attenteSuppressionAuteursOk = true;
|
1273 |
gduche |
124 |
|
|
|
125 |
private LayoutContainer zoneHaut, zoneBas;
|
|
|
126 |
|
|
|
127 |
private static int idGenere = 1;
|
|
|
128 |
private ToolBar barreOutils = null;
|
|
|
129 |
private EditorGrid<Personne> grille;
|
|
|
130 |
private PersonneListe personnesAjoutees = null;
|
|
|
131 |
private PersonneListe personnesSupprimees = null;
|
1331 |
cyprien |
132 |
private ChampComboBoxRechercheTempsReelPaginable personnesSaisiesComboBox = null;
|
|
|
133 |
private ChampComboBoxRechercheTempsReelPaginable recherchePersonnesCombo = null;
|
1273 |
gduche |
134 |
private Button personnesBoutonSupprimer = null;
|
|
|
135 |
private Button personnesBoutonModifier = null;
|
|
|
136 |
private ComboBox<Valeur> typeRelationCombo = null;
|
|
|
137 |
private List<Valeur> roles = null;
|
|
|
138 |
private PersonneListe listePersonne = new PersonneListe();
|
|
|
139 |
|
|
|
140 |
private FenetreForm fenetreFormulaire = null;
|
|
|
141 |
|
781 |
jpm |
142 |
public PublicationForm(Mediateur mediateurCourrant, String publicationId) {
|
782 |
jpm |
143 |
initialiserPublicationForm(mediateurCourrant, publicationId);
|
|
|
144 |
}
|
|
|
145 |
|
|
|
146 |
public PublicationForm(Mediateur mediateurCourrant, String publicationId, Rafraichissable vueARafraichirApresValidation) {
|
822 |
jpm |
147 |
vueExterneARafraichirApresValidation = vueARafraichirApresValidation;
|
782 |
jpm |
148 |
initialiserPublicationForm(mediateurCourrant, publicationId);
|
|
|
149 |
}
|
|
|
150 |
|
|
|
151 |
private void initialiserPublicationForm(Mediateur mediateurCourrant, String publicationId) {
|
1273 |
gduche |
152 |
|
1133 |
jpm |
153 |
auteursInitialListe = new PersonneListe();
|
901 |
jpm |
154 |
initialiserValidation();
|
|
|
155 |
initialiserAffichageAuteurs();
|
|
|
156 |
|
799 |
jpm |
157 |
publication = new Publication();
|
822 |
jpm |
158 |
publication.setId(publicationId);
|
|
|
159 |
|
884 |
jpm |
160 |
String modeDeCreation = (UtilString.isEmpty(publication.getId()) ? Formulaire.MODE_AJOUTER : Formulaire.MODE_MODIFIER);
|
775 |
jpm |
161 |
initialiserFormulaire(mediateurCourrant, modeDeCreation, MenuApplicationId.PUBLICATION);
|
1273 |
gduche |
162 |
panneauFormulaire.setLayout(new RowLayout());
|
|
|
163 |
panneauFormulaire.setStyleAttribute("padding", "0");
|
|
|
164 |
zoneHaut = new LayoutContainer(new FitLayout());
|
|
|
165 |
zoneBas = new LayoutContainer(new FlowLayout());
|
781 |
jpm |
166 |
|
1273 |
gduche |
167 |
panneauFormulaire.add(zoneHaut, new RowData(1, 0.3));
|
|
|
168 |
panneauFormulaire.add(zoneBas, new RowData(1, 0.5));
|
1277 |
gduche |
169 |
panneauFormulaire.setScrollMode(Scroll.AUTO);
|
1095 |
jpm |
170 |
genererTitreFormulaire();
|
|
|
171 |
|
775 |
jpm |
172 |
creerZoneAuteurs();
|
1273 |
gduche |
173 |
zoneHaut.add(auteursFieldset);
|
219 |
aurelien |
174 |
|
775 |
jpm |
175 |
creerZoneGeneralites();
|
1273 |
gduche |
176 |
zoneBas.add(generalitesFieldset);
|
239 |
aurelien |
177 |
|
775 |
jpm |
178 |
creerZoneEdition();
|
1273 |
gduche |
179 |
zoneBas.add(editionFieldset);
|
822 |
jpm |
180 |
|
|
|
181 |
if (modeDeCreation.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
182 |
mediateurCourrant.selectionnerPublication(this, publicationId);
|
|
|
183 |
mediateurCourrant.selectionnerPublicationAPersonne(this, publicationId, null, PublicationAPersonne.ROLE_AUTEUR);
|
|
|
184 |
}
|
781 |
jpm |
185 |
}
|
782 |
jpm |
186 |
|
1273 |
gduche |
187 |
public void actualiserEtatBoutonsBarreOutils() {
|
|
|
188 |
// Activation des boutons si la grille contient un élément
|
|
|
189 |
if (grille.getStore().getCount() > 0) {
|
|
|
190 |
personnesBoutonSupprimer.enable();
|
|
|
191 |
personnesBoutonModifier.enable();
|
|
|
192 |
}
|
|
|
193 |
// Désactivation des boutons si la grille ne contient plus d'élément
|
|
|
194 |
if (grille.getStore().getCount() == 0) {
|
|
|
195 |
personnesBoutonSupprimer.disable();
|
|
|
196 |
personnesBoutonModifier.disable();
|
|
|
197 |
}
|
|
|
198 |
}
|
|
|
199 |
|
|
|
200 |
private ToolBar creerBarreOutilsGrille() {
|
|
|
201 |
ToolBar barreOutils = new ToolBar();
|
|
|
202 |
|
|
|
203 |
Button ajouterBouton = creerBoutonAjouter();
|
|
|
204 |
barreOutils.add(ajouterBouton);
|
|
|
205 |
|
|
|
206 |
barreOutils.add(new Text(" ou "));
|
|
|
207 |
|
1331 |
cyprien |
208 |
creerComboBoxPersonnesSaisies();
|
|
|
209 |
//personnesSaisiesComboBox = recherchePersonnesCombo;;
|
|
|
210 |
|
1273 |
gduche |
211 |
barreOutils.add(personnesSaisiesComboBox);
|
|
|
212 |
|
|
|
213 |
barreOutils.add(new SeparatorToolItem());
|
|
|
214 |
|
|
|
215 |
personnesBoutonModifier = creerBoutonModifier();
|
|
|
216 |
barreOutils.add(personnesBoutonModifier);
|
|
|
217 |
|
|
|
218 |
barreOutils.add(new SeparatorToolItem());
|
|
|
219 |
|
|
|
220 |
personnesBoutonSupprimer = creerBoutonSupprimer();
|
|
|
221 |
barreOutils.add(personnesBoutonSupprimer);
|
|
|
222 |
|
|
|
223 |
barreOutils.add(new SeparatorToolItem());
|
|
|
224 |
|
|
|
225 |
Button rafraichirBouton = creerBoutonRafraichir();
|
|
|
226 |
barreOutils.add(rafraichirBouton);
|
|
|
227 |
|
|
|
228 |
return barreOutils;
|
|
|
229 |
}
|
|
|
230 |
|
|
|
231 |
private Button creerBoutonAjouter() {
|
|
|
232 |
Button bouton = new Button(i18nC.ajouter());
|
|
|
233 |
bouton.setIcon(Images.ICONES.vcardAjouter());
|
|
|
234 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
235 |
public void componentSelected(ButtonEvent ce) {
|
|
|
236 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_AJOUTER);
|
|
|
237 |
fenetreFormulaire.show();
|
|
|
238 |
}
|
|
|
239 |
});
|
|
|
240 |
return bouton;
|
|
|
241 |
}
|
|
|
242 |
|
|
|
243 |
private Button creerBoutonModifier() {
|
|
|
244 |
Button bouton = new Button(i18nC.modifier());
|
|
|
245 |
bouton.setIcon(Images.ICONES.vcardModifier());
|
|
|
246 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
247 |
public void componentSelected(ButtonEvent ce) {
|
|
|
248 |
Personne personneSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
249 |
|
|
|
250 |
if (personneSaisieSelectionnee == null) {
|
|
|
251 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPublication());
|
|
|
252 |
} else {
|
|
|
253 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(Formulaire.MODE_MODIFIER);
|
|
|
254 |
fenetreFormulaire.show();
|
|
|
255 |
}
|
|
|
256 |
}
|
|
|
257 |
});
|
|
|
258 |
return bouton;
|
|
|
259 |
}
|
|
|
260 |
|
|
|
261 |
private FenetreForm creerFenetreModaleAvecFormulairePersonne(String mode) {
|
|
|
262 |
String personneId = null;
|
|
|
263 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
264 |
Personne personneSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
265 |
personneId = personneSaisieSelectionnee.getId();
|
|
|
266 |
}
|
|
|
267 |
|
|
|
268 |
final FenetreForm fenetre = new FenetreForm("");
|
|
|
269 |
final PersonneForm formulaire = creerFormulairePersonne(fenetre, personneId);
|
|
|
270 |
fenetre.add(formulaire);
|
|
|
271 |
return fenetre;
|
|
|
272 |
}
|
|
|
273 |
|
|
|
274 |
private PersonneForm creerFormulairePersonne(final FenetreForm fenetre, final String personneId) {
|
|
|
275 |
PersonneForm formulairePersonne = new PersonneForm(mediateur, personneId, this);
|
|
|
276 |
FormPanel panneauFormulaire = formulairePersonne.getFormulaire();
|
|
|
277 |
fenetre.setHeading(panneauFormulaire.getHeading());
|
|
|
278 |
panneauFormulaire.setHeaderVisible(false);
|
|
|
279 |
panneauFormulaire.setTopComponent(null);
|
|
|
280 |
|
|
|
281 |
// FIXME : avec GXT-2.1.0 la redéfinition du bottom component ne marche plus. Nous le cachons et en créeons un dans la fenêtre.
|
|
|
282 |
panneauFormulaire.getBottomComponent().hide();
|
|
|
283 |
SelectionListener<ButtonEvent> ecouteur = creerEcouteurValidationFormulairePersonne(fenetre, formulairePersonne);
|
|
|
284 |
final ButtonBar barreValidation = new FormulaireBarreValidation(ecouteur);
|
|
|
285 |
fenetre.setBottomComponent(barreValidation);
|
|
|
286 |
|
|
|
287 |
return formulairePersonne;
|
|
|
288 |
}
|
|
|
289 |
|
|
|
290 |
private SelectionListener<ButtonEvent> creerEcouteurValidationFormulairePersonne(final FenetreForm fenetre, final PersonneForm formulaire) {
|
|
|
291 |
SelectionListener<ButtonEvent> ecouteur = new SelectionListener<ButtonEvent>() {
|
|
|
292 |
public void componentSelected(ButtonEvent ce) {
|
|
|
293 |
String code = ((Button) ce.getComponent()).getData("code");
|
|
|
294 |
if (code.equals(FormulaireBarreValidation.CODE_BOUTON_VALIDER)) {
|
|
|
295 |
if (formulaire.soumettreFormulaire()) {
|
|
|
296 |
fenetre.hide();
|
|
|
297 |
}
|
|
|
298 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_APPLIQUER)) {
|
|
|
299 |
formulaire.soumettreFormulaire();
|
|
|
300 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_ANNULER)) {
|
|
|
301 |
fenetre.hide();
|
|
|
302 |
} else if (code.equals(FormulaireBarreValidation.CODE_BOUTON_REINITIALISER)) {
|
|
|
303 |
fenetreFormulaire.hide();
|
|
|
304 |
fenetreFormulaire = creerFenetreModaleAvecFormulairePersonne(formulaire.mode);
|
|
|
305 |
fenetreFormulaire.show();
|
|
|
306 |
}
|
|
|
307 |
}
|
|
|
308 |
};
|
|
|
309 |
|
|
|
310 |
return ecouteur;
|
|
|
311 |
}
|
|
|
312 |
|
|
|
313 |
private Button creerBoutonSupprimer() {
|
|
|
314 |
Button bouton = new Button(i18nC.supprimer());
|
|
|
315 |
bouton.setIcon(Images.ICONES.vcardSupprimer());
|
|
|
316 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
317 |
public void componentSelected(ButtonEvent ce) {
|
|
|
318 |
Personne personneSaisieSelectionnee = grille.getSelectionModel().getSelectedItem();
|
|
|
319 |
if (personneSaisieSelectionnee == null) {
|
|
|
320 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerPublication());
|
|
|
321 |
} else {
|
|
|
322 |
supprimerDansGrille(personneSaisieSelectionnee);
|
|
|
323 |
}
|
|
|
324 |
}
|
|
|
325 |
});
|
|
|
326 |
return bouton;
|
|
|
327 |
}
|
|
|
328 |
|
|
|
329 |
private Button creerBoutonRafraichir() {
|
|
|
330 |
Button bouton = new Button(i18nC.rafraichir());
|
|
|
331 |
bouton.setIcon(Images.ICONES.rafraichir());
|
|
|
332 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
333 |
public void componentSelected(ButtonEvent ce) {
|
|
|
334 |
actualiserGrille();
|
|
|
335 |
}
|
|
|
336 |
});
|
|
|
337 |
return bouton;
|
|
|
338 |
}
|
|
|
339 |
|
|
|
340 |
private void actualiserGrille() {
|
|
|
341 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
342 |
// FIXME : c'est la merde
|
|
|
343 |
//mediateur.selectionner(this, null, personneSelectionnee.getId(), "%");
|
|
|
344 |
} else {
|
|
|
345 |
grille.getStore().removeAll();
|
|
|
346 |
layout();
|
|
|
347 |
}
|
|
|
348 |
}
|
|
|
349 |
|
1331 |
cyprien |
350 |
private void creerComboBoxPersonnesSaisies() {
|
1273 |
gduche |
351 |
|
1331 |
cyprien |
352 |
ModelType modelTypePersonnes = new ModelType();
|
|
|
353 |
modelTypePersonnes.setRoot("personnes");
|
|
|
354 |
modelTypePersonnes.setTotalName("nbElements");
|
|
|
355 |
modelTypePersonnes.addField("cp_fmt_nom_complet");
|
|
|
356 |
modelTypePersonnes.addField("cp_id_personne");
|
|
|
357 |
modelTypePersonnes.addField("cp_code_postal");
|
|
|
358 |
modelTypePersonnes.addField("cp_ville");
|
|
|
359 |
modelTypePersonnes.addField("cp_truk_courriel");
|
|
|
360 |
|
|
|
361 |
String displayNamePersonnes = "cp_fmt_nom_complet";
|
|
|
362 |
ProxyPersonnes<ModelData> proxyPersonnes = new ProxyPersonnes<ModelData>();
|
|
|
363 |
|
|
|
364 |
personnesSaisiesComboBox = new ChampComboBoxRechercheTempsReelPaginable(proxyPersonnes, modelTypePersonnes, displayNamePersonnes);
|
|
|
365 |
|
|
|
366 |
personnesSaisiesComboBox.getCombo().addListener(Events.Select, new Listener<BaseEvent>() {
|
|
|
367 |
public void handleEvent(BaseEvent be) {
|
|
|
368 |
if (personnesSaisiesComboBox.getValeur() instanceof ModelData) {
|
1273 |
gduche |
369 |
// N'ajouter l'auteur que s'il n'est pas déjà présent dans la grille et dans les valeurs initiales
|
1331 |
cyprien |
370 |
Personne personneSaisieSelectionnee = new Personne(personnesSaisiesComboBox.getValeur());
|
|
|
371 |
if (grille.getStore().findModel(personneSaisieSelectionnee) != null) {
|
1273 |
gduche |
372 |
Info.display("Information", "La personne est déjà présente dans la liste d'auteurs");
|
|
|
373 |
} else {
|
1331 |
cyprien |
374 |
if (!auteursInitialListe.containsValue(personneSaisieSelectionnee)) {
|
|
|
375 |
auteursAjoutes.put(personneSaisieSelectionnee.getId(), personneSaisieSelectionnee);
|
1273 |
gduche |
376 |
}
|
1331 |
cyprien |
377 |
ajouterDansGrille(personneSaisieSelectionnee);
|
|
|
378 |
personnesSaisiesComboBox.getCombo().setValue(null);
|
1273 |
gduche |
379 |
}
|
|
|
380 |
}
|
|
|
381 |
}
|
|
|
382 |
});
|
|
|
383 |
}
|
|
|
384 |
|
|
|
385 |
private void ajouterDansGrille(Personne personne) {
|
|
|
386 |
ajouterDansGrille(personne, 0);
|
|
|
387 |
}
|
|
|
388 |
|
|
|
389 |
private void ajouterDansGrille(Personne personne, int index) {
|
|
|
390 |
if (personne != null) {
|
|
|
391 |
if (!grille.getStore().contains(personne)) {
|
|
|
392 |
//1) si elle ne fait pas partie des initiaux, ajouter à la liste à ajouter
|
|
|
393 |
if (!auteursInitialListe.containsValue(personne)) {
|
|
|
394 |
auteursAjoutes.put(personne.getId(), personne);
|
|
|
395 |
}
|
|
|
396 |
|
|
|
397 |
// L'enlever de la liste à supprimer
|
|
|
398 |
if (auteursSupprimes.containsValue(personne)) {
|
|
|
399 |
auteursSupprimes.remove(personne);
|
|
|
400 |
}
|
|
|
401 |
//2) Ajouter a la grille
|
|
|
402 |
grille.getStore().insert(personne, index);
|
|
|
403 |
grille.getSelectionModel().select(index, false);
|
|
|
404 |
} else {
|
|
|
405 |
InfoLogger.display("Information", "La personne choisie existe déjà dans la liste.");
|
|
|
406 |
}
|
|
|
407 |
}
|
|
|
408 |
}
|
|
|
409 |
|
|
|
410 |
/**
|
|
|
411 |
* Met à jour la grille avec les informations contenus dans la variable listePublicationsLiees
|
|
|
412 |
*/
|
|
|
413 |
private void mettreAJourGrille() {
|
|
|
414 |
|
|
|
415 |
grille.getStore().removeAll();
|
|
|
416 |
grille.getStore().add(listePersonne.toList());
|
|
|
417 |
}
|
|
|
418 |
|
|
|
419 |
private void supprimerDansGrille(Personne personne) {
|
|
|
420 |
if (personne != null) {
|
|
|
421 |
//1) Ajouter a la liste des personne à supprimer uniquement si est présente dans la liste initiale
|
|
|
422 |
if (auteursInitialListe.containsValue(personne)) {
|
|
|
423 |
auteursSupprimes.put(personne.getId(), personne);
|
|
|
424 |
}
|
|
|
425 |
|
|
|
426 |
if (auteursAjoutes.containsValue(personne)) {
|
|
|
427 |
auteursAjoutes.remove(personne);
|
|
|
428 |
}
|
|
|
429 |
|
|
|
430 |
//2) Supprimer la personne de la liste
|
|
|
431 |
grille.getStore().remove(personne);
|
|
|
432 |
} else {
|
|
|
433 |
Info.display("Information", "Vous devez sélectionner une personne");
|
|
|
434 |
}
|
|
|
435 |
}
|
|
|
436 |
|
|
|
437 |
private EditorGrid<Personne> creerGrille() {
|
|
|
438 |
|
|
|
439 |
ListStore<Personne> storeGrille = new ListStore<Personne>();
|
|
|
440 |
storeGrille.addListener(Store.Add, new Listener<StoreEvent<Personne>>() {
|
|
|
441 |
public void handleEvent(StoreEvent<Personne> ce) {
|
|
|
442 |
actualiserEtatBoutonsBarreOutils();
|
|
|
443 |
}
|
|
|
444 |
});
|
|
|
445 |
|
|
|
446 |
storeGrille.addListener(Store.Remove, new Listener<StoreEvent<Personne>>() {
|
|
|
447 |
public void handleEvent(StoreEvent<Personne> ce) {
|
|
|
448 |
actualiserEtatBoutonsBarreOutils();
|
|
|
449 |
}
|
|
|
450 |
});
|
|
|
451 |
|
|
|
452 |
storeGrille.addListener(Store.Update, new Listener<StoreEvent<Personne>>() {
|
|
|
453 |
public void handleEvent(StoreEvent<Personne> ce) {
|
|
|
454 |
if (ce.getRecord().isModified("_role_") && !ce.getModel().get("_etat_").equals(aDonnee.ETAT_AJOUTE)) {
|
|
|
455 |
ce.getModel().set("_etat_", aDonnee.ETAT_MODIFIE);
|
|
|
456 |
}
|
|
|
457 |
}
|
|
|
458 |
});
|
|
|
459 |
|
|
|
460 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
|
|
461 |
colonnes.add(new ColumnConfig("fmt_nom_complet", i18nC.personneNomComplet(), 150));
|
|
|
462 |
colonnes.add(new ColumnConfig("code_postal", i18nC.personneCodePostal(), 150));
|
|
|
463 |
colonnes.add(new ColumnConfig("ville", i18nC.personneVille(), 75));
|
|
|
464 |
colonnes.add(new ColumnConfig("truk_courriel", i18nC.personneCourriel(), 75));
|
|
|
465 |
|
|
|
466 |
GridSelectionModel<Personne> modeleDeSelection = new GridSelectionModel<Personne>();
|
|
|
467 |
|
|
|
468 |
ColumnModel modeleDeColonnes = new ColumnModel(colonnes);
|
|
|
469 |
|
|
|
470 |
EditorGrid<Personne> grillePublications = new EditorGrid<Personne>(storeGrille, modeleDeColonnes);
|
|
|
471 |
grillePublications.setHeight("100%");
|
|
|
472 |
grillePublications.setBorders(true);
|
|
|
473 |
grillePublications.setSelectionModel(modeleDeSelection);
|
|
|
474 |
grillePublications.getView().setForceFit(true);
|
|
|
475 |
grillePublications.setAutoExpandColumn("fmt_nom_complet");
|
|
|
476 |
grillePublications.setStripeRows(true);
|
|
|
477 |
grillePublications.setTrackMouseOver(true);
|
|
|
478 |
|
|
|
479 |
return grillePublications;
|
|
|
480 |
}
|
|
|
481 |
|
1095 |
jpm |
482 |
private void genererTitreFormulaire() {
|
989 |
jpm |
483 |
String titre = i18nC.publicationTitreFormAjout();
|
822 |
jpm |
484 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
1095 |
jpm |
485 |
titre = i18nC.publicationTitreFormModif();
|
|
|
486 |
if (publication != null) {
|
1218 |
cyprien |
487 |
titre += " - "+i18nC.id()+": "+publication.getId()+" - "+publication.getObjetDeLaPublication();
|
1095 |
jpm |
488 |
}
|
822 |
jpm |
489 |
}
|
1095 |
jpm |
490 |
panneauFormulaire.setHeading(titre);
|
822 |
jpm |
491 |
}
|
1218 |
cyprien |
492 |
|
775 |
jpm |
493 |
private void creerZoneAuteurs() {
|
1325 |
cyprien |
494 |
auteursFieldset = new ContentPanel();
|
|
|
495 |
auteursFieldset.setLayout(new FitLayout());
|
|
|
496 |
auteursFieldset.setHeading("Auteurs");
|
|
|
497 |
|
775 |
jpm |
498 |
auteurComboboxListe = new ArrayList<ComboBox<Personne>>(0);
|
792 |
jpm |
499 |
mediateur.clicObtenirListeAuteurs(this);
|
775 |
jpm |
500 |
|
822 |
jpm |
501 |
creerChampsAuteur();
|
775 |
jpm |
502 |
}
|
|
|
503 |
|
822 |
jpm |
504 |
private void creerChampsAuteur() {
|
775 |
jpm |
505 |
auteursFieldset.removeAll();
|
1273 |
gduche |
506 |
barreOutils = creerBarreOutilsGrille();
|
1325 |
cyprien |
507 |
auteursFieldset.setTopComponent(barreOutils);
|
1273 |
gduche |
508 |
grille = creerGrille();
|
|
|
509 |
auteursFieldset.add(grille);
|
1131 |
jpm |
510 |
auteursFieldset.layout();
|
775 |
jpm |
511 |
}
|
|
|
512 |
|
822 |
jpm |
513 |
public void creerChampAuteurEtBoutonSupprimer(Personne auteur) {
|
1273 |
gduche |
514 |
/*final HorizontalPanel panneauHorizontal = new HorizontalPanel();
|
1134 |
jpm |
515 |
|
|
|
516 |
LayoutContainer panneauChampTxt = new LayoutContainer();
|
|
|
517 |
panneauChampTxt.setLayout(new FormLayout());
|
|
|
518 |
|
775 |
jpm |
519 |
final ComboBox<Personne> auteursSaisisComboBox = creerComboBoxAuteursSaisis();
|
|
|
520 |
if (auteur != null) {
|
1131 |
jpm |
521 |
auteursSaisisComboBox.setValue(auteur);
|
901 |
jpm |
522 |
auteursSaisisComboBox.validate();
|
775 |
jpm |
523 |
}
|
|
|
524 |
auteurComboboxListe.add(auteursSaisisComboBox);
|
989 |
jpm |
525 |
auteursSaisisComboBox.setFieldLabel(i18nC.publicationAuteurSingulier()+" "+auteurComboboxListe.size());
|
1134 |
jpm |
526 |
panneauChampTxt.add(auteursSaisisComboBox, new FormData(300, 0));
|
|
|
527 |
panneauHorizontal.add(panneauChampTxt);
|
758 |
aurelien |
528 |
|
822 |
jpm |
529 |
Button supprimerAuteurBouton = new Button();
|
|
|
530 |
supprimerAuteurBouton.setIcon(Images.ICONES.supprimer());
|
|
|
531 |
supprimerAuteurBouton.setToolTip(i18nC.supprimer());
|
|
|
532 |
supprimerAuteurBouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
775 |
jpm |
533 |
@Override
|
|
|
534 |
public void componentSelected(ButtonEvent be) {
|
|
|
535 |
auteurComboboxListe.remove(auteursSaisisComboBox);
|
|
|
536 |
conteneurChamps.remove(panneauHorizontal);
|
822 |
jpm |
537 |
|
|
|
538 |
int numeroAuteurs = 1;
|
|
|
539 |
for (Iterator<ComboBox<Personne>> it = auteurComboboxListe.iterator(); it.hasNext();) {
|
989 |
jpm |
540 |
it.next().setFieldLabel(i18nC.publicationAuteurSingulier()+" "+numeroAuteurs);
|
822 |
jpm |
541 |
numeroAuteurs++;
|
|
|
542 |
}
|
|
|
543 |
|
1131 |
jpm |
544 |
auteursFieldset.layout();
|
775 |
jpm |
545 |
}
|
|
|
546 |
});
|
822 |
jpm |
547 |
panneauHorizontal.add(supprimerAuteurBouton);
|
1134 |
jpm |
548 |
|
775 |
jpm |
549 |
conteneurChamps.add(panneauHorizontal);
|
1273 |
gduche |
550 |
auteursFieldset.layout();*/
|
775 |
jpm |
551 |
}
|
|
|
552 |
|
1331 |
cyprien |
553 |
/*
|
775 |
jpm |
554 |
private ComboBox<Personne> creerComboBoxAuteursSaisis() {
|
1134 |
jpm |
555 |
ListStore<Personne> auteursStore = new ListStore<Personne>();
|
|
|
556 |
auteursStore.add(auteursStorePartage.getModels());
|
|
|
557 |
|
775 |
jpm |
558 |
ComboBox<Personne> comboBox = new ComboBox<Personne>();
|
860 |
jpm |
559 |
comboBox.setEmptyText(i18nC.chercherPersonneSaisi());
|
775 |
jpm |
560 |
comboBox.setEditable(true);
|
1131 |
jpm |
561 |
comboBox.setAllowBlank(false);
|
775 |
jpm |
562 |
comboBox.setForceSelection(true);
|
|
|
563 |
comboBox.setDisplayField("fmt_nom_complet");
|
|
|
564 |
comboBox.setTriggerAction(TriggerAction.ALL);
|
1134 |
jpm |
565 |
comboBox.setStore(auteursStore);
|
1174 |
jpm |
566 |
comboBox.setMessageTarget("tooltip");
|
981 |
jpm |
567 |
comboBox.addStyleName(ComposantClass.OBLIGATOIRE);
|
980 |
jpm |
568 |
comboBox.addListener(Events.Valid, creerEcouteurChampObligatoire());
|
775 |
jpm |
569 |
|
|
|
570 |
return comboBox;
|
1331 |
cyprien |
571 |
}*/
|
775 |
jpm |
572 |
|
|
|
573 |
private void creerZoneGeneralites() {
|
|
|
574 |
FormLayout layout = new FormLayout();
|
|
|
575 |
layout.setLabelWidth(200);
|
219 |
aurelien |
576 |
|
|
|
577 |
// Fieldset Infos Générales
|
775 |
jpm |
578 |
generalitesFieldset = new FieldSet();
|
|
|
579 |
generalitesFieldset.setHeading("Informations générales");
|
|
|
580 |
generalitesFieldset.setCollapsible(true);
|
|
|
581 |
generalitesFieldset.setLayout(layout);
|
1327 |
cyprien |
582 |
|
219 |
aurelien |
583 |
|
1327 |
cyprien |
584 |
ModelType modelTypeProjets = new ModelType();
|
|
|
585 |
modelTypeProjets.setRoot("projets");
|
|
|
586 |
modelTypeProjets.setTotalName("nbElements");
|
|
|
587 |
modelTypeProjets.addField("cpr_nom");
|
|
|
588 |
modelTypeProjets.addField("cpr_id_projet");
|
|
|
589 |
|
|
|
590 |
String displayNameProjets = "cpr_nom";
|
|
|
591 |
ProxyProjets<ModelData> proxyProjets = new ProxyProjets<ModelData>();
|
|
|
592 |
|
|
|
593 |
projetsCombo = new ChampComboBoxRechercheTempsReelPaginable(proxyProjets, modelTypeProjets, displayNameProjets);
|
|
|
594 |
projetsCombo.setWidth(200, 600);
|
|
|
595 |
projetsCombo.getCombo().setTabIndex(tabIndex++);
|
|
|
596 |
projetsCombo.getCombo().setFieldLabel(i18nC.projetChamp());
|
|
|
597 |
projetsCombo.getCombo().setForceSelection(true);
|
|
|
598 |
projetsCombo.getCombo().addStyleName(ComposantClass.OBLIGATOIRE);
|
|
|
599 |
projetsCombo.getCombo().addListener(Events.Valid, Formulaire.creerEcouteurChampObligatoire());
|
|
|
600 |
|
|
|
601 |
projetsCombo.getCombo().setValidator(new Validator() {
|
1032 |
jpm |
602 |
public String validate(Field<?> field, String value) {
|
|
|
603 |
String retour = null;
|
|
|
604 |
if (field.getRawValue().equals("")) {
|
|
|
605 |
field.setValue(null);
|
1327 |
cyprien |
606 |
} else if (projetsCombo.getStore().findModel("cpr_nom", field.getRawValue()) == null) {
|
1032 |
jpm |
607 |
String contenuBrut = field.getRawValue();
|
|
|
608 |
field.setValue(null);
|
|
|
609 |
field.setRawValue(contenuBrut);
|
|
|
610 |
retour = "Veuillez sélectionner une valeur ou laisser le champ vide";
|
|
|
611 |
}
|
|
|
612 |
return retour;
|
|
|
613 |
}
|
1327 |
cyprien |
614 |
});
|
|
|
615 |
generalitesFieldset.add(projetsCombo, new FormData(600, 0));
|
1032 |
jpm |
616 |
|
786 |
jpm |
617 |
titreChp = new TextField<String>();
|
|
|
618 |
titreChp.setName("cpu");
|
|
|
619 |
titreChp.setFieldLabel("Titre de l'article ou de l'ouvrage");
|
981 |
jpm |
620 |
titreChp.addStyleName(ComposantClass.OBLIGATOIRE);
|
980 |
jpm |
621 |
titreChp.addListener(Events.Valid, creerEcouteurChampObligatoire());
|
792 |
jpm |
622 |
generalitesFieldset.add(titreChp, new FormData(450, 0));
|
219 |
aurelien |
623 |
|
786 |
jpm |
624 |
collectionChp = new TextField<String>();
|
792 |
jpm |
625 |
collectionChp.setFieldLabel("Intitulé de la revue ou de la collection");
|
|
|
626 |
generalitesFieldset.add(collectionChp, new FormData(450, 0));
|
219 |
aurelien |
627 |
|
786 |
jpm |
628 |
uriChp = new TextField<String>();
|
792 |
jpm |
629 |
uriChp.setFieldLabel("URL de la publication");
|
|
|
630 |
generalitesFieldset.add(uriChp, new FormData(450, 0));
|
775 |
jpm |
631 |
}
|
|
|
632 |
|
|
|
633 |
private void creerZoneEdition() {
|
|
|
634 |
FormLayout layout = new FormLayout();
|
|
|
635 |
layout.setLabelWidth(200);
|
|
|
636 |
|
219 |
aurelien |
637 |
// Fieldset Edition
|
775 |
jpm |
638 |
editionFieldset = new FieldSet();
|
792 |
jpm |
639 |
editionFieldset.setHeading("Édition");
|
775 |
jpm |
640 |
editionFieldset.setCollapsible(true);
|
|
|
641 |
editionFieldset.setLayout(layout);
|
1327 |
cyprien |
642 |
|
|
|
643 |
/*****************************************************/
|
|
|
644 |
/** Champ 'Editeur de la publication' **/
|
|
|
645 |
/*****************************************************/
|
|
|
646 |
ModelType modelTypeStructures = new ModelType();
|
|
|
647 |
modelTypeStructures.setRoot("structures");
|
|
|
648 |
modelTypeStructures.setTotalName("nbElements");
|
|
|
649 |
modelTypeStructures.addField("cs_nom");
|
|
|
650 |
modelTypeStructures.addField("cs_id_structure");
|
219 |
aurelien |
651 |
|
1327 |
cyprien |
652 |
String displayNameStructures = "cs_nom";
|
|
|
653 |
ProxyStructures<ModelData> proxyStructures = new ProxyStructures<ModelData>();
|
219 |
aurelien |
654 |
|
1327 |
cyprien |
655 |
editeurCombobox = new ChampComboBoxRechercheTempsReelPaginable(proxyStructures, modelTypeStructures, displayNameStructures);
|
|
|
656 |
editeurCombobox.setWidth(200, 600);
|
|
|
657 |
editeurCombobox.getCombo().setTabIndex(tabIndex++);
|
|
|
658 |
editeurCombobox.getCombo().setEmptyText("Sélectionner un éditeur...");
|
|
|
659 |
editeurCombobox.getCombo().setFieldLabel("Éditeur de la publication");
|
|
|
660 |
editeurCombobox.getCombo().setEditable(true);
|
|
|
661 |
editionFieldset.add(editeurCombobox, new FormData(600, 0));
|
|
|
662 |
|
|
|
663 |
/*********************************************/
|
|
|
664 |
/** Champ 'Date de publication' **/
|
|
|
665 |
/*********************************************/
|
786 |
jpm |
666 |
datePublicationChp = new TextField<String>();
|
|
|
667 |
datePublicationChp.setMaxLength(4);
|
|
|
668 |
datePublicationChp.setMinLength(4);
|
|
|
669 |
datePublicationChp.setFieldLabel("Année de publication");
|
981 |
jpm |
670 |
datePublicationChp.addStyleName(ComposantClass.OBLIGATOIRE);
|
980 |
jpm |
671 |
datePublicationChp.addListener(Events.Valid, creerEcouteurChampObligatoire());
|
792 |
jpm |
672 |
editionFieldset.add(datePublicationChp, new FormData(40, 0));
|
219 |
aurelien |
673 |
|
1327 |
cyprien |
674 |
/*****************************/
|
|
|
675 |
/** Champ '' **/
|
|
|
676 |
/*****************************/
|
786 |
jpm |
677 |
tomeChp = new TextField<String>();
|
792 |
jpm |
678 |
tomeChp.setFieldLabel("Série de la revue ou tome");
|
|
|
679 |
editionFieldset.add(tomeChp, new FormData(75, 0));
|
1327 |
cyprien |
680 |
|
|
|
681 |
/*****************************/
|
|
|
682 |
/** Champ '' **/
|
|
|
683 |
/*****************************/
|
786 |
jpm |
684 |
fasciculeChp = new TextField<String>();
|
792 |
jpm |
685 |
fasciculeChp.setFieldLabel("Fascicule de la revue");
|
|
|
686 |
editionFieldset.add(fasciculeChp, new FormData(75, 0));
|
1327 |
cyprien |
687 |
|
|
|
688 |
/*****************************/
|
|
|
689 |
/** Champ '' **/
|
|
|
690 |
/*****************************/
|
786 |
jpm |
691 |
pagesChp = new TextField<String>();
|
|
|
692 |
pagesChp.setFieldLabel("Pages");
|
887 |
aurelien |
693 |
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 |
694 |
editionFieldset.add(pagesChp, new FormData(100, 0));
|
219 |
aurelien |
695 |
}
|
775 |
jpm |
696 |
|
705 |
aurelien |
697 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
698 |
if (nouvellesDonnees instanceof Publication) {
|
782 |
jpm |
699 |
// Si on a reçu les details d'une publication
|
|
|
700 |
rafraichirPublication((Publication) nouvellesDonnees);
|
|
|
701 |
} else if (nouvellesDonnees instanceof PublicationAPersonneListe) {
|
|
|
702 |
rafraichirListeAuteurs((PublicationAPersonneListe) nouvellesDonnees);
|
|
|
703 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
704 |
rafraichirInformation((Information) nouvellesDonnees);
|
|
|
705 |
} else {
|
|
|
706 |
GWT.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
227 |
aurelien |
707 |
}
|
|
|
708 |
|
1178 |
jpm |
709 |
synchronisation();
|
|
|
710 |
}
|
|
|
711 |
|
|
|
712 |
private void synchronisation() {
|
|
|
713 |
// Respecter l'ordre et faire attention à la réinitialisation des jetons
|
|
|
714 |
// 1. gestion des auteurs (Modif ou Ajout)
|
|
|
715 |
// 2. peupler le formulaire (Modif)
|
|
|
716 |
// 3. initialisation de la gestion des auteurs ajoutés/supprimés (Modif)
|
|
|
717 |
// 4. valider le formulaire (Modif ou Ajout)
|
|
|
718 |
|
822 |
jpm |
719 |
if (etrePretAAfficherAuteurs()) {
|
1131 |
jpm |
720 |
afficherAuteurs();
|
901 |
jpm |
721 |
initialiserAffichageAuteurs();
|
822 |
jpm |
722 |
}
|
1178 |
jpm |
723 |
|
1327 |
cyprien |
724 |
if (etrePretAPeupler()) {
|
1178 |
jpm |
725 |
peuplerFormulaire();
|
|
|
726 |
genererTitreFormulaire();
|
|
|
727 |
initialiserPeupler();
|
1174 |
jpm |
728 |
}
|
822 |
jpm |
729 |
|
1178 |
jpm |
730 |
if (avoirAuteursMiseAJourCorrectement()) {
|
|
|
731 |
miseAJourAuteursInitialListe();
|
|
|
732 |
initialiserAuteurs();
|
|
|
733 |
auteursValideOk = true;
|
|
|
734 |
}
|
|
|
735 |
|
782 |
jpm |
736 |
if (etreValide()) {
|
822 |
jpm |
737 |
initialiserValidation();
|
782 |
jpm |
738 |
repandreRafraichissement();
|
1218 |
cyprien |
739 |
controlerFermeture();
|
219 |
aurelien |
740 |
}
|
782 |
jpm |
741 |
}
|
901 |
jpm |
742 |
|
1133 |
jpm |
743 |
private void miseAJourAuteursInitialListe() {
|
901 |
jpm |
744 |
Iterator<String> clesAjoutees = auteursAjoutes.keySet().iterator();
|
|
|
745 |
while (clesAjoutees.hasNext()) {
|
1273 |
gduche |
746 |
Personne auteurAjoute = auteursAjoutes.get(clesAjoutees.next());
|
1133 |
jpm |
747 |
auteursInitialListe.put(auteurAjoute.getId(), auteurAjoute);
|
901 |
jpm |
748 |
}
|
|
|
749 |
|
|
|
750 |
Iterator<String> clesSupprimees = auteursSupprimes.keySet().iterator();
|
|
|
751 |
while (clesSupprimees.hasNext()) {
|
1273 |
gduche |
752 |
Personne auteurSupprime = auteursSupprimes.get(clesSupprimees.next());
|
1133 |
jpm |
753 |
auteursInitialListe.remove(auteurSupprime.getId());
|
901 |
jpm |
754 |
}
|
|
|
755 |
}
|
|
|
756 |
|
786 |
jpm |
757 |
private void rafraichirPublication(Publication publi) {
|
1131 |
jpm |
758 |
publicationOk = true;
|
786 |
jpm |
759 |
publication = publi;
|
782 |
jpm |
760 |
}
|
|
|
761 |
|
|
|
762 |
private void rafraichirListeAuteurs(PublicationAPersonneListe auteurs) {
|
1133 |
jpm |
763 |
Iterator<String> it = auteurs.keySet().iterator();
|
|
|
764 |
while (it.hasNext()) {
|
1337 |
cyprien |
765 |
Personne auteur = auteurs.get(it.next()).getPersonne();
|
1133 |
jpm |
766 |
auteursInitialListe.put(auteur.getId(), auteur);
|
|
|
767 |
}
|
1273 |
gduche |
768 |
|
|
|
769 |
grille.getStore().removeAll();
|
|
|
770 |
grille.getStore().add(auteursInitialListe.toList());
|
|
|
771 |
|
822 |
jpm |
772 |
publicationAPersonneListeChargementOk = true;
|
782 |
jpm |
773 |
}
|
|
|
774 |
|
1255 |
cyprien |
775 |
private void rafraichirInformation(Information info) {
|
1095 |
jpm |
776 |
String type = info.getType();
|
|
|
777 |
if (type.equals("ajout_publication") || type.equals("modif_publication")) {
|
1273 |
gduche |
778 |
// On vient de soumettre le formulaire, on doit passer à l'étape suivante:
|
|
|
779 |
// Validation des auteurs ou fermeture du formulaire
|
1095 |
jpm |
780 |
publicationValideOk = true;
|
|
|
781 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
1182 |
jpm |
782 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
|
|
|
783 |
String publicationId = (String) info.getDonnee(0);
|
|
|
784 |
if (publicationId.matches("[0-9]+")) {
|
|
|
785 |
publication.setId(publicationId);
|
|
|
786 |
}
|
|
|
787 |
}
|
1255 |
cyprien |
788 |
attenteAjoutAuteursOk = true;
|
1095 |
jpm |
789 |
}
|
1273 |
gduche |
790 |
soumettreAuteurs();
|
1095 |
jpm |
791 |
}
|
|
|
792 |
|
1273 |
gduche |
793 |
|
782 |
jpm |
794 |
if (info.getType().equals("liste_personne")) {
|
822 |
jpm |
795 |
PersonneListe listePersonneAuteur = (PersonneListe) info.getDonnee(0);
|
|
|
796 |
|
1273 |
gduche |
797 |
/*List<Personne> liste = listePersonneAuteur.toList();
|
782 |
jpm |
798 |
auteursStorePartage.removeAll();
|
|
|
799 |
auteursStorePartage.add(liste);
|
1273 |
gduche |
800 |
auteurStorePartageChargementOk = true;*/
|
|
|
801 |
|
|
|
802 |
ListStore store = personnesSaisiesComboBox.getStore();
|
|
|
803 |
store.removeAll();
|
|
|
804 |
store.add(listePersonneAuteur.toList());
|
|
|
805 |
|
901 |
jpm |
806 |
} else if (info.getType().equals("ajout_publication_a_personne")) {
|
|
|
807 |
attenteAjoutAuteursOk = false;
|
|
|
808 |
} else if (info.getType().equals("suppression_publication_a_personne")) {
|
|
|
809 |
attenteSuppressionAuteursOk = false;
|
1095 |
jpm |
810 |
} else if (info.getType().equals("modif_publication")) {
|
1218 |
cyprien |
811 |
InfoLogger.display("Modification d'une publication", info.toString());
|
1095 |
jpm |
812 |
} else if (info.getType().equals("ajout_publication")) {
|
1182 |
jpm |
813 |
if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String && ((String) info.getDonnee(0)).matches("[0-9]+")) {
|
1095 |
jpm |
814 |
String publicationId = (String) info.getDonnee(0);
|
1218 |
cyprien |
815 |
InfoLogger.display("Ajout d'une publication", "La publication '"+publicationId+"' a bien été ajoutée");
|
1095 |
jpm |
816 |
} else {
|
1218 |
cyprien |
817 |
InfoLogger.display("Ajout d'une publication", info.toString());
|
1095 |
jpm |
818 |
}
|
1255 |
cyprien |
819 |
}
|
782 |
jpm |
820 |
}
|
|
|
821 |
|
901 |
jpm |
822 |
private boolean avoirAuteursMiseAJourCorrectement() {
|
1273 |
gduche |
823 |
|
901 |
jpm |
824 |
boolean ok = false;
|
|
|
825 |
if (attenteAjoutAuteursOk == false && attenteSuppressionAuteursOk == false) {
|
|
|
826 |
ok = true;
|
|
|
827 |
}
|
|
|
828 |
return ok;
|
|
|
829 |
}
|
|
|
830 |
|
822 |
jpm |
831 |
private void afficherAuteurs() {
|
1178 |
jpm |
832 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
833 |
creerChampAuteurEtBoutonSupprimer(null);
|
|
|
834 |
} else if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
835 |
Iterator<String> itap = auteursInitialListe.keySet().iterator();
|
|
|
836 |
while (itap.hasNext()) {
|
|
|
837 |
creerChampAuteurEtBoutonSupprimer(auteursInitialListe.get(itap.next()));
|
|
|
838 |
}
|
822 |
jpm |
839 |
}
|
1178 |
jpm |
840 |
auteursAffiches = true;
|
822 |
jpm |
841 |
}
|
|
|
842 |
|
|
|
843 |
private void initialiserAffichageAuteurs() {
|
|
|
844 |
auteurStorePartageChargementOk = false;
|
|
|
845 |
publicationAPersonneListeChargementOk = false;
|
|
|
846 |
}
|
1174 |
jpm |
847 |
|
1178 |
jpm |
848 |
private void initialiserPeupler() {
|
|
|
849 |
publicationOk = false;
|
|
|
850 |
editeursOk = false;
|
|
|
851 |
auteursAffiches = false;
|
1174 |
jpm |
852 |
}
|
822 |
jpm |
853 |
|
|
|
854 |
private boolean etrePretAAfficherAuteurs() {
|
|
|
855 |
boolean ok = false;
|
1178 |
jpm |
856 |
if (auteurStorePartageChargementOk
|
|
|
857 |
&& ((mode.equals(Formulaire.MODE_MODIFIER) && publicationOk && publicationAPersonneListeChargementOk)
|
|
|
858 |
|| (mode.equals(Formulaire.MODE_AJOUTER)))) {
|
822 |
jpm |
859 |
ok = true;
|
|
|
860 |
}
|
|
|
861 |
return ok;
|
|
|
862 |
}
|
1174 |
jpm |
863 |
|
1178 |
jpm |
864 |
private boolean etrePretAPeupler() {
|
1174 |
jpm |
865 |
boolean ok = false;
|
1273 |
gduche |
866 |
if (mode.equals(Formulaire.MODE_MODIFIER) && publicationOk && editeursOk) {
|
1174 |
jpm |
867 |
ok = true;
|
|
|
868 |
}
|
|
|
869 |
return ok;
|
|
|
870 |
}
|
1178 |
jpm |
871 |
|
782 |
jpm |
872 |
private Boolean etreValide() {
|
|
|
873 |
Boolean valide = false;
|
1273 |
gduche |
874 |
if (formulaireValideOk && auteursValideOk) {
|
782 |
jpm |
875 |
valide = true;
|
|
|
876 |
}
|
|
|
877 |
return valide;
|
|
|
878 |
}
|
|
|
879 |
|
822 |
jpm |
880 |
private void initialiserValidation() {
|
|
|
881 |
formulaireValideOk = false;
|
|
|
882 |
publicationValideOk = false;
|
901 |
jpm |
883 |
initialiserAuteurs();
|
822 |
jpm |
884 |
auteursValideOk = false;
|
782 |
jpm |
885 |
}
|
|
|
886 |
|
901 |
jpm |
887 |
private void initialiserAuteurs() {
|
|
|
888 |
attenteAjoutAuteursOk = true;
|
1273 |
gduche |
889 |
auteursAjoutes = new PersonneListe();
|
901 |
jpm |
890 |
attenteSuppressionAuteursOk = true;
|
1273 |
gduche |
891 |
auteursSupprimes = new PersonneListe();
|
901 |
jpm |
892 |
}
|
|
|
893 |
|
782 |
jpm |
894 |
private void repandreRafraichissement() {
|
|
|
895 |
if (vueExterneARafraichirApresValidation != null) {
|
786 |
jpm |
896 |
String type = "publication_modifiee";
|
|
|
897 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
898 |
type = "publication_ajoutee";
|
|
|
899 |
}
|
|
|
900 |
Information info = new Information(type);
|
|
|
901 |
info.setDonnee(0, publication);
|
782 |
jpm |
902 |
vueExterneARafraichirApresValidation.rafraichir(info);
|
|
|
903 |
}
|
|
|
904 |
}
|
|
|
905 |
|
786 |
jpm |
906 |
public boolean soumettreFormulaire() {
|
822 |
jpm |
907 |
formulaireValideOk = verifierFormulaire();
|
|
|
908 |
if (formulaireValideOk) {
|
901 |
jpm |
909 |
soumettrePublication();
|
1273 |
gduche |
910 |
//Les auteurs seront mis à jour lors du rafraichissement
|
901 |
jpm |
911 |
}
|
|
|
912 |
return formulaireValideOk;
|
|
|
913 |
}
|
|
|
914 |
|
|
|
915 |
private void soumettrePublication() {
|
|
|
916 |
Publication publicationCollectee = collecterPublication();
|
|
|
917 |
if (publicationCollectee != null) {
|
|
|
918 |
if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
|
|
919 |
mediateur.ajouterPublication(this, publicationCollectee);
|
|
|
920 |
} else if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
921 |
mediateur.modifierPublication(this, publicationCollectee);
|
|
|
922 |
}
|
|
|
923 |
}
|
|
|
924 |
}
|
|
|
925 |
|
|
|
926 |
private void soumettreAuteurs() {
|
|
|
927 |
attenteAjoutAuteursOk = false;
|
|
|
928 |
attenteSuppressionAuteursOk = false;
|
|
|
929 |
|
1273 |
gduche |
930 |
//1) Auteurs ajoutés :
|
|
|
931 |
// - Créer une PublicationAAuteurListe
|
|
|
932 |
PublicationAPersonneListe listeDesAuteurs = new PublicationAPersonneListe();
|
|
|
933 |
Iterator<String> itAuteur = auteursAjoutes.keySet().iterator();
|
|
|
934 |
while (itAuteur.hasNext()) {
|
|
|
935 |
PublicationAPersonne publiAPersonne = new PublicationAPersonne();
|
|
|
936 |
String cle = itAuteur.next();
|
|
|
937 |
publiAPersonne.setIdPersonne(cle);
|
|
|
938 |
publiAPersonne.setIdPublication(publication.getId());
|
|
|
939 |
listeDesAuteurs.put(cle, publiAPersonne);
|
|
|
940 |
}
|
|
|
941 |
|
|
|
942 |
// - envoyer au mediateur SSI personnes à ajouter
|
|
|
943 |
if (listeDesAuteurs.size() > 0) {
|
|
|
944 |
mediateur.ajouterPublicationAPersonne(this, publication.getId(), listeDesAuteurs, PublicationAPersonne.ROLE_AUTEUR);
|
|
|
945 |
attenteAjoutAuteursOk = true;
|
|
|
946 |
}
|
|
|
947 |
|
|
|
948 |
//2) Auteurs supprimés :
|
|
|
949 |
// - Créer une PublicationAPersonneListe
|
|
|
950 |
listeDesAuteurs = new PublicationAPersonneListe();
|
|
|
951 |
itAuteur = auteursSupprimes.keySet().iterator();
|
|
|
952 |
while (itAuteur.hasNext()) {
|
|
|
953 |
PublicationAPersonne publiAPersonne = new PublicationAPersonne();
|
|
|
954 |
String cle = itAuteur.next();
|
|
|
955 |
publiAPersonne.setIdPersonne(cle);
|
|
|
956 |
publiAPersonne.setIdPublication(publication.getId());
|
|
|
957 |
listeDesAuteurs.put(cle, publiAPersonne);
|
|
|
958 |
}
|
|
|
959 |
|
|
|
960 |
// - Envoyer au médiateur SSI personnes à supprimer
|
|
|
961 |
if (listeDesAuteurs.size() > 0) {
|
|
|
962 |
mediateur.supprimerPublicationAPersonne(this, listeDesAuteurs);
|
|
|
963 |
attenteSuppressionAuteursOk = true;
|
|
|
964 |
}
|
|
|
965 |
|
|
|
966 |
/*
|
|
|
967 |
attenteAjoutAuteursOk = false;
|
|
|
968 |
attenteSuppressionAuteursOk = false;
|
|
|
969 |
|
1133 |
jpm |
970 |
PersonneListe personnesInitiales = auteursInitialListe;
|
901 |
jpm |
971 |
|
|
|
972 |
PersonneListe personnesActuelles = new PersonneListe();
|
1131 |
jpm |
973 |
if (auteurComboboxListe != null) {
|
|
|
974 |
Iterator<ComboBox<Personne>> itcp = auteurComboboxListe.iterator();
|
|
|
975 |
while (itcp.hasNext()) {
|
1133 |
jpm |
976 |
ComboBox<Personne> combobox = itcp.next();
|
|
|
977 |
Personne personne = combobox.getValue();
|
1131 |
jpm |
978 |
if (personne != null) {
|
|
|
979 |
personnesActuelles.put(personne.getId(), personne);
|
|
|
980 |
} else {
|
1134 |
jpm |
981 |
Debug.log("Etre valide :"+combobox.isValid()+" - "+combobox.getRawValue());
|
1131 |
jpm |
982 |
}
|
901 |
jpm |
983 |
}
|
|
|
984 |
}
|
|
|
985 |
|
|
|
986 |
// Auteurs ajoutés
|
|
|
987 |
Iterator<String> clesActuelles = personnesActuelles.keySet().iterator();
|
|
|
988 |
while (clesActuelles.hasNext()) {
|
|
|
989 |
String idActuel = clesActuelles.next();
|
|
|
990 |
if (personnesInitiales.size() == 0 || personnesInitiales.get(idActuel) == null) {
|
|
|
991 |
Personne personne = personnesActuelles.get(idActuel);
|
|
|
992 |
PublicationAPersonne publicationAAuteur = new PublicationAPersonne();
|
|
|
993 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
994 |
publicationAAuteur.setIdPublication(publication.getId());
|
741 |
aurelien |
995 |
}
|
901 |
jpm |
996 |
publicationAAuteur.setPersonne(personne);
|
|
|
997 |
publicationAAuteur.setIdRole(PublicationAPersonne.ROLE_AUTEUR);
|
1273 |
gduche |
998 |
//FIXME : auteursAjoutes.put(publicationAAuteur.getId(), publicationAAuteur);
|
901 |
jpm |
999 |
attenteAjoutAuteursOk = true;
|
239 |
aurelien |
1000 |
}
|
|
|
1001 |
}
|
901 |
jpm |
1002 |
|
|
|
1003 |
// Auteurs supprimés
|
|
|
1004 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
1005 |
Iterator<String> clesInitiales = personnesInitiales.keySet().iterator();
|
|
|
1006 |
while (clesInitiales.hasNext()) {
|
|
|
1007 |
String idInitial = clesInitiales.next();
|
|
|
1008 |
if (personnesActuelles.size() == 0 || personnesActuelles.get(idInitial) == null) {
|
|
|
1009 |
Personne personne = personnesInitiales.get(idInitial);
|
|
|
1010 |
PublicationAPersonne publicationAAuteur = new PublicationAPersonne();
|
|
|
1011 |
publicationAAuteur.setIdPublication(publication.getId());
|
|
|
1012 |
publicationAAuteur.setPersonne(personne);
|
|
|
1013 |
publicationAAuteur.setIdRole(PublicationAPersonne.ROLE_AUTEUR);
|
1273 |
gduche |
1014 |
//FIXME : auteursSupprimes.put(publicationAAuteur.getId(), publicationAAuteur);
|
901 |
jpm |
1015 |
attenteSuppressionAuteursOk = true;
|
|
|
1016 |
}
|
|
|
1017 |
}
|
|
|
1018 |
}
|
|
|
1019 |
|
|
|
1020 |
// Execution de les mise à jour pour le mode MODIFICATION
|
|
|
1021 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
1022 |
if (auteursAjoutes != null && auteursAjoutes.size() != 0) {
|
1273 |
gduche |
1023 |
//FIXME : mediateur.ajouterPublicationAPersonne(this, publication.getId(), auteursAjoutes, PublicationAPersonne.ROLE_AUTEUR);
|
901 |
jpm |
1024 |
}
|
|
|
1025 |
|
|
|
1026 |
if (auteursSupprimes != null && auteursSupprimes.size() != 0) {
|
1273 |
gduche |
1027 |
//FIXME : mediateur.supprimerPublicationAPersonne(this, auteursSupprimes);
|
901 |
jpm |
1028 |
}
|
1273 |
gduche |
1029 |
}*/
|
219 |
aurelien |
1030 |
}
|
|
|
1031 |
|
934 |
jpm |
1032 |
public boolean verifierFormulaire() {
|
782 |
jpm |
1033 |
boolean valide = true;
|
|
|
1034 |
ArrayList<String> messages = new ArrayList<String>();
|
|
|
1035 |
|
1273 |
gduche |
1036 |
// Tester si au moins un auteur est présent
|
|
|
1037 |
if (grille.getStore().getModels().size() == 0) {
|
|
|
1038 |
messages.add("Veuillez saisir au moins un auteur.");
|
227 |
aurelien |
1039 |
}
|
705 |
aurelien |
1040 |
|
786 |
jpm |
1041 |
String titre = titreChp.getValue();
|
782 |
jpm |
1042 |
if (titre == null || titre.equals("")) {
|
|
|
1043 |
messages.add("Veuillez saisir le titre de la publication !");
|
705 |
aurelien |
1044 |
}
|
|
|
1045 |
|
792 |
jpm |
1046 |
String uri = uriChp.getValue();
|
|
|
1047 |
if (uri != null && ! uri.isEmpty() && ! uri.matches(Pattern.url)) {
|
|
|
1048 |
messages.add("L'URL saisie n'est pas valide !");
|
|
|
1049 |
}
|
|
|
1050 |
|
799 |
jpm |
1051 |
String datePublication = datePublicationChp.getRawValue();
|
|
|
1052 |
if (datePublication == null || datePublication.equals("")) {
|
|
|
1053 |
messages.add("Veuillez saisir une année de parution !");
|
725 |
aurelien |
1054 |
} else {
|
799 |
jpm |
1055 |
if (!etreDateValide(datePublication)) {
|
792 |
jpm |
1056 |
messages.add("Le format de l'année saisie est incorrect !");
|
725 |
aurelien |
1057 |
}
|
705 |
aurelien |
1058 |
}
|
717 |
aurelien |
1059 |
|
792 |
jpm |
1060 |
String pages = pagesChp.getValue();
|
|
|
1061 |
String valeurPage = "(?:[0-9]+|[IVXLCDM]+|\\?)";
|
799 |
jpm |
1062 |
if (pages != null && ! pages.matches("^(?:"+valeurPage+"|"+valeurPage+"-"+valeurPage+")$")) {
|
792 |
jpm |
1063 |
messages.add("Le format des pages est incorrect !");
|
|
|
1064 |
}
|
|
|
1065 |
|
782 |
jpm |
1066 |
if (messages.size() != 0) {
|
|
|
1067 |
String[] tableauDeMessages = {};
|
|
|
1068 |
tableauDeMessages = messages.toArray(tableauDeMessages);
|
799 |
jpm |
1069 |
MessageBox.alert("Erreurs de saisies", UtilArray.implode(tableauDeMessages, "<br />"), null);
|
782 |
jpm |
1070 |
valide = false;
|
705 |
aurelien |
1071 |
}
|
782 |
jpm |
1072 |
return valide;
|
775 |
jpm |
1073 |
}
|
|
|
1074 |
|
822 |
jpm |
1075 |
private void peuplerFormulaire() {
|
1032 |
jpm |
1076 |
setValeurComboProjets();
|
822 |
jpm |
1077 |
titreChp.setValue(publication.getTitre());
|
|
|
1078 |
collectionChp.setValue(publication.getCollection());
|
|
|
1079 |
uriChp.setValue(publication.getURI());
|
1032 |
jpm |
1080 |
datePublicationChp.setValue(reduireDateParAnnee(publication.getDateParution()));
|
822 |
jpm |
1081 |
tomeChp.setValue(publication.getIndicationNvt());
|
|
|
1082 |
fasciculeChp.setValue(publication.getFascicule());
|
|
|
1083 |
pagesChp.setValue(publication.getPages());
|
|
|
1084 |
|
|
|
1085 |
if (publication.getEditeur().matches("^[0-9]+$")) {
|
1327 |
cyprien |
1086 |
editeurCombobox.getCombo().setValue(editeurCombobox.getStore().findModel("cs_id_structure", publication.getEditeur()));
|
822 |
jpm |
1087 |
} else {
|
1327 |
cyprien |
1088 |
editeurCombobox.getCombo().setRawValue(publication.getEditeur());
|
822 |
jpm |
1089 |
}
|
|
|
1090 |
}
|
|
|
1091 |
|
786 |
jpm |
1092 |
private Publication collecterPublication() {
|
1273 |
gduche |
1093 |
|
786 |
jpm |
1094 |
Publication publicationCollectee = (Publication) publication.cloner(new Publication());
|
1032 |
jpm |
1095 |
publicationCollectee.setIdProjet(getValeurComboProjets());
|
1124 |
jpm |
1096 |
publicationCollectee.setAuteur(construireIntituleAuteur());
|
786 |
jpm |
1097 |
|
|
|
1098 |
String titre = titreChp.getValue();
|
|
|
1099 |
publicationCollectee.setTitre(titre);
|
|
|
1100 |
|
|
|
1101 |
String collection = collectionChp.getValue();
|
|
|
1102 |
publicationCollectee.setCollection(collection);
|
|
|
1103 |
|
1124 |
jpm |
1104 |
publicationCollectee.setNomComplet(construireNomComplet());
|
786 |
jpm |
1105 |
|
|
|
1106 |
String uri = uriChp.getValue();
|
|
|
1107 |
publicationCollectee.setUri(uri);
|
|
|
1108 |
|
|
|
1109 |
String editeur = "";
|
1327 |
cyprien |
1110 |
if (editeurCombobox.getValeur() != null) {
|
|
|
1111 |
Structure structure = new Structure(editeurCombobox.getValeur());
|
|
|
1112 |
editeur = structure.getId();
|
|
|
1113 |
publicationCollectee.setStructureEditeur(structure);
|
|
|
1114 |
} else if (!UtilString.isEmpty(editeurCombobox.getCombo().getRawValue())) {
|
|
|
1115 |
editeur = editeurCombobox.getCombo().getRawValue();
|
786 |
jpm |
1116 |
}
|
|
|
1117 |
publicationCollectee.setEditeur(editeur);
|
|
|
1118 |
|
792 |
jpm |
1119 |
String anneePublication = datePublicationChp.getRawValue();
|
|
|
1120 |
String datePublication = anneePublication+"-00-00";
|
|
|
1121 |
publicationCollectee.setDateParution(datePublication);
|
786 |
jpm |
1122 |
|
|
|
1123 |
String tome = tomeChp.getValue();
|
|
|
1124 |
publicationCollectee.setIndicationNvt(tome);
|
|
|
1125 |
|
|
|
1126 |
String fascicule = fasciculeChp.getValue();
|
|
|
1127 |
publicationCollectee.setFascicule(fascicule);
|
|
|
1128 |
|
|
|
1129 |
String pages = pagesChp.getValue();
|
|
|
1130 |
publicationCollectee.setPages(pages);
|
|
|
1131 |
|
927 |
jpm |
1132 |
Publication publicationARetourner = null;
|
786 |
jpm |
1133 |
if (!publicationCollectee.comparer(publication)) {
|
|
|
1134 |
publicationARetourner = publication = publicationCollectee;
|
|
|
1135 |
}
|
|
|
1136 |
return publicationARetourner;
|
|
|
1137 |
}
|
|
|
1138 |
|
1124 |
jpm |
1139 |
private String construireIntituleEditeur() {
|
|
|
1140 |
String editeur = "";
|
1327 |
cyprien |
1141 |
if (editeurCombobox.getValeur() != null) {
|
|
|
1142 |
Structure structure = new Structure(editeurCombobox.getValeur());
|
|
|
1143 |
editeur = structure.getNom();
|
|
|
1144 |
} else if (!UtilString.isEmpty(editeurCombobox.getCombo().getRawValue())) {
|
|
|
1145 |
editeur = editeurCombobox.getCombo().getRawValue();
|
1124 |
jpm |
1146 |
}
|
|
|
1147 |
return editeur;
|
|
|
1148 |
}
|
|
|
1149 |
|
|
|
1150 |
private String construireIntituleAuteur() {
|
1273 |
gduche |
1151 |
String intituleAuteur = "";
|
1275 |
gduche |
1152 |
|
|
|
1153 |
// TODO : ranger par ordre non-alphabétique
|
|
|
1154 |
grille.getStore().sort("nom", SortDir.ASC);
|
1273 |
gduche |
1155 |
List<Personne> auteurs = grille.getStore().getModels();
|
1275 |
gduche |
1156 |
|
1273 |
gduche |
1157 |
Iterator<Personne> itAuteurs = auteurs.iterator();
|
|
|
1158 |
while (itAuteurs.hasNext()) {
|
|
|
1159 |
Personne personneCourante = itAuteurs.next();
|
|
|
1160 |
intituleAuteur += personneCourante.getNom().toUpperCase() + " " + personneCourante.getPrenom();
|
|
|
1161 |
if (itAuteurs.hasNext()) {
|
|
|
1162 |
intituleAuteur+=", ";
|
|
|
1163 |
}
|
|
|
1164 |
}
|
|
|
1165 |
/*
|
|
|
1166 |
* TO DELETE:int auteursNombre = auteurComboboxListe.size();
|
|
|
1167 |
*
|
1124 |
jpm |
1168 |
for (int i = 0; i < auteursNombre; i++) {
|
|
|
1169 |
if (auteurComboboxListe.get(i).getValue() != null) {
|
|
|
1170 |
Personne auteur = auteurComboboxListe.get(i).getValue();
|
|
|
1171 |
inituleAuteur += auteur.getNom().toUpperCase()+ " "+auteur.getPrenom();
|
|
|
1172 |
if (i != (auteursNombre - 1)) {
|
|
|
1173 |
inituleAuteur += ", ";
|
|
|
1174 |
}
|
|
|
1175 |
}
|
1273 |
gduche |
1176 |
}*/
|
|
|
1177 |
return intituleAuteur;
|
1124 |
jpm |
1178 |
}
|
|
|
1179 |
|
|
|
1180 |
private String construireNomComplet() {
|
|
|
1181 |
// Intitulé de la publication complet : fmt_auteur, date_parution(année). titre. Editeur (nom), collection, fascicule, indication_nvt. pages.
|
|
|
1182 |
String nomComplet = "";
|
|
|
1183 |
String auteurs = construireIntituleAuteur();
|
|
|
1184 |
String annee = datePublicationChp.getRawValue();
|
|
|
1185 |
String titre = titreChp.getValue();
|
|
|
1186 |
String editeur = construireIntituleEditeur();
|
|
|
1187 |
|
|
|
1188 |
nomComplet += auteurs+", "+annee+". "+titre+".";
|
|
|
1189 |
|
|
|
1190 |
if (!UtilString.isEmpty(editeur)) {
|
|
|
1191 |
nomComplet += " Éditeur "+editeur+".";
|
|
|
1192 |
}
|
|
|
1193 |
|
|
|
1194 |
if (collectionChp.getValue() != null) {
|
|
|
1195 |
String revue = collectionChp.getValue();
|
|
|
1196 |
nomComplet += ", "+revue;
|
|
|
1197 |
}
|
|
|
1198 |
|
|
|
1199 |
if (fasciculeChp.getValue() != null) {
|
|
|
1200 |
String fascicule = fasciculeChp.getValue();
|
|
|
1201 |
nomComplet += ", "+fascicule;
|
|
|
1202 |
}
|
|
|
1203 |
|
|
|
1204 |
if (tomeChp.getValue() != null) {
|
|
|
1205 |
String tomaison = tomeChp.getValue();
|
|
|
1206 |
nomComplet += ", "+tomaison;
|
|
|
1207 |
}
|
|
|
1208 |
|
|
|
1209 |
if (collectionChp.getValue() != null || fasciculeChp.getValue() != null || tomeChp.getValue() != null) {
|
|
|
1210 |
nomComplet += ".";
|
|
|
1211 |
}
|
|
|
1212 |
|
|
|
1213 |
if (pagesChp.getValue() != null) {
|
|
|
1214 |
String pages = pagesChp.getValue();
|
|
|
1215 |
nomComplet += pages+".";
|
|
|
1216 |
}
|
|
|
1217 |
|
|
|
1218 |
return nomComplet;
|
|
|
1219 |
}
|
|
|
1220 |
|
934 |
jpm |
1221 |
public void reinitialiserFormulaire() {
|
781 |
jpm |
1222 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
786 |
jpm |
1223 |
mediateur.afficherFormPublication(publication.getId());
|
775 |
jpm |
1224 |
} else {
|
|
|
1225 |
mediateur.afficherFormPublication(null);
|
219 |
aurelien |
1226 |
}
|
|
|
1227 |
}
|
227 |
aurelien |
1228 |
|
792 |
jpm |
1229 |
private boolean etreDateValide(String anneePublication) {
|
782 |
jpm |
1230 |
boolean valide = true;
|
792 |
jpm |
1231 |
if (!anneePublication.matches("^[0-2][0-9]{3}$")) {
|
782 |
jpm |
1232 |
valide = false;
|
725 |
aurelien |
1233 |
}
|
782 |
jpm |
1234 |
return valide;
|
725 |
aurelien |
1235 |
}
|
758 |
aurelien |
1236 |
|
|
|
1237 |
private String reduireDateParAnnee(String datePar) {
|
775 |
jpm |
1238 |
if (datePar.matches("^[0-2][0-9]{3}(-[0-9]{2}){2}$")) {
|
758 |
aurelien |
1239 |
return datePar.split("-")[0];
|
505 |
jp_milcent |
1240 |
} else {
|
758 |
aurelien |
1241 |
return "";
|
227 |
aurelien |
1242 |
}
|
758 |
aurelien |
1243 |
}
|
1032 |
jpm |
1244 |
|
|
|
1245 |
private String getValeurComboProjets() {
|
|
|
1246 |
String valeur = "";
|
1327 |
cyprien |
1247 |
if (projetsCombo.getValeur() != null) {
|
|
|
1248 |
Projet projet = new Projet(projetsCombo.getValeur());
|
|
|
1249 |
valeur = projet.getId();
|
1032 |
jpm |
1250 |
}
|
|
|
1251 |
return valeur;
|
|
|
1252 |
}
|
|
|
1253 |
private void setValeurComboProjets() {
|
|
|
1254 |
if (projetsCombo.getStore() != null ) {
|
|
|
1255 |
if (mode.equals(Formulaire.MODE_MODIFIER) && publication != null) {
|
1327 |
cyprien |
1256 |
projetsCombo.getCombo().setValue(projetsCombo.getStore().findModel("cpr_id_projet", publication.getIdProjet()));
|
1032 |
jpm |
1257 |
} else if (mode.equals(Formulaire.MODE_AJOUTER)) {
|
1327 |
cyprien |
1258 |
projetsCombo.getCombo().setValue(projetsCombo.getStore().findModel("cpr_id_projet", mediateur.getProjetId()));
|
1032 |
jpm |
1259 |
}
|
|
|
1260 |
}
|
|
|
1261 |
}
|
505 |
jp_milcent |
1262 |
}
|