dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #37975
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 19406: minor bugfix, paging for orgUnitController
------------------------------------------------------------
revno: 19406
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2015-06-15 12:06:57 +0700
message:
minor bugfix, paging for orgUnitController
modified:
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/organisationunit/OrganisationUnitController.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/organisationunit/OrganisationUnitController.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/organisationunit/OrganisationUnitController.java 2015-04-20 16:03:40 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/webapi/controller/organisationunit/OrganisationUnitController.java 2015-06-15 05:06:57 +0000
@@ -84,6 +84,7 @@
protected List<OrganisationUnit> getEntityList( WebMetaData metaData, WebOptions options, List<String> filters, List<Order> orders )
{
List<OrganisationUnit> entityList;
+ boolean haveFilters = !filters.isEmpty();
Query query = queryService.getQueryFromUrl( getEntityClass(), filters, orders );
query.setDefaultOrder();
@@ -157,9 +158,9 @@
entityList = new ArrayList<>( manager.getAll( getEntityClass() ) );
Collections.sort( entityList, OrganisationUnitByLevelComparator.INSTANCE );
}
- else if ( options.hasPaging() && filters.isEmpty() )
+ else if ( options.hasPaging() && !haveFilters )
{
- int count = manager.getCount( getEntityClass() );
+ int count = queryService.count( query );
Pager pager = new Pager( options.getPage(), count, options.getPageSize() );
metaData.setPager( pager );