Subversion Repositories eFlore/Applications.coel

Rev

Rev 297 | Rev 306 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 297 Rev 302
Line 37... Line 37...
37
	}
37
	}
Line 38... Line 38...
38
	
38
	
39
	
39
	
40
	public void obtenirListeRegion(Rafraichissable vue, Integer id, String region) {
40
	public void obtenirListeRegion(Rafraichissable vue, Integer id, String region) {
41
		ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
41
		ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
Line 42... Line 42...
42
		lsDao.selectionner("abv", id, region);
42
		lsDao.selectionner("abv", id, null, region);
43
	}
43
	}
44
	
44
	
45
	public void obtenirValeur(Rafraichissable vue, Integer id, String identifiant) {
45
	public void obtenirValeur(Rafraichissable vue, String type, Integer id, String identifiant) {
Line 46... Line 46...
46
		ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
46
		ValeurListeAsyncDao lsDao = new ValeurListeAsyncDao(vue);
47
		lsDao.obtenirListe(id);
47
		lsDao.selectionner(type, id, null, identifiant);
48
	}
48
	}