source: trunk/grails-app/controllers/StoreLocationController.groovy @ 116

Last change on this file since 116 was 116, checked in by gav, 15 years ago

First commit of Inventory domain, including domain-classes, controllers, views and bootstrap. Also double check/adjust as required security extends in controllers.

File size: 3.6 KB
Line 
1import org.codehaus.groovy.grails.plugins.springsecurity.Secured
2
3class StoreLocationController extends BaseAppAdminController {
4   
5    def index = { redirect(action:list,params:params) }
6
7    // the delete, save and update actions only accept POST requests
8    static allowedMethods = [delete:'POST', save:'POST', update:'POST']
9
10    def list = {
11        params.max = Math.min( params.max ? params.max.toInteger() : 10,  100)
12        [ storeLocationInstanceList: StoreLocation.list( params ), storeLocationInstanceTotal: StoreLocation.count() ]
13    }
14
15    def show = {
16        def storeLocationInstance = StoreLocation.get( params.id )
17
18        if(!storeLocationInstance) {
19            flash.message = "StoreLocation not found with id ${params.id}"
20            redirect(action:list)
21        }
22        else { return [ storeLocationInstance : storeLocationInstance ] }
23    }
24
25    def delete = {
26        def storeLocationInstance = StoreLocation.get( params.id )
27        if(storeLocationInstance) {
28            try {
29                storeLocationInstance.delete()
30                flash.message = "StoreLocation ${params.id} deleted"
31                redirect(action:list)
32            }
33            catch(org.springframework.dao.DataIntegrityViolationException e) {
34                flash.message = "StoreLocation ${params.id} could not be deleted"
35                redirect(action:show,id:params.id)
36            }
37        }
38        else {
39            flash.message = "StoreLocation not found with id ${params.id}"
40            redirect(action:list)
41        }
42    }
43
44    def edit = {
45        def storeLocationInstance = StoreLocation.get( params.id )
46
47        if(!storeLocationInstance) {
48            flash.message = "StoreLocation not found with id ${params.id}"
49            redirect(action:list)
50        }
51        else {
52            return [ storeLocationInstance : storeLocationInstance ]
53        }
54    }
55
56    def update = {
57        def storeLocationInstance = StoreLocation.get( params.id )
58        if(storeLocationInstance) {
59            if(params.version) {
60                def version = params.version.toLong()
61                if(storeLocationInstance.version > version) {
62                   
63                    storeLocationInstance.errors.rejectValue("version", "storeLocation.optimistic.locking.failure", "Another user has updated this StoreLocation while you were editing.")
64                    render(view:'edit',model:[storeLocationInstance:storeLocationInstance])
65                    return
66                }
67            }
68            storeLocationInstance.properties = params
69            if(!storeLocationInstance.hasErrors() && storeLocationInstance.save()) {
70                flash.message = "StoreLocation ${params.id} updated"
71                redirect(action:show,id:storeLocationInstance.id)
72            }
73            else {
74                render(view:'edit',model:[storeLocationInstance:storeLocationInstance])
75            }
76        }
77        else {
78            flash.message = "StoreLocation not found with id ${params.id}"
79            redirect(action:edit,id:params.id)
80        }
81    }
82
83    def create = {
84        def storeLocationInstance = new StoreLocation()
85        storeLocationInstance.properties = params
86        return ['storeLocationInstance':storeLocationInstance]
87    }
88
89    def save = {
90        def storeLocationInstance = new StoreLocation(params)
91        if(!storeLocationInstance.hasErrors() && storeLocationInstance.save()) {
92            flash.message = "StoreLocation ${storeLocationInstance.id} created"
93            redirect(action:show,id:storeLocationInstance.id)
94        }
95        else {
96            render(view:'create',model:[storeLocationInstance:storeLocationInstance])
97        }
98    }
99}
Note: See TracBrowser for help on using the repository browser.