liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/**
 * Copyright &copy; 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
 */
package com.jeeplus.modules.test.web.tree;
 
import java.util.List;
import java.util.Map;
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import org.apache.shiro.authz.annotation.Logical;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
 
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.jeeplus.common.utils.MyBeanUtils;
import com.jeeplus.common.config.Global;
import com.jeeplus.common.web.BaseController;
import com.jeeplus.common.utils.StringUtils;
import com.jeeplus.modules.test.entity.tree.TestTree;
import com.jeeplus.modules.test.service.tree.TestTreeService;
 
/**
 * 组织机构Controller
 * @author liugf
 * @version 2016-03-13
 */
@Controller
@RequestMapping(value = "${adminPath}/test/tree/testTree")
public class TestTreeController extends BaseController {
 
    @Autowired
    private TestTreeService testTreeService;
    
    @ModelAttribute
    public TestTree get(@RequestParam(required=false) String id) {
        TestTree entity = null;
        if (StringUtils.isNotBlank(id)){
            entity = testTreeService.get(id);
        }
        if (entity == null){
            entity = new TestTree();
        }
        return entity;
    }
    
    /**
     * 机构列表页面
     */
    @RequiresPermissions("test:tree:testTree:list")
    @RequestMapping(value = {"list", ""})
    public String list(TestTree testTree, HttpServletRequest request, HttpServletResponse response, Model model) {
        List<TestTree> list = testTreeService.findList(testTree); 
        model.addAttribute("list", list);
        return "modules/test/tree/testTreeList";
    }
 
    /**
     * 查看,增加,编辑机构表单页面
     */
    @RequiresPermissions(value={"test:tree:testTree:view","test:tree:testTree:add","test:tree:testTree:edit"},logical=Logical.OR)
    @RequestMapping(value = "form")
    public String form(TestTree testTree, Model model) {
        if (testTree.getParent()!=null && StringUtils.isNotBlank(testTree.getParent().getId())){
            testTree.setParent(testTreeService.get(testTree.getParent().getId()));
            // 获取排序号,最末节点排序号+30
            if (StringUtils.isBlank(testTree.getId())){
                TestTree testTreeChild = new TestTree();
                testTreeChild.setParent(new TestTree(testTree.getParent().getId()));
                List<TestTree> list = testTreeService.findList(testTree); 
                if (list.size() > 0){
                    testTree.setSort(list.get(list.size()-1).getSort());
                    if (testTree.getSort() != null){
                        testTree.setSort(testTree.getSort() + 30);
                    }
                }
            }
        }
        if (testTree.getSort() == null){
            testTree.setSort(30);
        }
        model.addAttribute("testTree", testTree);
        return "modules/test/tree/testTreeForm";
    }
 
    /**
     * 保存机构
     */
    @RequiresPermissions(value={"test:tree:testTree:add","test:tree:testTree:edit"},logical=Logical.OR)
    @RequestMapping(value = "save")
    public String save(TestTree testTree, Model model, RedirectAttributes redirectAttributes) throws Exception{
        if (!beanValidator(model, testTree)){
            return form(testTree, model);
        }
        if(!testTree.getIsNewRecord()){//编辑表单保存
            TestTree t = testTreeService.get(testTree.getId());//从数据库取出记录的值
            MyBeanUtils.copyBeanNotNull2Bean(testTree, t);//将编辑表单中的非NULL值覆盖数据库记录中的值
            testTreeService.save(t);//保存
        }else{//新增表单保存
            testTreeService.save(testTree);//保存
        }
        addMessage(redirectAttributes, "保存机构成功");
        return "redirect:"+Global.getAdminPath()+"/test/tree/testTree/?repage";
    }
    
    /**
     * 删除机构
     */
    @RequiresPermissions("test:tree:testTree:del")
    @RequestMapping(value = "delete")
    public String delete(TestTree testTree, RedirectAttributes redirectAttributes) {
        testTreeService.delete(testTree);
        addMessage(redirectAttributes, "删除机构成功");
        return "redirect:"+Global.getAdminPath()+"/test/tree/testTree/?repage";
    }
 
    @RequiresPermissions("user")
    @ResponseBody
    @RequestMapping(value = "treeData")
    public List<Map<String, Object>> treeData(@RequestParam(required=false) String extId, HttpServletResponse response) {
        List<Map<String, Object>> mapList = Lists.newArrayList();
        List<TestTree> list = testTreeService.findList(new TestTree());
        for (int i=0; i<list.size(); i++){
            TestTree e = list.get(i);
            if (StringUtils.isBlank(extId) || (extId!=null && !extId.equals(e.getId()) && e.getParentIds().indexOf(","+extId+",")==-1)){
                Map<String, Object> map = Maps.newHashMap();
                map.put("id", e.getId());
                map.put("pId", e.getParentId());
                map.put("name", e.getName());
                mapList.add(map);
            }
        }
        return mapList;
    }
    
}