[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" /> |
---|
[139] | 7 | <title>Create InventoryItem</title> |
---|
| 8 | <nav:resources override="true"/> |
---|
[116] | 9 | </head> |
---|
| 10 | <body> |
---|
| 11 | <div class="nav"> |
---|
[139] | 12 | <nav:renderSubItems group="nav"/> |
---|
[116] | 13 | </div> |
---|
| 14 | <div class="body"> |
---|
[405] | 15 | <g:render template="/shared/messages" /> |
---|
[116] | 16 | <g:hasErrors bean="${inventoryItemInstance}"> |
---|
| 17 | <div class="errors"> |
---|
| 18 | <g:renderErrors bean="${inventoryItemInstance}" as="list" /> |
---|
| 19 | </div> |
---|
| 20 | </g:hasErrors> |
---|
| 21 | <g:form action="save" method="post" > |
---|
| 22 | <div class="dialog"> |
---|
| 23 | <table> |
---|
| 24 | <tbody> |
---|
| 25 | |
---|
| 26 | <tr class="prop"> |
---|
| 27 | <td valign="top" class="name"> |
---|
| 28 | <label for="name">Name:</label> |
---|
| 29 | </td> |
---|
| 30 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'name','errors')}"> |
---|
[175] | 31 | <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:inventoryItemInstance,field:'name')}"/> |
---|
[116] | 32 | </td> |
---|
[422] | 33 | </tr> |
---|
| 34 | |
---|
[116] | 35 | <tr class="prop"> |
---|
| 36 | <td valign="top" class="name"> |
---|
| 37 | <label for="description">Description:</label> |
---|
| 38 | </td> |
---|
| 39 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'description','errors')}"> |
---|
[422] | 40 | <textarea rows="5" cols="40" name="description">${fieldValue(bean:inventoryItemInstance, field:'description')}</textarea> |
---|
[116] | 41 | </td> |
---|
[175] | 42 | </tr> |
---|
[182] | 43 | |
---|
[175] | 44 | <tr class="prop"> |
---|
| 45 | <td valign="top" class="name"> |
---|
[422] | 46 | <label for="comment">Comment:</label> |
---|
| 47 | </td> |
---|
| 48 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'comment','errors')}"> |
---|
| 49 | <textarea rows="5" cols="40" name="comment">${fieldValue(bean:inventoryItemInstance, field:'comment')}</textarea> |
---|
| 50 | </td> |
---|
| 51 | </tr> |
---|
| 52 | |
---|
| 53 | <tr class="prop"> |
---|
| 54 | <td valign="top" class="name"> |
---|
[182] | 55 | <label for="inventoryLocation">Inventory Location:</label> |
---|
[175] | 56 | </td> |
---|
[182] | 57 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'inventoryLocation','errors')}"> |
---|
[382] | 58 | <g:select optionKey="id" |
---|
| 59 | from="${ InventoryLocation.list().sort { p1, p2 -> p1.toString().compareToIgnoreCase(p2.toString()) } }" |
---|
[392] | 60 | name="inventoryLocation.id" value="${inventoryItemInstance?.inventoryLocation?.id}" |
---|
| 61 | optionValue="${{it.name+ ' in ' + it.inventoryStore}}"> |
---|
[382] | 62 | </g:select> |
---|
| 63 | |
---|
[410] | 64 | <p><g:link controller="inventoryLocationDetailed" action="create">+Add Location</g:link></p> |
---|
[175] | 65 | </td> |
---|
| 66 | </tr> |
---|
[116] | 67 | |
---|
| 68 | <tr class="prop"> |
---|
| 69 | <td valign="top" class="name"> |
---|
| 70 | <label for="reorderPoint">Reorder Point:</label> |
---|
| 71 | </td> |
---|
[223] | 72 | <td valign="top"> |
---|
| 73 | <input class="medium ${hasErrors(bean:inventoryItemInstance,field:'reorderPoint','errors')}" |
---|
| 74 | type="text" id="reorderPoint" name="reorderPoint" |
---|
| 75 | value="${fieldValue(bean:inventoryItemInstance,field:'reorderPoint')}" /> |
---|
[382] | 76 | <g:select optionKey="id" |
---|
| 77 | from="${UnitOfMeasure.list()}" |
---|
| 78 | name="unitOfMeasure.id" |
---|
| 79 | value="${inventoryItemInstance?.unitOfMeasure?.id}" > |
---|
| 80 | </g:select> |
---|
[116] | 81 | </td> |
---|
| 82 | </tr> |
---|
| 83 | |
---|
| 84 | <tr class="prop"> |
---|
| 85 | <td valign="top" class="name"> |
---|
| 86 | <label for="enableReorder">Enable Reorder:</label> |
---|
| 87 | </td> |
---|
| 88 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'enableReorder','errors')}"> |
---|
| 89 | <g:checkBox name="enableReorder" value="${inventoryItemInstance?.enableReorder}" ></g:checkBox> |
---|
| 90 | </td> |
---|
[175] | 91 | </tr> |
---|
[116] | 92 | |
---|
| 93 | <tr class="prop"> |
---|
| 94 | <td valign="top" class="name"> |
---|
| 95 | <label for="inventoryGroup">Inventory Group:</label> |
---|
| 96 | </td> |
---|
| 97 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'inventoryGroup','errors')}"> |
---|
| 98 | <g:select optionKey="id" from="${InventoryGroup.list()}" name="inventoryGroup.id" value="${inventoryItemInstance?.inventoryGroup?.id}" ></g:select> |
---|
[382] | 99 | |
---|
[410] | 100 | <p><g:link controller="inventoryGroupDetailed" action="create">+Add Group</g:link></p> |
---|
[116] | 101 | </td> |
---|
| 102 | </tr> |
---|
| 103 | |
---|
| 104 | <tr class="prop"> |
---|
| 105 | <td valign="top" class="name"> |
---|
| 106 | <label for="inventoryType">Inventory Type:</label> |
---|
| 107 | </td> |
---|
| 108 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'inventoryType','errors')}"> |
---|
| 109 | <g:select optionKey="id" from="${InventoryType.list()}" name="inventoryType.id" value="${inventoryItemInstance?.inventoryType?.id}" ></g:select> |
---|
| 110 | </td> |
---|
[175] | 111 | </tr> |
---|
[116] | 112 | |
---|
| 113 | <tr class="prop"> |
---|
| 114 | <td valign="top" class="name"> |
---|
[223] | 115 | <label for="averageDeliveryTime">Average Delivery Time:</label> |
---|
[116] | 116 | </td> |
---|
[223] | 117 | <td valign="top"> |
---|
| 118 | <input class="medium ${hasErrors(bean:inventoryItemInstance,field:'averageDeliveryTime','errors')}" |
---|
| 119 | type="text" id="averageDeliveryTime" name="averageDeliveryTime" |
---|
| 120 | value="${fieldValue(bean:inventoryItemInstance,field:'averageDeliveryTime')}" /> |
---|
| 121 | <g:select optionKey="id" from="${Period.list()}" name="averageDeliveryPeriod.id" value="${inventoryItemInstance?.averageDeliveryPeriod?.id}" noSelection="['null':'--None--']"></g:select> |
---|
[116] | 122 | </td> |
---|
[175] | 123 | </tr> |
---|
[116] | 124 | |
---|
| 125 | <tr class="prop"> |
---|
| 126 | <td valign="top" class="name"> |
---|
[405] | 127 | <label for="averageDeliveryTime">Estimated Unit Price:</label> |
---|
| 128 | </td> |
---|
| 129 | <td valign="top"> |
---|
| 130 | <input class="medium ${hasErrors(bean:inventoryItemInstance,field:'estimatedUnitPriceAmount','errors')}" |
---|
| 131 | type="text" id="estimatedUnitPriceAmount" name="estimatedUnitPriceAmount" |
---|
| 132 | value="${fieldValue(bean:inventoryItemInstance,field:'estimatedUnitPriceAmount')}" /> |
---|
| 133 | <g:currencySelect name="estimatedUnitPriceCurrency" |
---|
| 134 | value="${inventoryItemInstance.estimatedUnitPriceCurrency}" /> |
---|
| 135 | </td> |
---|
| 136 | </tr> |
---|
| 137 | |
---|
| 138 | <tr class="prop"> |
---|
| 139 | <td valign="top" class="name"> |
---|
[116] | 140 | <label for="suppliersPartNumber">Suppliers Part Number:</label> |
---|
| 141 | </td> |
---|
| 142 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'suppliersPartNumber','errors')}"> |
---|
| 143 | <input type="text" id="suppliersPartNumber" name="suppliersPartNumber" value="${fieldValue(bean:inventoryItemInstance,field:'suppliersPartNumber')}"/> |
---|
| 144 | </td> |
---|
[175] | 145 | </tr> |
---|
[116] | 146 | |
---|
| 147 | <tr class="prop"> |
---|
| 148 | <td valign="top" class="name"> |
---|
[435] | 149 | <label for="preferredSupplier">Preferred Supplier:</label> |
---|
[116] | 150 | </td> |
---|
[435] | 151 | <td valign="top"> |
---|
| 152 | <g:select optionKey="id" from="${suppliers}" name="preferredSupplier.id" value="${inventoryItemInstance.preferredSupplier?.id}" noSelection="['null':'--None--']"></g:select> |
---|
[175] | 153 | |
---|
[435] | 154 | <p><g:link controller="supplierDetailed" action="create">+Add Supplier</g:link></p> |
---|
[116] | 155 | </td> |
---|
[175] | 156 | </tr> |
---|
[116] | 157 | |
---|
| 158 | <tr class="prop"> |
---|
| 159 | <td valign="top" class="name"> |
---|
[435] | 160 | <label for="alternateSuppliers">Alternate Suppliers:</label> |
---|
| 161 | </td> |
---|
| 162 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'alternateSuppliers','errors')}"> |
---|
| 163 | <g:select id="alternateSuppliers" name="alternateSuppliers" |
---|
| 164 | from="${suppliers}" |
---|
| 165 | size="5" multiple="yes" optionKey="id" |
---|
| 166 | value="${inventoryItemInstance.alternateSuppliers?.id}" noSelection="['':'--None--']"/> |
---|
| 167 | </td> |
---|
| 168 | </tr> |
---|
| 169 | |
---|
| 170 | <tr class="prop"> |
---|
| 171 | <td valign="top" class="name"> |
---|
[223] | 172 | <label for="manufacturersPartNumber">Manufacturers Part Number:</label> |
---|
[116] | 173 | </td> |
---|
[223] | 174 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'manufacturersPartNumber','errors')}"> |
---|
| 175 | <input type="text" id="manufacturersPartNumber" name="manufacturersPartNumber" value="${fieldValue(bean:inventoryItemInstance,field:'manufacturersPartNumber')}"/> |
---|
[116] | 176 | </td> |
---|
[223] | 177 | </tr> |
---|
| 178 | |
---|
| 179 | <tr class="prop"> |
---|
| 180 | <td valign="top" class="name"> |
---|
[435] | 181 | <label for="preferredManufacturer">Preferred Manufacturer:</label> |
---|
[223] | 182 | </td> |
---|
[435] | 183 | <td valign="top"> |
---|
| 184 | <g:select optionKey="id" from="${manufacturers}" name="preferredManufacturer.id" value="${inventoryItemInstance?.preferredManufacturer?.id}" noSelection="['null':'--None--']"></g:select> |
---|
[223] | 185 | |
---|
[410] | 186 | <p><g:link controller="manufacturerDetailed" action="create">+Add Manufacturer</g:link></p> |
---|
[223] | 187 | </td> |
---|
[175] | 188 | </tr> |
---|
[116] | 189 | |
---|
[435] | 190 | <tr class="prop"> |
---|
| 191 | <td valign="top" class="name"> |
---|
| 192 | <label for="manufacturers">Alternate Manufacturers:</label> |
---|
| 193 | </td> |
---|
| 194 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'alternateManufacturers','errors')}"> |
---|
| 195 | <g:select id="alternateManufacturers" name="alternateManufacturers" |
---|
| 196 | from="${manufacturers}" |
---|
| 197 | size="5" multiple="yes" optionKey="id" |
---|
| 198 | value="${inventoryItemInstance.alternateManufacturers?.id}" noSelection="['':'--None--']" /> |
---|
| 199 | </td> |
---|
| 200 | </tr> |
---|
| 201 | |
---|
[116] | 202 | </tbody> |
---|
| 203 | </table> |
---|
| 204 | </div> |
---|
| 205 | <div class="buttons"> |
---|
| 206 | <span class="button"><input class="save" type="submit" value="Create" /></span> |
---|
| 207 | </div> |
---|
| 208 | </g:form> |
---|
| 209 | </div> |
---|
| 210 | </body> |
---|
| 211 | </html> |
---|