[125] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
[175] | 7 | <title>InventoryLocation List</title> |
---|
[377] | 8 | <nav:resources override="true"/> |
---|
[125] | 9 | </head> |
---|
| 10 | <body> |
---|
| 11 | <div class="nav"> |
---|
[377] | 12 | <nav:renderSubItems group="navAlt"/> |
---|
[125] | 13 | </div> |
---|
| 14 | <div class="body"> |
---|
| 15 | <g:if test="${flash.message}"> |
---|
| 16 | <div class="message">${flash.message}</div> |
---|
| 17 | </g:if> |
---|
| 18 | <div class="list"> |
---|
| 19 | <table> |
---|
| 20 | <thead> |
---|
| 21 | <tr> |
---|
| 22 | |
---|
[377] | 23 | <g:sortableColumn property="id" title="Id" /> |
---|
| 24 | |
---|
| 25 | <g:sortableColumn property="name" title="Name" /> |
---|
| 26 | |
---|
| 27 | <th>Inventory Store</th> |
---|
| 28 | |
---|
| 29 | <g:sortableColumn property="isActive" title="Is Active" /> |
---|
| 30 | |
---|
| 31 | <th></th> |
---|
[125] | 32 | |
---|
| 33 | </tr> |
---|
| 34 | </thead> |
---|
| 35 | <tbody> |
---|
[175] | 36 | <g:each in="${inventoryLocationInstanceList}" status="i" var="inventoryLocationInstance"> |
---|
[498] | 37 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> |
---|
[377] | 38 | |
---|
[125] | 39 | |
---|
[498] | 40 | <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'> |
---|
| 41 | ${fieldValue(bean:inventoryLocationInstance, field:'id')} |
---|
| 42 | </td> |
---|
[125] | 43 | |
---|
[498] | 44 | <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'> |
---|
| 45 | ${fieldValue(bean:inventoryLocationInstance, field:'name')} |
---|
| 46 | </td> |
---|
[125] | 47 | |
---|
[498] | 48 | <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'> |
---|
| 49 | ${fieldValue(bean:inventoryLocationInstance, field:'inventoryStore')} |
---|
| 50 | </td> |
---|
[125] | 51 | |
---|
[498] | 52 | <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'> |
---|
| 53 | ${fieldValue(bean:inventoryLocationInstance, field:'isActive')} |
---|
| 54 | </td> |
---|
[377] | 55 | |
---|
[498] | 56 | <td class="notClickable"> |
---|
[377] | 57 | <g:link action="show" id="${inventoryLocationInstance.id}"> |
---|
| 58 | <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" /> |
---|
| 59 | </g:link> |
---|
| 60 | </td> |
---|
[125] | 61 | |
---|
| 62 | </tr> |
---|
| 63 | </g:each> |
---|
| 64 | </tbody> |
---|
| 65 | </table> |
---|
| 66 | </div> |
---|
| 67 | <div class="paginateButtons"> |
---|
[175] | 68 | <g:paginate total="${inventoryLocationInstanceTotal}" /> |
---|
[125] | 69 | </div> |
---|
| 70 | </div> |
---|
| 71 | </body> |
---|
| 72 | </html> |
---|