Line 115... |
Line 115... |
115 |
// GESTION DES PROJETS
|
115 |
// GESTION DES PROJETS
|
116 |
//+----------------------------------------------------------------------------------------------------------------+
|
116 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line 117... |
Line 117... |
117 |
|
117 |
|
118 |
public void selectionnerProjet(Rafraichissable vueARafraichir, String projetId, String nom, int start, int nbElements) {
|
118 |
public void selectionnerProjet(Rafraichissable vueARafraichir, String projetId, String nom, int start, int nbElements) {
|
119 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
119 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
- |
|
120 |
pADAO.selectionner(false, projetId, nom, start, nbElements);
|
- |
|
121 |
}
|
- |
|
122 |
|
- |
|
123 |
public void selectionnerProjet(Rafraichissable vueARafraichir, String recherche, int start, int nbElements) {
|
- |
|
124 |
ProjetAsyncDao pADAO = new ProjetAsyncDao(vueARafraichir);
|
120 |
pADAO.selectionner(projetId, nom, start, nbElements);
|
125 |
pADAO.selectionner(true, null, recherche, start, nbElements);
|
Line 121... |
Line 126... |
121 |
}
|
126 |
}
|
122 |
|
127 |
|
123 |
public void ajouterProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
|
128 |
public void ajouterProjet(Rafraichissable vueARafraichir, Projet projetCollecte) {
|
Line 135... |
Line 140... |
135 |
//+----------------------------------------------------------------------------------------------------------------+
|
140 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line 136... |
Line 141... |
136 |
|
141 |
|
137 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements) {
|
142 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements) {
|
138 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
143 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
139 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
144 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
- |
|
145 |
sDao.selectionner(false, projetId, structureId, nomStructure, start, nbElements);
|
- |
|
146 |
}
|
- |
|
147 |
|
- |
|
148 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements) {
|
- |
|
149 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
- |
|
150 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
140 |
sDao.selectionner(projetId, structureId, nomStructure, start, nbElements);
|
151 |
sDao.selectionner(true, null, null, recherche, start, nbElements);
|
Line 141... |
Line 152... |
141 |
}
|
152 |
}
|
142 |
|
153 |
|
143 |
/** Lance la creation d'une Structure
|
154 |
/** Lance la creation d'une Structure
|
Line 189... |
Line 200... |
189 |
// GESTION DES COLLECTIONS
|
200 |
// GESTION DES COLLECTIONS
|
190 |
//+----------------------------------------------------------------------------------------------------------------+
|
201 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line 191... |
Line 202... |
191 |
|
202 |
|
192 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String projetId, String collectionId, String nom, int start, int nbElements) {
|
203 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String projetId, String collectionId, String nom, int start, int nbElements) {
|
193 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
204 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
- |
|
205 |
cDao.selectionner(false, projetId, collectionId, nom, start, nbElements);
|
- |
|
206 |
}
|
- |
|
207 |
|
- |
|
208 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String recherche, int start, int nbElements) {
|
- |
|
209 |
CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
|
194 |
cDao.selectionner(projetId, collectionId, nom, start, nbElements);
|
210 |
cDao.selectionner(true, null, null, recherche, start, nbElements);
|
Line 195... |
Line 211... |
195 |
}
|
211 |
}
|
196 |
|
212 |
|
197 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
213 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
Line 282... |
Line 298... |
282 |
// GESTION DES PERSONNES
|
298 |
// GESTION DES PERSONNES
|
283 |
//+----------------------------------------------------------------------------------------------------------------+
|
299 |
//+----------------------------------------------------------------------------------------------------------------+
|
Line 284... |
Line 300... |
284 |
|
300 |
|
285 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements) {
|
301 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String personneId, String projetId, String nomComplet, int start, int nbElements) {
|
286 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
302 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
- |
|
303 |
pDao.selectionner(false, personneId, projetId, nomComplet, start, nbElements);
|
- |
|
304 |
}
|
- |
|
305 |
|
- |
|
306 |
public void selectionnerPersonne(Rafraichissable vueARafraichir, String recherche, int start, int nbElements) {
|
- |
|
307 |
PersonneAsyncDao pDao = new PersonneAsyncDao(vueARafraichir);
|
287 |
pDao.selectionner(personneId, projetId, nomComplet, start, nbElements);
|
308 |
pDao.selectionner(true, null, null, recherche, start, nbElements);
|
Line 288... |
Line 309... |
288 |
}
|
309 |
}
|
289 |
|
310 |
|
290 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|
311 |
public void supprimerPersonne(Rafraichissable vueARafraichir, String idPersonneSepareParVirgule) {
|