Ignore:
Timestamp:
Oct 6, 2010, 1:55:47 AM (14 years ago)
Author:
gav
Message:

Change assetDetail report to allow reporting by section and display site in report.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/controllers/ReportController.groovy

    r681 r687  
    144144        params.logoUrl = grailsApplication.mainContext.getResource('images/logo.png').getURL()
    145145        params.currentUser = authService.currentUser
    146         if(params.asset.id == 'all')
    147             params.asset = "All"
    148         else
    149             params.asset = Asset.get(params.asset.id.toLong())
     146        if(params.section.id == 'all') {
     147            params.section = "All"
     148            params.site = "All"
     149        }
     150        else {
     151            params.section = Section.get(params.section.id.toLong())
     152            params.site = params.section.site
     153        }
    150154
    151155        def dataModel = assetReportService.getAssetDetail(params, RCU.getLocale(request))
Note: See TracChangeset for help on using the changeset viewer.