|
@@ -0,0 +1,226 @@
|
|
|
+/**
|
|
|
+ * Copyright © 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
|
|
|
+ */
|
|
|
+package com.jeeplus.modules.sg.financial.expense.web;
|
|
|
+
|
|
|
+import com.google.common.collect.Lists;
|
|
|
+import com.jeeplus.common.json.AjaxJson;
|
|
|
+import com.jeeplus.common.utils.DateUtils;
|
|
|
+import com.jeeplus.common.utils.StringUtils;
|
|
|
+import com.jeeplus.common.utils.excel.ExportExcel;
|
|
|
+import com.jeeplus.common.utils.excel.ImportExcel;
|
|
|
+import com.jeeplus.core.persistence.Page;
|
|
|
+import com.jeeplus.core.web.BaseController;
|
|
|
+import com.jeeplus.modules.sg.financial.expense.entity.Expense;
|
|
|
+import com.jeeplus.modules.sg.financial.expense.service.ExpenseService;
|
|
|
+import com.jeeplus.modules.test.onetomany.form.entity.TestDataMain2;
|
|
|
+import com.jeeplus.modules.test.onetomany.form.service.TestDataMain2Service;
|
|
|
+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.*;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+import javax.validation.ConstraintViolationException;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 票务代理Controller
|
|
|
+ * @author liugf
|
|
|
+ * @version 2018-06-12
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping(value = "${adminPath}/sg/financial/expense")
|
|
|
+public class ExpenseController extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ExpenseService expenseService;
|
|
|
+
|
|
|
+ @ModelAttribute
|
|
|
+ public Expense get(@RequestParam(required=false) String id) {
|
|
|
+ Expense entity = null;
|
|
|
+ if (StringUtils.isNotBlank(id)){
|
|
|
+ entity = expenseService.get(id);
|
|
|
+ }
|
|
|
+ if (entity == null){
|
|
|
+ entity = new Expense();
|
|
|
+ }
|
|
|
+ return entity;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 票务代理列表页面
|
|
|
+ */
|
|
|
+// @RequiresPermissions("sg:financial:expense:list")
|
|
|
+ @RequestMapping(value = {"list", ""})
|
|
|
+ public String list(Expense expense, Model model) {
|
|
|
+ model.addAttribute("expense", expense);
|
|
|
+ return "modules/sg/financial/expense/expenseList";
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //票务代理列表数据
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("test:onetomany:form:testDataMain2:list")
|
|
|
+ @RequestMapping(value = "data")
|
|
|
+ public Map<String, Object> data(Expense expense, HttpServletRequest request, HttpServletResponse response, Model model) {
|
|
|
+ Page<Expense> page = expenseService.findPage(new Page<Expense>(request, response), expense);
|
|
|
+ return getBootstrapData(page);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* * *//**
|
|
|
+ * 查看,增加,编辑票务代理表单页面
|
|
|
+ *//*
|
|
|
+ @RequiresPermissions(value={"test:onetomany:form:testDataMain2:view","test:onetomany:form:testDataMain2:add","test:onetomany:form:testDataMain2:edit"},logical=Logical.OR)
|
|
|
+ @RequestMapping(value = "form/{mode}")
|
|
|
+ public String form(@PathVariable String mode, TestDataMain2 testDataMain2, Model model) {
|
|
|
+ model.addAttribute("testDataMain2", testDataMain2);
|
|
|
+ model.addAttribute("mode", mode);
|
|
|
+ return "modules/test/onetomany/form/testDataMain2Form";
|
|
|
+ }
|
|
|
+
|
|
|
+ *//**
|
|
|
+ * 保存票务代理
|
|
|
+ *//*
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions(value={"test:onetomany:form:testDataMain2:add","test:onetomany:form:testDataMain2:edit"},logical=Logical.OR)
|
|
|
+ @RequestMapping(value = "save")
|
|
|
+ public AjaxJson save(TestDataMain2 testDataMain2, Model model) throws Exception{
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ *//**
|
|
|
+ * 后台hibernate-validation插件校验
|
|
|
+ *//*
|
|
|
+ String errMsg = beanValidator(testDataMain2);
|
|
|
+ if (StringUtils.isNotBlank(errMsg)){
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg(errMsg);
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+ //新增或编辑表单保存
|
|
|
+ testDataMain2Service.save(testDataMain2);//保存
|
|
|
+ j.setSuccess(true);
|
|
|
+ j.setMsg("保存票务代理成功");
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ *//**
|
|
|
+ * 删除票务代理
|
|
|
+ *//*
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("test:onetomany:form:testDataMain2:del")
|
|
|
+ @RequestMapping(value = "delete")
|
|
|
+ public AjaxJson delete(TestDataMain2 testDataMain2) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ testDataMain2Service.delete(testDataMain2);
|
|
|
+ j.setMsg("删除票务代理成功");
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ *//**
|
|
|
+ * 批量删除票务代理
|
|
|
+ *//*
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("test:onetomany:form:testDataMain2:del")
|
|
|
+ @RequestMapping(value = "deleteAll")
|
|
|
+ public AjaxJson deleteAll(String ids) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ String idArray[] =ids.split(",");
|
|
|
+ for(String id : idArray){
|
|
|
+ testDataMain2Service.delete(testDataMain2Service.get(id));
|
|
|
+ }
|
|
|
+ j.setMsg("删除票务代理成功");
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ *//**
|
|
|
+ * 导出excel文件
|
|
|
+ *//*
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("test:onetomany:form:testDataMain2:export")
|
|
|
+ @RequestMapping(value = "export")
|
|
|
+ public AjaxJson exportFile(TestDataMain2 testDataMain2, HttpServletRequest request, HttpServletResponse response) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ try {
|
|
|
+ String fileName = "票务代理"+DateUtils.getDate("yyyyMMddHHmmss")+".xlsx";
|
|
|
+ Page<TestDataMain2> page = testDataMain2Service.findPage(new Page<TestDataMain2>(request, response, -1), testDataMain2);
|
|
|
+ new ExportExcel("票务代理", TestDataMain2.class).setDataList(page.getList()).write(response, fileName).dispose();
|
|
|
+ j.setSuccess(true);
|
|
|
+ j.setMsg("导出成功!");
|
|
|
+ return j;
|
|
|
+ } catch (Exception e) {
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg("导出票务代理记录失败!失败信息:"+e.getMessage());
|
|
|
+ }
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ResponseBody
|
|
|
+ @RequestMapping(value = "detail")
|
|
|
+ public TestDataMain2 detail(String id) {
|
|
|
+ return testDataMain2Service.get(id);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ *//**
|
|
|
+ * 导入Excel数据
|
|
|
+
|
|
|
+ *//*
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("test:onetomany:form:testDataMain2:import")
|
|
|
+ @RequestMapping(value = "import")
|
|
|
+ public AjaxJson importFile(@RequestParam("file")MultipartFile file, HttpServletResponse response, HttpServletRequest request) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ try {
|
|
|
+ int successNum = 0;
|
|
|
+ int failureNum = 0;
|
|
|
+ StringBuilder failureMsg = new StringBuilder();
|
|
|
+ ImportExcel ei = new ImportExcel(file, 1, 0);
|
|
|
+ List<TestDataMain2> list = ei.getDataList(TestDataMain2.class);
|
|
|
+ for (TestDataMain2 testDataMain2 : list){
|
|
|
+ try{
|
|
|
+ testDataMain2Service.save(testDataMain2);
|
|
|
+ successNum++;
|
|
|
+ }catch(ConstraintViolationException ex){
|
|
|
+ failureNum++;
|
|
|
+ }catch (Exception ex) {
|
|
|
+ failureNum++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (failureNum>0){
|
|
|
+ failureMsg.insert(0, ",失败 "+failureNum+" 条票务代理记录。");
|
|
|
+ }
|
|
|
+ j.setMsg( "已成功导入 "+successNum+" 条票务代理记录"+failureMsg);
|
|
|
+ } catch (Exception e) {
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg("导入票务代理失败!失败信息:"+e.getMessage());
|
|
|
+ }
|
|
|
+ return j;
|
|
|
+ }
|
|
|
+
|
|
|
+ *//**
|
|
|
+ * 下载导入票务代理数据模板
|
|
|
+ *//*
|
|
|
+ @ResponseBody
|
|
|
+ @RequiresPermissions("test:onetomany:form:testDataMain2:import")
|
|
|
+ @RequestMapping(value = "import/template")
|
|
|
+ public AjaxJson importFileTemplate(HttpServletResponse response) {
|
|
|
+ AjaxJson j = new AjaxJson();
|
|
|
+ try {
|
|
|
+ String fileName = "票务代理数据导入模板.xlsx";
|
|
|
+ List<TestDataMain2> list = Lists.newArrayList();
|
|
|
+ new ExportExcel("票务代理数据", TestDataMain2.class, 1).setDataList(list).write(response, fileName).dispose();
|
|
|
+ return null;
|
|
|
+ } catch (Exception e) {
|
|
|
+ j.setSuccess(false);
|
|
|
+ j.setMsg( "导入模板下载失败!失败信息:"+e.getMessage());
|
|
|
+ }
|
|
|
+ return j;
|
|
|
+ }*/
|
|
|
+
|
|
|
+
|
|
|
+}
|