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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/**
 * Copyright &copy; 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
 */
package com.jeeplus.modules.test.web.onetomany;
 
import java.util.List;
 
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.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
 
import com.google.common.collect.Lists;
import com.jeeplus.common.utils.DateUtils;
import com.jeeplus.common.utils.MyBeanUtils;
import com.jeeplus.common.config.Global;
import com.jeeplus.common.persistence.Page;
import com.jeeplus.common.web.BaseController;
import com.jeeplus.common.utils.StringUtils;
import com.jeeplus.common.utils.excel.ExportExcel;
import com.jeeplus.common.utils.excel.ImportExcel;
import com.jeeplus.modules.test.entity.onetomany.TestDataMain;
import com.jeeplus.modules.test.service.onetomany.TestDataMainService;
 
/**
 * 票务代理Controller
 * @author liugf
 * @version 2016-03-13
 */
@Controller
@RequestMapping(value = "${adminPath}/test/onetomany/testDataMain")
public class TestDataMainController extends BaseController {
 
    @Autowired
    private TestDataMainService testDataMainService;
    
    @ModelAttribute
    public TestDataMain get(@RequestParam(required=false) String id) {
        TestDataMain entity = null;
        if (StringUtils.isNotBlank(id)){
            entity = testDataMainService.get(id);
        }
        if (entity == null){
            entity = new TestDataMain();
        }
        return entity;
    }
    
    /**
     * 票务代理列表页面
     */
    @RequiresPermissions("test:onetomany:testDataMain:list")
    @RequestMapping(value = {"list", ""})
    public String list(TestDataMain testDataMain, HttpServletRequest request, HttpServletResponse response, Model model) {
        Page<TestDataMain> page = testDataMainService.findPage(new Page<TestDataMain>(request, response), testDataMain); 
        model.addAttribute("page", page);
        return "modules/test/onetomany/testDataMainList";
    }
 
    /**
     * 查看,增加,编辑票务代理表单页面
     */
    @RequiresPermissions(value={"test:onetomany:testDataMain:view","test:onetomany:testDataMain:add","test:onetomany:testDataMain:edit"},logical=Logical.OR)
    @RequestMapping(value = "form")
    public String form(TestDataMain testDataMain, Model model) {
        model.addAttribute("testDataMain", testDataMain);
        return "modules/test/onetomany/testDataMainForm";
    }
 
    /**
     * 保存票务代理
     */
    @RequiresPermissions(value={"test:onetomany:testDataMain:add","test:onetomany:testDataMain:edit"},logical=Logical.OR)
    @RequestMapping(value = "save")
    public String save(TestDataMain testDataMain, Model model, RedirectAttributes redirectAttributes) throws Exception{
        if (!beanValidator(model, testDataMain)){
            return form(testDataMain, model);
        }
        if(!testDataMain.getIsNewRecord()){//编辑表单保存
            TestDataMain t = testDataMainService.get(testDataMain.getId());//从数据库取出记录的值
            MyBeanUtils.copyBeanNotNull2Bean(testDataMain, t);//将编辑表单中的非NULL值覆盖数据库记录中的值
            testDataMainService.save(t);//保存
        }else{//新增表单保存
            testDataMainService.save(testDataMain);//保存
        }
        addMessage(redirectAttributes, "保存票务代理成功");
        return "redirect:"+Global.getAdminPath()+"/test/onetomany/testDataMain/?repage";
    }
    
    /**
     * 删除票务代理
     */
    @RequiresPermissions("test:onetomany:testDataMain:del")
    @RequestMapping(value = "delete")
    public String delete(TestDataMain testDataMain, RedirectAttributes redirectAttributes) {
        testDataMainService.delete(testDataMain);
        addMessage(redirectAttributes, "删除票务代理成功");
        return "redirect:"+Global.getAdminPath()+"/test/onetomany/testDataMain/?repage";
    }
    
    /**
     * 批量删除票务代理
     */
    @RequiresPermissions("test:onetomany:testDataMain:del")
    @RequestMapping(value = "deleteAll")
    public String deleteAll(String ids, RedirectAttributes redirectAttributes) {
        String idArray[] =ids.split(",");
        for(String id : idArray){
            testDataMainService.delete(testDataMainService.get(id));
        }
        addMessage(redirectAttributes, "删除票务代理成功");
        return "redirect:"+Global.getAdminPath()+"/test/onetomany/testDataMain/?repage";
    }
    
    /**
     * 导出excel文件
     */
    @RequiresPermissions("test:onetomany:testDataMain:export")
    @RequestMapping(value = "export", method=RequestMethod.POST)
    public String exportFile(TestDataMain testDataMain, HttpServletRequest request, HttpServletResponse response, RedirectAttributes redirectAttributes) {
        try {
            String fileName = "票务代理"+DateUtils.getDate("yyyyMMddHHmmss")+".xlsx";
            Page<TestDataMain> page = testDataMainService.findPage(new Page<TestDataMain>(request, response, -1), testDataMain);
            new ExportExcel("票务代理", TestDataMain.class).setDataList(page.getList()).write(response, fileName).dispose();
            return null;
        } catch (Exception e) {
            addMessage(redirectAttributes, "导出票务代理记录失败!失败信息:"+e.getMessage());
        }
        return "redirect:"+Global.getAdminPath()+"/test/onetomany/testDataMain/?repage";
    }
 
    /**
     * 导入Excel数据
 
     */
    @RequiresPermissions("test:onetomany:testDataMain:import")
    @RequestMapping(value = "import", method=RequestMethod.POST)
    public String importFile(MultipartFile file, RedirectAttributes redirectAttributes) {
        try {
            int successNum = 0;
            ImportExcel ei = new ImportExcel(file, 1, 0);
            List<TestDataMain> list = ei.getDataList(TestDataMain.class);
            for (TestDataMain testDataMain : list){
                testDataMainService.save(testDataMain);
            }
            addMessage(redirectAttributes, "已成功导入 "+successNum+" 条票务代理记录");
        } catch (Exception e) {
            addMessage(redirectAttributes, "导入票务代理失败!失败信息:"+e.getMessage());
        }
        return "redirect:"+Global.getAdminPath()+"/test/onetomany/testDataMain/?repage";
    }
    
    /**
     * 下载导入票务代理数据模板
     */
    @RequiresPermissions("test:onetomany:testDataMain:import")
    @RequestMapping(value = "import/template")
    public String importFileTemplate(HttpServletResponse response, RedirectAttributes redirectAttributes) {
        try {
            String fileName = "票务代理数据导入模板.xlsx";
            List<TestDataMain> list = Lists.newArrayList(); 
            new ExportExcel("票务代理数据", TestDataMain.class, 1).setDataList(list).write(response, fileName).dispose();
            return null;
        } catch (Exception e) {
            addMessage(redirectAttributes, "导入模板下载失败!失败信息:"+e.getMessage());
        }
        return "redirect:"+Global.getAdminPath()+"/test/onetomany/testDataMain/?repage";
    }
    
 
}