package cn.com.lzt.exchangeaccount.controller; import cn.com.lzt.common.util.UserUtil; import cn.com.lzt.exchangeaccount.dao.ExchangeAccountDao; import cn.com.lzt.exchangeaccount.dto.ExchangeAccountDto; import cn.com.lzt.exchangeaccount.entity.TBExchangeAccountEntity; import cn.com.lzt.exchangeaccount.service.TBExchangeAccountServiceI; import java.text.ParseException; import java.util.*; import java.text.SimpleDateFormat; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import cn.com.lzt.useractiviti.data.dao.UseractivitiDataDao; import org.apache.commons.lang.StringUtils; import org.apache.log4j.Logger; import org.jeecgframework.minidao.pojo.MiniDaoPage; import org.jeecgframework.web.system.pojo.base.TSUser; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.ModelAndView; import org.jeecgframework.core.common.controller.BaseController; import org.jeecgframework.core.common.exception.BusinessException; import org.jeecgframework.core.common.hibernate.qbc.CriteriaQuery; import org.jeecgframework.core.common.model.common.TreeChildCount; import org.jeecgframework.core.common.model.json.AjaxJson; import org.jeecgframework.core.common.model.json.DataGrid; import org.jeecgframework.core.constant.Globals; import org.jeecgframework.core.util.StringUtil; import org.jeecgframework.tag.core.easyui.TagUtil; import org.jeecgframework.web.system.pojo.base.TSDepart; import org.jeecgframework.web.system.service.SystemService; import org.jeecgframework.core.util.MyBeanUtils; import java.io.OutputStream; import org.jeecgframework.core.util.BrowserUtils; import org.jeecgframework.poi.excel.ExcelExportUtil; import org.jeecgframework.poi.excel.ExcelImportUtil; import org.jeecgframework.poi.excel.entity.ExportParams; import org.jeecgframework.poi.excel.entity.ImportParams; import org.jeecgframework.poi.excel.entity.TemplateExportParams; import org.jeecgframework.poi.excel.entity.vo.NormalExcelConstants; import org.jeecgframework.poi.excel.entity.vo.TemplateExcelConstants; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.jeecgframework.core.util.ResourceUtil; import java.io.IOException; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartHttpServletRequest; import org.jeecgframework.core.util.ExceptionUtil; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.jeecgframework.core.beanvalidator.BeanValidators; import javax.validation.ConstraintViolation; import javax.validation.Validator; import java.net.URI; import org.springframework.http.MediaType; import org.springframework.web.util.UriComponentsBuilder; /** * @Title: Controller * @Description: 调休账户 * @author onlineGenerator * @date 2019-10-17 21:14:51 * @version V1.0 * */ @Controller @RequestMapping("/tBExchangeAccountController") public class TBExchangeAccountController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(TBExchangeAccountController.class); @Autowired private TBExchangeAccountServiceI tBExchangeAccountService; @Autowired private SystemService systemService; @Autowired private Validator validator; @Autowired private ExchangeAccountDao exchangeAccountDao; @Autowired private UseractivitiDataDao useractivitiDataDao; /** * 调休账户列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(HttpServletRequest request) { TSUser user = ResourceUtil.getSessionUser(); boolean projectUser =UserUtil.isProjectUser(user.getId()); request.setAttribute("projectUser", projectUser); Calendar c = Calendar.getInstance(); request.setAttribute("curYear", c.get(Calendar.YEAR)); if(projectUser) { TSDepart tsDepart = useractivitiDataDao.getUserDep(user.getId()); request.setAttribute("depart", tsDepart); } return new ModelAndView("cn/com/lzt/exchangeaccount/tBExchangeAccountList"); } @RequestMapping(params = "listProject") public ModelAndView listProject(HttpServletRequest request) { request.setAttribute("projectUser", true); return new ModelAndView("cn/com/lzt/exchangeaccount/tBExchangeAccountList_project"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid */ @RequestMapping(params = "datagrid") public void datagrid(ExchangeAccountDto dto, HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { TSUser user = ResourceUtil.getSessionUser(); boolean projectUser =UserUtil.isProjectUser(user.getId()); if(projectUser){ dto.setLoginUserId(user.getId()); } if(StringUtils.isBlank(request.getParameter("departname"))){ dto.setDepartId(null); } MiniDaoPage list = exchangeAccountDao.getAccountList(dto, 1,Integer.MAX_VALUE); dataGrid.setResults(list.getResults()); TagUtil.datagrid(response, dataGrid); } @RequestMapping(params = "datagridProject") public void datagridProject(ExchangeAccountDto dto, HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { TSUser user = ResourceUtil.getSessionUser(); boolean projectUser =UserUtil.isProjectUser(user.getId()); if(projectUser){ dto.setLoginUserId(user.getId()); } MiniDaoPage list = exchangeAccountDao.getAccountList(dto, dataGrid.getPage(), dataGrid.getRows()); dataGrid.setTotal(list.getTotal()); dataGrid.setResults(list.getResults()); TagUtil.datagrid(response, dataGrid); } /** * 删除调休账户 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(TBExchangeAccountEntity tBExchangeAccount, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); tBExchangeAccount = systemService.getEntity(TBExchangeAccountEntity.class, tBExchangeAccount.getId()); message = "调休账户删除成功"; try{ tBExchangeAccountService.delete(tBExchangeAccount); systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO); }catch(Exception e){ e.printStackTrace(); message = "调休账户删除失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 批量删除调休账户 * * @return */ @RequestMapping(params = "doBatchDel") @ResponseBody public AjaxJson doBatchDel(String ids,HttpServletRequest request){ String message = null; AjaxJson j = new AjaxJson(); message = "调休账户删除成功"; try{ for(String id:ids.split(",")){ TBExchangeAccountEntity tBExchangeAccount = systemService.getEntity(TBExchangeAccountEntity.class, id ); tBExchangeAccountService.delete(tBExchangeAccount); systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO); } }catch(Exception e){ e.printStackTrace(); message = "调休账户删除失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 添加调休账户 * * @return */ @RequestMapping(params = "doAdd") @ResponseBody public AjaxJson doAdd(TBExchangeAccountEntity tBExchangeAccount, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "调休账户添加成功"; try{ tBExchangeAccountService.save(tBExchangeAccount); systemService.addLog(message, Globals.Log_Type_INSERT, Globals.Log_Leavel_INFO); }catch(Exception e){ e.printStackTrace(); message = "调休账户添加失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 更新调休账户 * * @return */ @RequestMapping(params = "doUpdate") @ResponseBody public AjaxJson doUpdate(TBExchangeAccountEntity tBExchangeAccount, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "调休账户更新成功"; TBExchangeAccountEntity t = tBExchangeAccountService.get(TBExchangeAccountEntity.class, tBExchangeAccount.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(tBExchangeAccount, t); tBExchangeAccountService.saveOrUpdate(t); systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); } catch (Exception e) { e.printStackTrace(); message = "调休账户更新失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 调休账户新增页面跳转 * * @return */ @RequestMapping(params = "goAdd") public ModelAndView goAdd(TBExchangeAccountEntity tBExchangeAccount, HttpServletRequest req) { if (StringUtil.isNotEmpty(tBExchangeAccount.getId())) { tBExchangeAccount = tBExchangeAccountService.getEntity(TBExchangeAccountEntity.class, tBExchangeAccount.getId()); req.setAttribute("tBExchangeAccountPage", tBExchangeAccount); } return new ModelAndView("cn/com/lzt/exchangeaccount/tBExchangeAccount-add"); } @RequestMapping(params = "goClearAccount") public ModelAndView goClearAccount(TBExchangeAccountEntity tBExchangeAccount, HttpServletRequest req) { return new ModelAndView("cn/com/lzt/exchangeaccount/clear_account"); } @RequestMapping(params = "goClearLastYearAccount") public ModelAndView goClearLastYearAccount(TBExchangeAccountEntity tBExchangeAccount, HttpServletRequest req) { return new ModelAndView("cn/com/lzt/exchangeaccount/clear_lastyear_account"); } /** * 调休账户编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(TBExchangeAccountEntity tBExchangeAccount, HttpServletRequest req) { if (StringUtil.isNotEmpty(tBExchangeAccount.getId())) { tBExchangeAccount = tBExchangeAccountService.getEntity(TBExchangeAccountEntity.class, tBExchangeAccount.getId()); req.setAttribute("tBExchangeAccountPage", tBExchangeAccount); } return new ModelAndView("cn/com/lzt/exchangeaccount/tBExchangeAccount-update"); } /** * 导入功能跳转 * * @return */ @RequestMapping(params = "upload") public ModelAndView upload(HttpServletRequest req) { req.setAttribute("controller_name","tBExchangeAccountController"); return new ModelAndView("common/upload/pub_excel_upload"); } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(ExchangeAccountDto dto,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { // CriteriaQuery cq = new CriteriaQuery(TBExchangeAccountEntity.class, dataGrid); // org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, tBExchangeAccount, request.getParameterMap()); // List tBExchangeAccounts = this.tBExchangeAccountService.getListByCriteriaQuery(cq,false); TSUser user = ResourceUtil.getSessionUser(); boolean projectUser =UserUtil.isProjectUser(user.getId()); if(projectUser){ dto.setLoginUserId(user.getId()); } MiniDaoPage list = exchangeAccountDao.getAccountList(dto, 1, Integer.MAX_VALUE); modelMap.put(NormalExcelConstants.FILE_NAME,"调休账户"); modelMap.put(NormalExcelConstants.CLASS,ExchangeAccountDto.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("调休账户列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,list.getResults()); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 导出excel 使模板 * * @param request * @param response */ @RequestMapping(params = "exportXlsByT") public String exportXlsByT(TBExchangeAccountEntity tBExchangeAccount,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { modelMap.put(NormalExcelConstants.FILE_NAME,"调休账户"); modelMap.put(NormalExcelConstants.CLASS,TBExchangeAccountEntity.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("调休账户列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,new ArrayList()); return NormalExcelConstants.JEECG_EXCEL_VIEW; } @SuppressWarnings("unchecked") @RequestMapping(params = "importExcel", method = RequestMethod.POST) @ResponseBody public AjaxJson importExcel(HttpServletRequest request, HttpServletResponse response) { AjaxJson j = new AjaxJson(); MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; Map fileMap = multipartRequest.getFileMap(); for (Map.Entry entity : fileMap.entrySet()) { MultipartFile file = entity.getValue();// 获取上传文件对象 ImportParams params = new ImportParams(); params.setTitleRows(2); params.setHeadRows(1); params.setNeedSave(true); try { List listTBExchangeAccountEntitys = ExcelImportUtil.importExcel(file.getInputStream(),TBExchangeAccountEntity.class,params); for (TBExchangeAccountEntity tBExchangeAccount : listTBExchangeAccountEntitys) { tBExchangeAccountService.save(tBExchangeAccount); } j.setMsg("文件导入成功!"); } catch (Exception e) { j.setMsg("文件导入失败!"); logger.error(ExceptionUtil.getExceptionMessage(e)); }finally{ try { file.getInputStream().close(); } catch (IOException e) { e.printStackTrace(); } } } return j; } @RequestMapping(method = RequestMethod.GET) @ResponseBody public List list() { List listTBExchangeAccounts=tBExchangeAccountService.getList(TBExchangeAccountEntity.class); return listTBExchangeAccounts; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { TBExchangeAccountEntity task = tBExchangeAccountService.get(TBExchangeAccountEntity.class, id); if (task == null) { return new ResponseEntity(HttpStatus.NOT_FOUND); } return new ResponseEntity(task, HttpStatus.OK); } @RequestMapping(method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE) @ResponseBody public ResponseEntity create(@RequestBody TBExchangeAccountEntity tBExchangeAccount, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(tBExchangeAccount); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ tBExchangeAccountService.save(tBExchangeAccount); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = tBExchangeAccount.getId(); URI uri = uriBuilder.path("/rest/tBExchangeAccountController/" + id).build().toUri(); HttpHeaders headers = new HttpHeaders(); headers.setLocation(uri); return new ResponseEntity(headers, HttpStatus.CREATED); } @RequestMapping(value = "/{id}", method = RequestMethod.PUT, consumes = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity update(@RequestBody TBExchangeAccountEntity tBExchangeAccount) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(tBExchangeAccount); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ tBExchangeAccountService.saveOrUpdate(tBExchangeAccount); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按Restful约定,返回204状态码, 无内容. 也可以返回200状态码. return new ResponseEntity(HttpStatus.NO_CONTENT); } @RequestMapping(value = "/{id}", method = RequestMethod.DELETE) @ResponseStatus(HttpStatus.NO_CONTENT) public void delete(@PathVariable("id") String id) { tBExchangeAccountService.deleteEntityById(TBExchangeAccountEntity.class, id); } @RequestMapping(params = "clearLastYearAccount") @ResponseBody public AjaxJson clearLastYearAccount(@RequestParam("yearMonth") String yearMonth,@RequestParam("ids") String ids) { AjaxJson j = new AjaxJson(); String message = "批量结算成功"; try { List idList = Arrays.asList(StringUtils.split(ids, ',')); tBExchangeAccountService.clearAccountByIds(idList, yearMonth); }catch (Exception e){ e.printStackTrace(); message="批量结算失败"; } j.setMsg(message); return j; } @RequestMapping(params = "clearAccount") @ResponseBody public AjaxJson clearAccount(@RequestParam("userId")String userId,@RequestParam("year") String year,@RequestParam("yearMonth") String yearMonth) { AjaxJson j = new AjaxJson(); String message = "结算账户余额成功"; tBExchangeAccountService.clearAccount(userId,year,yearMonth); j.setMsg(message); return j; } @RequestMapping(params = "getAccountBalance") @ResponseBody public double getAccountBalance(@RequestParam("userId")String userId,@RequestParam("year") String yearMonth) { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM"); String year = null; try { Date date = format.parse(yearMonth); year = tBExchangeAccountService.getYear(date); } catch (ParseException e) { e.printStackTrace(); } return tBExchangeAccountService.getBalance(userId,year,null); } }