- Timestamp:
- Feb 18, 2010, 3:09:18 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/InventoryLocationDetailedController.groovy
r298 r377 18 18 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_InventoryManager', 'ROLE_InventoryUser']) 19 19 def show = { 20 21 // In the case of an actionSubmit button, rewrite action name from 'index'. 22 if(params._action_Show) 23 params.action='show' 24 20 25 def inventoryLocationInstance = InventoryLocation.get( params.id ) 21 26 … … 47 52 48 53 def edit = { 54 55 // In the case of an actionSubmit button, rewrite action name from 'index'. 56 if(params._action_Edit) 57 params.action='edit' 58 49 59 def inventoryLocationInstance = InventoryLocation.get( params.id ) 50 60
Note: See TracChangeset
for help on using the changeset viewer.