231 lines
7.1 KiB
Java
231 lines
7.1 KiB
Java
package com.zcloud.controller.xgf;
|
||
|
||
import com.zcloud.controller.base.BaseController;
|
||
import com.zcloud.entity.Page;
|
||
import com.zcloud.entity.PageData;
|
||
import com.zcloud.service.xgf.TrainUsersService;
|
||
import com.zcloud.util.ObjectExcelView;
|
||
import com.zcloud.util.Tools;
|
||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||
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 java.util.ArrayList;
|
||
import java.util.HashMap;
|
||
import java.util.List;
|
||
import java.util.Map;
|
||
|
||
/**
|
||
* 说明:原来: 现在入场告知培训
|
||
* 作者:luoxiaobao
|
||
* 时间:2023-09-27
|
||
* 官网:www.zcloudchina.com
|
||
*/
|
||
@Controller
|
||
@RequestMapping("/trainusers")
|
||
public class TrainUsersController extends BaseController {
|
||
|
||
@Autowired
|
||
private TrainUsersService trainusersService;
|
||
|
||
/**新增
|
||
* @param
|
||
* @throws Exception
|
||
*/
|
||
@RequestMapping(value="/add")
|
||
@RequiresPermissions("trainusers:add")
|
||
@ResponseBody
|
||
public Object add() throws Exception{
|
||
Map<String,Object> map = new HashMap<String,Object>();
|
||
String errInfo = "success";
|
||
PageData pd = new PageData();
|
||
pd = this.getPageData();
|
||
pd.put("TRAINUSERS_ID", this.get32UUID()); //主键
|
||
pd.put("STEP_STATUS", "0");
|
||
trainusersService.save(pd);
|
||
map.put("result", errInfo);
|
||
return map;
|
||
}
|
||
|
||
/**删除
|
||
* @param out
|
||
* @throws Exception
|
||
*/
|
||
@RequestMapping(value="/delete")
|
||
@RequiresPermissions("trainusers:del")
|
||
@ResponseBody
|
||
public Object delete() throws Exception{
|
||
Map<String,String> map = new HashMap<String,String>();
|
||
String errInfo = "success";
|
||
PageData pd = new PageData();
|
||
pd = this.getPageData();
|
||
trainusersService.delete(pd);
|
||
map.put("result", errInfo); //返回结果
|
||
return map;
|
||
}
|
||
|
||
/**修改
|
||
* @param
|
||
* @throws Exception
|
||
*/
|
||
@RequestMapping(value="/edit")
|
||
@RequiresPermissions("trainusers:edit")
|
||
@ResponseBody
|
||
public Object edit() throws Exception{
|
||
Map<String,Object> map = new HashMap<String,Object>();
|
||
String errInfo = "success";
|
||
PageData pd = new PageData();
|
||
pd = this.getPageData();
|
||
trainusersService.edit(pd);
|
||
map.put("result", errInfo);
|
||
return map;
|
||
}
|
||
|
||
/**列表
|
||
* @param page
|
||
* @throws Exception
|
||
*/
|
||
@RequestMapping(value="/list")
|
||
@RequiresPermissions("trainusers:list")
|
||
@ResponseBody
|
||
public Object list(Page page) throws Exception{
|
||
Map<String,Object> map = new HashMap<String,Object>();
|
||
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<PageData> varList = trainusersService.list(page); //列出TrainUsers列表
|
||
map.put("varList", varList);
|
||
map.put("page", page);
|
||
map.put("result", errInfo);
|
||
return map;
|
||
}
|
||
|
||
/**去修改页面获取数据
|
||
* @param
|
||
* @throws Exception
|
||
*/
|
||
@RequestMapping(value="/goEdit")
|
||
@RequiresPermissions("trainusers:edit")
|
||
@ResponseBody
|
||
public Object goEdit() throws Exception{
|
||
Map<String,Object> map = new HashMap<String,Object>();
|
||
String errInfo = "success";
|
||
PageData pd = new PageData();
|
||
pd = this.getPageData();
|
||
pd = trainusersService.findById(pd); //根据ID读取
|
||
map.put("pd", pd);
|
||
map.put("result", errInfo);
|
||
return map;
|
||
}
|
||
|
||
/**批量删除
|
||
* @param
|
||
* @throws Exception
|
||
*/
|
||
@RequestMapping(value="/deleteAll")
|
||
@RequiresPermissions("trainusers:del")
|
||
@ResponseBody
|
||
public Object deleteAll() throws Exception{
|
||
Map<String,Object> map = new HashMap<String,Object>();
|
||
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(",");
|
||
trainusersService.deleteAll(ArrayDATA_IDS);
|
||
errInfo = "success";
|
||
}else{
|
||
errInfo = "error";
|
||
}
|
||
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<String,Object> dataMap = new HashMap<String,Object>();
|
||
List<String> titles = new ArrayList<String>();
|
||
titles.add("备注1"); //1
|
||
titles.add("培训批次"); //2
|
||
titles.add("用户ID"); //3
|
||
titles.add("培训开始时间"); //4
|
||
titles.add("培训结束时间"); //5
|
||
titles.add("培训状态0未培训1培训中2培训通过-1培训未通过"); //6
|
||
titles.add("培训企业"); //7
|
||
titles.add("流动类型"); //8
|
||
titles.add("安全监督部"); //9
|
||
titles.add("主管部门"); //10
|
||
titles.add("主管部门审批状态"); //11
|
||
titles.add("主管部门审批意见"); //12
|
||
titles.add("管理部门审批状态"); //13
|
||
titles.add("管理部门审批意见"); //14
|
||
dataMap.put("titles", titles);
|
||
List<PageData> varOList = trainusersService.listAll(pd);
|
||
List<PageData> varList = new ArrayList<PageData>();
|
||
for(int i=0;i<varOList.size();i++){
|
||
PageData vpd = new PageData();
|
||
vpd.put("var1", varOList.get(i).getString("TRAINUSERS_ID")); //1
|
||
vpd.put("var2", varOList.get(i).getString("TRAININGBATCH_ID")); //2
|
||
vpd.put("var3", varOList.get(i).getString("USER_ID")); //3
|
||
vpd.put("var4", varOList.get(i).getString("START_DATE")); //4
|
||
vpd.put("var5", varOList.get(i).getString("END_DATE")); //5
|
||
vpd.put("var6", varOList.get(i).get("STATUS").toString()); //6
|
||
vpd.put("var7", varOList.get(i).getString("TRAIN_CORPINFO_ID")); //7
|
||
vpd.put("var8", varOList.get(i).getString("TRAIN_AREA")); //8
|
||
vpd.put("var9", varOList.get(i).get("SUPERVISION_STATE").toString()); //9
|
||
vpd.put("var10", varOList.get(i).getString("SUPERVISION_OPINION")); //10
|
||
vpd.put("var11", varOList.get(i).get("MANAGER_STATE").toString()); //11
|
||
vpd.put("var12", varOList.get(i).getString("MANAGER_OPINION")); //12
|
||
vpd.put("var13", varOList.get(i).get("TERRITORIALITY_STATE").toString()); //13
|
||
vpd.put("var14", varOList.get(i).getString("TERRITORIALITY_OPINION")); //14
|
||
varList.add(vpd);
|
||
}
|
||
dataMap.put("varList", varList);
|
||
ObjectExcelView erv = new ObjectExcelView();
|
||
mv = new ModelAndView(erv,dataMap);
|
||
return mv;
|
||
}
|
||
/**用户审批
|
||
* @param
|
||
* @throws Exception
|
||
*/
|
||
@RequestMapping(value="/approveUser")
|
||
@ResponseBody
|
||
public Object approveUser() throws Exception{
|
||
Map<String,Object> map = new HashMap<String,Object>();
|
||
String errInfo = "success";
|
||
PageData pd = new PageData();
|
||
pd = this.getPageData();
|
||
trainusersService.approveUser(pd);
|
||
map.put("result", errInfo);
|
||
return map;
|
||
}
|
||
@RequestMapping(value = "/getUserinfoList")
|
||
@ResponseBody
|
||
public Object getUserinfoList() throws Exception {
|
||
Map<String, Object> map = new HashMap<>();
|
||
PageData pd = new PageData();
|
||
pd = this.getPageData();
|
||
List<PageData> list = trainusersService.findinfoByCondition(pd);
|
||
map.put("list", list);
|
||
map.put("result", "success");
|
||
return map;
|
||
}
|
||
|
||
}
|