Ignore:
Timestamp:
Nov 2, 2009, 3:25:26 PM (14 years ago)
Author:
gav
Message:

Resolve ticket #12 again.
Turn query cache on again since this did not resolve the problem.
Implement fix as per http://jira.codehaus.org/browse/GRAILS-5111, add flush:true to save.
Adjust templates to include above and remove home url.
Re-generate all non detailed views and controllers.
Manually add flush:true and remove home url to detailed views and controllers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/controllers/SupplierTypeController.groovy

    r116 r178  
    2727        if(supplierTypeInstance) {
    2828            try {
    29                 supplierTypeInstance.delete()
     29                supplierTypeInstance.delete(flush:true)
    3030                flash.message = "SupplierType ${params.id} deleted"
    3131                redirect(action:list)
     
    6767            }
    6868            supplierTypeInstance.properties = params
    69             if(!supplierTypeInstance.hasErrors() && supplierTypeInstance.save()) {
     69            if(!supplierTypeInstance.hasErrors() && supplierTypeInstance.save(flush: true)) {
    7070                flash.message = "SupplierType ${params.id} updated"
    7171                redirect(action:show,id:supplierTypeInstance.id)
     
    7777        else {
    7878            flash.message = "SupplierType not found with id ${params.id}"
    79             redirect(action:edit,id:params.id)
     79            redirect(action:list)
    8080        }
    8181    }
     
    8989    def save = {
    9090        def supplierTypeInstance = new SupplierType(params)
    91         if(!supplierTypeInstance.hasErrors() && supplierTypeInstance.save()) {
     91        if(!supplierTypeInstance.hasErrors() && supplierTypeInstance.save(flush: true)) {
    9292            flash.message = "SupplierType ${supplierTypeInstance.id} created"
    9393            redirect(action:show,id:supplierTypeInstance.id)
Note: See TracChangeset for help on using the changeset viewer.