- Timestamp:
- Nov 2, 2009, 3:25:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/InventoryLocationController.groovy
r175 r178 67 67 } 68 68 inventoryLocationInstance.properties = params 69 if(!inventoryLocationInstance.hasErrors() && inventoryLocationInstance.save( )) {69 if(!inventoryLocationInstance.hasErrors() && inventoryLocationInstance.save(flush: true)) { 70 70 flash.message = "InventoryLocation ${params.id} updated" 71 71 redirect(action:show,id:inventoryLocationInstance.id) … … 89 89 def save = { 90 90 def inventoryLocationInstance = new InventoryLocation(params) 91 if(!inventoryLocationInstance.hasErrors() && inventoryLocationInstance.save( )) {91 if(!inventoryLocationInstance.hasErrors() && inventoryLocationInstance.save(flush: true)) { 92 92 flash.message = "InventoryLocation ${inventoryLocationInstance.id} created" 93 93 redirect(action:show,id:inventoryLocationInstance.id)
Note: See TracChangeset
for help on using the changeset viewer.