Changeset 687 for trunk/grails-app/services
- Timestamp:
- Oct 6, 2010, 1:55:47 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/AssetReportService.groovy
r686 r687 111 111 'left join asset.assetExtendedAttributes as attrib', 112 112 'left join attrib.extendedAttributeType as attribT' 113 if(params. asset instanceof Asset) {114 namedParams. asset = params.asset115 where 'asset = :asset'113 if(params.section instanceof Section) { 114 namedParams.section = params.section 115 where 'asset.section = :section' 116 116 } 117 117 order 'by asset.name asc, attribT.name asc'
Note: See TracChangeset
for help on using the changeset viewer.