ZoneController.java 3.72 KB
package com.huaheng.pc.config.zone.controller;

import com.huaheng.common.support.Convert;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.security.ShiroUtils;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.pc.config.zone.domain.Zone;
import com.huaheng.pc.config.zone.service.IZoneService;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.page.TableDataInfo;
import java.util.List;

/**
 * 库区 信息操作处理
 * 
 * @author huaheng
 * @date 2018-08-19
 */
@Controller
@RequestMapping("/config/zone")
public class ZoneController extends BaseController
{
    private String prefix = "config/zone";
	
	@Autowired
	private IZoneService zoneService;
	
	@RequiresPermissions("config:zone:view")
	@GetMapping()
	public String zone()
	{
	    return prefix + "/zone";
	}
	
	/**
	 * 查询库区列表
	 */
	@RequiresPermissions("config:zone:list")
	@Log(title = "配置-库区设置", operating = "查看库区列表", action = BusinessType.GRANT)
	@PostMapping("/list")
	@ResponseBody
	public TableDataInfo list(Zone zone)
	{
        zone.setWarehouseId(ShiroUtils.getWarehouseId());
	    zone.setDeleted(false);
	    startPage();
		List<Zone> list = zoneService.selectListEntityByLike(zone) ;
		return getDataTable(list);
	}
	
	/**
	 * 新增库区
	 */
	@GetMapping("/add")
	public String add()
	{
	    return prefix + "/add";
	}
	
	/**
	 * 新增保存库区
	 */
	@RequiresPermissions("config:zone:add")
	@Log(title = "配置-库区设置", operating = "新增库区", action = BusinessType.INSERT)
	@PostMapping("/add")
	@ResponseBody
	public AjaxResult addSave(Zone zone)
	{
		zone.setWarehouseId(ShiroUtils.getWarehouseId());
		zone.setWarehouseCode(ShiroUtils.getWarehouseCode());
		zone.setCreatedBy(ShiroUtils.getLoginName());
		zone.setLastUpdatedBy(ShiroUtils.getLoginName());
		return toAjax(zoneService.insert(zone));
	}

	/**
	 * 修改库区
	 */
	@GetMapping("/edit/{id}")
	public String edit(@PathVariable("id") Integer id, ModelMap mmap)
	{
		Zone zone = zoneService.selectEntityById(id);
		mmap.put("zone", zone);
	    return prefix + "/edit";
	}
	
	/**
	 * 修改保存库区
	 */
	@RequiresPermissions("config:zone:edit")
	@Log(title = "配置-库区设置", operating = "修改库区", action = BusinessType.UPDATE)
	@PostMapping("/edit")
	@ResponseBody
	public AjaxResult editSave(Zone zone)
	{
		zone.setLastUpdatedBy(ShiroUtils.getLoginName());
		return toAjax(zoneService.updateByModel(zone));
	}
	
	/**
	 * 删除库区
	 */
	@RequiresPermissions("config:zone:remove")
	@Log(title = "配置-库区设置", operating = "删除库区", action = BusinessType.DELETE)
	@PostMapping( "/remove")
	@ResponseBody
	public AjaxResult remove(String ids)
	{
		if (StringUtils.isEmpty(ids))
			return AjaxResult.error("id不能为空");
		for (Integer id : Convert.toIntArray(ids))
		{
            Zone record = new Zone();
            record.setId(id);
            record.setDeleted(true);
			record.setLastUpdatedBy(ShiroUtils.getLoginName());
            zoneService.updateByModel(record);
		}
		return AjaxResult.success("删除成功!");
	}
	
}