Changeset 375
- Timestamp:
- Feb 18, 2010, 1:29:00 AM (15 years ago)
- Location:
- trunk/grails-app/controllers
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/AssetDetailedController.groovy
r350 r375 217 217 // In the case of an actionSubmit button, rewrite action name from 'index'. 218 218 if(params._action_Show) 219 { params.action='show' }219 params.action='show' 220 220 221 221 def assetInstance = Asset.get( params.id ) … … 257 257 // In the case of an actionSubmit button, rewrite action name from 'index'. 258 258 if(params._action_Edit) 259 { params.action='edit' }259 params.action='edit' 260 260 261 261 def assetInstance = Asset.get( params.id ) -
trunk/grails-app/controllers/AssetSubItemDetailedController.groovy
r369 r375 101 101 // In the case of an actionSubmit button, rewrite action name from 'index'. 102 102 if(params._action_Show) 103 { params.action='show' }103 params.action='show' 104 104 105 105 def assetSubItemInstance = AssetSubItem.get( params.id ) … … 135 135 // In the case of an actionSubmit button, rewrite action name from 'index'. 136 136 if(params._action_Edit) 137 { params.action='edit' }137 params.action='edit' 138 138 139 139 def assetSubItemInstance = AssetSubItem.get( params.id ) -
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 -
trunk/grails-app/controllers/MaintenancePolicyDetailedController.groovy
r371 r375 21 21 // In the case of an actionSubmit button, rewrite action name from 'index'. 22 22 if(params._action_Show) 23 { params.action='show' }23 params.action='show' 24 24 25 25 def maintenancePolicyInstance = MaintenancePolicy.get( params.id ) … … 55 55 // In the case of an actionSubmit button, rewrite action name from 'index'. 56 56 if(params._action_Edit) 57 { params.action='edit' }57 params.action='edit' 58 58 59 59 def maintenancePolicyInstance = MaintenancePolicy.get( params.id ) -
trunk/grails-app/controllers/ManufacturerDetailedController.groovy
r374 r375 18 18 // In the case of an actionSubmit button, rewrite action name from 'index'. 19 19 if(params._action_Show) 20 { params.action='show' }20 params.action='show' 21 21 22 22 def manufacturerInstance = Manufacturer.get( params.id ) … … 52 52 // In the case of an actionSubmit button, rewrite action name from 'index'. 53 53 if(params._action_Edit) 54 { params.action='edit' }54 params.action='edit' 55 55 56 56 def manufacturerInstance = Manufacturer.get( params.id ) -
trunk/grails-app/controllers/PersonController.groovy
r295 r375 34 34 // In the case of an actionSubmit button, rewrite action name from 'index'. 35 35 if(params._action_Show) 36 { params.action='show' }36 params.action='show' 37 37 38 38 def person = Person.get(params.id) … … 86 86 // In the case of an actionSubmit button, rewrite action name from 'index'. 87 87 if(params._action_Edit) 88 { params.action='edit' }88 params.action='edit' 89 89 90 90 def person = Person.get(params.id) -
trunk/grails-app/controllers/PictureDetailedController.groovy
r298 r375 29 29 // In the case of an actionSubmit button, rewrite action name from 'index'. 30 30 if(params._action_Show) 31 { params.action='show' }31 params.action='show' 32 32 33 33 def picture = Picture.get( params.id ) … … 70 70 // In the case of an actionSubmit button, rewrite action name from 'index'. 71 71 if(params._action_Edit) 72 { params.action='edit' }72 params.action='edit' 73 73 74 74 def picture = Picture.get(params.id) -
trunk/grails-app/controllers/SupplierDetailedController.groovy
r374 r375 18 18 // In the case of an actionSubmit button, rewrite action name from 'index'. 19 19 if(params._action_Show) 20 { params.action='show' }20 params.action='show' 21 21 22 22 def supplierInstance = Supplier.get( params.id ) … … 52 52 // In the case of an actionSubmit button, rewrite action name from 'index'. 53 53 if(params._action_Edit) 54 { params.action='edit' }54 params.action='edit' 55 55 56 56 def supplierInstance = Supplier.get( params.id ) -
trunk/grails-app/controllers/TaskDetailedController.groovy
r326 r375 222 222 // In the case of an actionSubmit button, rewrite action name from 'index'. 223 223 if(params._action_Show) 224 { params.action='show' }224 params.action='show' 225 225 226 226 def showTab = [:] … … 465 465 // In the case of an actionSubmit button, rewrite action name from 'index'. 466 466 if(params._action_Edit) 467 { params.action='edit' }467 params.action='edit' 468 468 469 469 def taskInstance = Task.get( params.id ) -
trunk/grails-app/controllers/TaskProcedureDetailedController.groovy
r368 r375 35 35 // In the case of an actionSubmit button, rewrite action name from 'index'. 36 36 if(params._action_Show) 37 { params.action='show' }37 params.action='show' 38 38 39 39 def taskProcedureInstance = TaskProcedure.get( params.id ) … … 69 69 // In the case of an actionSubmit button, rewrite action name from 'index'. 70 70 if(params._action_Edit) 71 { params.action='edit' }71 params.action='edit' 72 72 73 73 def taskProcedureInstance = TaskProcedure.get( params.id )
Note: See TracChangeset
for help on using the changeset viewer.