Changeset 507
- Timestamp:
- Apr 23, 2010, 2:42:25 PM (15 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/InventoryItemDetailedController.groovy
r489 r507 202 202 List fields = ["name", 203 203 "description", 204 "inventoryGroup", 204 205 "unitsInStock", 205 206 "reorderPoint", … … 209 210 Map labels = ["name": "Name", 210 211 "description": "Description", 212 "inventoryGroup": "Group", 211 213 "unitsInStock":"In Stock", 212 214 "reorderPoint":"Reorder Point", -
trunk/grails-app/views/inventoryItemDetailed/search.gsp
r498 r507 117 117 <g:sortableColumn property="description" title="Description" params="${filterParams}" /> 118 118 119 <g:sortableColumn property="unitsInStock" title="Units In Stock" params="${filterParams}" /> 119 <g:sortableColumn property="inventoryGroup" title="Group" params="${filterParams}" /> 120 121 <g:sortableColumn property="unitsInStock" title="In Stock" params="${filterParams}" /> 120 122 121 <th>Unit Of Measure</th>123 <th>Unit</th> 122 124 123 125 <th></th> … … 145 147 <td onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"' > 146 148 ${fieldValue(bean:inventoryItemInstance, field:'description')} 149 </td> 150 151 <td onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"' > 152 ${fieldValue(bean:inventoryItemInstance, field:'inventoryGroup')} 147 153 </td> 148 154
Note: See TracChangeset
for help on using the changeset viewer.