Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 278 → Rev 279

/trunk/src/org/tela_botanica/client/Mediateur.java
497,7 → 497,7
public String getProjetId() {
String id = null;
Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
if (!projetCourant.getId().equals("")) {
if (projetCourant != null && !projetCourant.getId().equals("")) {
id = projetCourant.getId();
}
return id;
/trunk/src/org/tela_botanica/client/vues/FormStructureVue.java
459,8 → 459,6
// VISITE AVEC MOTIF INFO
avecMotifAccesChp.setValue(valorisation.getVisiteAvecMotifInfo());
valorisationOnglet.layout();
// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
valorisationOnglet.setData("acces", true);
}
618,8 → 616,6
// ACQUISITION TRAITEMENT INSECTE
peuplerCasesACocher(conservation.getAcquisitionTraitementInsecte(), insecteTraitementTrukCacGrpChp, insecteTraitementAutreChp);
conservationOnglet.layout();
// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
conservationOnglet.setData("acces", true);
}
687,6 → 683,11
if (mode.equals("AJOUT")) {
// Indique que l'ongleta pu être modifié pour la méthode collecter...
identificationOnglet.setData("acces", true);
// Indication du projet sélectionné par défaut
String projetCourantId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getProjetId();
if (!projetCourantId.equals("0")) {
projetsCombo.setValue(projetsCombo.getStore().findModel("id_projet", projetCourantId));
}
}
if (mode.equals("MODIF") && identification != null && identificationOnglet.getData("acces").equals(false)) {
idStructureChp.setValue(identification.getId());
735,8 → 736,6
nbreTotalPersonneStructureChp.setValue(identification.getNbrePersonne());
identificationOnglet.layout();
// Indique que l'onglet a été rempli et a pu être modifié pour la méthode collecter...
identificationOnglet.setData("acces", true);
}
827,6 → 826,7
conservationOnglet.addListener(Events.Select, new Listener<ComponentEvent>() {
public void handleEvent(ComponentEvent be) {
peuplerStructureConservation();
conservationOnglet.layout();
}
});
1062,7 → 1062,6
personnelGrilleMagazin.removeAll();
personnelGrilleMagazin.add(personnes);
personnelOnglet.layout();
// Nous vidons la variable personnel une fois qu'elle a remplie la grille
personnel = null;
}
1081,6 → 1080,8
// Peuplement du formulaire
peuplerStructurePersonnel();
personnelOnglet.layout();
}
 
});
1421,6 → 1422,7
identificationOnglet.addListener(Events.Select, new Listener<ComponentEvent>() {
public void handleEvent(ComponentEvent be) {
peuplerStructureIdentification();
identificationOnglet.layout();
}
});
1444,7 → 1446,6
modele.selectionnerProjets(this);
projetsMagazin = new ListStore<Projet>();
projetsMagazin.add(new ArrayList<Projet>());
projetsCombo = new ComboBox<Projet>();
projetsCombo.setTabIndex(tabIndex++);
projetsCombo.setFieldLabel("Projet");
1557,7 → 1558,6
modele.obtenirListeValeurs(this, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId("stpu"));
magazinLstpu = new ListStore<Valeur>();
magazinLstpu.add(new ArrayList<Valeur>());
comboLstpu = new ComboBox<Valeur>();
comboLstpu.setTabIndex(tabIndex++);
//comboLstpu.setFieldLabel("Statut des structures publiques");
1571,7 → 1571,6
modele.obtenirListeValeurs(this, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId("stpr"));
magazinLstpr = new ListStore<Valeur>();
magazinLstpr.add(new ArrayList<Valeur>());
comboLstpr = new ComboBox<Valeur>();
comboLstpr.setTabIndex(tabIndex++);
//comboLstpr.setFieldLabel("Statut des structures privées");
1601,9 → 1600,8
nbreTotalPersonneStructureChp.setToolTip("Ce champ doit contenir un nombre");
fieldSetIdentite.add(nbreTotalPersonneStructureChp);
 
identificationOnglet.add(fieldSetIdentite);
identificationOnglet.add(fieldSetIdentite);
 
//+-----------------------------------------------------------------------------------------------------------+
// Fieldset ADRESSE
LayoutContainer principalFdAdresse = new LayoutContainer();
1646,7 → 1644,6
//paysChp.setFieldLabel("Pays");
modele.obtenirListeValeurs(this, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId("pays"));
magazinPays = new ListStore<Valeur>();
magazinPays.add(new ArrayList<Valeur>());
comboPays = new ComboBox<Valeur>();
comboPays.setTabIndex(tabIndex++);
comboPays.setFieldLabel("Pays");
1663,8 → 1660,9
principalFdAdresse.add(gaucheFdAdresse, new ColumnData(.5));
principalFdAdresse.add(droiteFdAdresse, new ColumnData(.5));
fieldSetAdresse.add(principalFdAdresse);
identificationOnglet.add(fieldSetAdresse);
 
//+-----------------------------------------------------------------------------------------------------------+
// Fieldset TÉLÉPHONE et EMAIL
LayoutContainer principalFdTelMail = new LayoutContainer();
1706,6 → 1704,7
principalFdTelMail.add(gaucheFdTelMail, new ColumnData(.5));
principalFdTelMail.add(droiteFdTelMail, new ColumnData(.5));
fieldSetTelMail.add(principalFdTelMail);
identificationOnglet.add(fieldSetTelMail);
return identificationOnglet;