forked from integrated_whb/integrated_whb
177 lines
6.9 KiB
Java
177 lines
6.9 KiB
Java
|
package com.zcloud.controller.taxationManage;
|
|||
|
|
|||
|
import com.alibaba.excel.util.DateUtils;
|
|||
|
import com.zcloud.controller.base.BaseController;
|
|||
|
import com.zcloud.entity.Page;
|
|||
|
import com.zcloud.entity.PageData;
|
|||
|
import com.zcloud.logs.LogAnno;
|
|||
|
import com.zcloud.service.assignedManage.AssignedManageService;
|
|||
|
import com.zcloud.service.system.DictionariesService;
|
|||
|
import com.zcloud.service.taxationManage.TaxationManageService;
|
|||
|
import com.zcloud.util.*;
|
|||
|
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.RequestParam;
|
|||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|||
|
import org.springframework.web.multipart.MultipartFile;
|
|||
|
|
|||
|
import java.util.Date;
|
|||
|
import java.util.HashMap;
|
|||
|
import java.util.List;
|
|||
|
import java.util.Map;
|
|||
|
|
|||
|
@Controller
|
|||
|
@RequestMapping("/taxationmanage")
|
|||
|
public class TaxationManageController extends BaseController {
|
|||
|
|
|||
|
@Autowired
|
|||
|
private TaxationManageService taxationManageService;
|
|||
|
|
|||
|
@Autowired
|
|||
|
private Smb smb;
|
|||
|
|
|||
|
/**新增
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/add")
|
|||
|
@ResponseBody
|
|||
|
public Object add(
|
|||
|
@RequestParam(value="drivinglicenseFile",required=false) MultipartFile drivinglicenseFile
|
|||
|
) throws Exception{
|
|||
|
Map<String,Object> map = new HashMap<String,Object>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
pd.put("TAXATION_ID", this.get32UUID()); //车船税主键
|
|||
|
pd.put("ISDELETE", "0"); //是否删除(0:有效 1:删除)
|
|||
|
pd.put("CREATOR", Jurisdiction.getUSER_ID()); //添加人id
|
|||
|
pd.put("CREATORNAME", Jurisdiction.getUsername()); //添加人名字
|
|||
|
pd.put("CREATTIME", DateUtil.date2Str(new Date())); //添加时间
|
|||
|
pd.put("OPERATOR", Jurisdiction.getUSER_ID()); //修改人id
|
|||
|
pd.put("OPERATORNAME", Jurisdiction.getUsername()); // 修改人名字
|
|||
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); // 修改时间
|
|||
|
if("".equals(pd.getString("EXPIRE_STATUS"))) {
|
|||
|
String expireDate = pd.getString("EXPIRE_DATE");
|
|||
|
String day = DateUtil.getDay();
|
|||
|
boolean flag = DateUtil.compareDate(expireDate, day);
|
|||
|
if(flag) {
|
|||
|
pd.put("EXPIRE_STATUS","未到期");
|
|||
|
}else{
|
|||
|
pd.put("EXPIRE_STATUS","已到期");
|
|||
|
}
|
|||
|
}
|
|||
|
if (null != drivinglicenseFile && !drivinglicenseFile.isEmpty()) {
|
|||
|
String ffile = DateUtil.getDays();
|
|||
|
//本地
|
|||
|
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile; //文件上传路径
|
|||
|
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|||
|
//服务器
|
|||
|
String fileName = this.get32UUID()+drivinglicenseFile.getOriginalFilename().substring(drivinglicenseFile.getOriginalFilename().lastIndexOf("."));
|
|||
|
smb.sshSftp(drivinglicenseFile, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
|||
|
pd.put("DRIVINGLICENSE_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
|||
|
}
|
|||
|
taxationManageService.save(pd);
|
|||
|
map.put("pd", pd);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**删除
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/delete")
|
|||
|
@ResponseBody
|
|||
|
public Object delete() throws Exception{
|
|||
|
Map<String,String> map = new HashMap<String,String>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
pd.put("DELETOR", Jurisdiction.getUSER_ID());
|
|||
|
pd.put("DELETORNAME", Jurisdiction.getUsername());
|
|||
|
pd.put("DELETTIME", DateUtil.date2Str(new Date()));
|
|||
|
taxationManageService.delete(pd);
|
|||
|
map.put("result", errInfo); //返回结果
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**修改
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/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();
|
|||
|
pd.put("ISDELETE", "0"); //是否删除(0:有效 1:删除)
|
|||
|
pd.put("CREATOR", Jurisdiction.getUSER_ID()); //添加人id
|
|||
|
pd.put("CREATORNAME", Jurisdiction.getUsername()); //添加人名字
|
|||
|
pd.put("CREATTIME", DateUtil.date2Str(new Date())); //添加时间
|
|||
|
pd.put("OPERATOR", Jurisdiction.getUSER_ID()); //修改人id
|
|||
|
pd.put("OPERATORNAME", Jurisdiction.getUsername()); // 修改人名字
|
|||
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); // 修改时间
|
|||
|
String expireDate = pd.getString("EXPIRE_DATE");
|
|||
|
String day = DateUtil.getDay();
|
|||
|
boolean flag = DateUtil.compareDate(expireDate, day);
|
|||
|
if(flag) {
|
|||
|
pd.put("EXPIRE_STATUS","未到期");
|
|||
|
}else{
|
|||
|
pd.put("EXPIRE_STATUS","已到期");
|
|||
|
}
|
|||
|
taxationManageService.edit(pd);
|
|||
|
map.put("pd", pd);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
/**去修改页面获取数据
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/goEdit")
|
|||
|
@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 = taxationManageService.findById(pd);
|
|||
|
map.put("pd", pd);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
@RequestMapping(value="/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 = taxationManageService.list(page); //列出MajorDangerSource列表
|
|||
|
map.put("varList", varList);
|
|||
|
map.put("page", page);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
@RequestMapping(value = "/taxationList")
|
|||
|
@ResponseBody
|
|||
|
public Object taxationList() throws Exception {
|
|||
|
Map<String, Object> map = new HashMap<String, Object>();
|
|||
|
String errInfo = "success";
|
|||
|
String corpId = Jurisdiction.getCORPINFO_ID();
|
|||
|
List<PageData> list = taxationManageService.taxationList(corpId); //列出Question列表
|
|||
|
map.put("list", list);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
}
|