Changeset 671


Ignore:
Timestamp:
Oct 3, 2010, 10:51:52 PM (14 years ago)
Author:
gav
Message:

Rename Inventory Value report to Inventory Detailed Value.

Location:
trunk
Files:
3 edited
2 moved

Legend:

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

    r668 r671  
    196196    } // equipmentRegister
    197197
    198     def inventoryValueGsp = {
    199         render(view: 'inventoryValue')
     198    def inventoryValueDetailedGsp = {
     199        render(view: 'inventoryValueDetailed')
    200200    }
    201201
    202     def inventoryValue = {
    203 
    204         params.reportTitle = "Inventory Value"
    205         params.logoUrl = grailsApplication.mainContext.getResource('images/logo.png').getURL()
    206         params.currentUser = authService.currentUser
    207 
    208         def dataModel = inventoryReportService.getInventoryValue(params, RCU.getLocale(request))
     202    def inventoryValueDetailed = {
     203
     204        params.reportTitle = "Inventory Value Detailed"
     205        params.logoUrl = grailsApplication.mainContext.getResource('images/logo.png').getURL()
     206        params.currentUser = authService.currentUser
     207
     208        def dataModel = inventoryReportService.getInventoryValueDetailed(params, RCU.getLocale(request))
    209209
    210210        // Jasper plugin controller expects data to be a Collection.
  • trunk/grails-app/services/InventoryReportService.groovy

    r670 r671  
    167167
    168168    /**
    169     * Get the data for the inventory value.
     169    * Get the data for the inventory value with detail.
    170170    * @param params The request params, may contain params to specify the search.
    171171    * @param locale The locale to use when generating result.message.
    172172    */
    173     def getInventoryValue(params, locale) {
     173    def getInventoryValueDetailed(params, locale) {
    174174        def result = [:]
    175175
     
    241241        return result
    242242
    243     } // getInventoryValueByGroupAndType()
     243    } // getInventoryValueDetailed()
    244244
    245245} // end class
  • trunk/grails-app/views/appCore/start.gsp

    r668 r671  
    201201                                        </td>
    202202                                        <td valign="top" class="value">
    203                                                 <g:link controller="report" action="inventoryValueGsp">
    204                                                     Inventory Value
     203                                                <g:link controller="report" action="inventoryValueDetailedGsp">
     204                                                    Detailed Value
    205205                                                </g:link>
    206206                                        </td>
  • trunk/grails-app/views/report/inventoryValueDetailed.gsp

    r669 r671  
    33        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    44        <meta name="layout" content="main" />
    5         <title>Inventory Value Report</title>
     5        <title>Inventory Detailed Value Report</title>
    66        <nav:resources override="true"/>
    77    </head>
     
    1111        </div>
    1212        <div class="body">
    13             <h1>Inventory Value Report</h1>
     13            <h1>Inventory Detailed Value Report</h1>
    1414            <g:render template="/shared/messages" />
    1515            <div class="dialog">
     
    1818
    1919                        <g:jasperForm controller="report"
    20                                                     action="inventoryValue"
    21                                                     jasper="inventoryValue"
    22                                                     name="Inventory Value">
     20                                                    action="inventoryValueDetailed"
     21                                                    jasper="inventoryValueDetailed"
     22                                                    name="Inventory Value Detailed">
    2323
    2424                            <tr class="prop">
     
    6767                                </td>
    6868                                <td valign="top" class="value">
    69                                     <custom:jasperButtons formName="inventoryValue" format="PDF, XLS" text="PDF" />
     69                                    <custom:jasperButtons formName="inventoryValueDetailed" format="PDF, XLS" text="PDF" />
    7070                                </td>
    7171                            </tr>
Note: See TracChangeset for help on using the changeset viewer.