| [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>Edit Supplier</title> | 
|---|
 | 8 |     </head> | 
|---|
 | 9 |     <body> | 
|---|
 | 10 |         <div class="nav"> | 
|---|
 | 11 |             <span class="menuButton"><g:link class="list" action="list">Supplier List</g:link></span> | 
|---|
 | 12 |             <span class="menuButton"><g:link class="create" action="create">New Supplier</g:link></span> | 
|---|
 | 13 |         </div> | 
|---|
 | 14 |         <div class="body"> | 
|---|
 | 15 |             <h1>Edit Supplier</h1> | 
|---|
 | 16 |             <g:if test="${flash.message}"> | 
|---|
 | 17 |             <div class="message">${flash.message}</div> | 
|---|
 | 18 |             </g:if> | 
|---|
 | 19 |             <g:hasErrors bean="${supplierInstance}"> | 
|---|
 | 20 |             <div class="errors"> | 
|---|
 | 21 |                 <g:renderErrors bean="${supplierInstance}" as="list" /> | 
|---|
 | 22 |             </div> | 
|---|
 | 23 |             </g:hasErrors> | 
|---|
 | 24 |             <g:form method="post" > | 
|---|
 | 25 |                 <input type="hidden" name="id" value="${supplierInstance?.id}" /> | 
|---|
 | 26 |                 <input type="hidden" name="version" value="${supplierInstance?.version}" /> | 
|---|
 | 27 |                 <div class="dialog"> | 
|---|
 | 28 |                     <table> | 
|---|
 | 29 |                         <tbody> | 
|---|
 | 30 |                          | 
|---|
 | 31 |                             <tr class="prop"> | 
|---|
 | 32 |                                 <td valign="top" class="name"> | 
|---|
 | 33 |                                     <label for="description">Description:</label> | 
|---|
 | 34 |                                 </td> | 
|---|
 | 35 |                                 <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'description','errors')}"> | 
|---|
 | 36 |                                     <input type="text" id="description" name="description" value="${fieldValue(bean:supplierInstance,field:'description')}"/> | 
|---|
 | 37 |                                 </td> | 
|---|
 | 38 |                             </tr>  | 
|---|
 | 39 |                          | 
|---|
 | 40 |                             <tr class="prop"> | 
|---|
 | 41 |                                 <td valign="top" class="name"> | 
|---|
 | 42 |                                     <label for="inventoryItems">Inventory Items:</label> | 
|---|
 | 43 |                                 </td> | 
|---|
 | 44 |                                 <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'inventoryItems','errors')}"> | 
|---|
 | 45 |                                      | 
|---|
 | 46 |                                 </td> | 
|---|
 | 47 |                             </tr>  | 
|---|
 | 48 |                          | 
|---|
 | 49 |                             <tr class="prop"> | 
|---|
 | 50 |                                 <td valign="top" class="name"> | 
|---|
 | 51 |                                     <label for="isActive">Is Active:</label> | 
|---|
 | 52 |                                 </td> | 
|---|
 | 53 |                                 <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'isActive','errors')}"> | 
|---|
 | 54 |                                     <g:checkBox name="isActive" value="${supplierInstance?.isActive}" ></g:checkBox> | 
|---|
 | 55 |                                 </td> | 
|---|
 | 56 |                             </tr>  | 
|---|
 | 57 |                          | 
|---|
 | 58 |                             <tr class="prop"> | 
|---|
 | 59 |                                 <td valign="top" class="name"> | 
|---|
 | 60 |                                     <label for="name">Name:</label> | 
|---|
 | 61 |                                 </td> | 
|---|
 | 62 |                                 <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'name','errors')}"> | 
|---|
 | 63 |                                     <input type="text" id="name" name="name" value="${fieldValue(bean:supplierInstance,field:'name')}"/> | 
|---|
 | 64 |                                 </td> | 
|---|
 | 65 |                             </tr>  | 
|---|
 | 66 |                          | 
|---|
 | 67 |                             <tr class="prop"> | 
|---|
 | 68 |                                 <td valign="top" class="name"> | 
|---|
 | 69 |                                     <label for="supplierType">Supplier Type:</label> | 
|---|
 | 70 |                                 </td> | 
|---|
 | 71 |                                 <td valign="top" class="value ${hasErrors(bean:supplierInstance,field:'supplierType','errors')}"> | 
|---|
 | 72 |                                     <g:select optionKey="id" from="${SupplierType.list()}" name="supplierType.id" value="${supplierInstance?.supplierType?.id}" ></g:select> | 
|---|
 | 73 |                                 </td> | 
|---|
 | 74 |                             </tr>  | 
|---|
 | 75 |                          | 
|---|
 | 76 |                         </tbody> | 
|---|
 | 77 |                     </table> | 
|---|
 | 78 |                 </div> | 
|---|
 | 79 |                 <div class="buttons"> | 
|---|
 | 80 |                     <span class="button"><g:actionSubmit class="save" value="Update" /></span> | 
|---|
 | 81 |                     <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> | 
|---|
 | 82 |                 </div> | 
|---|
 | 83 |             </g:form> | 
|---|
 | 84 |         </div> | 
|---|
 | 85 |     </body> | 
|---|
 | 86 | </html> | 
|---|