integrated_traffic/src/main/java/com/zcloud/controller/taxationManage/TaxationManageController.java

259 lines
9.9 KiB
Java
Raw Normal View History

2024-03-07 10:23:53 +08:00
package com.zcloud.controller.taxationManage;
2024-04-26 18:02:57 +08:00
import cn.hutool.core.util.ObjectUtil;
2024-03-07 10:23:53 +08:00
import com.alibaba.excel.util.DateUtils;
2024-05-13 18:00:59 +08:00
import com.aliyuncs.facebody.model.v20191230.PedestrianDetectAttributeResponse;
2024-03-07 10:23:53 +08:00
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.freighttrailer.FreightTrailerService;
2024-03-07 10:23:53 +08:00
import com.zcloud.service.system.DictionariesService;
import com.zcloud.service.taxationManage.TaxationManageService;
import com.zcloud.util.*;
2024-04-07 18:50:21 +08:00
import org.apache.commons.lang3.StringUtils;
import org.apache.shiro.util.CollectionUtils;
2024-03-07 10:23:53 +08:00
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
2024-04-26 18:02:57 +08:00
import org.springframework.util.ObjectUtils;
2024-03-07 10:23:53 +08:00
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;
2024-05-13 18:00:59 +08:00
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
2024-04-07 18:50:21 +08:00
import java.util.function.Predicate;
import java.util.stream.Collectors;
import java.util.stream.Stream;
2024-03-07 10:23:53 +08:00
@Controller
@RequestMapping("/taxationmanage")
public class TaxationManageController extends BaseController {
@Autowired
private TaxationManageService taxationManageService;
@Autowired
private FreightTrailerService freightTrailerService;
2024-04-18 17:49:00 +08:00
/**
*
*
2024-03-07 10:23:53 +08:00
* @param
* @throws Exception
*/
2024-04-18 17:49:00 +08:00
@RequestMapping(value = "/add")
2024-03-07 10:23:53 +08:00
@ResponseBody
2024-04-18 17:49:00 +08:00
public Object add() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
2024-03-07 10:23:53 +08:00
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
2024-04-18 17:49:00 +08:00
pd.put("TAXATION_ID", this.get32UUID()); //车船税主键
pd.put("ISDELETE", "0"); //是否删除(0:有效 1删除)
pd.put("CREATOR", Jurisdiction.getUSER_ID()); //添加人id
pd.put("CREATORNAME", Jurisdiction.getName()); //添加人名字
pd.put("CREATTIME", DateUtil.date2Str(new Date())); //添加时间
2024-04-03 17:56:58 +08:00
pd.put("ARCHIVES_TYPE", "0"); //档案状态
2024-04-18 17:49:00 +08:00
if ("".equals(pd.getString("EXPIRE_STATUS"))) {
2024-03-07 10:23:53 +08:00
String expireDate = pd.getString("EXPIRE_DATE");
2024-04-29 17:54:21 +08:00
String ReminderData = pd.getString("REMINDER_DATA");
2024-03-07 10:23:53 +08:00
String day = DateUtil.getDay();
2024-04-29 17:54:21 +08:00
if (DateUtil.compareDate(expireDate, day) && DateUtil.compareDate(day, ReminderData)) {
pd.put("EXPIRE_STATUS", "2");
} else if (DateUtil.compareDate(expireDate, day)) {
2024-04-18 17:49:00 +08:00
pd.put("EXPIRE_STATUS", "1");
2024-04-29 17:54:21 +08:00
} else if (DateUtil.compareDate(day, expireDate)) {
2024-04-18 17:49:00 +08:00
pd.put("EXPIRE_STATUS", "0");
2024-03-07 10:23:53 +08:00
}
}
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
2024-03-07 10:23:53 +08:00
taxationManageService.save(pd);
map.put("pd", pd);
map.put("result", errInfo);
return map;
}
2024-04-18 17:49:00 +08:00
/**
*
*
2024-03-07 10:23:53 +08:00
* @param
* @throws Exception
*/
2024-04-18 17:49:00 +08:00
@RequestMapping(value = "/delete")
2024-03-07 10:23:53 +08:00
@ResponseBody
2024-04-18 17:49:00 +08:00
public Object delete() throws Exception {
Map<String, String> map = new HashMap<String, String>();
2024-03-07 10:23:53 +08:00
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
pd.put("DELETOR", Jurisdiction.getUSER_ID());
2024-04-17 13:01:53 +08:00
pd.put("DELETORNAME", Jurisdiction.getName());
2024-03-07 10:23:53 +08:00
pd.put("DELETTIME", DateUtil.date2Str(new Date()));
taxationManageService.delete(pd);
2024-04-18 17:49:00 +08:00
map.put("result", errInfo); //返回结果
2024-03-07 10:23:53 +08:00
return map;
}
2024-04-18 17:49:00 +08:00
/**
*
*
2024-03-07 10:23:53 +08:00
* @param
* @throws Exception
*/
2024-04-18 17:49:00 +08:00
@RequestMapping(value = "/edit")
2024-03-07 10:23:53 +08:00
@ResponseBody
2024-04-18 17:49:00 +08:00
public Object edit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
2024-03-07 10:23:53 +08:00
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
2024-04-18 17:49:00 +08:00
pd.put("ISDELETE", "0"); //是否删除(0:有效 1删除)
pd.put("OPERATOR", Jurisdiction.getUSER_ID()); //修改人id
2024-04-17 13:01:53 +08:00
pd.put("OPERATORNAME", Jurisdiction.getName()); // 修改人名字
2024-03-07 10:23:53 +08:00
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); // 修改时间
String expireDate = pd.getString("EXPIRE_DATE");
2024-04-29 17:54:21 +08:00
String ReminderData = pd.getString("REMINDER_DATA");
2024-03-07 10:23:53 +08:00
String day = DateUtil.getDay();
2024-04-29 17:54:21 +08:00
if (DateUtil.compareDate(expireDate, day) && DateUtil.compareDate(day, ReminderData)) {
pd.put("EXPIRE_STATUS", "2");
} else if (DateUtil.compareDate(expireDate, day)) {
2024-04-18 17:49:00 +08:00
pd.put("EXPIRE_STATUS", "1");
2024-04-29 17:54:21 +08:00
} else if (DateUtil.compareDate(day, expireDate)) {
2024-04-18 17:49:00 +08:00
pd.put("EXPIRE_STATUS", "0");
2024-03-07 10:23:53 +08:00
}
taxationManageService.edit(pd);
map.put("pd", pd);
map.put("result", errInfo);
return map;
}
2024-04-18 17:49:00 +08:00
/**
*
*
2024-03-07 10:23:53 +08:00
* @param
* @throws Exception
*/
2024-04-18 17:49:00 +08:00
@RequestMapping(value = "/goEdit")
2024-03-07 10:23:53 +08:00
@ResponseBody
2024-04-18 17:49:00 +08:00
public Object goEdit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
2024-03-07 10:23:53 +08:00
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
pd = taxationManageService.findById(pd);
map.put("pd", pd);
map.put("result", errInfo);
return map;
}
2024-04-18 17:49:00 +08:00
@RequestMapping(value = "/list")
2024-03-07 10:23:53 +08:00
@ResponseBody
2024-04-18 17:49:00 +08:00
public Object list(Page page) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
2024-03-07 10:23:53 +08:00
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
2024-04-18 17:49:00 +08:00
String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件
if (Tools.notEmpty(KEYWORDS)) pd.put("KEYWORDS", KEYWORDS.trim());
2024-04-09 21:51:06 +08:00
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
2024-03-07 10:23:53 +08:00
page.setPd(pd);
2024-04-22 17:56:11 +08:00
List<PageData> varList = taxationManageService.list(page); //列出MajorDangerSource列表
varList.stream().anyMatch(data -> {
if ("1".equals(data.getString("ISSCRAP"))) {
data.put("ARCHIVES_TYPE", "1");
} else if ("1".equals(data.getString("ISASSIGNED"))) {
data.put("ARCHIVES_TYPE", "2");
2024-04-07 18:50:21 +08:00
}
2024-04-22 17:56:11 +08:00
return false;
2024-04-07 18:50:21 +08:00
});
2024-05-13 18:00:59 +08:00
varList.forEach(data -> {
Date dueDate = DateUtil.fomatDate(data.getString("EXPIRE_DATE"));
Date reminderDate = DateUtil.fomatDate(data.getString("REMINDER_DATA"));
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String toDay = sdf.format(new Date());
Date date = null;
try {
date = sdf.parse(toDay);
} catch (ParseException e) {
throw new RuntimeException(e);
}
// 已到期
if(dueDate.before(date)) {
data.put("EXPIRE_STATUS", "0");
try {
taxationManageService.edit(data);
} catch (Exception e) {
throw new RuntimeException(e);
}
// 即将到期
} else if ((dueDate.after(date) || dueDate.equals(date)) && (reminderDate.before(date) || reminderDate.equals(date))) {
data.put("EXPIRE_STATUS", "2");
try {
taxationManageService.edit(data);
} catch (Exception e) {
throw new RuntimeException(e);
}
// 未到期
}else{
data.put("EXPIRE_STATUS", "1");
try {
taxationManageService.edit(data);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
});
2024-04-22 17:56:11 +08:00
map.put("varList", varList);
2024-03-07 10:23:53 +08:00
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;
}
@RequestMapping(value = "/choicetrailerlist")
@ResponseBody
public Object choiceTrailerList(Page page) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID
page.setPd(pd);
2024-04-18 17:49:00 +08:00
List<PageData> freightTrailerList = freightTrailerService.list(page); // 列出所有挂车列表
2024-04-01 10:46:03 +08:00
List<PageData> taxationList = taxationManageService.taxationList(pd.getString("CORPINFO_ID")); // 列出车船税列表
2024-04-18 17:49:00 +08:00
List<PageData> varList = new ArrayList<>();
if (!CollectionUtils.isEmpty(taxationList)) {
varList = freightTrailerList.stream().parallel()
.filter(freight -> taxationList.stream()
.noneMatch(taxation -> StringUtils.equals(freight.getString("PLATE_NUMBER"), taxation.getString("PLATE_NUMBER"))))
.collect(Collectors.toList());
2024-04-22 17:56:11 +08:00
} else {
2024-04-19 12:08:05 +08:00
varList = freightTrailerList;
}
2024-04-18 17:49:00 +08:00
2024-04-07 18:50:21 +08:00
// 过滤掉车船税下拉列表中已报废的车辆信息
2024-04-18 17:49:00 +08:00
List<PageData> choiceTrailerList = varList.stream().filter(data -> !"1".equals(data.get("ISSCRAP"))).collect(Collectors.toList());
2024-04-07 18:50:21 +08:00
map.put("varList", choiceTrailerList);
map.put("page", page);
map.put("result", errInfo);
return map;
}
2024-03-07 10:23:53 +08:00
}