Changeset 3013
- Timestamp:
- Dec 8, 2006, 3:26:08 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/plugins/SimpleExport.java
r3012 r3013 323 323 // Not true, if we are on the last page 324 324 } 325 325 final String exclude = (String)cc.getObject("exclude"); 326 if (exclude != null) 327 { 328 query.restrict( 329 Restrictions.not( 330 Restrictions.in( 331 Hql.property("id"), 332 Expressions.parameter("_excludes_") 333 ) 334 ) 335 ); 336 query.setParameter("_excludes_", Arrays.asList(Values.getInt(exclude.split(","))), Type.INT); 337 } 326 338 try 327 339 {
Note: See TracChangeset
for help on using the changeset viewer.