dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #11817
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 3468: Dhis mobile - Using organisation unit object instead of source instance.
------------------------------------------------------------
revno: 3468
committer: Hieu <hieu.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2011-04-26 12:48:58 +0700
message:
Dhis mobile - Using organisation unit object instead of source instance.
modified:
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/web/api/resources/DataSetResource.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/web/api/resources/DataSetResource.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/web/api/resources/DataSetResource.java 2011-04-22 21:04:14 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/web/api/resources/DataSetResource.java 2011-04-26 05:48:58 +0000
@@ -23,7 +23,6 @@
@Path( "dataSets/{uuid}" )
public class DataSetResource
{
-
private DataSetService dataSetService;
@Context
@@ -65,7 +64,7 @@
t.append( "</p>\n" );
t.append( "<h2>Org units reporting data set</h2>\n<ul>" );
- for ( OrganisationUnit unit : dataSet.getSources() )
+ for ( OrganisationUnit unit : dataSet.getOrganisationUnits() )
{
t.append( "<li><b>" ).append( unit.getName() ).append( "</b> - " ).append( unit.getUuid() )
.append( "</li>" );