Index: trunk/grails-app/controllers/ReportController.groovy
===================================================================
--- trunk/grails-app/controllers/ReportController.groovy	(revision 663)
+++ trunk/grails-app/controllers/ReportController.groovy	(revision 668)
@@ -196,3 +196,20 @@
     } // equipmentRegister
 
+    def inventoryValueGsp = {
+        render(view: 'inventoryValue')
+    }
+
+    def inventoryValue = {
+
+        params.reportTitle = "Inventory Value"
+        params.logoUrl = grailsApplication.mainContext.getResource('images/logo.png').getURL()
+        params.currentUser = authService.currentUser
+
+        def dataModel = inventoryReportService.getInventoryValue(params, RCU.getLocale(request))
+
+        // Jasper plugin controller expects data to be a Collection.
+        chain(controller:'jasper', action:'index', model:[data: [dataModel]], params:params)
+
+    }
+
 } // end of class.
