| Line 142... |
Line 142... |
| 142 |
|
142 |
|
| 143 |
//+----------------------------------------------------------------------------------------------------------------+
|
143 |
//+----------------------------------------------------------------------------------------------------------------+
|
| 144 |
// GESTION DES STRUCTURES
|
144 |
// GESTION DES STRUCTURES
|
| Line 145... |
Line 145... |
| 145 |
//+----------------------------------------------------------------------------------------------------------------+
|
145 |
//+----------------------------------------------------------------------------------------------------------------+
|
| 146 |
|
146 |
|
| 147 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements, Integer seqId) {
|
147 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements, Integer seqId, boolean searchCity) {
|
| 148 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
148 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
| 149 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
149 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
| Line 150... |
Line 150... |
| 150 |
sDao.selectionner(false, projetId, structureId, nomStructure, null, start, nbElements, seqId);
|
150 |
sDao.selectionner(false, projetId, structureId, nomStructure, null, start, nbElements, seqId, searchCity);
|
| 151 |
}
|
151 |
}
|
| 152 |
|
152 |
|
| 153 |
public void selectionnerStructureAvecPaginationProgressive(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, String formatRetour, int start, int nbElements, Integer seqId) {
|
153 |
public void selectionnerStructureAvecPaginationProgressive(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, String formatRetour, int start, int nbElements, Integer seqId, boolean searchCity) {
|
| 154 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
154 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
| Line 155... |
Line 155... |
| 155 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
155 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
| 156 |
sDao.selectionner(true, projetId, structureId, nomStructure, formatRetour, start, nbElements, seqId);
|
156 |
sDao.selectionner(true, projetId, structureId, nomStructure, formatRetour, start, nbElements, seqId, searchCity);
|
| 157 |
}
|
157 |
}
|
| 158 |
|
158 |
|
| 159 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
|
159 |
public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId, boolean searchCity) {
|
| Line 160... |
Line 160... |
| 160 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
160 |
// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation
|
| 161 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
161 |
StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
|
| 162 |
sDao.selectionner(true, null, null, recherche, null, start, nbElements, seqId);
|
162 |
sDao.selectionner(true, null, null, recherche, null, start, nbElements, seqId, searchCity);
|
| Line 460... |
Line 460... |
| 460 |
|
460 |
|
| 461 |
public void supprimerCommentaire(Rafraichissable vueARafraichir, String idCommentaireSeparesParVirgule) {
|
461 |
public void supprimerCommentaire(Rafraichissable vueARafraichir, String idCommentaireSeparesParVirgule) {
|
| 462 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
462 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
| 463 |
cDao.supprimer(idCommentaireSeparesParVirgule);
|
463 |
cDao.supprimer(idCommentaireSeparesParVirgule);
|
| 464 |
}
|
- |
|
| 465 |
}
|
464 |
}
|
| - |
|
465 |
}
|