dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #27438
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 13669: implemented /operands for deGroups
------------------------------------------------------------
revno: 13669
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2014-01-09 11:28:10 +0100
message:
implemented /operands for deGroups
modified:
dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/dataelement/DataElementGroupController.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/api/controller/dataelement/DataElementGroupController.java'
--- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/dataelement/DataElementGroupController.java 2014-01-09 10:09:43 +0000
+++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/dataelement/DataElementGroupController.java 2014-01-09 10:28:10 +0000
@@ -43,6 +43,9 @@
import org.hisp.dhis.common.PagerUtils;
import org.hisp.dhis.dataelement.DataElement;
import org.hisp.dhis.dataelement.DataElementGroup;
+import org.hisp.dhis.dataelement.DataElementOperand;
+import org.hisp.dhis.dataelement.DataElementOperandService;
+import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.util.StringUtils;
@@ -63,6 +66,9 @@
{
public static final String RESOURCE_PATH = "/dataElementGroups";
+ @Autowired
+ private DataElementOperandService dataElementOperandService;
+
@RequestMapping(value = "/{uid}/members", method = RequestMethod.GET)
public String getMembers( @PathVariable("uid") String uid, @RequestParam Map<String, String> parameters,
Model model, HttpServletRequest request, HttpServletResponse response ) throws Exception
@@ -98,4 +104,43 @@
return StringUtils.uncapitalize( getEntitySimpleName() );
}
+
+ @RequestMapping(value = "/{uid}/operands", method = RequestMethod.GET)
+ public String getOperands( @PathVariable("uid") String uid, @RequestParam Map<String, String> parameters,
+ Model model, HttpServletRequest request, HttpServletResponse response ) throws Exception
+ {
+ WebOptions options = new WebOptions( parameters );
+ DataElementGroup dataElementGroup = getEntity( uid );
+
+ if ( dataElementGroup == null )
+ {
+ ContextUtils.notFoundResponse( response, "DataElementGroup not found for uid: " + uid );
+ return null;
+ }
+
+ WebMetaData metaData = new WebMetaData();
+ List<DataElementOperand> dataElementOperands = Lists.newArrayList(
+ dataElementOperandService.getDataElementOperandByDataElementGroup( dataElementGroup ) );
+
+ metaData.setDataElementOperands( dataElementOperands );
+
+ if ( options.hasPaging() )
+ {
+ Pager pager = new Pager( options.getPage(), dataElementOperands.size(), options.getPageSize() );
+ metaData.setPager( pager );
+ dataElementOperands = PagerUtils.pageCollection( dataElementOperands, pager );
+ }
+
+ metaData.setDataElementOperands( dataElementOperands );
+
+ if ( options.hasLinks() )
+ {
+ WebUtils.generateLinks( metaData );
+ }
+
+ model.addAttribute( "model", metaData );
+ model.addAttribute( "viewClass", options.getViewClass( "detailed" ) );
+
+ return StringUtils.uncapitalize( getEntitySimpleName() );
+ }
}