package com.zcloud.controller.app; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.servlet.ModelAndView; import org.apache.shiro.authz.annotation.RequiresPermissions; import com.zcloud.controller.base.BaseController; import com.zcloud.entity.Page; import com.zcloud.util.DateUtil; import com.zcloud.util.Jurisdiction; import com.zcloud.util.ObjectExcelView; import com.zcloud.util.Tools; import com.zcloud.entity.PageData; import com.zcloud.service.bus.OffDutyService; /** * 说明:休假 * 作者:luoxiaobao * 时间:2021-06-11 * 官网:www.zcloudchina.com */ @Controller @RequestMapping("/app/offduty") public class AppOffDutyController extends BaseController { @Autowired private OffDutyService offdutyService; /**新增 * @param * @throws Exception */ @RequestMapping(value="/add") @ResponseBody public Object add() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("OFFDUTY_ID", this.get32UUID()); //主键 pd.put("ISDELETE", "0"); //是否删除 0 未删除 1已删除 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //操作时间 pd.put("CREATTIME", DateUtil.date2Str(new Date())); //创建时间 offdutyService.save(pd); // 查看用户是否在休假中 PageData isRest = this.getPageData(); isRest.put("ISREST", "1"); isRest.put("USER_ID", pd.getString("USER_ID")); isRest.put("CORPINFO_ID", pd.getString("CORPINFO_ID")); List restList = offdutyService.listAll(isRest); if(restList != null && restList.size() > 0) { // 休假中 map.put("ISREST", "1"); } else { // 正常工作 map.put("ISREST", "0"); } map.put("result", errInfo); return map; } /**删除 * @param out * @throws Exception */ @RequestMapping(value="/delete") @RequiresPermissions("offduty:del") @ResponseBody public Object delete() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); offdutyService.delete(pd); map.put("result", errInfo); //返回结果 return map; } /**修改 * @param * @throws Exception */ @RequestMapping(value="/edit") @RequiresPermissions("offduty:edit") @ResponseBody public Object edit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); offdutyService.edit(pd); map.put("result", errInfo); return map; } /**列表 * @param page * @throws Exception */ @RequestMapping(value="/list") @RequiresPermissions("offduty:list") @ResponseBody public Object list(Page page) throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件 if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim()); page.setPd(pd); List varList = offdutyService.list(page); //列出OffDuty列表 map.put("varList", varList); map.put("page", page); map.put("result", errInfo); return map; } /**去修改页面获取数据 * @param * @throws Exception */ @RequestMapping(value="/goEdit") @RequiresPermissions("offduty:edit") @ResponseBody public Object goEdit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd = offdutyService.findById(pd); //根据ID读取 map.put("pd", pd); map.put("result", errInfo); return map; } /**查看当前用户是否正在休班 * @param page * @throws Exception */ @RequestMapping(value="/isRest") @ResponseBody public Object isRest() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("ISREST", "1"); List varList = offdutyService.listAll(pd); if(varList != null && varList.size() > 0) { // 休假中 map.put("ISREST", "1"); } else { // 正常工作 map.put("ISREST", "0"); } map.put("varList", varList); map.put("result", errInfo); return map; } /**批量删除 * @param * @throws Exception */ @RequestMapping(value="/deleteAll") @RequiresPermissions("offduty:del") @ResponseBody public Object deleteAll() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); String DATA_IDS = pd.getString("DATA_IDS"); if(Tools.notEmpty(DATA_IDS)){ String ArrayDATA_IDS[] = DATA_IDS.split(","); offdutyService.deleteAll(ArrayDATA_IDS); errInfo = "success"; }else{ errInfo = "fail"; } map.put("result", errInfo); //返回结果 return map; } /**导出到excel * @param * @throws Exception */ @RequestMapping(value="/excel") // @RequiresPermissions("toExcel") public ModelAndView exportExcel() throws Exception{ ModelAndView mv = new ModelAndView(); PageData pd = new PageData(); pd = this.getPageData(); Map dataMap = new HashMap(); List titles = new ArrayList(); titles.add("用户"); //1 titles.add("公司"); //2 titles.add("开始时间"); //3 titles.add("结束时间"); //4 titles.add("休班原因"); //5 titles.add("删除状态 0 -未删除 1- 已删除"); //6 titles.add("添加人"); //7 titles.add("创建时间"); //8 titles.add("修改人"); //9 titles.add("修改时间"); //10 dataMap.put("titles", titles); List varOList = offdutyService.listAll(pd); List varList = new ArrayList(); for(int i=0;i