| [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" /> | 
|---|
 | 7 |         <title>Show InventoryMovement</title> | 
|---|
 | 8 |     </head> | 
|---|
 | 9 |     <body> | 
|---|
 | 10 |         <div class="nav"> | 
|---|
 | 11 |             <span class="menuButton"><g:link class="list" action="list">InventoryMovement List</g:link></span> | 
|---|
 | 12 |             <span class="menuButton"><g:link class="create" action="create">New InventoryMovement</g:link></span> | 
|---|
 | 13 |         </div> | 
|---|
 | 14 |         <div class="body"> | 
|---|
 | 15 |             <h1>Show InventoryMovement</h1> | 
|---|
 | 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 |                              | 
|---|
 | 27 |                             <td valign="top" class="value">${fieldValue(bean:inventoryMovementInstance, field:'id')}</td> | 
|---|
 | 28 |                              | 
|---|
 | 29 |                         </tr> | 
|---|
 | 30 |                      | 
|---|
 | 31 |                         <tr class="prop"> | 
|---|
 | 32 |                             <td valign="top" class="name">Inventory Item:</td> | 
|---|
 | 33 |                              | 
|---|
 | 34 |                             <td valign="top" class="value"><g:link controller="inventoryItem" action="show" id="${inventoryMovementInstance?.inventoryItem?.id}">${inventoryMovementInstance?.inventoryItem?.encodeAsHTML()}</g:link></td> | 
|---|
 | 35 |                              | 
|---|
 | 36 |                         </tr> | 
|---|
 | 37 |                      | 
|---|
 | 38 |                         <tr class="prop"> | 
|---|
 | 39 |                             <td valign="top" class="name">Quantity:</td> | 
|---|
 | 40 |                              | 
|---|
 | 41 |                             <td valign="top" class="value">${fieldValue(bean:inventoryMovementInstance, field:'quantity')}</td> | 
|---|
 | 42 |                              | 
|---|
 | 43 |                         </tr> | 
|---|
 | 44 |                      | 
|---|
 | 45 |                         <tr class="prop"> | 
|---|
 | 46 |                             <td valign="top" class="name">Inventory Movement Type:</td> | 
|---|
 | 47 |                              | 
|---|
 | 48 |                             <td valign="top" class="value"><g:link controller="inventoryMovementType" action="show" id="${inventoryMovementInstance?.inventoryMovementType?.id}">${inventoryMovementInstance?.inventoryMovementType?.encodeAsHTML()}</g:link></td> | 
|---|
 | 49 |                              | 
|---|
 | 50 |                         </tr> | 
|---|
 | 51 |                      | 
|---|
 | 52 |                         <tr class="prop"> | 
|---|
 | 53 |                             <td valign="top" class="name">Task:</td> | 
|---|
 | 54 |                              | 
|---|
 | 55 |                             <td valign="top" class="value"><g:link controller="task" action="show" id="${inventoryMovementInstance?.task?.id}">${inventoryMovementInstance?.task?.encodeAsHTML()}</g:link></td> | 
|---|
 | 56 |                              | 
|---|
 | 57 |                         </tr> | 
|---|
 | 58 |                      | 
|---|
 | 59 |                         <tr class="prop"> | 
|---|
| [217] | 60 |                             <td valign="top" class="name">Person:</td> | 
|---|
 | 61 |                              | 
|---|
 | 62 |                             <td valign="top" class="value"><g:link controller="person" action="show" id="${inventoryMovementInstance?.person?.id}">${inventoryMovementInstance?.person?.encodeAsHTML()}</g:link></td> | 
|---|
 | 63 |                              | 
|---|
 | 64 |                         </tr> | 
|---|
 | 65 |                      | 
|---|
 | 66 |                         <tr class="prop"> | 
|---|
| [116] | 67 |                             <td valign="top" class="name">Date:</td> | 
|---|
 | 68 |                              | 
|---|
 | 69 |                             <td valign="top" class="value">${fieldValue(bean:inventoryMovementInstance, field:'date')}</td> | 
|---|
 | 70 |                              | 
|---|
 | 71 |                         </tr> | 
|---|
 | 72 |                      | 
|---|
 | 73 |                     </tbody> | 
|---|
 | 74 |                 </table> | 
|---|
 | 75 |             </div> | 
|---|
 | 76 |             <div class="buttons"> | 
|---|
 | 77 |                 <g:form> | 
|---|
 | 78 |                     <input type="hidden" name="id" value="${inventoryMovementInstance?.id}" /> | 
|---|
 | 79 |                     <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> | 
|---|
 | 80 |                     <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> | 
|---|
 | 81 |                 </g:form> | 
|---|
 | 82 |             </div> | 
|---|
 | 83 |         </div> | 
|---|
 | 84 |     </body> | 
|---|
 | 85 | </html> | 
|---|