- Timestamp:
- Feb 18, 2010, 1:29:00 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/InventoryItemDetailedController.groovy
r298 r375 56 56 // In the case of an actionSubmit button, rewrite action name from 'index'. 57 57 if(params._action_Show) 58 { params.action='show' }58 params.action='show' 59 59 60 60 if(!InventoryItem.exists(params.id)) { … … 107 107 108 108 def edit = { 109 109 110 110 // In the case of an actionSubmit button, rewrite action name from 'index'. 111 111 if(params._action_Edit) 112 { params.action='edit' }113 112 params.action='edit' 113 114 114 def inventoryItemInstance = InventoryItem.get( params.id ) 115 115
Note: See TracChangeset
for help on using the changeset viewer.