Changeset 644


Ignore:
Timestamp:
Sep 5, 2010, 10:08:42 PM (14 years ago)
Author:
gav
Message:

Small change to InventoryItem search view, remove unit as a table column and add location to description column.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/inventoryItemDetailed/search.gsp

    r635 r644  
    186186                           
    187187                                <g:sortableColumn property="unitsInStock" title="In Stock" params="${filterParams}" />
    188                                
    189                                 <th>Unit</th>
    190188
    191189                                <th></th>
     
    213211                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"' >
    214212                                    ${fieldValue(bean:inventoryItemInstance, field:'description')}
     213                                    <br />
     214                                    <br />
     215                                    Location: ${inventoryItemInstance.inventoryLocation?.encodeAsHTML()}
     216                                    in ${inventoryItemInstance.inventoryLocation?.inventoryStore.encodeAsHTML()}<br />
    215217                                </td>
    216218                           
     
    221223                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"' >
    222224                                    ${fieldValue(bean:inventoryItemInstance, field:'unitsInStock')}
    223                                 </td>
    224                            
    225                                 <td onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"' >
    226225                                    ${fieldValue(bean:inventoryItemInstance, field:'unitOfMeasure')}
    227226                                </td>
     
    316315                                                Purchases
    317316                                </g:link>
     317                                <br />
     318                                <g:link controller="inventoryItemDetailed"
     319                                                action="reorder">
     320                                                Reorder
     321                                </g:link>
    318322                            </td>
    319323                        </tr>
Note: See TracChangeset for help on using the changeset viewer.