934 |
jpm |
1 |
package org.tela_botanica.client.vues.collection;
|
806 |
jpm |
2 |
|
|
|
3 |
import java.util.ArrayList;
|
948 |
jpm |
4 |
import java.util.HashMap;
|
806 |
jpm |
5 |
import java.util.Iterator;
|
|
|
6 |
import java.util.List;
|
|
|
7 |
|
|
|
8 |
import org.tela_botanica.client.Mediateur;
|
839 |
jpm |
9 |
import org.tela_botanica.client.composants.ChampCaseACocher;
|
854 |
jpm |
10 |
import org.tela_botanica.client.composants.ChampComboBoxListeValeurs;
|
857 |
jpm |
11 |
import org.tela_botanica.client.composants.ChampMultiValeursMultiTypes;
|
858 |
jpm |
12 |
import org.tela_botanica.client.composants.ChampSliderPourcentage;
|
1218 |
cyprien |
13 |
import org.tela_botanica.client.composants.InfoLogger;
|
806 |
jpm |
14 |
import org.tela_botanica.client.images.Images;
|
|
|
15 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
831 |
jpm |
16 |
import org.tela_botanica.client.modeles.InterneValeur;
|
806 |
jpm |
17 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
18 |
import org.tela_botanica.client.modeles.ValeurListe;
|
948 |
jpm |
19 |
import org.tela_botanica.client.modeles.aDonnee;
|
|
|
20 |
import org.tela_botanica.client.modeles.collection.Collection;
|
|
|
21 |
import org.tela_botanica.client.modeles.collection.CollectionBotanique;
|
949 |
jpm |
22 |
import org.tela_botanica.client.modeles.collection.UniteBase;
|
|
|
23 |
import org.tela_botanica.client.modeles.collection.UniteRangement;
|
948 |
jpm |
24 |
import org.tela_botanica.client.util.Debug;
|
|
|
25 |
import org.tela_botanica.client.util.Pattern;
|
|
|
26 |
import org.tela_botanica.client.util.UtilNombre;
|
|
|
27 |
import org.tela_botanica.client.util.UtilString;
|
934 |
jpm |
28 |
import org.tela_botanica.client.vues.Formulaire;
|
|
|
29 |
import org.tela_botanica.client.vues.FormulaireOnglet;
|
806 |
jpm |
30 |
|
859 |
jpm |
31 |
import com.extjs.gxt.ui.client.Style.Scroll;
|
1253 |
cyprien |
32 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
831 |
jpm |
33 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
1253 |
cyprien |
34 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
35 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
36 |
import com.extjs.gxt.ui.client.event.FieldEvent;
|
806 |
jpm |
37 |
import com.extjs.gxt.ui.client.event.Listener;
|
831 |
jpm |
38 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
|
|
39 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
806 |
jpm |
40 |
import com.extjs.gxt.ui.client.store.ListStore;
|
|
|
41 |
import com.extjs.gxt.ui.client.widget.ContentPanel;
|
831 |
jpm |
42 |
import com.extjs.gxt.ui.client.widget.Info;
|
|
|
43 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
839 |
jpm |
44 |
import com.extjs.gxt.ui.client.widget.Text;
|
831 |
jpm |
45 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
46 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
862 |
jpm |
47 |
import com.extjs.gxt.ui.client.widget.form.FieldSet;
|
1253 |
cyprien |
48 |
import com.extjs.gxt.ui.client.widget.form.LabelField;
|
831 |
jpm |
49 |
import com.extjs.gxt.ui.client.widget.form.NumberField;
|
1253 |
cyprien |
50 |
import com.extjs.gxt.ui.client.widget.form.TextArea;
|
831 |
jpm |
51 |
import com.extjs.gxt.ui.client.widget.form.TextField;
|
|
|
52 |
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
|
|
|
53 |
import com.extjs.gxt.ui.client.widget.form.FormPanel.LabelAlign;
|
|
|
54 |
import com.extjs.gxt.ui.client.widget.grid.AggregationRowConfig;
|
|
|
55 |
import com.extjs.gxt.ui.client.widget.grid.CellEditor;
|
806 |
jpm |
56 |
import com.extjs.gxt.ui.client.widget.grid.ColumnConfig;
|
|
|
57 |
import com.extjs.gxt.ui.client.widget.grid.ColumnModel;
|
831 |
jpm |
58 |
import com.extjs.gxt.ui.client.widget.grid.EditorGrid;
|
806 |
jpm |
59 |
import com.extjs.gxt.ui.client.widget.grid.GridSelectionModel;
|
831 |
jpm |
60 |
import com.extjs.gxt.ui.client.widget.grid.HeaderGroupConfig;
|
|
|
61 |
import com.extjs.gxt.ui.client.widget.grid.SummaryType;
|
806 |
jpm |
62 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
831 |
jpm |
63 |
import com.extjs.gxt.ui.client.widget.layout.FormData;
|
|
|
64 |
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
|
|
|
65 |
import com.extjs.gxt.ui.client.widget.toolbar.SeparatorToolItem;
|
|
|
66 |
import com.extjs.gxt.ui.client.widget.toolbar.ToolBar;
|
|
|
67 |
import com.google.gwt.i18n.client.NumberFormat;
|
806 |
jpm |
68 |
|
|
|
69 |
public class CollectionFormDescription extends FormulaireOnglet implements Rafraichissable {
|
|
|
70 |
|
1083 |
jpm |
71 |
public static final String ID = "description";
|
948 |
jpm |
72 |
private Collection collection = null;
|
|
|
73 |
private CollectionBotanique collectionBotanique = null;
|
|
|
74 |
private Collection collectionCollectee = null;
|
|
|
75 |
private CollectionBotanique collectionBotaniqueCollectee = null;
|
|
|
76 |
|
960 |
jpm |
77 |
private static ListStore<InterneValeur> precisionStore = null;
|
858 |
jpm |
78 |
private ChampComboBoxListeValeurs typesCollectionBotaCombo = null;
|
|
|
79 |
private NumberField nbreEchantillonChp = null;
|
948 |
jpm |
80 |
private EditorGrid<UniteRangement> uniteRangementGrille = null;
|
854 |
jpm |
81 |
private ChampComboBoxListeValeurs etatUniteRangementCombo = null;
|
948 |
jpm |
82 |
private EditorGrid<UniteBase> uniteBaseGrille = null;
|
839 |
jpm |
83 |
private ChampCaseACocher typePapierConservationChp = null;
|
|
|
84 |
private ChampCaseACocher methodeConservationChp = null;
|
858 |
jpm |
85 |
private ChampSliderPourcentage specimenFixationPourcentChp = null;
|
|
|
86 |
private ChampSliderPourcentage etiquetteFixationPourcentChp = null;
|
854 |
jpm |
87 |
private ChampCaseACocher specimentMethodeFixationChp = null;
|
|
|
88 |
private ChampCaseACocher etiquetteMethodeFixationSurSupportChp = null;
|
|
|
89 |
private ChampCaseACocher etiquetteMethodeFixationSurSpecimenChp = null;
|
|
|
90 |
private ChampCaseACocher typeEcritureChp = null;
|
|
|
91 |
private ChampComboBoxListeValeurs traitementCombo = null;
|
|
|
92 |
private ChampCaseACocher poisonTraitementChp = null;
|
|
|
93 |
private ChampCaseACocher insecteTraitementChp = null;
|
|
|
94 |
private ChampComboBoxListeValeurs etatGeneralCombo = null;
|
|
|
95 |
private ChampComboBoxListeValeurs determinationCombo = null;
|
857 |
jpm |
96 |
private ChampMultiValeursMultiTypes specimenDegradationChp = null;
|
|
|
97 |
private ChampMultiValeursMultiTypes presentationDegradationChp = null;
|
1253 |
cyprien |
98 |
private Text labelPresentationDegradationChp = null;
|
955 |
jpm |
99 |
|
806 |
jpm |
100 |
public CollectionFormDescription(Formulaire formulaireCourrant) {
|
|
|
101 |
initialiserOnglet(formulaireCourrant);
|
1083 |
jpm |
102 |
setId(ID);
|
806 |
jpm |
103 |
setText(Mediateur.i18nC.collectionDescription());
|
831 |
jpm |
104 |
|
|
|
105 |
FormLayout formulaireLayout = (FormLayout) this.getLayout();
|
|
|
106 |
formulaireLayout.setLabelAlign(LabelAlign.LEFT);
|
|
|
107 |
formulaireLayout.setLabelWidth(300);
|
806 |
jpm |
108 |
|
862 |
jpm |
109 |
creerFieldsetPrecision();
|
949 |
jpm |
110 |
creerStorePrecision();
|
862 |
jpm |
111 |
creerUniteRangement();
|
|
|
112 |
creerUniteBase();
|
|
|
113 |
creerFieldsetConservation();
|
|
|
114 |
creerFieldsetEtiquette();
|
|
|
115 |
creerFieldsetTraitement();
|
|
|
116 |
creerFieldsetEtat();
|
|
|
117 |
|
|
|
118 |
layout();
|
|
|
119 |
}
|
|
|
120 |
|
|
|
121 |
private void creerFieldsetPrecision() {
|
|
|
122 |
FieldSet precisionFieldSet = new FieldSet();
|
954 |
jpm |
123 |
precisionFieldSet.setHeading(i18nC.collectionTitrePrecision());
|
862 |
jpm |
124 |
precisionFieldSet.setCollapsible(true);
|
|
|
125 |
precisionFieldSet.setLayout(Formulaire.creerFormLayout(largeurLabelDefaut, alignementLabelDefaut));
|
|
|
126 |
|
858 |
jpm |
127 |
typesCollectionBotaCombo = new ChampComboBoxListeValeurs(i18nC.typeCollectionBotanique(), "typeCollectionBota");
|
|
|
128 |
typesCollectionBotaCombo.setTabIndex(tabIndex++);
|
862 |
jpm |
129 |
precisionFieldSet.add(typesCollectionBotaCombo, new FormData(250, 0));
|
858 |
jpm |
130 |
|
|
|
131 |
nbreEchantillonChp = new NumberField();
|
|
|
132 |
nbreEchantillonChp.setFieldLabel(i18nC.nbreEchantillon());
|
|
|
133 |
nbreEchantillonChp.setToolTip(i18nC.nbreEchantillonInfo());
|
|
|
134 |
nbreEchantillonChp.setFormat(NumberFormat.getFormat("#"));
|
862 |
jpm |
135 |
precisionFieldSet.add(nbreEchantillonChp);
|
858 |
jpm |
136 |
|
862 |
jpm |
137 |
this.add(precisionFieldSet);
|
806 |
jpm |
138 |
}
|
|
|
139 |
|
960 |
jpm |
140 |
private static void creerStorePrecision() {
|
|
|
141 |
if (precisionStore == null) {
|
|
|
142 |
precisionStore = new ListStore<InterneValeur>();
|
|
|
143 |
precisionStore.add(new InterneValeur(UniteRangement.COMPTE_APPROXIMATIF, Mediateur.i18nC.precisionApproximatif()));
|
|
|
144 |
precisionStore.add(new InterneValeur(UniteRangement.COMPTE_EXACT, Mediateur.i18nC.precisionExact()));
|
|
|
145 |
}
|
949 |
jpm |
146 |
}
|
|
|
147 |
|
960 |
jpm |
148 |
private static String getPrecisionNom(String precisionAbr) {
|
949 |
jpm |
149 |
String precision = "";
|
956 |
jpm |
150 |
if (!precisionAbr.equals("NULL")) {
|
960 |
jpm |
151 |
creerStorePrecision();
|
956 |
jpm |
152 |
InterneValeur precisionValeur = precisionStore.findModel("abr", precisionAbr);
|
|
|
153 |
if (precisionValeur != null && !precisionValeur.getNom().equals("NULL")) {
|
|
|
154 |
precision = precisionValeur.getNom();
|
|
|
155 |
}
|
949 |
jpm |
156 |
}
|
|
|
157 |
return precision;
|
|
|
158 |
}
|
|
|
159 |
|
960 |
jpm |
160 |
private static String getPrecisionAbr(String precisionNom) {
|
949 |
jpm |
161 |
String precision = "";
|
956 |
jpm |
162 |
if (!precisionNom.equals("NULL")) {
|
960 |
jpm |
163 |
creerStorePrecision();
|
956 |
jpm |
164 |
InterneValeur precisionValeur = precisionStore.findModel("nom", precisionNom);
|
|
|
165 |
if (precisionValeur != null) {
|
|
|
166 |
precision = precisionValeur.getAbr();
|
|
|
167 |
}
|
949 |
jpm |
168 |
}
|
|
|
169 |
return precision;
|
|
|
170 |
}
|
|
|
171 |
|
|
|
172 |
private ComboBox<InterneValeur> getChampPrecision() {
|
|
|
173 |
ComboBox<InterneValeur> precisionCombo = new ComboBox<InterneValeur>();
|
|
|
174 |
precisionCombo.setForceSelection(true);
|
|
|
175 |
precisionCombo.setTriggerAction(TriggerAction.ALL);
|
|
|
176 |
precisionCombo.setDisplayField("nom");
|
|
|
177 |
precisionCombo.setStore(precisionStore);
|
|
|
178 |
precisionCombo.setEditable(false);
|
|
|
179 |
return precisionCombo;
|
|
|
180 |
}
|
|
|
181 |
|
831 |
jpm |
182 |
private void creerUniteRangement() {
|
|
|
183 |
ContentPanel panneauGrille = creerPanneauContenantGrille(i18nC.collectionUniteRangementTitre());
|
862 |
jpm |
184 |
|
831 |
jpm |
185 |
uniteRangementGrille = creerGrilleUniteRangement();
|
858 |
jpm |
186 |
mediateur.obtenirListeValeurEtRafraichir(this, "typeUniteRangement");
|
806 |
jpm |
187 |
panneauGrille.add(uniteRangementGrille);
|
862 |
jpm |
188 |
|
831 |
jpm |
189 |
ToolBar barreOutils = creerBarreOutilsGrilleUniteRangement();
|
|
|
190 |
panneauGrille.setTopComponent(barreOutils);
|
862 |
jpm |
191 |
|
806 |
jpm |
192 |
add(panneauGrille);
|
|
|
193 |
}
|
831 |
jpm |
194 |
|
|
|
195 |
private ContentPanel creerPanneauContenantGrille(String titre) {
|
806 |
jpm |
196 |
ContentPanel panneau = new ContentPanel();
|
831 |
jpm |
197 |
panneau.setHeading(titre);
|
806 |
jpm |
198 |
panneau.setIcon(Images.ICONES.table());
|
|
|
199 |
panneau.setLayout(new FitLayout());
|
|
|
200 |
panneau.setFrame(true);
|
859 |
jpm |
201 |
panneau.setScrollMode(Scroll.AUTO);
|
862 |
jpm |
202 |
panneau.setCollapsible(true);
|
|
|
203 |
panneau.setStyleAttribute("margin", "5px 0");
|
806 |
jpm |
204 |
|
|
|
205 |
return panneau;
|
|
|
206 |
}
|
|
|
207 |
|
948 |
jpm |
208 |
private EditorGrid<UniteRangement> creerGrilleUniteRangement() {
|
806 |
jpm |
209 |
ListStore<UniteRangement> storeGrille = new ListStore<UniteRangement>();
|
|
|
210 |
|
|
|
211 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
831 |
jpm |
212 |
colonnes.add(new ColumnConfig("type", i18nC.collectionUniteType(), 150));
|
806 |
jpm |
213 |
|
831 |
jpm |
214 |
NumberField champNombre = new NumberField();
|
|
|
215 |
champNombre.setFormat(NumberFormat.getFormat("#"));
|
|
|
216 |
|
|
|
217 |
ColumnConfig nombreColonne = new ColumnConfig("nombre", i18nC.collectionUniteNbre(), 50);
|
948 |
jpm |
218 |
nombreColonne.setEditor(new CellEditor(champNombre));
|
|
|
219 |
nombreColonne.setNumberFormat(NumberFormat.getFormat("#"));
|
831 |
jpm |
220 |
colonnes.add(nombreColonne);
|
949 |
jpm |
221 |
|
|
|
222 |
CellEditor editeurPrecision = new CellEditor(getChampPrecision()) {
|
831 |
jpm |
223 |
@Override
|
|
|
224 |
public Object preProcessValue(Object valeur) {
|
|
|
225 |
InterneValeur retour = null;
|
|
|
226 |
if (valeur != null ) {
|
949 |
jpm |
227 |
if (precisionStore.findModel("nom", valeur.toString()) != null) {
|
|
|
228 |
retour = precisionStore.findModel("nom", valeur.toString());
|
|
|
229 |
} else if (precisionStore.findModel("abr", valeur.toString()) != null) {
|
|
|
230 |
retour = precisionStore.findModel("abr", valeur.toString());
|
831 |
jpm |
231 |
}
|
|
|
232 |
}
|
|
|
233 |
return retour;
|
|
|
234 |
}
|
|
|
235 |
|
|
|
236 |
@Override
|
|
|
237 |
public Object postProcessValue(Object valeur) {
|
|
|
238 |
String retour = null;
|
|
|
239 |
if (valeur != null ) {
|
|
|
240 |
if (valeur instanceof InterneValeur) {
|
|
|
241 |
InterneValeur valeurInterne = (InterneValeur) valeur;
|
|
|
242 |
retour = valeurInterne.getNom();
|
|
|
243 |
}
|
|
|
244 |
}
|
|
|
245 |
return retour;
|
948 |
jpm |
246 |
}
|
831 |
jpm |
247 |
};
|
|
|
248 |
|
|
|
249 |
ColumnConfig precisionColonne = new ColumnConfig("precision", i18nC.collectionUnitePrecision(), 50);
|
|
|
250 |
precisionColonne.setEditor(editeurPrecision);
|
|
|
251 |
colonnes.add(precisionColonne);
|
|
|
252 |
|
|
|
253 |
TextField<String> formatChp = new TextField<String>();
|
|
|
254 |
ColumnConfig formatColonne = new ColumnConfig("format", i18nC.collectionUniteFormat(), 100);
|
|
|
255 |
formatColonne.setEditor(new CellEditor(formatChp));
|
|
|
256 |
colonnes.add(formatColonne);
|
|
|
257 |
|
806 |
jpm |
258 |
GridSelectionModel<UniteRangement> modeleDeSelection = new GridSelectionModel<UniteRangement>();
|
|
|
259 |
ColumnModel modeleDeColonnes = new ColumnModel(colonnes);
|
|
|
260 |
|
948 |
jpm |
261 |
AggregationRowConfig<UniteBase> total = new AggregationRowConfig<UniteBase>();
|
954 |
jpm |
262 |
total.setHtml("type", i18nC.total());
|
948 |
jpm |
263 |
total.setSummaryType("nombre", SummaryType.SUM);
|
|
|
264 |
total.setSummaryFormat("nombre", NumberFormat.getFormat("#"));
|
|
|
265 |
modeleDeColonnes.addAggregationRow(total);
|
|
|
266 |
|
831 |
jpm |
267 |
EditorGrid<UniteRangement> grilleUniteRangement = new EditorGrid<UniteRangement>(storeGrille, modeleDeColonnes);
|
806 |
jpm |
268 |
grilleUniteRangement.setHeight(300);
|
|
|
269 |
grilleUniteRangement.setBorders(true);
|
|
|
270 |
grilleUniteRangement.setSelectionModel(modeleDeSelection);
|
|
|
271 |
grilleUniteRangement.getView().setForceFit(true);
|
|
|
272 |
grilleUniteRangement.getView().setAutoFill(true);
|
|
|
273 |
grilleUniteRangement.setAutoExpandColumn("type");
|
|
|
274 |
grilleUniteRangement.setStripeRows(true);
|
|
|
275 |
grilleUniteRangement.setTrackMouseOver(true);
|
|
|
276 |
|
|
|
277 |
return grilleUniteRangement;
|
|
|
278 |
}
|
|
|
279 |
|
948 |
jpm |
280 |
private String collecterGrilleUniteRangement() {
|
|
|
281 |
String truk = "";
|
|
|
282 |
int nbreUnite = uniteRangementGrille.getStore().getCount();
|
|
|
283 |
for (int i = 0; i < nbreUnite; i++) {
|
|
|
284 |
UniteRangement unite = uniteRangementGrille.getStore().getAt(i);
|
956 |
jpm |
285 |
if (unite.getTypeAutre()) {
|
|
|
286 |
truk += unite.getType();
|
|
|
287 |
} else {
|
|
|
288 |
truk += unite.getId();
|
|
|
289 |
}
|
|
|
290 |
truk += aDonnee.SEPARATEUR_TYPE_VALEUR;
|
948 |
jpm |
291 |
truk += UtilNombre.formaterEnEntier(unite.getNombre())+aDonnee.SEPARATEUR_DONNEES;
|
949 |
jpm |
292 |
truk += getPrecisionAbr(unite.getPrecision())+aDonnee.SEPARATEUR_DONNEES;
|
948 |
jpm |
293 |
truk += unite.getFormat();
|
|
|
294 |
truk += (i == (nbreUnite - 1)) ? "" : aDonnee.SEPARATEUR_VALEURS;
|
|
|
295 |
}
|
|
|
296 |
return truk;
|
|
|
297 |
}
|
|
|
298 |
|
|
|
299 |
private void peuplerGrilleUniteRangement(String valeurTruk) {
|
|
|
300 |
if (!UtilString.isEmpty(valeurTruk)) {
|
960 |
jpm |
301 |
HashMap<String,UniteRangement> unitesEnregistrees = parserValeurUniteRangement(valeurTruk);
|
|
|
302 |
|
|
|
303 |
ArrayList<UniteRangement> listeUniteMaj = new ArrayList<UniteRangement>();
|
|
|
304 |
int nbreUnite = uniteRangementGrille.getStore().getCount();
|
|
|
305 |
for (int i = 0; i < nbreUnite; i++) {
|
|
|
306 |
UniteRangement uniteDansGrille = uniteRangementGrille.getStore().getAt(i);
|
|
|
307 |
UniteRangement uniteEnregistree = unitesEnregistrees.get(uniteDansGrille.getId());
|
|
|
308 |
if (uniteEnregistree != null) {
|
|
|
309 |
uniteEnregistree.setType(uniteDansGrille.getType());
|
|
|
310 |
listeUniteMaj.add(uniteEnregistree);
|
|
|
311 |
} else {
|
|
|
312 |
listeUniteMaj.add(uniteDansGrille);
|
|
|
313 |
}
|
|
|
314 |
}
|
|
|
315 |
|
|
|
316 |
Iterator<String> it = unitesEnregistrees.keySet().iterator();
|
|
|
317 |
while (it.hasNext()) {
|
|
|
318 |
String cle = it.next();
|
|
|
319 |
if (cle.matches(aDonnee.TYPE_AUTRE+aDonnee.SEPARATEUR_TYPE_VALEUR)) {
|
|
|
320 |
UniteRangement uniteAutreEnregistree = unitesEnregistrees.get(cle);
|
|
|
321 |
listeUniteMaj.add(uniteAutreEnregistree);
|
|
|
322 |
}
|
|
|
323 |
}
|
|
|
324 |
|
|
|
325 |
uniteRangementGrille.getStore().removeAll();
|
|
|
326 |
uniteRangementGrille.getStore().add(listeUniteMaj);
|
|
|
327 |
layout();
|
|
|
328 |
}
|
|
|
329 |
}
|
|
|
330 |
|
|
|
331 |
public static HashMap<String,UniteRangement> parserValeurUniteRangement(String valeurTruk) {
|
|
|
332 |
HashMap<String,UniteRangement> unitesEnregistrees = new HashMap<String,UniteRangement>();
|
|
|
333 |
if (!UtilString.isEmpty(valeurTruk)) {
|
948 |
jpm |
334 |
String[] unites = valeurTruk.split(Pattern.quote(aDonnee.SEPARATEUR_VALEURS));
|
|
|
335 |
for (int i = 0; i < unites.length; i++) {
|
|
|
336 |
String[] uniteTypeIdDonnees = unites[i].split(Pattern.quote(aDonnee.SEPARATEUR_TYPE_VALEUR));
|
|
|
337 |
String uniteChaineDonnees = uniteTypeIdDonnees[1];
|
|
|
338 |
String[] uniteDonnees = uniteChaineDonnees.split(Pattern.quote(aDonnee.SEPARATEUR_DONNEES));
|
|
|
339 |
|
|
|
340 |
UniteRangement uniteRangement = new UniteRangement();
|
|
|
341 |
if (uniteDonnees.length > 0) {
|
949 |
jpm |
342 |
uniteRangement.setNombre(UtilString.formaterEnEntier(uniteDonnees[0]));
|
948 |
jpm |
343 |
}
|
|
|
344 |
if (uniteDonnees.length > 1) {
|
949 |
jpm |
345 |
uniteRangement.setPrecision(getPrecisionNom(uniteDonnees[1]));
|
948 |
jpm |
346 |
}
|
|
|
347 |
if (uniteDonnees.length > 2) {
|
|
|
348 |
uniteRangement.setFormat(uniteDonnees[2]);
|
|
|
349 |
}
|
956 |
jpm |
350 |
|
|
|
351 |
if (uniteTypeIdDonnees[0].matches("[0-9]+")) {
|
|
|
352 |
uniteRangement.setId(uniteTypeIdDonnees[0]);
|
|
|
353 |
uniteRangement.setTypeAutre(false);
|
|
|
354 |
unitesEnregistrees.put(uniteTypeIdDonnees[0], uniteRangement);
|
|
|
355 |
} else {
|
|
|
356 |
uniteRangement.setType(uniteTypeIdDonnees[0]);
|
|
|
357 |
uniteRangement.setTypeAutre(true);
|
960 |
jpm |
358 |
String id = aDonnee.TYPE_AUTRE+aDonnee.SEPARATEUR_TYPE_VALEUR+uniteTypeIdDonnees[0]+"-"+i;
|
1251 |
cyprien |
359 |
uniteRangement.setId(id);
|
|
|
360 |
unitesEnregistrees.put(aDonnee.TYPE_AUTRE+aDonnee.SEPARATEUR_TYPE_VALEUR, uniteRangement);
|
956 |
jpm |
361 |
}
|
948 |
jpm |
362 |
}
|
|
|
363 |
}
|
960 |
jpm |
364 |
return unitesEnregistrees;
|
948 |
jpm |
365 |
}
|
|
|
366 |
|
831 |
jpm |
367 |
private ToolBar creerBarreOutilsGrilleUniteRangement() {
|
|
|
368 |
ToolBar barreOutils = new ToolBar();
|
|
|
369 |
|
|
|
370 |
Button ajouterBouton = creerBoutonAjouterUniteRangement();
|
|
|
371 |
barreOutils.add(ajouterBouton);
|
|
|
372 |
|
|
|
373 |
barreOutils.add(new SeparatorToolItem());
|
|
|
374 |
|
|
|
375 |
Button supprimerBouton = creerBoutonSupprimerUniteRangement();
|
862 |
jpm |
376 |
barreOutils.add(supprimerBouton);
|
831 |
jpm |
377 |
|
862 |
jpm |
378 |
barreOutils.add(new SeparatorToolItem());
|
|
|
379 |
barreOutils.add(new Text(i18nC.collectionUniteRangementEtatGeneralLabel()));
|
|
|
380 |
etatUniteRangementCombo = new ChampComboBoxListeValeurs("", "etat");
|
|
|
381 |
etatUniteRangementCombo.setEmptyText(i18nC.collectionUniteRangementEtatGeneral());
|
|
|
382 |
etatUniteRangementCombo.setToolTip(i18nC.collectionUniteRangementEtatGeneralInfo());
|
|
|
383 |
etatUniteRangementCombo.setTrie("id_valeur");
|
|
|
384 |
etatUniteRangementCombo.setWidth(300);
|
|
|
385 |
barreOutils.add(etatUniteRangementCombo);
|
|
|
386 |
|
831 |
jpm |
387 |
return barreOutils;
|
|
|
388 |
}
|
|
|
389 |
|
|
|
390 |
private Button creerBoutonAjouterUniteRangement() {
|
|
|
391 |
Button bouton = new Button(i18nC.ajouter());
|
|
|
392 |
bouton.setIcon(Images.ICONES.ajouter());
|
|
|
393 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
394 |
@Override
|
|
|
395 |
public void componentSelected(ButtonEvent ce) {
|
|
|
396 |
final MessageBox box = MessageBox.prompt(i18nC.collectionUniteType(), i18nC.collectionUniteRangementSaisirType());
|
|
|
397 |
box.addCallback(new Listener<MessageBoxEvent>() {
|
|
|
398 |
public void handleEvent(MessageBoxEvent be) {
|
956 |
jpm |
399 |
if (!UtilString.isEmpty(be.getValue()) && !be.getValue().matches("[0-9]+")) {
|
|
|
400 |
final UniteRangement unite = new UniteRangement();
|
|
|
401 |
unite.setType(be.getValue());
|
|
|
402 |
unite.setTypeAutre(true);
|
|
|
403 |
uniteRangementGrille.getStore().add(unite);
|
|
|
404 |
} else {
|
1218 |
cyprien |
405 |
InfoLogger.display("Information", "Vous ne pouvez pas saisir de valeur vide ou numérique");
|
956 |
jpm |
406 |
}
|
831 |
jpm |
407 |
}
|
|
|
408 |
});
|
|
|
409 |
}
|
|
|
410 |
});
|
|
|
411 |
return bouton;
|
|
|
412 |
}
|
|
|
413 |
|
|
|
414 |
private Button creerBoutonSupprimerUniteRangement() {
|
|
|
415 |
Button bouton = new Button(i18nC.supprimer());
|
|
|
416 |
bouton.setIcon(Images.ICONES.supprimer());
|
|
|
417 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
418 |
@Override
|
|
|
419 |
public void componentSelected(ButtonEvent ce) {
|
|
|
420 |
UniteRangement uniteRangementSelectionnee = uniteRangementGrille.getSelectionModel().getSelectedItem();
|
|
|
421 |
if (uniteRangementSelectionnee == null) {
|
1218 |
cyprien |
422 |
InfoLogger.display(i18nC.informationTitreGenerique(), Mediateur.i18nM.veuillezSelectionner(i18nC.selectionnerUniteRangement()));
|
831 |
jpm |
423 |
} else if (uniteRangementSelectionnee.getTypeAutre() == false) {
|
1218 |
cyprien |
424 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerUniteRangementAjoute());
|
831 |
jpm |
425 |
} else {
|
|
|
426 |
uniteRangementGrille.getStore().remove(uniteRangementSelectionnee);
|
|
|
427 |
}
|
|
|
428 |
}
|
|
|
429 |
});
|
|
|
430 |
return bouton;
|
|
|
431 |
}
|
|
|
432 |
|
|
|
433 |
private void creerUniteBase() {
|
|
|
434 |
ContentPanel panneauGrille = creerPanneauContenantGrille(i18nC.collectionUniteBaseTitre());
|
862 |
jpm |
435 |
|
831 |
jpm |
436 |
uniteBaseGrille = creerGrilleUniteBase();
|
858 |
jpm |
437 |
mediateur.obtenirListeValeurEtRafraichir(this, "typeUniteBase");
|
831 |
jpm |
438 |
panneauGrille.add(uniteBaseGrille);
|
862 |
jpm |
439 |
|
831 |
jpm |
440 |
ToolBar barreOutils = creerBarreOutilsGrilleUniteBase();
|
|
|
441 |
panneauGrille.setTopComponent(barreOutils);
|
862 |
jpm |
442 |
|
831 |
jpm |
443 |
add(panneauGrille);
|
|
|
444 |
}
|
949 |
jpm |
445 |
|
948 |
jpm |
446 |
private EditorGrid<UniteBase> creerGrilleUniteBase() {
|
831 |
jpm |
447 |
ListStore<UniteBase> storeGrille = new ListStore<UniteBase>();
|
|
|
448 |
|
|
|
449 |
List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
|
|
|
450 |
colonnes.add(new ColumnConfig("type", i18nC.collectionUniteType(), 150));
|
|
|
451 |
|
|
|
452 |
NumberField champNombre = new NumberField();
|
|
|
453 |
champNombre.setFormat(NumberFormat.getFormat("#"));
|
|
|
454 |
CellEditor editeurNombre = new CellEditor(champNombre);
|
|
|
455 |
|
|
|
456 |
ColumnConfig nombreColonne = new ColumnConfig("nombre", i18nC.collectionUniteNbre(), 50);
|
|
|
457 |
nombreColonne.setEditor(editeurNombre);
|
948 |
jpm |
458 |
nombreColonne.setNumberFormat(NumberFormat.getFormat("#"));
|
831 |
jpm |
459 |
colonnes.add(nombreColonne);
|
|
|
460 |
|
949 |
jpm |
461 |
CellEditor editeurPrecision = new CellEditor(getChampPrecision()) {
|
831 |
jpm |
462 |
@Override
|
|
|
463 |
public Object preProcessValue(Object valeur) {
|
|
|
464 |
InterneValeur retour = null;
|
|
|
465 |
if (valeur != null ) {
|
949 |
jpm |
466 |
if (precisionStore.findModel("nom", valeur.toString()) != null) {
|
|
|
467 |
retour = precisionStore.findModel("nom", valeur.toString());
|
|
|
468 |
} else if (precisionStore.findModel("abr", valeur.toString()) != null) {
|
|
|
469 |
retour = precisionStore.findModel("abr", valeur.toString());
|
831 |
jpm |
470 |
}
|
|
|
471 |
}
|
|
|
472 |
return retour;
|
|
|
473 |
}
|
|
|
474 |
|
|
|
475 |
@Override
|
|
|
476 |
public Object postProcessValue(Object valeur) {
|
|
|
477 |
String retour = null;
|
|
|
478 |
if (valeur != null ) {
|
|
|
479 |
if (valeur instanceof InterneValeur) {
|
|
|
480 |
InterneValeur valeurInterne = (InterneValeur) valeur;
|
|
|
481 |
retour = valeurInterne.getNom();
|
|
|
482 |
}
|
|
|
483 |
}
|
|
|
484 |
return retour;
|
|
|
485 |
}
|
|
|
486 |
};
|
|
|
487 |
|
|
|
488 |
ColumnConfig precisionColonne = new ColumnConfig("precision", i18nC.collectionUnitePrecision(), 50);
|
|
|
489 |
precisionColonne.setEditor(editeurPrecision);
|
|
|
490 |
colonnes.add(precisionColonne);
|
|
|
491 |
|
|
|
492 |
TextField<String> formatChp = new TextField<String>();
|
|
|
493 |
ColumnConfig formatColonne = new ColumnConfig("format", i18nC.collectionUniteFormat(), 100);
|
|
|
494 |
formatColonne.setEditor(new CellEditor(formatChp));
|
|
|
495 |
colonnes.add(formatColonne);
|
|
|
496 |
|
|
|
497 |
ColumnConfig partNombreColonne = new ColumnConfig("nombre_part", i18nC.collectionUniteNbre(), 50);
|
|
|
498 |
partNombreColonne.setEditor(editeurNombre);
|
948 |
jpm |
499 |
partNombreColonne.setNumberFormat(NumberFormat.getFormat("#"));
|
831 |
jpm |
500 |
colonnes.add(partNombreColonne);
|
|
|
501 |
|
|
|
502 |
ColumnConfig partPrecisionColonne = new ColumnConfig("precision_part", i18nC.collectionUnitePrecision(), 50);
|
|
|
503 |
partPrecisionColonne.setEditor(editeurPrecision);
|
|
|
504 |
colonnes.add(partPrecisionColonne);
|
|
|
505 |
|
|
|
506 |
ColumnConfig spNombreColonne = new ColumnConfig("nombre_sp", i18nC.collectionUniteNbre(), 50);
|
|
|
507 |
spNombreColonne.setEditor(editeurNombre);
|
948 |
jpm |
508 |
spNombreColonne.setNumberFormat(NumberFormat.getFormat("#"));
|
831 |
jpm |
509 |
colonnes.add(spNombreColonne);
|
|
|
510 |
|
|
|
511 |
ColumnConfig spPrecisionColonne = new ColumnConfig("precision_sp", i18nC.collectionUnitePrecision(), 50);
|
|
|
512 |
spPrecisionColonne.setEditor(editeurPrecision);
|
|
|
513 |
colonnes.add(spPrecisionColonne);
|
|
|
514 |
|
|
|
515 |
GridSelectionModel<UniteBase> modeleDeSelection = new GridSelectionModel<UniteBase>();
|
|
|
516 |
ColumnModel modeleDeColonnes = new ColumnModel(colonnes);
|
|
|
517 |
modeleDeColonnes.addHeaderGroup(0, 0, new HeaderGroupConfig(i18nC.collectionUniteBase(), 1, 4));
|
|
|
518 |
modeleDeColonnes.addHeaderGroup(0, 4, new HeaderGroupConfig(i18nC.collectionUniteBasePart(), 1, 2));
|
|
|
519 |
modeleDeColonnes.addHeaderGroup(0, 6, new HeaderGroupConfig(i18nC.collectionUniteBaseSp(), 1, 2));
|
|
|
520 |
|
|
|
521 |
AggregationRowConfig<UniteBase> total = new AggregationRowConfig<UniteBase>();
|
|
|
522 |
total.setHtml("type", "TOTAL");
|
|
|
523 |
total.setSummaryType("nombre", SummaryType.SUM);
|
|
|
524 |
total.setSummaryFormat("nombre", NumberFormat.getFormat("#"));
|
|
|
525 |
total.setSummaryType("nombre_part", SummaryType.SUM);
|
|
|
526 |
total.setSummaryFormat("nombre_part", NumberFormat.getFormat("#"));
|
|
|
527 |
total.setSummaryType("nombre_sp", SummaryType.SUM);
|
|
|
528 |
total.setSummaryFormat("nombre_sp", NumberFormat.getFormat("#"));
|
|
|
529 |
modeleDeColonnes.addAggregationRow(total);
|
|
|
530 |
|
|
|
531 |
EditorGrid<UniteBase> grilleUniteBase = new EditorGrid<UniteBase>(storeGrille, modeleDeColonnes);
|
|
|
532 |
grilleUniteBase.setHeight(200);
|
|
|
533 |
grilleUniteBase.setBorders(true);
|
|
|
534 |
grilleUniteBase.setSelectionModel(modeleDeSelection);
|
|
|
535 |
grilleUniteBase.getView().setForceFit(true);
|
|
|
536 |
grilleUniteBase.getView().setAutoFill(true);
|
|
|
537 |
grilleUniteBase.setAutoExpandColumn("type");
|
|
|
538 |
grilleUniteBase.setStripeRows(true);
|
|
|
539 |
grilleUniteBase.setTrackMouseOver(true);
|
|
|
540 |
|
|
|
541 |
return grilleUniteBase;
|
|
|
542 |
}
|
|
|
543 |
|
949 |
jpm |
544 |
private String collecterGrilleUniteBase() {
|
|
|
545 |
String truk = "";
|
|
|
546 |
int nbreUnite = uniteBaseGrille.getStore().getCount();
|
|
|
547 |
for (int i = 0; i < nbreUnite; i++) {
|
|
|
548 |
UniteBase unite = uniteBaseGrille.getStore().getAt(i);
|
956 |
jpm |
549 |
if (unite.getTypeAutre()) {
|
|
|
550 |
truk += unite.getType();
|
|
|
551 |
} else {
|
|
|
552 |
truk += unite.getId();
|
|
|
553 |
}
|
|
|
554 |
truk += aDonnee.SEPARATEUR_TYPE_VALEUR;
|
949 |
jpm |
555 |
truk += UtilNombre.formaterEnEntier(unite.getNombre())+aDonnee.SEPARATEUR_DONNEES;
|
|
|
556 |
truk += getPrecisionAbr(unite.getPrecision())+aDonnee.SEPARATEUR_DONNEES;
|
|
|
557 |
truk += unite.getFormat()+aDonnee.SEPARATEUR_DONNEES;
|
|
|
558 |
truk += UtilNombre.formaterEnEntier(unite.getNombrePart())+aDonnee.SEPARATEUR_DONNEES;
|
|
|
559 |
truk += getPrecisionAbr(unite.getPrecisionPart())+aDonnee.SEPARATEUR_DONNEES;
|
|
|
560 |
truk += UtilNombre.formaterEnEntier(unite.getNombreSp())+aDonnee.SEPARATEUR_DONNEES;
|
|
|
561 |
truk += getPrecisionAbr(unite.getPrecisionSp());
|
|
|
562 |
truk += (i == (nbreUnite - 1)) ? "" : aDonnee.SEPARATEUR_VALEURS;
|
|
|
563 |
}
|
|
|
564 |
return truk;
|
|
|
565 |
}
|
|
|
566 |
|
|
|
567 |
private void peuplerGrilleUniteBase(String valeurTruk) {
|
|
|
568 |
if (!UtilString.isEmpty(valeurTruk)) {
|
960 |
jpm |
569 |
HashMap<String,UniteBase> unitesEnregistrees = parserValeurUniteBase(valeurTruk);
|
|
|
570 |
|
|
|
571 |
ArrayList<UniteBase> listeUniteMaj = new ArrayList<UniteBase>();
|
|
|
572 |
int nbreUnite = uniteBaseGrille.getStore().getCount();
|
|
|
573 |
for (int i = 0; i < nbreUnite; i++) {
|
|
|
574 |
UniteBase uniteDansGrille = uniteBaseGrille.getStore().getAt(i);
|
|
|
575 |
UniteBase uniteEnregistree = unitesEnregistrees.get(uniteDansGrille.getId());
|
|
|
576 |
if (uniteEnregistree != null) {
|
|
|
577 |
uniteEnregistree.setType(uniteDansGrille.getType());
|
|
|
578 |
listeUniteMaj.add(uniteEnregistree);
|
|
|
579 |
} else {
|
|
|
580 |
listeUniteMaj.add(uniteDansGrille);
|
|
|
581 |
}
|
|
|
582 |
}
|
|
|
583 |
|
|
|
584 |
Iterator<String> it = unitesEnregistrees.keySet().iterator();
|
|
|
585 |
while (it.hasNext()) {
|
|
|
586 |
String cle = it.next();
|
|
|
587 |
if (cle.matches(aDonnee.TYPE_AUTRE+aDonnee.SEPARATEUR_TYPE_VALEUR)) {
|
|
|
588 |
UniteBase uniteAutreEnregistree = unitesEnregistrees.get(cle);
|
|
|
589 |
listeUniteMaj.add(uniteAutreEnregistree);
|
|
|
590 |
}
|
|
|
591 |
}
|
|
|
592 |
|
|
|
593 |
uniteBaseGrille.getStore().removeAll();
|
|
|
594 |
uniteBaseGrille.getStore().add(listeUniteMaj);
|
|
|
595 |
layout();
|
|
|
596 |
}
|
|
|
597 |
}
|
|
|
598 |
|
|
|
599 |
public static HashMap<String,UniteBase> parserValeurUniteBase(String valeurTruk) {
|
|
|
600 |
HashMap<String,UniteBase> unitesEnregistrees = new HashMap<String,UniteBase>();
|
|
|
601 |
if (!UtilString.isEmpty(valeurTruk)) {
|
949 |
jpm |
602 |
String[] unites = valeurTruk.split(Pattern.quote(aDonnee.SEPARATEUR_VALEURS));
|
|
|
603 |
for (int i = 0; i < unites.length; i++) {
|
|
|
604 |
String[] uniteTypeIdDonnees = unites[i].split(Pattern.quote(aDonnee.SEPARATEUR_TYPE_VALEUR));
|
|
|
605 |
String uniteChaineDonnees = uniteTypeIdDonnees[1];
|
|
|
606 |
String[] uniteDonnees = uniteChaineDonnees.split(Pattern.quote(aDonnee.SEPARATEUR_DONNEES));
|
|
|
607 |
|
|
|
608 |
UniteBase uniteBase = new UniteBase();
|
|
|
609 |
if (uniteDonnees.length > 0) {
|
|
|
610 |
uniteBase.setNombre(UtilString.formaterEnEntier(uniteDonnees[0]));
|
|
|
611 |
}
|
|
|
612 |
if (uniteDonnees.length > 1) {
|
|
|
613 |
uniteBase.setPrecision(getPrecisionNom(uniteDonnees[1]));
|
|
|
614 |
}
|
|
|
615 |
if (uniteDonnees.length > 2) {
|
|
|
616 |
uniteBase.setFormat(uniteDonnees[2]);
|
|
|
617 |
}
|
|
|
618 |
if (uniteDonnees.length > 3) {
|
|
|
619 |
uniteBase.setNombrePart(UtilString.formaterEnEntier(uniteDonnees[3]));
|
|
|
620 |
}
|
|
|
621 |
if (uniteDonnees.length > 4) {
|
|
|
622 |
uniteBase.setPrecisionPart(getPrecisionNom(uniteDonnees[4]));
|
|
|
623 |
}
|
|
|
624 |
if (uniteDonnees.length > 5) {
|
|
|
625 |
uniteBase.setNombreSp(UtilString.formaterEnEntier(uniteDonnees[5]));
|
|
|
626 |
}
|
|
|
627 |
if (uniteDonnees.length > 6) {
|
|
|
628 |
uniteBase.setPrecisionSp(getPrecisionNom(uniteDonnees[6]));
|
|
|
629 |
}
|
956 |
jpm |
630 |
|
|
|
631 |
if (uniteTypeIdDonnees[0].matches("[0-9]+")) {
|
|
|
632 |
uniteBase.setId(uniteTypeIdDonnees[0]);
|
|
|
633 |
uniteBase.setTypeAutre(false);
|
|
|
634 |
unitesEnregistrees.put(uniteTypeIdDonnees[0], uniteBase);
|
|
|
635 |
} else {
|
|
|
636 |
uniteBase.setType(uniteTypeIdDonnees[0]);
|
|
|
637 |
uniteBase.setTypeAutre(true);
|
960 |
jpm |
638 |
String id = aDonnee.TYPE_AUTRE+aDonnee.SEPARATEUR_TYPE_VALEUR+uniteTypeIdDonnees[0]+"-"+i;
|
1251 |
cyprien |
639 |
uniteBase.setId(id);
|
|
|
640 |
unitesEnregistrees.put(aDonnee.TYPE_AUTRE+aDonnee.SEPARATEUR_TYPE_VALEUR, uniteBase);
|
956 |
jpm |
641 |
}
|
949 |
jpm |
642 |
}
|
|
|
643 |
}
|
960 |
jpm |
644 |
return unitesEnregistrees;
|
949 |
jpm |
645 |
}
|
|
|
646 |
|
831 |
jpm |
647 |
private ToolBar creerBarreOutilsGrilleUniteBase() {
|
|
|
648 |
ToolBar barreOutils = new ToolBar();
|
|
|
649 |
|
|
|
650 |
Button ajouterBouton = creerBoutonAjouterUniteBase();
|
|
|
651 |
barreOutils.add(ajouterBouton);
|
|
|
652 |
|
|
|
653 |
barreOutils.add(new SeparatorToolItem());
|
|
|
654 |
|
|
|
655 |
Button supprimerBouton = creerBoutonSupprimerUniteBase();
|
|
|
656 |
barreOutils.add(supprimerBouton);
|
|
|
657 |
|
|
|
658 |
return barreOutils;
|
|
|
659 |
}
|
|
|
660 |
|
|
|
661 |
private Button creerBoutonAjouterUniteBase() {
|
|
|
662 |
Button bouton = new Button(i18nC.ajouter());
|
|
|
663 |
bouton.setIcon(Images.ICONES.ajouter());
|
|
|
664 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
665 |
@Override
|
|
|
666 |
public void componentSelected(ButtonEvent ce) {
|
|
|
667 |
final MessageBox box = MessageBox.prompt(i18nC.collectionUniteType(), i18nC.collectionUniteBaseSaisirType());
|
|
|
668 |
box.addCallback(new Listener<MessageBoxEvent>() {
|
|
|
669 |
public void handleEvent(MessageBoxEvent be) {
|
956 |
jpm |
670 |
if (!UtilString.isEmpty(be.getValue()) && !be.getValue().matches("[0-9]+")) {
|
|
|
671 |
final UniteBase unite = new UniteBase();
|
|
|
672 |
unite.setType(be.getValue());
|
|
|
673 |
unite.setTypeAutre(true);
|
|
|
674 |
uniteBaseGrille.getStore().add(unite);
|
|
|
675 |
} else {
|
1218 |
cyprien |
676 |
InfoLogger.display("Information", "Vous ne pouvez pas saisir de valeur vide ou numérique");
|
956 |
jpm |
677 |
}
|
831 |
jpm |
678 |
}
|
|
|
679 |
});
|
|
|
680 |
}
|
|
|
681 |
});
|
|
|
682 |
return bouton;
|
|
|
683 |
}
|
|
|
684 |
|
|
|
685 |
private Button creerBoutonSupprimerUniteBase() {
|
|
|
686 |
Button bouton = new Button(i18nC.supprimer());
|
|
|
687 |
bouton.setIcon(Images.ICONES.supprimer());
|
|
|
688 |
bouton.addSelectionListener(new SelectionListener<ButtonEvent>() {
|
|
|
689 |
@Override
|
|
|
690 |
public void componentSelected(ButtonEvent ce) {
|
|
|
691 |
UniteBase uniteBaseSelectionnee = uniteBaseGrille.getSelectionModel().getSelectedItem();
|
|
|
692 |
if (uniteBaseSelectionnee == null) {
|
1218 |
cyprien |
693 |
InfoLogger.display(i18nC.informationTitreGenerique(), Mediateur.i18nM.veuillezSelectionner(i18nC.selectionnerUniteBase()));
|
831 |
jpm |
694 |
} else if (uniteBaseSelectionnee.getTypeAutre() == false) {
|
1218 |
cyprien |
695 |
InfoLogger.display(i18nC.informationTitreGenerique(), i18nC.selectionnerUniteBaseAjoute());
|
831 |
jpm |
696 |
} else {
|
|
|
697 |
uniteBaseGrille.getStore().remove(uniteBaseSelectionnee);
|
|
|
698 |
}
|
|
|
699 |
}
|
|
|
700 |
});
|
|
|
701 |
return bouton;
|
|
|
702 |
}
|
|
|
703 |
|
862 |
jpm |
704 |
private void creerFieldsetConservation() {
|
|
|
705 |
FieldSet conservationFieldSet = new FieldSet();
|
954 |
jpm |
706 |
conservationFieldSet.setHeading(i18nC.collectionTitreConservation());
|
862 |
jpm |
707 |
conservationFieldSet.setCollapsible(true);
|
|
|
708 |
conservationFieldSet.setLayout(Formulaire.creerFormLayout(largeurLabelDefaut, alignementLabelDefaut));
|
|
|
709 |
|
|
|
710 |
typePapierConservationChp = new ChampCaseACocher(i18nC.typePapierConservation(), "typePapier", true);
|
|
|
711 |
conservationFieldSet.add(typePapierConservationChp);
|
|
|
712 |
|
|
|
713 |
methodeConservationChp = new ChampCaseACocher(i18nC.methodeConservation(), "methodeRangement", true);
|
|
|
714 |
conservationFieldSet.add(methodeConservationChp);
|
|
|
715 |
|
|
|
716 |
this.add(conservationFieldSet);
|
|
|
717 |
}
|
|
|
718 |
|
|
|
719 |
private void creerFieldsetEtiquette() {
|
|
|
720 |
FieldSet etiquetteFieldSet = new FieldSet();
|
954 |
jpm |
721 |
etiquetteFieldSet.setHeading(i18nC.collectionTitreEtiquette());
|
862 |
jpm |
722 |
etiquetteFieldSet.setCollapsible(true);
|
|
|
723 |
etiquetteFieldSet.setLayout(Formulaire.creerFormLayout(largeurLabelDefaut, alignementLabelDefaut));
|
|
|
724 |
|
|
|
725 |
Text fixationPoucentLabel = new Text(i18nC.fixationPourcent());
|
|
|
726 |
etiquetteFieldSet.add(fixationPoucentLabel);
|
|
|
727 |
|
|
|
728 |
specimenFixationPourcentChp = new ChampSliderPourcentage(i18nC.specimenFixationPourcent());
|
|
|
729 |
etiquetteFieldSet.add(specimenFixationPourcentChp, new FormData(200, 0));
|
|
|
730 |
|
|
|
731 |
etiquetteFixationPourcentChp = new ChampSliderPourcentage(i18nC.etiquetteFixationPourcent());
|
|
|
732 |
etiquetteFieldSet.add(etiquetteFixationPourcentChp, new FormData(200, 0));
|
|
|
733 |
|
|
|
734 |
specimentMethodeFixationChp = new ChampCaseACocher(i18nC.specimenMethodeFixation(), "methodeFixation", true);
|
|
|
735 |
etiquetteFieldSet.add(specimentMethodeFixationChp);
|
|
|
736 |
|
|
|
737 |
etiquetteMethodeFixationSurSupportChp = new ChampCaseACocher(i18nC.etiquetteMethodeFixationSurSupport(), "methodeFixation", true);
|
|
|
738 |
etiquetteFieldSet.add(etiquetteMethodeFixationSurSupportChp);
|
|
|
739 |
|
|
|
740 |
etiquetteMethodeFixationSurSpecimenChp = new ChampCaseACocher(i18nC.etiquetteMethodeFixationSurSpecimen(), "methodeFixationSurSpecimen", true);
|
|
|
741 |
etiquetteFieldSet.add(etiquetteMethodeFixationSurSpecimenChp);
|
|
|
742 |
|
|
|
743 |
typeEcritureChp = new ChampCaseACocher(i18nC.typeEcriture(), "typeEcriture", false);
|
|
|
744 |
etiquetteFieldSet.add(typeEcritureChp);
|
|
|
745 |
|
|
|
746 |
this.add(etiquetteFieldSet);
|
|
|
747 |
}
|
|
|
748 |
|
|
|
749 |
private void creerFieldsetTraitement() {
|
|
|
750 |
FieldSet traitementFieldSet = new FieldSet();
|
954 |
jpm |
751 |
traitementFieldSet.setHeading(i18nC.collectionTitreTraitement());
|
862 |
jpm |
752 |
traitementFieldSet.setCollapsible(true);
|
|
|
753 |
traitementFieldSet.setLayout(Formulaire.creerFormLayout(largeurLabelDefaut, alignementLabelDefaut));
|
|
|
754 |
|
|
|
755 |
traitementCombo = new ChampComboBoxListeValeurs(i18nC.collectionTraitement(), "onpi");
|
|
|
756 |
traitementCombo.setTrie("id_valeur");
|
|
|
757 |
traitementFieldSet.add(traitementCombo, new FormData(300, 0));
|
|
|
758 |
|
|
|
759 |
poisonTraitementChp = new ChampCaseACocher(i18nC.collectionTraitementPoison(), "poisonTraitement", true);
|
|
|
760 |
traitementFieldSet.add(poisonTraitementChp);
|
|
|
761 |
|
|
|
762 |
insecteTraitementChp = new ChampCaseACocher(i18nC.collectionTraitementInsecte(), "insecteTraitement", true);
|
|
|
763 |
traitementFieldSet.add(insecteTraitementChp);
|
|
|
764 |
|
|
|
765 |
this.add(traitementFieldSet);
|
|
|
766 |
}
|
|
|
767 |
|
|
|
768 |
private void creerFieldsetEtat() {
|
|
|
769 |
FieldSet etatFieldSet = new FieldSet();
|
954 |
jpm |
770 |
etatFieldSet.setHeading(i18nC.collectionTitreEtatEtDegradation());
|
862 |
jpm |
771 |
etatFieldSet.setCollapsible(true);
|
|
|
772 |
etatFieldSet.setLayout(Formulaire.creerFormLayout(largeurLabelDefaut, alignementLabelDefaut));
|
|
|
773 |
|
|
|
774 |
etatGeneralCombo = new ChampComboBoxListeValeurs(i18nC.collectionEtatGeneral(), "etat");
|
|
|
775 |
etatGeneralCombo.setToolTip(i18nC.collectionEtatGeneralInfo());
|
|
|
776 |
etatGeneralCombo.setTrie("id_valeur");
|
|
|
777 |
etatFieldSet.add(etatGeneralCombo, new FormData(300, 0));
|
|
|
778 |
|
|
|
779 |
specimenDegradationChp = new ChampMultiValeursMultiTypes(i18nC.degradationSpecimen(), 150, true);
|
|
|
780 |
specimenDegradationChp.initialiserType("specimenDegradation");
|
|
|
781 |
specimenDegradationChp.initialiserCombobox("niveauImportance");
|
|
|
782 |
etatFieldSet.add(specimenDegradationChp);
|
|
|
783 |
|
1253 |
cyprien |
784 |
labelPresentationDegradationChp = new Text();
|
|
|
785 |
labelPresentationDegradationChp.setWidth("95%");
|
|
|
786 |
labelPresentationDegradationChp.setVisible(false);
|
|
|
787 |
|
862 |
jpm |
788 |
presentationDegradationChp = new ChampMultiValeursMultiTypes(i18nC.degradationPresentation(), 150, 200, true);
|
|
|
789 |
presentationDegradationChp.initialiserType("supportDegradation");
|
|
|
790 |
presentationDegradationChp.initialiserCombobox("niveauImportance");
|
1253 |
cyprien |
791 |
|
|
|
792 |
presentationDegradationChp.getTypes().addListener(Events.Select,
|
|
|
793 |
new Listener<FieldEvent>() {
|
|
|
794 |
public void handleEvent(FieldEvent be) {
|
|
|
795 |
if (((Valeur)(be.getField().getValue())).get("id_valeur").equals("2310")) {
|
|
|
796 |
labelPresentationDegradationChp.setText(i18nC.degradationPresentationLabel());
|
|
|
797 |
labelPresentationDegradationChp.setVisible(true);
|
|
|
798 |
}
|
|
|
799 |
else {
|
|
|
800 |
labelPresentationDegradationChp.setText("");
|
|
|
801 |
labelPresentationDegradationChp.setVisible(false);
|
|
|
802 |
}
|
|
|
803 |
}
|
|
|
804 |
});
|
862 |
jpm |
805 |
etatFieldSet.add(presentationDegradationChp);
|
1253 |
cyprien |
806 |
etatFieldSet.add(labelPresentationDegradationChp);
|
862 |
jpm |
807 |
|
|
|
808 |
determinationCombo = new ChampComboBoxListeValeurs(i18nC.collectionDetermination(), "niveauDetermination");
|
|
|
809 |
determinationCombo.setTrie("id_valeur");
|
|
|
810 |
etatFieldSet.add(determinationCombo, new FormData(450, 0));
|
|
|
811 |
|
|
|
812 |
this.add(etatFieldSet);
|
|
|
813 |
}
|
|
|
814 |
|
948 |
jpm |
815 |
public void peupler() {
|
|
|
816 |
initialiserCollection();
|
|
|
817 |
if (collectionBotanique != null) {
|
|
|
818 |
typesCollectionBotaCombo.peupler(collectionBotanique.getType());
|
|
|
819 |
if (!UtilString.isEmpty(collectionBotanique.getNbreEchantillon())) {
|
|
|
820 |
nbreEchantillonChp.setValue(Integer.parseInt(collectionBotanique.getNbreEchantillon()));
|
|
|
821 |
}
|
954 |
jpm |
822 |
|
948 |
jpm |
823 |
peuplerGrilleUniteRangement(collectionBotanique.getUniteRangement());
|
954 |
jpm |
824 |
etatUniteRangementCombo.peupler(collectionBotanique.getUniteRangementEtat());
|
|
|
825 |
|
949 |
jpm |
826 |
peuplerGrilleUniteBase(collectionBotanique.getUniteBase());
|
954 |
jpm |
827 |
|
|
|
828 |
typePapierConservationChp.peupler(collectionBotanique.getConservationPapierType());
|
|
|
829 |
methodeConservationChp.peupler(collectionBotanique.getConservationMethode());
|
|
|
830 |
|
955 |
jpm |
831 |
specimenFixationPourcentChp.peupler(collectionBotanique.getSpecimenFixationPourcent());
|
956 |
jpm |
832 |
etiquetteFixationPourcentChp.peupler(collectionBotanique.getEtiquetteFixationPourcent());
|
955 |
jpm |
833 |
specimentMethodeFixationChp.peupler(collectionBotanique.getSpecimenFixationMethode());
|
|
|
834 |
etiquetteMethodeFixationSurSupportChp.peupler(collectionBotanique.getEtiquetteFixationSupport());
|
|
|
835 |
etiquetteMethodeFixationSurSpecimenChp.peupler(collectionBotanique.getEtiquetteFixationSpecimen());
|
|
|
836 |
typeEcritureChp.peupler(collectionBotanique.getEtiquetteEcriture());
|
954 |
jpm |
837 |
|
955 |
jpm |
838 |
traitementCombo.peupler(collectionBotanique.getTraitement());
|
|
|
839 |
poisonTraitementChp.peupler(collectionBotanique.getTraitementPoison());
|
|
|
840 |
insecteTraitementChp.peupler(collectionBotanique.getTraitementInsecte());
|
954 |
jpm |
841 |
|
955 |
jpm |
842 |
etatGeneralCombo.peupler(collectionBotanique.getEtatGeneral());
|
|
|
843 |
specimenDegradationChp.peupler(collectionBotanique.getDegradationSpecimen());
|
|
|
844 |
presentationDegradationChp.peupler(collectionBotanique.getDegradationPresentation());
|
|
|
845 |
determinationCombo.peupler(collectionBotanique.getDetermination());
|
1150 |
gduche |
846 |
}
|
948 |
jpm |
847 |
}
|
|
|
848 |
|
|
|
849 |
public void collecter() {
|
|
|
850 |
initialiserCollection();
|
|
|
851 |
if (etreAccede()) {
|
|
|
852 |
collectionBotaniqueCollectee.setType(typesCollectionBotaCombo.getValeur());
|
968 |
jpm |
853 |
if (nbreEchantillonChp.getValue() != null) {
|
|
|
854 |
collectionBotaniqueCollectee.setNbreEchantillon(Integer.toString(nbreEchantillonChp.getValue().intValue()));
|
|
|
855 |
}
|
954 |
jpm |
856 |
|
948 |
jpm |
857 |
collectionBotaniqueCollectee.setUniteRangement(collecterGrilleUniteRangement());
|
954 |
jpm |
858 |
collectionBotaniqueCollectee.setUniteRangementEtat(etatUniteRangementCombo.getValeur());
|
|
|
859 |
|
949 |
jpm |
860 |
collectionBotaniqueCollectee.setUniteBase(collecterGrilleUniteBase());
|
954 |
jpm |
861 |
|
|
|
862 |
collectionBotaniqueCollectee.setConservationPapierType(typePapierConservationChp.getValeur());
|
|
|
863 |
collectionBotaniqueCollectee.setConservationMethode(methodeConservationChp.getValeur());
|
|
|
864 |
|
|
|
865 |
collectionBotaniqueCollectee.setSpecimenFixationPourcent(specimenFixationPourcentChp.getValeur());
|
956 |
jpm |
866 |
collectionBotaniqueCollectee.setEtiquetteFixationPourcent(etiquetteFixationPourcentChp.getValeur());
|
954 |
jpm |
867 |
collectionBotaniqueCollectee.setSpecimenFixationMethode(specimentMethodeFixationChp.getValeur());
|
|
|
868 |
collectionBotaniqueCollectee.setEtiquetteFixationSupport(etiquetteMethodeFixationSurSupportChp.getValeur());
|
|
|
869 |
collectionBotaniqueCollectee.setEtiquetteFixationSpecimen(etiquetteMethodeFixationSurSpecimenChp.getValeur());
|
|
|
870 |
collectionBotaniqueCollectee.setEtiquetteEcriture(typeEcritureChp.getValeur());
|
|
|
871 |
|
|
|
872 |
collectionBotaniqueCollectee.setTraitement(traitementCombo.getValeur());
|
|
|
873 |
collectionBotaniqueCollectee.setTraitementPoison(poisonTraitementChp.getValeur());
|
|
|
874 |
collectionBotaniqueCollectee.setTraitementInsecte(insecteTraitementChp.getValeur());
|
|
|
875 |
|
|
|
876 |
collectionBotaniqueCollectee.setEtatGeneral(etatGeneralCombo.getValeur());
|
|
|
877 |
collectionBotaniqueCollectee.setDegradationSpecimen(specimenDegradationChp.getValeurs());
|
|
|
878 |
collectionBotaniqueCollectee.setDegradationPresentation(presentationDegradationChp.getValeurs());
|
|
|
879 |
collectionBotaniqueCollectee.setDetermination(determinationCombo.getValeur());
|
948 |
jpm |
880 |
}
|
|
|
881 |
}
|
|
|
882 |
|
|
|
883 |
private void initialiserCollection() {
|
|
|
884 |
collection = ((CollectionForm) formulaire).collection;
|
|
|
885 |
if (collection != null) {
|
|
|
886 |
collectionBotanique = collection.getBotanique();
|
|
|
887 |
}
|
|
|
888 |
|
|
|
889 |
collectionCollectee = ((CollectionForm) formulaire).collectionCollectee;
|
|
|
890 |
if (collectionCollectee != null) {
|
|
|
891 |
collectionBotaniqueCollectee = collectionCollectee.getBotanique();
|
|
|
892 |
}
|
|
|
893 |
}
|
|
|
894 |
|
806 |
jpm |
895 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
896 |
if (nouvellesDonnees instanceof ValeurListe) {
|
|
|
897 |
ValeurListe listeValeurs = (ValeurListe) nouvellesDonnees;
|
|
|
898 |
rafraichirValeurListe(listeValeurs);
|
|
|
899 |
} else {
|
954 |
jpm |
900 |
Debug.log(Mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()));
|
806 |
jpm |
901 |
}
|
|
|
902 |
}
|
|
|
903 |
|
|
|
904 |
private void rafraichirValeurListe(ValeurListe listeValeurs) {
|
954 |
jpm |
905 |
if (listeValeurs.getId().equals(config.getListeId("typeUniteRangement"))) {
|
806 |
jpm |
906 |
Iterator<String> it = listeValeurs.keySet().iterator();
|
|
|
907 |
while (it.hasNext()) {
|
|
|
908 |
Valeur valeur = listeValeurs.get(it.next());
|
|
|
909 |
UniteRangement unite = new UniteRangement();
|
948 |
jpm |
910 |
unite.setId(valeur.getId());
|
806 |
jpm |
911 |
unite.setType(valeur.getNom());
|
831 |
jpm |
912 |
unite.setTypeAutre(false);
|
806 |
jpm |
913 |
uniteRangementGrille.getStore().add(unite);
|
|
|
914 |
}
|
831 |
jpm |
915 |
} else if (listeValeurs.getId().equals(config.getListeId("typeUniteBase"))) {
|
|
|
916 |
Iterator<String> it = listeValeurs.keySet().iterator();
|
|
|
917 |
while (it.hasNext()) {
|
|
|
918 |
Valeur valeur = listeValeurs.get(it.next());
|
|
|
919 |
UniteBase unite = new UniteBase();
|
948 |
jpm |
920 |
unite.setId(valeur.getId());
|
831 |
jpm |
921 |
unite.setType(valeur.getNom());
|
|
|
922 |
unite.setTypeAutre(false);
|
|
|
923 |
uniteBaseGrille.getStore().add(unite);
|
|
|
924 |
}
|
806 |
jpm |
925 |
} else {
|
954 |
jpm |
926 |
Debug.log("Gestion de la liste "+listeValeurs.getId()+" non implémenté!");
|
806 |
jpm |
927 |
}
|
|
|
928 |
}
|
|
|
929 |
}
|