Changeset 421 for trunk/grails-app/controllers
- Timestamp:
- Mar 2, 2010, 9:12:24 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/AssetDetailedController.groovy
r414 r421 63 63 def result = assetCsvService.importAssetTree(request) 64 64 65 if(!result.error) 65 if(!result.error) { 66 66 flash.message = g.message(code: "asset.tree.import.success") 67 else 68 flash.errorMessage = g.message(code: result.error.code, args: result.error.args) 69 67 redirect(action:search) 68 return 69 } 70 71 flash.errorMessage = g.message(code: result.error.code, args: result.error.args) 70 72 redirect(action: importAssetTree) 71 73 }
Note: See TracChangeset
for help on using the changeset viewer.