Blame view

src/main/java/com/huaheng/pc/system/user/controller/UserController.java 8.85 KB
tangying authored
1
2
package com.huaheng.pc.system.user.controller;
mahuandong authored
3
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
周鸿 authored
4
import com.huaheng.common.utils.Wrappers;
tangying authored
5
6
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.poi.ExcelUtil;
7
import com.huaheng.common.utils.security.ShiroUtils;
tangying authored
8
9
10
11
12
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;
13
14
15
16
17
import com.huaheng.pc.config.company.domain.Company;
import com.huaheng.pc.config.company.service.CompanyService;
import com.huaheng.pc.config.warehouse.domain.Warehouse;
import com.huaheng.pc.config.warehouse.mapper.WarehouseMapper;
import com.huaheng.pc.config.warehouse.service.WarehouseService;
tangying authored
18
19
20
import com.huaheng.pc.system.role.service.IRoleService;
import com.huaheng.pc.system.user.domain.User;
import com.huaheng.pc.system.user.service.IUserService;
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.transaction.annotation.Transactional;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
27
28

import javax.annotation.Resource;
tangying authored
29
import java.util.List;
30
31
import java.util.Map;
tangying authored
32
33
/**
 * 用户信息
lector authored
34
 *
tangying authored
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 * @author huaheng
 */
@Controller
@RequestMapping("/system/user")
public class UserController extends BaseController
{
    private String prefix = "system/user";

    @Autowired
    private IUserService userService;

    @Autowired
    private IRoleService roleService;

    @Autowired
mahuandong authored
50
    private CompanyService companyService;
tangying authored
51
52
53
54
55
56
57
    @Autowired
    private WarehouseService warehouseService;

    @Resource
    private WarehouseMapper warehouseMapper;
tangying authored
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
    @RequiresPermissions("system:user:view")
    @GetMapping()
    public String user()
    {
        return prefix + "/user";
    }

    @RequiresPermissions("system:user:list")
    @Log(title = "系统管理-用户管理", operating = "查看用户列表", action = BusinessType.GRANT)
    @PostMapping("/list")
    @ResponseBody
    public TableDataInfo list(User user)
    {
        startPage();
        List<User> list = userService.selectUserList(user);
        return getDataTable(list);
    }

    @Log(title = "系统管理-用户管理", operating = "导出用户", action = BusinessType.EXPORT)
    @RequiresPermissions("system:user:export")
    @PostMapping("/export")
    @ResponseBody
    public AjaxResult export(User user)
    {
        try
        {
            List<User> list = userService.selectUserList(user);
            ExcelUtil<User> util = new ExcelUtil<User>(User.class);
            return util.exportExcel(list, "user");
        }
        catch (Exception e)
        {
            return error("导出Excel失败,请联系网站管理员!");
        }
    }

    /**
     * 新增用户
     */
    @GetMapping("/add")
    public String add(ModelMap mmap)
    {
        mmap.put("roles", roleService.selectRoleAll());
101
102
103
104
105
        //只能看到当前仓库的货主
        LambdaQueryWrapper<Company> lambdaQueryWrapper = Wrappers.lambdaQuery();
        lambdaQueryWrapper.eq(Company::getWarehouseCode,ShiroUtils.getWarehouseCode());
        List<Company>  companys =  companyService.list(lambdaQueryWrapper);
        mmap.put("companys", companys);
lector authored
106
        mmap.put("warehouseList",warehouseService.getWarehouseMap());
tangying authored
107
108
109
110
111
112
113
114
115
116
117
118
119
        return prefix + "/add";
    }

    /**
     * 新增保存用户
     */
    @RequiresPermissions("system:user:add")
    @Log(title = "系统管理-用户管理", operating = "新增用户", action = BusinessType.INSERT)
    @PostMapping("/add")
    @Transactional(rollbackFor = Exception.class)
    @ResponseBody
    public AjaxResult addSave(User user)
    {
120
        if (StringUtils.isNotNull(user.getId()) && User.unAdmin(user.getId()))
tangying authored
121
122
123
        {
            return error("不允许修改超级管理员用户");
        }
124
125
126
127
        List<Integer> roleList = user.getRoleIds();
        if(roleList != null && roleList.size() > 1) {
            return error("一个用户不允许有多个角色");
        }
tangying authored
128
129
130
131
132
133
134
135
136
137
138
139
        AjaxResult ajaxResult = toAjax(userService.insertUser(user));
        return  ajaxResult;
    }

    /**
     * 修改用户
     */
    @GetMapping("/edit/{id}")
    public String edit(@PathVariable("id") Integer id, ModelMap mmap)
    {
        mmap.put("user", userService.selectUserById(id));
        mmap.put("roles", roleService.selectRolesByUserId(id));
140
141
        mmap.put("companyList", companyService.selectCompanyByUserId(id));
        mmap.put("warehouseList", warehouseService.selectWarehouseByUserId(id));
tangying authored
142
143
144
145
146
147
148
149
150
151
152
153
154
        return prefix + "/edit";
    }

    /**
     * 修改保存用户
     */
    @RequiresPermissions("system:user:edit")
    @Log(title = "系统管理-用户管理", operating = "修改用户", action = BusinessType.UPDATE)
    @PostMapping("/edit")
    @Transactional(rollbackFor = Exception.class)
    @ResponseBody
    public AjaxResult editSave(User user)
    {
155
156
        if (StringUtils.isNotNull(user.getId()) && User.unAdmin(user.getId()))
tangying authored
157
158
159
        {
            return error("不允许修改超级管理员用户");
        }
160
161
162
163
        List<Integer> roleList = user.getRoleIds();
        if(roleList != null && roleList.size() > 1) {
            return error("一个用户不允许有多个角色");
        }
tangying authored
164
        AjaxResult ajaxResult = toAjax(userService.updateUser(user));
165
xqs authored
166
        if (ShiroUtils.getLoginName().equals(user.getUserName())) {
167
            ShiroUtils.logout();
xqs authored
168
        }
169
tangying authored
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
        return ajaxResult;
    }

    @RequiresPermissions("system:user:resetPwd")
    @Log(title = "系统管理-用户管理", operating = "重置密码", action = BusinessType.UPDATE)
    @GetMapping("/resetPwd/{id}")
    public String resetPwd(@PathVariable("id") Integer userId, ModelMap mmap)
    {
        mmap.put("user", userService.selectUserById(userId));
        return prefix + "/resetPwd";
    }

    @RequiresPermissions("system:user:resetPwd")
    @Log(title = "系统管理-用户管理", operating = "重置密码", action = BusinessType.UPDATE)
    @PostMapping("/resetPwd")
    @ResponseBody
    public AjaxResult resetPwd(User user)
    {
        return toAjax(userService.resetUserPwd(user));
    }

    @RequiresPermissions("system:user:remove")
    @Log(title = "系统管理-用户管理", operating = "删除用户", action = BusinessType.DELETE)
    @PostMapping("/remove")
    @ResponseBody
    public AjaxResult remove(String ids)
    {
        try
        {
            return toAjax(userService.deleteUserByIds(ids));
        }
        catch (Exception e)
        {
            return error(e.getMessage());
        }
    }

    /**
     * 校验用户名
     */
    @PostMapping("/checkLoginNameUnique")
    @ResponseBody
    public String checkLoginNameUnique(User user)
    {
        String uniqueFlag = "0";
        if (StringUtils.isNotNull(user))
        {
            uniqueFlag = userService.checkLoginNameUnique(user.getLoginName());
        }
        return uniqueFlag;
    }

    /**
     * 校验手机号码
     */
    @PostMapping("/checkPhoneUnique")
    @ResponseBody
    public String checkPhoneUnique(User user)
    {
        String uniqueFlag = "0";
        if (StringUtils.isNotNull(user))
        {
            uniqueFlag = userService.checkPhoneUnique(user);
        }
        return uniqueFlag;
    }

    /**
     * 校验email邮箱
     */
    @PostMapping("/checkEmailUnique")
    @ResponseBody
    public String checkEmailUnique(User user)
    {
        String uniqueFlag = "0";
        if (StringUtils.isNotNull(user))
        {
            uniqueFlag = userService.checkEmailUnique(user);
        }
        return uniqueFlag;
    }
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
    /**
     * 绑定发送人
     */
    @PostMapping("/bindSender/{id}")
    @ResponseBody
    public AjaxResult bindSender(@PathVariable("id") Integer id)
    {
        boolean flag = false;
        if (StringUtils.isNotNull(id))
        {
            User user = userService.selectUserById(id);
            user.setIsSender("1");
            int updateUser = userService.updateUserInfo(user);
            if(updateUser > 0){
                flag =true;
            }
        }
        return toAjax(flag);
    }

    /**
     * 解绑发送人
     */
    @PostMapping("/unSender/{id}")
    @ResponseBody
    public AjaxResult unSender(@PathVariable("id") Integer id)
    {
        boolean flag = false;
        if (StringUtils.isNotNull(id))
        {
            User user = userService.selectUserById(id);
            user.setIsSender("0");
            int updateUser = userService.updateUserInfo(user);
            if(updateUser > 0){
                flag =true;
            }
        }else{
            return AjaxResult.error("【"+id+"】该用户不存在。");
        }
        return toAjax(flag);
    }
tangying authored
294
lector authored
295
}