source: trunk/grails-app/views/report/inventoryValueDetailed.gsp @ 673

Last change on this file since 673 was 673, checked in by gav, 14 years ago

Small correction to inventoryValueDetailed.gsp.

File size: 4.1 KB
Line 
1<html>
2    <head>
3        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4        <meta name="layout" content="main" />
5        <title>Inventory Detailed Value Report</title>
6        <nav:resources override="true"/>
7    </head>
8    <body>
9        <div class="nav">
10            <nav:renderSubItems group="nav"/>
11        </div>
12        <div class="body">
13            <h1>Inventory Detailed Value Report</h1>
14            <g:render template="/shared/messages" />
15            <div class="dialog">
16                <table>
17                    <tbody>
18
19                        <g:jasperForm controller="report"
20                                                    action="inventoryValueDetailed"
21                                                    jasper="inventoryValueDetailed"
22                                                    name="Inventory Value Detailed">
23
24                            <tr class="prop">
25                                <td valign="top" class="name">
26                                    <label>Site:</label>
27                                </td>
28                                <td valign="top" class="value">
29                                    <g:select optionKey="id"
30                                                        from="${Site.findAllByIsActive(true).sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) }}"
31                                                        name="site.id">
32                                    </g:select>
33                                </td>
34                            </tr>
35
36                            <tr class="prop">
37                                <td valign="top" class="name">
38                                    <label>Inventory Types:</label>
39                                </td>
40                                <td valign="top" class="value">
41                                    <custom:checkBoxList name="inventoryTypes"
42                                                                            from="${InventoryType.findAllByIsActive(true)}"
43                                                                            optionKey="id"
44                                                                            sortBy="name"
45                                                                            linkController="inventoryTypeDetailed"
46                                                                            linkAction="show"/>
47                                </td>
48                            </tr>
49
50                            <tr class="prop">
51                                <td valign="top" class="name">
52                                    <label>Inventory Groups:</label>
53                                </td>
54                                <td valign="top" class="value">
55                                    <custom:checkBoxList name="inventoryGroups"
56                                                                            from="${InventoryGroup.findAllByIsActive(true)}"
57                                                                            optionKey="id"
58                                                                            sortBy="name"
59                                                                            linkController="inventoryGroupDetailed"
60                                                                            linkAction="show"/>
61                                </td>
62                            </tr>
63
64                            <tr class="prop">
65                                <td valign="top" class="name">
66                                    <label>Report:</label>
67                                </td>
68                                <td valign="top" class="value">
69                                    <custom:jasperButtons jasper="inventoryValueDetailed" format="PDF, XLS" text="PDF" />
70                                </td>
71                            </tr>
72
73                        </g:jasperForm>
74
75                    </tbody>
76                </table>
77            </div> <!--End dialog-->
78        </div> <!--End body-->
79    </body>
80</html>
Note: See TracBrowser for help on using the repository browser.