| [116] | 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>Show InventoryLocation</title> | 
|---|
| [116] | 8 | </head> | 
|---|
|  | 9 | <body> | 
|---|
|  | 10 | <div class="nav"> | 
|---|
| [175] | 11 | <span class="menuButton"><g:link class="list" action="list">InventoryLocation List</g:link></span> | 
|---|
|  | 12 | <span class="menuButton"><g:link class="create" action="create">New InventoryLocation</g:link></span> | 
|---|
| [116] | 13 | </div> | 
|---|
|  | 14 | <div class="body"> | 
|---|
| [175] | 15 | <h1>Show InventoryLocation</h1> | 
|---|
| [116] | 16 | <g:if test="${flash.message}"> | 
|---|
|  | 17 | <div class="message">${flash.message}</div> | 
|---|
|  | 18 | </g:if> | 
|---|
|  | 19 | <div class="dialog"> | 
|---|
|  | 20 | <table> | 
|---|
|  | 21 | <tbody> | 
|---|
|  | 22 |  | 
|---|
|  | 23 |  | 
|---|
|  | 24 | <tr class="prop"> | 
|---|
|  | 25 | <td valign="top" class="name">Id:</td> | 
|---|
|  | 26 |  | 
|---|
| [175] | 27 | <td valign="top" class="value">${fieldValue(bean:inventoryLocationInstance, field:'id')}</td> | 
|---|
| [116] | 28 |  | 
|---|
|  | 29 | </tr> | 
|---|
|  | 30 |  | 
|---|
|  | 31 | <tr class="prop"> | 
|---|
| [175] | 32 | <td valign="top" class="name">Name:</td> | 
|---|
| [116] | 33 |  | 
|---|
| [175] | 34 | <td valign="top" class="value">${fieldValue(bean:inventoryLocationInstance, field:'name')}</td> | 
|---|
| [116] | 35 |  | 
|---|
|  | 36 | </tr> | 
|---|
|  | 37 |  | 
|---|
|  | 38 | <tr class="prop"> | 
|---|
| [175] | 39 | <td valign="top" class="name">Inventory Items:</td> | 
|---|
| [116] | 40 |  | 
|---|
| [175] | 41 | <td  valign="top" style="text-align:left;" class="value"> | 
|---|
|  | 42 | <ul> | 
|---|
|  | 43 | <g:each var="i" in="${inventoryLocationInstance.inventoryItems}"> | 
|---|
|  | 44 | <li><g:link controller="inventoryItem" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li> | 
|---|
|  | 45 | </g:each> | 
|---|
|  | 46 | </ul> | 
|---|
|  | 47 | </td> | 
|---|
| [116] | 48 |  | 
|---|
|  | 49 | </tr> | 
|---|
|  | 50 |  | 
|---|
|  | 51 | <tr class="prop"> | 
|---|
| [175] | 52 | <td valign="top" class="name">Inventory Store:</td> | 
|---|
| [116] | 53 |  | 
|---|
| [175] | 54 | <td valign="top" class="value"><g:link controller="inventoryStore" action="show" id="${inventoryLocationInstance?.inventoryStore?.id}">${inventoryLocationInstance?.inventoryStore?.encodeAsHTML()}</g:link></td> | 
|---|
| [116] | 55 |  | 
|---|
|  | 56 | </tr> | 
|---|
|  | 57 |  | 
|---|
|  | 58 | <tr class="prop"> | 
|---|
| [175] | 59 | <td valign="top" class="name">Is Active:</td> | 
|---|
| [116] | 60 |  | 
|---|
| [175] | 61 | <td valign="top" class="value">${fieldValue(bean:inventoryLocationInstance, field:'isActive')}</td> | 
|---|
| [116] | 62 |  | 
|---|
|  | 63 | </tr> | 
|---|
|  | 64 |  | 
|---|
|  | 65 | </tbody> | 
|---|
|  | 66 | </table> | 
|---|
|  | 67 | </div> | 
|---|
|  | 68 | <div class="buttons"> | 
|---|
|  | 69 | <g:form> | 
|---|
| [175] | 70 | <input type="hidden" name="id" value="${inventoryLocationInstance?.id}" /> | 
|---|
| [116] | 71 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> | 
|---|
|  | 72 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> | 
|---|
|  | 73 | </g:form> | 
|---|
|  | 74 | </div> | 
|---|
|  | 75 | </div> | 
|---|
|  | 76 | </body> | 
|---|
|  | 77 | </html> | 
|---|