Index: trunk/grails-app/controllers/ReportController.groovy
===================================================================
--- trunk/grails-app/controllers/ReportController.groovy	(revision 671)
+++ trunk/grails-app/controllers/ReportController.groovy	(revision 676)
@@ -213,3 +213,20 @@
     }
 
+    def inventoryValueOverviewGsp = {
+        render(view: 'inventoryValueOverview')
+    }
+
+    def inventoryValueOverview = {
+
+        params.reportTitle = "Inventory Value Overview"
+        params.logoUrl = grailsApplication.mainContext.getResource('images/logo.png').getURL()
+        params.currentUser = authService.currentUser
+
+        def dataModel = inventoryReportService.getInventoryValueOverview(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.
