[668] | 1 | <html> |
---|
| 2 | <head> |
---|
| 3 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 4 | <meta name="layout" content="main" /> |
---|
[671] | 5 | <title>Inventory Detailed Value Report</title> |
---|
[668] | 6 | <nav:resources override="true"/> |
---|
| 7 | </head> |
---|
| 8 | <body> |
---|
| 9 | <div class="nav"> |
---|
| 10 | <nav:renderSubItems group="nav"/> |
---|
| 11 | </div> |
---|
| 12 | <div class="body"> |
---|
[671] | 13 | <h1>Inventory Detailed Value Report</h1> |
---|
[668] | 14 | <g:render template="/shared/messages" /> |
---|
| 15 | <div class="dialog"> |
---|
| 16 | <table> |
---|
| 17 | <tbody> |
---|
| 18 | |
---|
| 19 | <g:jasperForm controller="report" |
---|
[671] | 20 | action="inventoryValueDetailed" |
---|
| 21 | jasper="inventoryValueDetailed" |
---|
| 22 | name="Inventory Value Detailed"> |
---|
[668] | 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"> |
---|
[673] | 38 | <label>Inventory Types:</label> |
---|
[668] | 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" |
---|
[674] | 46 | linkAction="show" |
---|
| 47 | height="150px"/> |
---|
[668] | 48 | </td> |
---|
| 49 | </tr> |
---|
| 50 | |
---|
| 51 | <tr class="prop"> |
---|
| 52 | <td valign="top" class="name"> |
---|
[673] | 53 | <label>Inventory Groups:</label> |
---|
[668] | 54 | </td> |
---|
| 55 | <td valign="top" class="value"> |
---|
| 56 | <custom:checkBoxList name="inventoryGroups" |
---|
| 57 | from="${InventoryGroup.findAllByIsActive(true)}" |
---|
| 58 | optionKey="id" |
---|
| 59 | sortBy="name" |
---|
| 60 | linkController="inventoryGroupDetailed" |
---|
[674] | 61 | linkAction="show" |
---|
| 62 | height="150px"/> |
---|
[668] | 63 | </td> |
---|
| 64 | </tr> |
---|
| 65 | |
---|
| 66 | <tr class="prop"> |
---|
| 67 | <td valign="top" class="name"> |
---|
| 68 | <label>Report:</label> |
---|
| 69 | </td> |
---|
| 70 | <td valign="top" class="value"> |
---|
[672] | 71 | <custom:jasperButtons jasper="inventoryValueDetailed" format="PDF, XLS" text="PDF" /> |
---|
[668] | 72 | </td> |
---|
| 73 | </tr> |
---|
| 74 | |
---|
| 75 | </g:jasperForm> |
---|
| 76 | |
---|
| 77 | </tbody> |
---|
| 78 | </table> |
---|
| 79 | </div> <!--End dialog--> |
---|
| 80 | </div> <!--End body--> |
---|
| 81 | </body> |
---|
| 82 | </html> |
---|