import org.codehaus.groovy.grails.plugins.springsecurity.Secured class InventoryItemDetailedController extends BaseController { def filterService def index = { redirect(action:search, params:params) } // the delete, save and update actions only accept POST requests static allowedMethods = [delete:'POST', save:'POST', update:'POST'] def list = { params.max = Math.min( params.max ? params.max.toInteger() : 10, 100) [ inventoryItemInstanceList: InventoryItem.list( params ), inventoryItemInstanceTotal: InventoryItem.count() ] } def search = { params.max = Math.min( params.max ? params.max.toInteger() : 10, 100) // Quick Search: if(!params.filter) { return[ inventoryItemInstanceList: InventoryItem.list( params ), inventoryItemInstanceTotal: InventoryItem.count(), filterParams: params ] } // filterPane: return[ inventoryItemInstanceList: filterService.filter( params, InventoryItem ), inventoryItemInstanceTotal: filterService.count( params, InventoryItem ), filterParams: com.zeddware.grails.plugins.filterpane.FilterUtils.extractFilterParams(params), params:params ] } def show = { // In the case of an actionSubmit button, rewrite action name from 'index'. if(params._action_Show) { params.action='show' } def inventoryItemInstance = InventoryItem.get( params.id ) if(!inventoryItemInstance) { flash.message = "InventoryItem not found with id ${params.id}" redirect(action:search) } else { return [ inventoryItemInstance : inventoryItemInstance ] } } def delete = { def inventoryItemInstance = InventoryItem.get( params.id ) if(inventoryItemInstance) { try { inventoryItemInstance.delete(flush:true) flash.message = "InventoryItem ${params.id} deleted" redirect(action:search) } catch(org.springframework.dao.DataIntegrityViolationException e) { flash.message = "InventoryItem ${params.id} could not be deleted" redirect(action:show,id:params.id) } } else { flash.message = "InventoryItem not found with id ${params.id}" redirect(action:search) } } def edit = { // In the case of an actionSubmit button, rewrite action name from 'index'. if(params._action_Edit) { params.action='edit' } def inventoryItemInstance = InventoryItem.get( params.id ) if(!inventoryItemInstance) { flash.message = "InventoryItem not found with id ${params.id}" redirect(action:search) } else { return [ inventoryItemInstance : inventoryItemInstance ] } } def update = { def inventoryItemInstance = InventoryItem.get( params.id ) if(inventoryItemInstance) { if(params.version) { def version = params.version.toLong() if(inventoryItemInstance.version > version) { inventoryItemInstance.errors.rejectValue("version", "inventoryItem.optimistic.locking.failure", "Another user has updated this InventoryItem while you were editing.") render(view:'edit',model:[inventoryItemInstance:inventoryItemInstance]) return } } inventoryItemInstance.properties = params if(!inventoryItemInstance.hasErrors() && inventoryItemInstance.save(flush: true)) { flash.message = "InventoryItem ${params.id} updated" redirect(action:show,id:inventoryItemInstance.id) } else { render(view:'edit',model:[inventoryItemInstance:inventoryItemInstance]) } } else { flash.message = "InventoryItem not found with id ${params.id}" redirect(action:search) } } def create = { def inventoryItemInstance = new InventoryItem() inventoryItemInstance.properties = params return ['inventoryItemInstance':inventoryItemInstance] } def save = { def inventoryItemInstance = new InventoryItem(params) if(!inventoryItemInstance.hasErrors() && inventoryItemInstance.save(flush: true)) { flash.message = "InventoryItem ${inventoryItemInstance.id} created" redirect(action:show,id:inventoryItemInstance.id) } else { render(view:'create',model:[inventoryItemInstance:inventoryItemInstance]) } } }