708 lines
36 KiB
Java
708 lines
36 KiB
Java
package com.engine.salary.service.impl;
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
import cn.hutool.core.util.NumberUtil;
|
|
import com.api.formmode.mybatis.util.SqlProxyHandle;
|
|
import com.engine.common.util.ServiceUtil;
|
|
import com.engine.core.impl.Service;
|
|
import com.engine.hrmelog.entity.dto.LoggerContext;
|
|
import com.engine.salary.biz.SpecialAddDeductionBiz;
|
|
import com.engine.salary.config.SalaryElogConfig;
|
|
import com.engine.salary.encrypt.EncryptUtil;
|
|
import com.engine.salary.entity.datacollection.AddUpDeduction;
|
|
import com.engine.salary.entity.datacollection.DataCollectionEmployee;
|
|
import com.engine.salary.entity.datacollection.dto.SpecialAddDeductionListDTO;
|
|
import com.engine.salary.entity.datacollection.dto.SpecialAddDeductionRecordDTO;
|
|
import com.engine.salary.entity.datacollection.param.SpecialAddDeductionImportParam;
|
|
import com.engine.salary.entity.datacollection.param.SpecialAddDeductionParam;
|
|
import com.engine.salary.entity.datacollection.param.SpecialAddDeductionQueryParam;
|
|
import com.engine.salary.entity.datacollection.param.SpecialAddDeductionRecordDeleteParam;
|
|
import com.engine.salary.entity.datacollection.po.SpecialAddDeductionPO;
|
|
import com.engine.salary.entity.taxagent.dto.TaxAgentManageRangeEmployeeDTO;
|
|
import com.engine.salary.entity.taxagent.param.TaxAgentQueryParam;
|
|
import com.engine.salary.entity.taxagent.po.TaxAgentPO;
|
|
import com.engine.salary.enums.OperateTypeEnum;
|
|
import com.engine.salary.enums.UserStatusEnum;
|
|
import com.engine.salary.enums.auth.AuthFilterTypeEnum;
|
|
import com.engine.salary.exception.SalaryRunTimeException;
|
|
import com.engine.salary.mapper.datacollection.SpecialAddDeductionMapper;
|
|
import com.engine.salary.mapper.sys.SalarySysConfMapper;
|
|
import com.engine.salary.service.AddUpDeductionService;
|
|
import com.engine.salary.service.SalaryEmployeeService;
|
|
import com.engine.salary.service.SpecialAddDeductionService;
|
|
import com.engine.salary.service.TaxAgentService;
|
|
import com.engine.salary.service.auth.AuthService;
|
|
import com.engine.salary.service.auth.AuthServiceImpl;
|
|
import com.engine.salary.sys.entity.po.SalarySysConfPO;
|
|
import com.engine.salary.sys.entity.vo.OrderRuleVO;
|
|
import com.engine.salary.sys.service.SalarySysConfService;
|
|
import com.engine.salary.sys.service.impl.SalarySysConfServiceImpl;
|
|
import com.engine.salary.util.SalaryEntityUtil;
|
|
import com.engine.salary.util.SalaryI18nUtil;
|
|
import com.engine.salary.util.db.MapperProxyFactory;
|
|
import com.engine.salary.util.excel.ExcelParseHelper;
|
|
import com.engine.salary.util.excel.ExcelPreviewDTO;
|
|
import com.engine.salary.util.excel.ExcelUtil;
|
|
import com.engine.salary.util.page.PageInfo;
|
|
import com.engine.salary.util.page.SalaryPageUtil;
|
|
import com.google.common.collect.Maps;
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.apache.commons.lang3.Validate;
|
|
import org.apache.poi.util.IOUtils;
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
import weaver.file.ImageFileManager;
|
|
import weaver.general.Util;
|
|
import weaver.hrm.User;
|
|
|
|
import java.io.InputStream;
|
|
import java.math.BigDecimal;
|
|
import java.text.SimpleDateFormat;
|
|
import java.time.YearMonth;
|
|
import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
|
|
import static com.engine.salary.constant.SalaryDefaultTenantConstant.DEFAULT_TENANT_KEY;
|
|
import static com.engine.salary.util.excel.ExcelSupport.EXCEL_TYPE_XLSX;
|
|
|
|
public class SpecialAddDeductionServiceImpl extends Service implements SpecialAddDeductionService {
|
|
private EncryptUtil encryptUtil = new EncryptUtil();
|
|
|
|
private SpecialAddDeductionBiz getSpecialAddDeductionBiz() {
|
|
return new SpecialAddDeductionBiz();
|
|
}
|
|
|
|
private SpecialAddDeductionMapper getSpecialAddDeductionMapper() {
|
|
return MapperProxyFactory.getProxy(SpecialAddDeductionMapper.class);
|
|
}
|
|
|
|
private TaxAgentService getTaxAgentService(User user) {
|
|
return ServiceUtil.getService(TaxAgentServiceImpl.class, user);
|
|
}
|
|
|
|
private AddUpDeductionService getAddUpDeductionService(User user) {
|
|
return ServiceUtil.getService(AddUpDeductionServiceImpl.class, user);
|
|
}
|
|
|
|
private SalaryEmployeeService getSalaryEmployeeService(User user) {
|
|
return ServiceUtil.getService(SalaryEmployeeServiceImpl.class, user);
|
|
}
|
|
|
|
private SalarySysConfMapper getSalarySysConfMapper() {
|
|
return SqlProxyHandle.getProxy(SalarySysConfMapper.class);
|
|
}
|
|
|
|
private SalarySysConfService getSalarySysConfService(User user) {
|
|
return ServiceUtil.getService(SalarySysConfServiceImpl.class, user);
|
|
}
|
|
|
|
public AuthService getAuthService(User user) {
|
|
return ServiceUtil.getService(AuthServiceImpl.class, user);
|
|
}
|
|
|
|
@Override
|
|
public SpecialAddDeductionPO getById(Long id) {
|
|
return getSpecialAddDeductionBiz().getById(id);
|
|
}
|
|
|
|
|
|
@Override
|
|
public PageInfo<SpecialAddDeductionListDTO> listPage(SpecialAddDeductionQueryParam queryParam) {
|
|
//排序配置
|
|
OrderRuleVO orderRule = getSalarySysConfService(user).orderRule();
|
|
queryParam.setOrderRule(orderRule);
|
|
List<SpecialAddDeductionListDTO> list = getSpecialAddDeductionMapper().listByParam(queryParam);
|
|
list = getAuthService(user).auth(list, AuthFilterTypeEnum.DATA_OPT, SpecialAddDeductionListDTO.class);
|
|
|
|
PageInfo<SpecialAddDeductionListDTO> page = SalaryPageUtil.buildPage(queryParam.getCurrent(), queryParam.getPageSize(),
|
|
list, SpecialAddDeductionListDTO.class);
|
|
encryptUtil.decryptList(page.getList(), SpecialAddDeductionListDTO.class);
|
|
return page;
|
|
}
|
|
|
|
@Override
|
|
public PageInfo<SpecialAddDeductionRecordDTO> recordListPage(SpecialAddDeductionQueryParam queryParam) {
|
|
List<SpecialAddDeductionRecordDTO> list = getSpecialAddDeductionMapper().listDtoByParam(queryParam);
|
|
PageInfo<SpecialAddDeductionRecordDTO> page = SalaryPageUtil.buildPage(queryParam.getCurrent(), queryParam.getPageSize(),
|
|
list, SpecialAddDeductionRecordDTO.class);
|
|
encryptUtil.decryptList(page.getList(), SpecialAddDeductionRecordDTO.class);
|
|
return page;
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
public ExcelPreviewDTO preview(SpecialAddDeductionImportParam importParam) {
|
|
|
|
//excel文件id
|
|
String imageId = Util.null2String(importParam.getImageId());
|
|
Validate.notBlank(imageId, "imageId为空");
|
|
|
|
InputStream fileInputStream = null;
|
|
try {
|
|
fileInputStream = ImageFileManager.getInputStreamById(Integer.parseInt(imageId));
|
|
return ExcelParseHelper.preview(fileInputStream, 0, EXCEL_TYPE_XLSX);
|
|
} finally {
|
|
IOUtils.closeQuietly(fileInputStream);
|
|
}
|
|
}
|
|
|
|
|
|
public Map<String, Object> importData(SpecialAddDeductionImportParam importParam) {
|
|
|
|
long currentEmployeeId = user.getUID();
|
|
Map<String, Object> apidatas = new HashMap<String, Object>();
|
|
SpecialAddDeductionBiz SpecialAddDeductionBiz = new SpecialAddDeductionBiz();
|
|
|
|
//查询对于人员信息导入筛选的全局配置
|
|
SalarySysConfPO salarySysConfPO = getSalarySysConfMapper().getOneByCode("matchEmployeeMode");
|
|
String confValue = (salarySysConfPO != null && salarySysConfPO.getConfValue() != null && !"".equals(salarySysConfPO.getConfValue())) ? salarySysConfPO.getConfValue() : "0";
|
|
|
|
//检验参数
|
|
checkImportParam(importParam);
|
|
|
|
//excel文件id
|
|
String imageId = Util.null2String(importParam.getImageId());
|
|
Validate.notBlank(imageId, "imageId为空");
|
|
//个税扣缴义务人
|
|
String taxAgentId = Util.null2String(importParam.getTaxAgentId());
|
|
|
|
InputStream fileInputStream = null;
|
|
try {
|
|
fileInputStream = ImageFileManager.getInputStreamById(Integer.parseInt(imageId));
|
|
List<SpecialAddDeductionListDTO> SpecialAddDeductions = ExcelParseHelper.parse2Map(fileInputStream, SpecialAddDeductionListDTO.class, 0, 1, 14, "SpecialAddDeductionTemplate.xlsx");
|
|
|
|
int total = SpecialAddDeductions.size();
|
|
int index = 0;
|
|
int successCount = 0;
|
|
int errorCount = 0;
|
|
|
|
//人员信息
|
|
List<DataCollectionEmployee> employees = getSalaryEmployeeService(user).listEmployee();
|
|
// 获取个税扣缴义务人
|
|
TaxAgentQueryParam param = TaxAgentQueryParam.builder().build();
|
|
param.setFilterType(AuthFilterTypeEnum.ADMIN_DATA);
|
|
List<TaxAgentPO> taxAgentList = getTaxAgentService(user).listAuth(param);
|
|
|
|
// 错误excel内容
|
|
List<Map> errorData = new ArrayList<>();
|
|
//合规数据
|
|
List<SpecialAddDeductionPO> eligibleData = new ArrayList<>();
|
|
|
|
for (int i = 0; i < SpecialAddDeductions.size(); i++) {
|
|
SpecialAddDeductionListDTO dto = SpecialAddDeductions.get(i);
|
|
|
|
Date now = new Date();
|
|
//待插入数据库对象
|
|
SpecialAddDeductionPO po = SpecialAddDeductionPO.builder()
|
|
.tenantKey(DEFAULT_TENANT_KEY)
|
|
.createTime(now)
|
|
.updateTime(now)
|
|
.creator((long) user.getUID())
|
|
.build();
|
|
|
|
//异常点数量
|
|
int errorSum = 0;
|
|
|
|
//行号
|
|
String rowIndex = String.format("第%s行", i + 2);
|
|
|
|
//相同的姓名
|
|
String userName = dto.getUsername();
|
|
String deparmentName = dto.getDepartmentName();
|
|
String mobile = dto.getMobile();
|
|
String workcode = dto.getJobNum();
|
|
String idNo = dto.getIdNo();
|
|
List<Long> employeeSameIds = new ArrayList<>();
|
|
|
|
//筛选导入人员信息可以在人力资源池中匹配到的人员信息
|
|
List<DataCollectionEmployee> emps = getSalaryEmployeeService(user)
|
|
.matchImportEmployee(confValue, employees, userName, deparmentName, mobile, workcode, idNo, null);
|
|
//含在职和离职,选在职数据
|
|
if (CollectionUtils.isNotEmpty(emps) && emps.size() > 1) {
|
|
employeeSameIds = emps.stream()
|
|
.filter(e -> UserStatusEnum.getNormalStatus().contains(e.getStatus()))
|
|
.map(DataCollectionEmployee::getEmployeeId)
|
|
.collect(Collectors.toList());
|
|
}
|
|
if (CollectionUtils.isNotEmpty(emps) && emps.size() == 1) {
|
|
employeeSameIds = emps.stream()
|
|
.map(DataCollectionEmployee::getEmployeeId)
|
|
.collect(Collectors.toList());
|
|
}
|
|
|
|
//当人员信息导入筛选的全局配置为"0"时,姓名才是必填项
|
|
if (StringUtils.isBlank(userName) && "0".equals(confValue)) {
|
|
//姓名 不能为空
|
|
//错误消息对象
|
|
Map<String, String> errorMessageMap = Maps.newHashMap();
|
|
errorMessageMap.put("message", rowIndex + "姓名不能为空");
|
|
errorData.add(errorMessageMap);
|
|
errorSum += 1;
|
|
} else if (CollectionUtils.isEmpty(employeeSameIds) || employeeSameIds.size() > 1) {
|
|
Map<String, String> errorMessageMap = Maps.newHashMap();
|
|
errorMessageMap.put("message", rowIndex + "员工信息不存在或者存在多个员工");
|
|
errorData.add(errorMessageMap);
|
|
errorSum += 1;
|
|
} else {
|
|
Long employeeId = CollectionUtils.isNotEmpty(employeeSameIds) && employeeSameIds.size() == 1 ? employeeSameIds.get(0) : null;
|
|
if (employeeId != null && employeeId > 0) {
|
|
po.setEmployeeId(employeeId);
|
|
} else {
|
|
//姓名错误,系统内不存在该姓名
|
|
Map<String, String> errorMessageMap = new HashMap<>();
|
|
errorMessageMap.put("message", rowIndex + "姓名错误,系统内不存在该姓名");
|
|
errorData.add(errorMessageMap);
|
|
errorSum += 1;
|
|
}
|
|
}
|
|
|
|
|
|
String taxAgentName = dto.getTaxAgentName();
|
|
if (StringUtils.isBlank(taxAgentName)) {
|
|
//个税扣缴义务人不能为空
|
|
Map<String, String> errorMessageMap = new HashMap<>();
|
|
errorMessageMap.put("message", rowIndex + "个税扣缴义务人不能为空");
|
|
errorData.add(errorMessageMap);
|
|
errorSum += 1;
|
|
} else {
|
|
Optional<TaxAgentPO> optionalTemp = taxAgentList.stream().filter(m -> m.getName().equals(taxAgentName)).findFirst();
|
|
if (optionalTemp.isPresent()) {
|
|
if (StringUtils.isNotEmpty(taxAgentId) && !optionalTemp.get().getId().equals(Long.valueOf(taxAgentId))) {
|
|
//个税扣缴义务人与导入时选择的不一致
|
|
Map<String, String> errorMessageMap = new HashMap<>();
|
|
errorMessageMap.put("message", rowIndex + "个税扣缴义务人与导入时选择的不一致");
|
|
errorData.add(errorMessageMap);
|
|
errorSum += 1;
|
|
} else {
|
|
po.setTaxAgentId(optionalTemp.get().getId());
|
|
}
|
|
} else {
|
|
//个税扣缴义务人不存在
|
|
Map<String, String> errorMessageMap = new HashMap<>();
|
|
errorMessageMap.put("message", rowIndex + "个税扣缴义务人不存在或不在权限范围内");
|
|
errorData.add(errorMessageMap);
|
|
errorSum += 1;
|
|
}
|
|
}
|
|
|
|
// 核心字段, 前端没有传入的项目用空值覆盖
|
|
po.setInfantCare(dto.getInfantCare() == null ? "" : dto.getInfantCare())
|
|
.setSeriousIllnessTreatment(dto.getSeriousIllnessTreatment() == null ? "" : dto.getSeriousIllnessTreatment())
|
|
.setSupportingElder(dto.getSupportingElder() == null ? "" : dto.getSupportingElder())
|
|
.setHousingRent(dto.getHousingRent() == null ? "" : dto.getHousingRent())
|
|
.setHousingLoanInterest(dto.getHousingLoanInterest() == null ? "" : dto.getHousingLoanInterest())
|
|
.setContinuingEducation(dto.getContinuingEducation() == null ? "" : dto.getContinuingEducation())
|
|
.setChildrenEducation(dto.getChildrenEducation() == null ? "" : dto.getChildrenEducation());
|
|
|
|
|
|
//fixme 分权判断
|
|
if (errorSum == 0) {
|
|
successCount += 1;
|
|
// 合格数据
|
|
eligibleData.add(po);
|
|
} else {
|
|
errorCount += 1;
|
|
// 添加错误数据
|
|
}
|
|
}
|
|
|
|
//入库
|
|
SpecialAddDeductionBiz.handleImportData(eligibleData, user);
|
|
|
|
apidatas.put("successCount", successCount);
|
|
apidatas.put("errorCount", errorCount);
|
|
apidatas.put("errorData", errorData);
|
|
|
|
} finally {
|
|
IOUtils.closeQuietly(fileInputStream);
|
|
}
|
|
return apidatas;
|
|
}
|
|
|
|
private void checkImportParam(SpecialAddDeductionImportParam importParam) {
|
|
//excel文件id
|
|
String imageId = Util.null2String(importParam.getImageId());
|
|
//个税扣缴义务人
|
|
String taxAgentId = Util.null2String(importParam.getTaxAgentId());
|
|
|
|
if (StringUtils.isBlank(imageId)) {
|
|
throw new SalaryRunTimeException("文件不存在");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 导出
|
|
*
|
|
* @param param
|
|
* @param isTemplate
|
|
* @return
|
|
*/
|
|
public XSSFWorkbook export(SpecialAddDeductionQueryParam param, boolean isTemplate) {
|
|
|
|
//获取操作按钮资源
|
|
List<List<Object>> rowList = getExcelRowList(param, isTemplate);
|
|
|
|
// 记录操作日志
|
|
String name = SalaryI18nUtil.getI18nLabel(0, "导出");
|
|
LoggerContext<AddUpDeduction> loggerContext = new LoggerContext<>();
|
|
loggerContext.setTargetName(SalaryI18nUtil.getI18nLabel(0, "专项附加扣除"));
|
|
loggerContext.setOperateType(OperateTypeEnum.EXCEL_EXPORT.getValue());
|
|
loggerContext.setOperateTypeName(name);
|
|
loggerContext.setOperatedesc(SalaryI18nUtil.getI18nLabel(0, "专项附加扣除") + "-" + name);
|
|
loggerContext.setUser(user);
|
|
SalaryElogConfig.specialAddDeductionLoggerTemplate.write(loggerContext);
|
|
|
|
//获取excel
|
|
return ExcelUtil.genWorkbookWithDefaultPattern(rowList, "专项附加免税扣除", 2);
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取excel数据行
|
|
*
|
|
* @return 导出数据行集合
|
|
*/
|
|
private List<List<Object>> getExcelRowList(SpecialAddDeductionQueryParam param, boolean isTemplate) {
|
|
long employeeId = user.getUID();
|
|
//excel标题
|
|
List<Object> title = Arrays.asList("姓名", "个税扣缴义务人", "部门", "手机号", "工号", "证件号码", "入职日期", "子女教育", "继续教育", "住房贷款利息", "住房租金", "赡养老人", "大病医疗", "婴幼儿照护");
|
|
|
|
List<List<Object>> rowList = new ArrayList<>();
|
|
rowList.add(title);
|
|
if (!isTemplate || param.isHasData()) {
|
|
// 非下载导入模版,查询数据填充
|
|
List<List<Object>> dataRowList = queryInfoForExcel(param, rowList);
|
|
rowList.addAll(dataRowList);
|
|
}
|
|
return rowList;
|
|
}
|
|
|
|
|
|
/**
|
|
* 导出详情列表
|
|
*
|
|
* @param param
|
|
* @return
|
|
*/
|
|
public XSSFWorkbook exportDetail(SpecialAddDeductionQueryParam param) {
|
|
|
|
SpecialAddDeductionBiz biz = new SpecialAddDeductionBiz();
|
|
|
|
Long id = param.getSpecialAddDeductionId();
|
|
if (id == null) {
|
|
throw new SalaryRunTimeException("id不能为空");
|
|
}
|
|
|
|
SpecialAddDeductionPO po = biz.getById(id);
|
|
if (po == null) {
|
|
throw new SalaryRunTimeException(String.format("专项附加扣除不存在" + "[id:%s]", id));
|
|
}
|
|
|
|
List<DataCollectionEmployee> employeeList = getSalaryEmployeeService(user).getEmployeeByIds(Collections.singletonList(po.getEmployeeId()));
|
|
if (CollectionUtils.isEmpty(employeeList)) {
|
|
throw new SalaryRunTimeException("员工信息不存在");
|
|
}
|
|
|
|
//构建参数
|
|
param.setEmployeeId(po.getEmployeeId());
|
|
|
|
|
|
//获取操作按钮资源
|
|
List<List<Object>> rowList = getExcelRowDetailList(param);
|
|
|
|
//获取excel
|
|
return ExcelUtil.genWorkbookWithDefaultPattern(rowList, "专项附加扣除明细", 2);
|
|
}
|
|
|
|
|
|
/**
|
|
* 导出详情
|
|
*
|
|
* @param param
|
|
* @return
|
|
*/
|
|
private List<List<Object>> getExcelRowDetailList(SpecialAddDeductionQueryParam param) {
|
|
//excel标题
|
|
List<Object> title = Arrays.asList("姓名", "个税扣缴义务人", "部门", "手机号", "工号", "子女教育", "继续教育", "住房贷款利息", "住房租金", "赡养老人", "大病医疗", "婴幼儿照护");
|
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM");
|
|
//查询详细信息
|
|
List<SpecialAddDeductionRecordDTO> list = getSpecialAddDeductionBiz().listDTOByParam(param);
|
|
encryptUtil.decryptList(list, SpecialAddDeductionRecordDTO.class);
|
|
final List<List<Object>> dataRowList = Optional.ofNullable(list)
|
|
.map(List::stream)
|
|
.map(operatorStream -> operatorStream.map(dto -> {
|
|
List<Object> cellList = new ArrayList<>();
|
|
cellList.add(Util.null2String(dto.getUsername()));
|
|
cellList.add(Util.null2String(dto.getTaxAgentName()));
|
|
cellList.add(Util.null2String(dto.getDepartmentName()));
|
|
cellList.add(Util.null2String(dto.getMobile()));
|
|
cellList.add(Util.null2String(dto.getJobNum()));
|
|
cellList.add(NumberUtil.isNumber(dto.getChildrenEducation()) ? new BigDecimal(dto.getChildrenEducation()) : Util.null2String(dto.getChildrenEducation()));
|
|
cellList.add(NumberUtil.isNumber(dto.getContinuingEducation()) ? new BigDecimal(dto.getContinuingEducation()) : Util.null2String(dto.getContinuingEducation()));
|
|
cellList.add(NumberUtil.isNumber(dto.getHousingLoanInterest()) ? new BigDecimal(dto.getHousingLoanInterest()) : Util.null2String(dto.getHousingLoanInterest()));
|
|
cellList.add(NumberUtil.isNumber(dto.getHousingRent()) ? new BigDecimal(dto.getHousingRent()) : Util.null2String(dto.getHousingRent()));
|
|
cellList.add(NumberUtil.isNumber(dto.getSupportingElder()) ? new BigDecimal(dto.getSupportingElder()) : Util.null2String(dto.getSupportingElder()));
|
|
cellList.add(NumberUtil.isNumber(dto.getSeriousIllnessTreatment()) ? new BigDecimal(dto.getSeriousIllnessTreatment()) : Util.null2String(dto.getSeriousIllnessTreatment()));
|
|
cellList.add(NumberUtil.isNumber(dto.getInfantCare()) ? new BigDecimal(dto.getInfantCare()) : Util.null2String(dto.getInfantCare()));
|
|
return cellList;
|
|
}).collect(Collectors.toList()))
|
|
.orElse(Collections.emptyList());
|
|
|
|
List<List<Object>> rowList = new ArrayList<>();
|
|
rowList.add(title);
|
|
rowList.addAll(dataRowList);
|
|
return rowList;
|
|
}
|
|
|
|
|
|
@Override
|
|
public List<SpecialAddDeductionPO> getSpecialAddDeductionList(YearMonth declareMonth, List<Long> employeeIds, Long taxAgentId) {
|
|
if (declareMonth == null) {
|
|
throw new SalaryRunTimeException(SalaryI18nUtil.getI18nLabel(100342, "参数有误:申报月份必传"));
|
|
}
|
|
SpecialAddDeductionBiz SpecialAddDeductionBiz = new SpecialAddDeductionBiz();
|
|
return SpecialAddDeductionBiz.listByTaxAgentIds(null);
|
|
}
|
|
|
|
@Override
|
|
public void editData(SpecialAddDeductionParam specialAddDeductionParam) {
|
|
SpecialAddDeductionBiz SpecialAddDeductionBiz = new SpecialAddDeductionBiz();
|
|
Long currentEmployeeId = (long) user.getUID();
|
|
// 获取所有个税扣缴义务人
|
|
// Collection<TaxAgentManageRangeEmployeeDTO> taxAgentList =
|
|
// getTaxAgentService(user).listTaxAgentAndEmployeeTree(currentEmployeeId);
|
|
|
|
TaxAgentQueryParam param = TaxAgentQueryParam.builder().build();
|
|
param.setFilterType(AuthFilterTypeEnum.ADMIN_DATA);
|
|
Collection<TaxAgentPO> taxAgentList = getTaxAgentService(user).listAuth(param);
|
|
|
|
SpecialAddDeductionPO byId = SpecialAddDeductionBiz.getById(specialAddDeductionParam.getId());
|
|
if (byId == null) {
|
|
throw new SalaryRunTimeException("该数据不存在!");
|
|
}
|
|
//管理员可以编辑该扣缴义务人数据,其他人可以编辑本人数据
|
|
boolean canEdit = byId.getEmployeeId().equals((long) user.getUID())
|
|
|| taxAgentList.stream().anyMatch(t -> Objects.equals(t.getId(), byId.getTaxAgentId()));
|
|
if (!canEdit) {
|
|
//没有编辑权限
|
|
throw new SalaryRunTimeException("该个税扣缴义务人无权限编辑此数据!");
|
|
}
|
|
ArrayList<SpecialAddDeductionPO> updateList = new ArrayList<>();
|
|
SpecialAddDeductionPO build = SpecialAddDeductionPO.builder()
|
|
.id(specialAddDeductionParam.getId())
|
|
.childrenEducation(specialAddDeductionParam.getChildrenEducation())
|
|
.continuingEducation(specialAddDeductionParam.getContinuingEducation())
|
|
.housingLoanInterest(specialAddDeductionParam.getHousingLoanInterest())
|
|
.housingRent(specialAddDeductionParam.getHousingRent())
|
|
.infantCare(specialAddDeductionParam.getInfantCare())
|
|
.supportingElder(specialAddDeductionParam.getSupportingElder())
|
|
.seriousIllnessTreatment(specialAddDeductionParam.getSeriousIllnessTreatment())
|
|
.build();
|
|
updateList.add(build);
|
|
SpecialAddDeductionBiz.batchUpdate(updateList);
|
|
|
|
// 记录操作日志
|
|
SpecialAddDeductionPO newValue = SpecialAddDeductionBiz.getById(build.getId());
|
|
String name = SalaryI18nUtil.getI18nLabel(0, "编辑");
|
|
LoggerContext<SpecialAddDeductionPO> loggerContext = new LoggerContext<>();
|
|
loggerContext.setTargetId(newValue.getId().toString());
|
|
loggerContext.setTargetName(SalaryI18nUtil.getI18nLabel(0, "专项附加扣除") + "-" + newValue.getId());
|
|
loggerContext.setOperateType(OperateTypeEnum.UPDATE.getValue());
|
|
loggerContext.setOperateTypeName(name);
|
|
loggerContext.setOperatedesc(SalaryI18nUtil.getI18nLabel(0, "专项附加扣除") + "-" + SalaryI18nUtil
|
|
.getI18nLabel(0, "编辑"));
|
|
loggerContext.setOldValues(byId);
|
|
loggerContext.setNewValues(newValue);
|
|
loggerContext.setUser(user);
|
|
SalaryElogConfig.specialAddDeductionLoggerTemplate.write(loggerContext);
|
|
}
|
|
|
|
@Override
|
|
public void createData(SpecialAddDeductionParam specialAddDeductionParam) {
|
|
long currentEmployeeId = user.getUID();
|
|
Boolean openDevolution = getTaxAgentService(user).isOpenDevolution();
|
|
SpecialAddDeductionBiz SpecialAddDeductionBiz = new SpecialAddDeductionBiz();
|
|
//查询对于人员信息导入筛选的全局配置
|
|
SalarySysConfPO salarySysConfPO = getSalarySysConfMapper().getOneByCode("matchEmployeeMode");
|
|
String confValue = (salarySysConfPO != null && salarySysConfPO.getConfValue() != null && !"".equals(salarySysConfPO.getConfValue())) ? salarySysConfPO.getConfValue() : "0";
|
|
|
|
//人员信息
|
|
List<DataCollectionEmployee> employees = getSalaryEmployeeService(user).listEmployee();
|
|
// 获取所有个税扣缴义务人
|
|
Collection<TaxAgentManageRangeEmployeeDTO> taxAgentList = getTaxAgentService(user).listTaxAgentAndEmployeeTree(currentEmployeeId);
|
|
// 查询已有数据
|
|
List<SpecialAddDeductionPO> list = getSpecialAddDeductionBiz().listByTaxAgentIds(null);
|
|
//合规数据
|
|
List<SpecialAddDeductionPO> insertData = new ArrayList<>();
|
|
Date now = new Date();
|
|
//待插入数据库对象
|
|
SpecialAddDeductionPO po = SpecialAddDeductionPO.builder()
|
|
.tenantKey(DEFAULT_TENANT_KEY)
|
|
.createTime(now)
|
|
.updateTime(now)
|
|
.creator((long) user.getUID())
|
|
.build();
|
|
|
|
//筛选导入人员信息可以在人力资源池中匹配到的人员信息
|
|
boolean employeeSameId = employees.stream()
|
|
.anyMatch(e -> Objects.equals(e.getEmployeeId(), specialAddDeductionParam.getEmployeeId()));
|
|
if (!employeeSameId) {
|
|
throw new SalaryRunTimeException("员工信息不存在");
|
|
}
|
|
po.setEmployeeId(specialAddDeductionParam.getEmployeeId());
|
|
String taxAgentName = specialAddDeductionParam.getTaxAgentName();
|
|
if (StringUtils.isBlank(taxAgentName)) {
|
|
//个税扣缴义务人不能为空
|
|
throw new SalaryRunTimeException("个税扣缴义务人不能为空");
|
|
} else {
|
|
Optional<TaxAgentManageRangeEmployeeDTO> optionalTemp = taxAgentList.stream().filter(m -> m.getTaxAgentName().equals(taxAgentName)).findFirst();
|
|
if (optionalTemp.isPresent()) {
|
|
po.setTaxAgentId(optionalTemp.get().getTaxAgentId());
|
|
} else {
|
|
//个税扣缴义务人不存在或不在权限范围内
|
|
throw new SalaryRunTimeException("个税扣缴义务人不存在或不在权限范围内");
|
|
}
|
|
}
|
|
//数据填充
|
|
po.setContinuingEducation(specialAddDeductionParam.getContinuingEducation())
|
|
.setChildrenEducation(specialAddDeductionParam.getChildrenEducation())
|
|
.setHousingLoanInterest(specialAddDeductionParam.getHousingLoanInterest())
|
|
.setHousingRent(specialAddDeductionParam.getHousingRent())
|
|
.setSupportingElder(specialAddDeductionParam.getSupportingElder())
|
|
.setSeriousIllnessTreatment(specialAddDeductionParam.getSeriousIllnessTreatment())
|
|
.setInfantCare(specialAddDeductionParam.getInfantCare());
|
|
//fixme 分权判断
|
|
insertData.add(po);
|
|
//入库
|
|
SpecialAddDeductionBiz.handleImportData(insertData, user);
|
|
}
|
|
|
|
@Override
|
|
public void deleteSelectData(SpecialAddDeductionRecordDeleteParam deleteParam) {
|
|
long currentEmployeeId = user.getUID();
|
|
// 获取所有个税扣缴义务人
|
|
Collection<TaxAgentManageRangeEmployeeDTO> taxAgentList =
|
|
getTaxAgentService(user).listTaxAgentAndEmployeeTree(currentEmployeeId);
|
|
SpecialAddDeductionBiz SpecialAddDeductionBiz = new SpecialAddDeductionBiz();
|
|
List<Long> deleteIds = deleteParam.getIds();
|
|
List<Long> deleteList = new ArrayList<>();
|
|
List<SpecialAddDeductionPO> oldSpecialAddDeductionList = new ArrayList<>();
|
|
for (Long id : deleteIds) {
|
|
SpecialAddDeductionPO byId = SpecialAddDeductionBiz.getById(id);
|
|
if (byId == null) {
|
|
throw new SalaryRunTimeException("数据不存在或已被删除!");
|
|
}
|
|
// 判断是否在个税扣缴义务人范围内
|
|
boolean isNotInRegion =
|
|
taxAgentList.stream()
|
|
.noneMatch(m -> Objects.equals(m.getTaxAgentId(), byId.getTaxAgentId()));
|
|
if (isNotInRegion) {
|
|
throw new SalaryRunTimeException("个税扣缴义务人不存在或不在权限范围内");
|
|
}
|
|
deleteList.add(byId.getId());
|
|
oldSpecialAddDeductionList.add(byId);
|
|
}
|
|
SpecialAddDeductionBiz.batchDeleteByIds(deleteList);
|
|
|
|
// 记录操作日志
|
|
if (CollectionUtils.isNotEmpty(oldSpecialAddDeductionList)) {
|
|
oldSpecialAddDeductionList.stream().forEach(e -> {
|
|
LoggerContext<AddUpDeduction> loggerContext = new LoggerContext<>();
|
|
loggerContext.setTargetId(e.getId().toString());
|
|
loggerContext.setTargetName(SalaryI18nUtil.getI18nLabel(0, "专项附加扣除") + "-" + e.getId());
|
|
loggerContext.setOperateType(OperateTypeEnum.DELETE.getValue());
|
|
loggerContext.setOperateTypeName(SalaryI18nUtil.getI18nLabel(0, "删除"));
|
|
loggerContext.setOperatedesc(SalaryI18nUtil.getI18nLabel(0, "专项附加扣除") + "-" + SalaryI18nUtil
|
|
.getI18nLabel(0, "删除"));
|
|
loggerContext.setOldValues(e);
|
|
loggerContext.setUser(user);
|
|
SalaryElogConfig.specialAddDeductionLoggerTemplate.write(loggerContext);
|
|
});
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void deleteAllData(SpecialAddDeductionRecordDeleteParam deleteParam) {
|
|
// 获取所有个税扣缴义务人
|
|
Collection<TaxAgentManageRangeEmployeeDTO> taxAgentList =
|
|
getTaxAgentService(user).listTaxAgentAndEmployeeTree((long) user.getUID());
|
|
List<Long> taxAgentIds = taxAgentList.stream()
|
|
.map(TaxAgentManageRangeEmployeeDTO::getTaxAgentId)
|
|
.collect(Collectors.toList());
|
|
SpecialAddDeductionBiz specialAddDeductionBiz = new SpecialAddDeductionBiz();
|
|
|
|
if (deleteParam.getTaxAgentId() != null && (!deleteParam.getTaxAgentId().equals(""))) {
|
|
// 设置了个税扣缴义务人
|
|
Long taxAgentId = SalaryEntityUtil.string2Long(deleteParam.getTaxAgentId());
|
|
boolean canDelete = taxAgentIds.stream().anyMatch(t -> Objects.equals(t, taxAgentId));
|
|
if (!canDelete) {
|
|
throw new SalaryRunTimeException("个税扣缴义务人不存在或不在权限范围内!");
|
|
}
|
|
ArrayList<Long> tai = new ArrayList<>();
|
|
tai.add(taxAgentId);
|
|
taxAgentIds = tai;
|
|
}
|
|
// 获取所有想要删除的数据
|
|
List<SpecialAddDeductionPO> list = specialAddDeductionBiz.listByTaxAgentIds(taxAgentIds);
|
|
List<Long> deleteIds = list.stream().map(SpecialAddDeductionPO::getId).collect(Collectors.toList());
|
|
specialAddDeductionBiz.batchDeleteByIds(deleteIds);
|
|
|
|
// 记录操作日志
|
|
Collection<Long> finalTaxAgentIds = taxAgentIds;
|
|
List<String> taxAgentNames = taxAgentList.stream().filter(t -> finalTaxAgentIds.contains(t.getTaxAgentId()))
|
|
.map(TaxAgentManageRangeEmployeeDTO::getTaxAgentName).collect(Collectors.toList());
|
|
String name = StringUtils.join(taxAgentNames, ",");
|
|
LoggerContext<AddUpDeduction> loggerContext = new LoggerContext<>();
|
|
loggerContext.setTargetName(name);
|
|
loggerContext.setOperateType(OperateTypeEnum.CLEAR.getValue());
|
|
loggerContext.setOperateTypeName(SalaryI18nUtil.getI18nLabel(0, "一键清空"));
|
|
loggerContext.setOperatedesc(SalaryI18nUtil.getI18nLabel(0, "专项附加扣除") + "-" + SalaryI18nUtil
|
|
.getI18nLabel(0, "一键清空:") + name);
|
|
loggerContext.setUser(user);
|
|
SalaryElogConfig.specialAddDeductionLoggerTemplate.write(loggerContext);
|
|
}
|
|
|
|
@Override
|
|
public List<SpecialAddDeductionPO> getSpecialAddDeductionPOByEmployee(List<Long> employeeId, Long taxAgentId) {
|
|
return getSpecialAddDeductionBiz().getByEmployeeId(employeeId, taxAgentId);
|
|
}
|
|
|
|
@Override
|
|
public SpecialAddDeductionRecordDTO getRecordById(Long id) {
|
|
List<SpecialAddDeductionRecordDTO> specialAddDeductionRecordDTOList = getSpecialAddDeductionBiz().listDTOByParam(SpecialAddDeductionQueryParam.builder().specialAddDeductionId(id).build());
|
|
return CollUtil.isNotEmpty(specialAddDeductionRecordDTOList) ? specialAddDeductionRecordDTOList.get(0) : null;
|
|
}
|
|
|
|
private List<List<Object>> queryInfoForExcel(SpecialAddDeductionQueryParam param, List<List<Object>> rowList) {
|
|
//排序配置
|
|
OrderRuleVO orderRule = getSalarySysConfService(user).orderRule();
|
|
param.setOrderRule(orderRule);
|
|
List<SpecialAddDeductionListDTO> list = getSpecialAddDeductionBiz().listByParam(param);
|
|
list = getAuthService(user).auth(list, AuthFilterTypeEnum.QUERY_DATA, SpecialAddDeductionListDTO.class);
|
|
final List<List<Object>> dataRowList = Optional.ofNullable(list)
|
|
.map(List::stream)
|
|
.map(operatorStream -> operatorStream.map(dto -> {
|
|
List<Object> cellList = new ArrayList<>();
|
|
cellList.add(Util.null2String(dto.getUsername()));
|
|
cellList.add(Util.null2String(dto.getTaxAgentName()));
|
|
cellList.add(Util.null2String(dto.getDepartmentName()));
|
|
cellList.add(Util.null2String(dto.getMobile()));
|
|
cellList.add(Util.null2String(dto.getJobNum()));
|
|
cellList.add(Util.null2String(dto.getIdNo()));
|
|
cellList.add(Util.null2String(dto.getHiredate()));
|
|
cellList.add(NumberUtil.isNumber(dto.getChildrenEducation()) ? new BigDecimal(dto.getChildrenEducation()) : Util.null2String(dto.getChildrenEducation()));
|
|
cellList.add(NumberUtil.isNumber(dto.getContinuingEducation()) ? new BigDecimal(dto.getContinuingEducation()) : Util.null2String(dto.getContinuingEducation()));
|
|
cellList.add(NumberUtil.isNumber(dto.getHousingLoanInterest()) ? new BigDecimal(dto.getHousingLoanInterest()) : Util.null2String(dto.getHousingLoanInterest()));
|
|
cellList.add(NumberUtil.isNumber(dto.getHousingRent()) ? new BigDecimal(dto.getHousingRent()) : Util.null2String(dto.getHousingRent()));
|
|
cellList.add(NumberUtil.isNumber(dto.getSupportingElder()) ? new BigDecimal(dto.getSupportingElder()) : Util.null2String(dto.getSupportingElder()));
|
|
cellList.add(NumberUtil.isNumber(dto.getSeriousIllnessTreatment()) ? new BigDecimal(dto.getSeriousIllnessTreatment()) : Util.null2String(dto.getSeriousIllnessTreatment()));
|
|
cellList.add(NumberUtil.isNumber(dto.getInfantCare()) ? new BigDecimal(dto.getInfantCare()) : Util.null2String(dto.getInfantCare()));
|
|
return cellList;
|
|
}).collect(Collectors.toList()))
|
|
.orElse(Collections.emptyList());
|
|
return dataRowList;
|
|
}
|
|
}
|