Changeset 551


Ignore:
Timestamp:
May 31, 2010, 11:26:26 AM (14 years ago)
Author:
gav
Message:

Small adjustment to inventory advanced search.
Only active assets and inventory locations are displayed in dropdowns.
Also add max of 10000 and sort by name.

File:
1 edited

Legend:

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

    r507 r551  
    187187                                                                            preferredManufacturer.name,
    188188                                                                            preferredSupplier.name"
    189                                     filterPropertyValues="${['inventoryLocation.name':[values:InventoryLocation.list()],
    190                                                                                 'spareFor.name':[values:Asset.list()],
    191                                                                                 'preferredManufacturer.name':[values:Manufacturer.findAllByIsActive(true)],
    192                                                                                 'preferredSupplier.name':[values:Supplier.findAllByIsActive(true)],
     189                                    filterPropertyValues="${['inventoryLocation.name':[values:InventoryLocation.findAllByIsActive(true, [max:10000, sort:'name'])],
     190                                                                                'spareFor.name':[values:Asset.findAllByIsActive(true, [max:10000, sort:'name'])],
     191                                                                                'preferredManufacturer.name':[values:Manufacturer.findAllByIsActive(true, [max:10000, sort:'name'])],
     192                                                                                'preferredSupplier.name':[values:Supplier.findAllByIsActive(true, [max:10000, sort:'name'])],
    193193                                                                                ]}"/>
    194194        </div> <!-- end body div -->
Note: See TracChangeset for help on using the changeset viewer.