Blame view

src/main/java/com/huaheng/pc/system/config/controller/ConfigController.java 4.41 KB
tangying authored
1
2
3
package com.huaheng.pc.system.config.controller;

import java.util.List;
4
唐高鑫 authored
5
import com.huaheng.common.utils.security.ShiroUtils;
tangying authored
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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.common.utils.StringUtils;
import com.huaheng.common.utils.poi.ExcelUtil;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.page.TableDataInfo;
import com.huaheng.pc.system.config.domain.Config;
import com.huaheng.pc.system.config.service.IConfigService;

/**
 * 参数配置 信息操作处理
27
 *
tangying authored
28
29
30
31
 * @author huaheng
 */
@Controller
@RequestMapping("/system/config")
32
public class ConfigController extends BaseController {
tangying authored
33
34
35
36
37
38
39
    private String prefix = "system/config";

    @Autowired
    private IConfigService configService;

    @RequiresPermissions("system:config:view")
    @GetMapping()
40
    public String config() {
tangying authored
41
42
43
44
45
46
47
48
49
50
        return prefix + "/config";
    }

    /**
     * 查询参数配置列表
     */
    @RequiresPermissions("system:config:list")
    @Log(title = "系统管理-参数设置", operating = "查看参数配置", action = BusinessType.GRANT)
    @PostMapping("/list")
    @ResponseBody
51
    public TableDataInfo list(Config config) {
tangying authored
52
53
54
55
56
57
58
59
60
        startPage();
        List<Config> list = configService.selectConfigList(config);
        return getDataTable(list);
    }

    @Log(title = "系统管理-参数设置", operating = "导出参数配置", action = BusinessType.EXPORT)
    @RequiresPermissions("system:config:export")
    @PostMapping("/export")
    @ResponseBody
61
62
    public AjaxResult export(Config config) throws Exception {
        try {
tangying authored
63
64
65
            List<Config> list = configService.selectConfigList(config);
            ExcelUtil<Config> util = new ExcelUtil<Config>(Config.class);
            return util.exportExcel(list, "config");
66
        } catch (Exception e) {
tangying authored
67
68
69
70
71
72
73
74
            return error("导出Excel失败,请联系网站管理员!");
        }
    }

    /**
     * 新增参数配置
     */
    @GetMapping("/add")
75
    public String add() {
tangying authored
76
77
78
79
80
81
82
83
84
85
        return prefix + "/add";
    }

    /**
     * 新增保存参数配置
     */
    @RequiresPermissions("system:config:add")
    @Log(title = "系统管理-参数设置", operating = "新增参数配置", action = BusinessType.INSERT)
    @PostMapping("/add")
    @ResponseBody
86
    public AjaxResult addSave(Config config) {
唐高鑫 authored
87
        config.setWarehouseCode(ShiroUtils.getWarehouseCode());
tangying authored
88
89
90
91
92
93
94
        return toAjax(configService.insertConfig(config));
    }

    /**
     * 修改参数配置
     */
    @GetMapping("/edit/{id}")
95
    public String edit(@PathVariable("id") Integer id, ModelMap mmap) {
tangying authored
96
97
98
99
100
101
102
103
104
105
106
        mmap.put("config", configService.selectConfigById(id));
        return prefix + "/edit";
    }

    /**
     * 修改保存参数配置
     */
    @RequiresPermissions("system:config:edit")
    @Log(title = "系统管理-参数设置", operating = "修改参数配置", action = BusinessType.UPDATE)
    @PostMapping("/edit")
    @ResponseBody
107
    public AjaxResult editSave(Config config) {
tangying authored
108
109
110
111
112
113
114
115
116
117
        return toAjax(configService.updateConfig(config));
    }

    /**
     * 删除参数配置
     */
    @RequiresPermissions("system:config:remove")
    @Log(title = "系统管理-参数设置", operating = "删除参数配置", action = BusinessType.DELETE)
    @PostMapping("/remove")
    @ResponseBody
118
    public AjaxResult remove(String ids) {
tangying authored
119
120
121
122
123
124
125
126
        return toAjax(configService.deleteConfigByIds(ids));
    }

    /**
     * 校验参数键名
     */
    @PostMapping("/checkConfigKeyUnique")
    @ResponseBody
127
128
    public Integer checkConfigKeyUnique(Config config) {
        Integer uniqueFlag = 0;
唐高鑫 authored
129
        String warehouseCode = ShiroUtils.getWarehouseCode();
130
        if (StringUtils.isNotNull(config)) {
tangying authored
131
132
133
134
135
            uniqueFlag = configService.checkConfigKeyUnique(config);
        }
        return uniqueFlag;
    }
136
137
tangying authored
138
}