Changeset 716 for trunk/grails-app/views/inventoryItemDetailed/create.gsp
- Timestamp:
- Nov 23, 2010, 1:53:29 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/inventoryItemDetailed/create.gsp
r616 r716 30 30 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'name','errors')}"> 31 31 <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:inventoryItemInstance,field:'name')}"/> 32 <g:helpBalloon class="helpballoon" code="inventory.item.name" /> 32 33 </td> 33 34 </tr> … … 39 40 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'description','errors')}"> 40 41 <textarea rows="5" cols="40" name="description">${fieldValue(bean:inventoryItemInstance, field:'description')}</textarea> 42 <g:helpBalloon class="helpballoon" code="inventory.item.description" /> 41 43 </td> 42 44 </tr> … … 48 50 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'comment','errors')}"> 49 51 <textarea rows="5" cols="40" name="comment">${fieldValue(bean:inventoryItemInstance, field:'comment')}</textarea> 52 <g:helpBalloon class="helpballoon" code="inventory.item.comment" /> 50 53 </td> 51 54 </tr> … … 61 64 optionValue="${{it.name+ ' in ' + it.inventoryStore}}"> 62 65 </g:select> 66 <g:helpBalloon class="helpballoon" code="inventory.item.inventory.location" /> 63 67 64 68 <p><g:link controller="inventoryLocationDetailed" action="create">+Add Location</g:link></p> … … 74 78 type="text" id="reorderPoint" name="reorderPoint" 75 79 value="${fieldValue(bean:inventoryItemInstance,field:'reorderPoint')}" /> 80 <g:helpBalloon class="helpballoon" code="inventory.item.reorder.point" /> 76 81 <g:select optionKey="id" 77 82 from="${UnitOfMeasure.list()}" … … 79 84 value="${inventoryItemInstance?.unitOfMeasure?.id}" > 80 85 </g:select> 86 <g:helpBalloon class="helpballoon" code="inventory.item.unit.of.measure" /> 81 87 </td> 82 88 </tr> … … 88 94 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'enableReorderListing','errors')}"> 89 95 <g:checkBox name="enableReorderListing" value="${inventoryItemInstance?.enableReorderListing}" ></g:checkBox> 96 <g:helpBalloon class="helpballoon" code="inventory.item.enable.reorder.listing" /> 90 97 </td> 91 98 </tr> … … 97 104 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'inventoryGroup','errors')}"> 98 105 <g:select optionKey="id" from="${InventoryGroup.list()}" name="inventoryGroup.id" value="${inventoryItemInstance?.inventoryGroup?.id}" ></g:select> 99 106 <g:helpBalloon class="helpballoon" code="inventory.item.inventory.group" /> 100 107 <p><g:link controller="inventoryGroupDetailed" action="create">+Add Group</g:link></p> 101 108 </td> … … 108 115 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'inventoryType','errors')}"> 109 116 <g:select optionKey="id" from="${InventoryType.list()}" name="inventoryType.id" value="${inventoryItemInstance?.inventoryType?.id}" ></g:select> 117 <g:helpBalloon class="helpballoon" code="inventory.item.inventory.type" /> 110 118 </td> 111 119 </tr> … … 120 128 value="${fieldValue(bean:inventoryItemInstance,field:'averageDeliveryTime')}" /> 121 129 <g:select optionKey="id" from="${Period.list()}" name="averageDeliveryPeriod.id" value="${inventoryItemInstance?.averageDeliveryPeriod?.id}" noSelection="['null':'--None--']"></g:select> 130 <g:helpBalloon class="helpballoon" code="inventory.item.average.delivery.time" /> 122 131 </td> 123 132 </tr> … … 135 144 from="${grailsApplication.config.currencyList}"> 136 145 </g:currencySelect> 146 <g:helpBalloon class="helpballoon" code="inventory.item.estimated.unit.price.amount" /> 137 147 </td> 138 148 </tr> … … 144 154 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'suppliersPartNumber','errors')}"> 145 155 <input type="text" id="suppliersPartNumber" name="suppliersPartNumber" value="${fieldValue(bean:inventoryItemInstance,field:'suppliersPartNumber')}"/> 156 <g:helpBalloon class="helpballoon" code="inventory.item.suppliers.part.number" /> 146 157 </td> 147 158 </tr> … … 153 164 <td valign="top"> 154 165 <g:select optionKey="id" from="${suppliers}" name="preferredSupplier.id" value="${inventoryItemInstance.preferredSupplier?.id}" noSelection="['null':'--None--']"></g:select> 155 166 <g:helpBalloon class="helpballoon" code="inventory.item.preferred.supplier" /> 156 167 <p><g:link controller="supplierDetailed" action="create">+Add Supplier</g:link></p> 157 168 </td> … … 167 178 size="5" multiple="yes" optionKey="id" 168 179 value="${inventoryItemInstance.alternateSuppliers?.id}" noSelection="['':'--None--']"/> 180 <g:helpBalloon class="helpballoon" code="inventory.item.alternate.suppliers" /> 169 181 </td> 170 182 </tr>
Note: See TracChangeset
for help on using the changeset viewer.