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>Create InventoryItem</title> |
---|
8 | <nav:resources override="true"/> |
---|
9 | </head> |
---|
10 | <body> |
---|
11 | <div class="nav"> |
---|
12 | <nav:renderSubItems group="nav"/> |
---|
13 | </div> |
---|
14 | <div class="body"> |
---|
15 | <g:render template="/shared/messages" /> |
---|
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')}"> |
---|
31 | <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:inventoryItemInstance,field:'name')}"/> |
---|
32 | </td> |
---|
33 | </tr> |
---|
34 | |
---|
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')}"> |
---|
40 | <textarea rows="5" cols="40" name="description">${fieldValue(bean:inventoryItemInstance, field:'description')}</textarea> |
---|
41 | </td> |
---|
42 | </tr> |
---|
43 | |
---|
44 | <tr class="prop"> |
---|
45 | <td valign="top" class="name"> |
---|
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"> |
---|
55 | <label for="inventoryLocation">Inventory Location:</label> |
---|
56 | </td> |
---|
57 | <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'inventoryLocation','errors')}"> |
---|
58 | <g:select optionKey="id" |
---|
59 | from="${ InventoryLocation.list().sort { p1, p2 -> p1.toString().compareToIgnoreCase(p2.toString()) } }" |
---|
60 | name="inventoryLocation.id" value="${inventoryItemInstance?.inventoryLocation?.id}" |
---|
61 | optionValue="${{it.name+ ' in ' + it.inventoryStore}}"> |
---|
62 | </g:select> |
---|
63 | |
---|
64 | <p><g:link controller="inventoryLocationDetailed" action="create">+Add Location</g:link></p> |
---|
65 | </td> |
---|
66 | </tr> |
---|
67 | |
---|
68 | <tr class="prop"> |
---|
69 | <td valign="top" class="name"> |
---|
70 | <label for="reorderPoint">Reorder Point:</label> |
---|
71 | </td> |
---|
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')}" /> |
---|
76 | <g:select optionKey="id" |
---|
77 | from="${UnitOfMeasure.list()}" |
---|
78 | name="unitOfMeasure.id" |
---|
79 | value="${inventoryItemInstance?.unitOfMeasure?.id}" > |
---|
80 | </g:select> |
---|
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> |
---|
91 | </tr> |
---|
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> |
---|
99 | |
---|
100 | <p><g:link controller="inventoryGroupDetailed" action="create">+Add Group</g:link></p> |
---|
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> |
---|
111 | </tr> |
---|
112 | |
---|
113 | <tr class="prop"> |
---|
114 | <td valign="top" class="name"> |
---|
115 | <label for="averageDeliveryTime">Average Delivery Time:</label> |
---|
116 | </td> |
---|
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> |
---|
122 | </td> |
---|
123 | </tr> |
---|
124 | |
---|
125 | <tr class="prop"> |
---|
126 | <td valign="top" class="name"> |
---|
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"> |
---|
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> |
---|
145 | </tr> |
---|
146 | |
---|
147 | <tr class="prop"> |
---|
148 | <td valign="top" class="name"> |
---|
149 | <label for="preferredSupplier">Preferred Supplier:</label> |
---|
150 | </td> |
---|
151 | <td valign="top"> |
---|
152 | <g:select optionKey="id" from="${suppliers}" name="preferredSupplier.id" value="${inventoryItemInstance.preferredSupplier?.id}" noSelection="['null':'--None--']"></g:select> |
---|
153 | |
---|
154 | <p><g:link controller="supplierDetailed" action="create">+Add Supplier</g:link></p> |
---|
155 | </td> |
---|
156 | </tr> |
---|
157 | |
---|
158 | <tr class="prop"> |
---|
159 | <td valign="top" class="name"> |
---|
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"> |
---|
172 | <label for="manufacturersPartNumber">Manufacturers Part Number:</label> |
---|
173 | </td> |
---|
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')}"/> |
---|
176 | </td> |
---|
177 | </tr> |
---|
178 | |
---|
179 | <tr class="prop"> |
---|
180 | <td valign="top" class="name"> |
---|
181 | <label for="preferredManufacturer">Preferred Manufacturer:</label> |
---|
182 | </td> |
---|
183 | <td valign="top"> |
---|
184 | <g:select optionKey="id" from="${manufacturers}" name="preferredManufacturer.id" value="${inventoryItemInstance?.preferredManufacturer?.id}" noSelection="['null':'--None--']"></g:select> |
---|
185 | |
---|
186 | <p><g:link controller="manufacturerDetailed" action="create">+Add Manufacturer</g:link></p> |
---|
187 | </td> |
---|
188 | </tr> |
---|
189 | |
---|
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 | |
---|
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> |
---|