diff --git a/src/com/engine/salary/biz/SIAccountBiz.java b/src/com/engine/salary/biz/SIAccountBiz.java
index a7dd4ed4c..6914f1b2c 100644
--- a/src/com/engine/salary/biz/SIAccountBiz.java
+++ b/src/com/engine/salary/biz/SIAccountBiz.java
@@ -10,7 +10,7 @@ import com.engine.salary.constant.SalaryDefaultTenantConstant;
import com.engine.salary.encrypt.AESEncryptUtil;
import com.engine.salary.encrypt.EncryptUtil;
import com.engine.salary.entity.datacollection.DataCollectionEmployee;
-import com.engine.salary.entity.salaryacct.dto.SalaryAcctProgressDTO;
+import com.engine.salary.entity.progress.ProgressDTO;
import com.engine.salary.entity.siaccount.dto.InsuranceAccountViewListDTO;
import com.engine.salary.entity.siaccount.dto.SIAccountUtilDTO;
import com.engine.salary.entity.siaccount.param.*;
@@ -28,10 +28,10 @@ import com.engine.salary.mapper.siarchives.InsuranceBaseInfoMapper;
import com.engine.salary.mapper.sicategory.ICategoryMapper;
import com.engine.salary.mapper.sischeme.InsuranceSchemeDetailMapper;
import com.engine.salary.mapper.taxagent.TaxAgentMapper;
-import com.engine.salary.service.SalaryAcctProgressService;
+import com.engine.salary.service.ProgressService;
import com.engine.salary.service.SalaryEmployeeService;
import com.engine.salary.service.TaxAgentService;
-import com.engine.salary.service.impl.SalaryAcctProgressServiceImpl;
+import com.engine.salary.service.impl.ProgressServiceImpl;
import com.engine.salary.service.impl.SalaryEmployeeServiceImpl;
import com.engine.salary.service.impl.TaxAgentServiceImpl;
import com.engine.salary.sys.entity.vo.OrderRuleVO;
@@ -113,8 +113,8 @@ public class SIAccountBiz extends Service {
return MapperProxyFactory.getProxy(InsuranceCompensationMapper.class);
}
- private SalaryAcctProgressService getSalaryAcctProgressService(User user) {
- return (SalaryAcctProgressService) ServiceUtil.getService(SalaryAcctProgressServiceImpl.class, user);
+ private ProgressService getSalaryAcctProgressService(User user) {
+ return (ProgressService) ServiceUtil.getService(ProgressServiceImpl.class, user);
}
private SIAccountDetailTempMapper getSIAccountDetailTempMapper() {
@@ -251,13 +251,13 @@ public class SIAccountBiz extends Service {
public void accounting(AccountParam param, Long employeeId, String tenantKey, String currentUserName) {
//薪资核算进度暂未实现
- SalaryAcctProgressDTO salaryAcctProgressDTO = getSalaryAcctProgressService(user).getProgress(SalaryCacheKey.ACCT_PROGRESS + param.getBillMonth());
+ ProgressDTO salaryAcctProgressDTO = getSalaryAcctProgressService(user).getProgress(SalaryCacheKey.ACCT_PROGRESS + param.getBillMonth());
if (salaryAcctProgressDTO != null && salaryAcctProgressDTO.getProgress().compareTo(BigDecimal.ONE) < 0) {
return;
}
// 初始化进度
- SalaryAcctProgressDTO initProgress = new SalaryAcctProgressDTO()
+ ProgressDTO initProgress = new ProgressDTO()
.setTitle(SalaryI18nUtil.getI18nLabel(97515, "核算中"))
.setTitleLabelId(97515L)
.setTotalQuantity(NumberUtils.INTEGER_ONE)
@@ -341,7 +341,7 @@ public class SIAccountBiz extends Service {
//salaryAcctProgressService.initProgress(tenantKey + param.getBillMonth(), salaryAcctProgressDTO, employeeId, tenantKey);
// 初始化进度
- SalaryAcctProgressDTO initProgress = new SalaryAcctProgressDTO()
+ ProgressDTO initProgress = new ProgressDTO()
.setTitle(SalaryI18nUtil.getI18nLabel(97515, "核算中"))
.setTitleLabelId(97515L)
.setTotalQuantity(ids.size())
diff --git a/src/com/engine/salary/entity/salaryacct/dto/SalaryAcctProgressDTO.java b/src/com/engine/salary/entity/progress/ProgressDTO.java
similarity index 79%
rename from src/com/engine/salary/entity/salaryacct/dto/SalaryAcctProgressDTO.java
rename to src/com/engine/salary/entity/progress/ProgressDTO.java
index 7258b40a4..1401eaaef 100644
--- a/src/com/engine/salary/entity/salaryacct/dto/SalaryAcctProgressDTO.java
+++ b/src/com/engine/salary/entity/progress/ProgressDTO.java
@@ -1,4 +1,4 @@
-package com.engine.salary.entity.salaryacct.dto;
+package com.engine.salary.entity.progress;
import lombok.AllArgsConstructor;
import lombok.Builder;
@@ -10,18 +10,19 @@ import java.io.Serializable;
import java.math.BigDecimal;
/**
- * @description: 核算进度
- * @author: xiajun
- * @modified By: xiajun
- * @date: Created in 12/13/21 1:34 PM
- * @version:v1.0
- */
+ * 进度
+ *
Copyright: Copyright (c) 2022
+ * Company: 泛微软件
+ *
+ * @author qiantao
+ * @version 1.0
+ **/
@Data
@Builder
@Accessors(chain = true)
@NoArgsConstructor
@AllArgsConstructor
-public class SalaryAcctProgressDTO implements Serializable {
+public class ProgressDTO implements Serializable {
/**
* 当前步骤名称
diff --git a/src/com/engine/salary/entity/salaryacct/dto/SalaryAccResultListDTO.java b/src/com/engine/salary/entity/salaryacct/dto/SalaryAccResultListDTO.java
deleted file mode 100644
index f294ed26c..000000000
--- a/src/com/engine/salary/entity/salaryacct/dto/SalaryAccResultListDTO.java
+++ /dev/null
@@ -1,39 +0,0 @@
-//package com.engine.salary.entity.salaryacct.dto;
-//
-//import com.fasterxml.jackson.databind.annotation.JsonSerialize;
-//import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
-//import com.weaver.hrm.salary.common.WeaTableColumnWapper;
-//import io.swagger.annotations.ApiModel;
-//import io.swagger.annotations.ApiModelProperty;
-//import lombok.AllArgsConstructor;
-//import lombok.Builder;
-//import lombok.Data;
-//import lombok.NoArgsConstructor;
-//
-//import java.util.List;
-//import java.util.Map;
-//
-///**
-// * @description: 核算结果列表
-// * @author: xiajun
-// * @modified By: xiajun
-// * @date: Created in 12/6/21 6:53 PM
-// * @version:v1.0
-// */
-//@Data
-//@Builder
-//@NoArgsConstructor
-//@AllArgsConstructor
-////"核算结果列表")
-//public class SalaryAccResultListDTO {
-//
-// //动态表头")
-// private List columns;
-//
-// //列表数据")
-// private List