Line 10... |
Line 10... |
10 |
import org.tela_botanica.client.modeles.Information;
|
10 |
import org.tela_botanica.client.modeles.Information;
|
11 |
import org.tela_botanica.client.synchronisation.Reponse;
|
11 |
import org.tela_botanica.client.synchronisation.Reponse;
|
12 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
12 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
13 |
import org.tela_botanica.client.util.Debug;
|
13 |
import org.tela_botanica.client.util.Debug;
|
14 |
import org.tela_botanica.client.util.UtilDAO;
|
14 |
import org.tela_botanica.client.util.UtilDAO;
|
- |
|
15 |
|
15 |
import com.extjs.gxt.ui.client.Registry;
|
16 |
import com.extjs.gxt.ui.client.Registry;
|
16 |
import com.google.gwt.core.client.GWT;
|
17 |
import com.google.gwt.core.client.GWT;
|
17 |
import com.google.gwt.json.client.JSONArray;
|
18 |
import com.google.gwt.json.client.JSONArray;
|
18 |
import com.google.gwt.json.client.JSONObject;
|
19 |
import com.google.gwt.json.client.JSONObject;
|
19 |
import com.google.gwt.json.client.JSONValue;
|
20 |
import com.google.gwt.json.client.JSONValue;
|
- |
|
21 |
import com.google.gwt.user.client.Window;
|
Line 20... |
Line 22... |
20 |
|
22 |
|
21 |
public class PersonneAsyncDao {
|
23 |
public class PersonneAsyncDao {
|
Line 22... |
Line 24... |
22 |
private static final String SERVICE_NOM = "CoelPersonne";
|
24 |
private static final String SERVICE_NOM = "CoelPersonne";
|
Line 38... |
Line 40... |
38 |
* est renvoyé à l'appelant
|
40 |
* est renvoyé à l'appelant
|
39 |
* // FIXME : si la taille de la liste est supérieure à la limite du JREST (150), ce deuxieme mode ne fonctionne pas
|
41 |
* // FIXME : si la taille de la liste est supérieure à la limite du JREST (150), ce deuxieme mode ne fonctionne pas
|
40 |
*/
|
42 |
*/
|
41 |
public void selectionner(final boolean paginationProgressive, String personneId, String projetId, String nomComplet, final int start, final int nbElements, final Integer seqId) {
|
43 |
public void selectionner(final boolean paginationProgressive, String personneId, String projetId, String nomComplet, final int start, final int nbElements, final Integer seqId) {
|
Line 42... |
Line 44... |
42 |
|
44 |
|
43 |
String nom = (nomComplet == null) ? "%" : nomComplet+"%";
|
45 |
String nom = (nomComplet == null) ? "%" : "%"+nomComplet+"%";
|
Line 44... |
Line 46... |
44 |
String[] parametres = {personneId, projetId, nom};
|
46 |
String[] parametres = {personneId, projetId, nom};
|
Line 45... |
Line 47... |
45 |
|
47 |
|