Commit 29b53fd9 authored by huyuchen's avatar huyuchen

薪资审核页面接口修改

parent 79a5aa2a
...@@ -27,13 +27,10 @@ import lombok.Data; ...@@ -27,13 +27,10 @@ import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length; import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.DecimalMax;
import javax.validation.constraints.NotNull; import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size; import javax.validation.constraints.Size;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;
...@@ -228,14 +225,14 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -228,14 +225,14 @@ public class TPreDispatchInfo extends BaseEntity {
*/ */
@Schema(description ="实际工作地") @Schema(description ="实际工作地")
@Length(max = 20, message = "实际工作地不能超过20个字符") @Length(max = 20, message = "实际工作地不能超过20个字符")
@ExcelAttribute(name = "实际工作地") @ExcelAttribute(name = "实际工作地", maxLength = 20)
private String workingAddress; private String workingAddress;
/** /**
* 备注说明1 * 备注说明1
*/ */
@Schema(description ="备注说明1") @Schema(description ="备注说明1")
@Length(max = 250, message = "备注说明1不能超过255个字符") @Length(max = 250, message = "备注说明1不能超过250个字符")
@ExcelAttribute(name = "备注说明1", maxLength = 250) @ExcelAttribute(name = "备注说明1", maxLength = 250)
private String remarkOne; private String remarkOne;
...@@ -266,7 +263,7 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -266,7 +263,7 @@ public class TPreDispatchInfo extends BaseEntity {
*/ */
@Schema(description ="养老起缴月") @Schema(description ="养老起缴月")
@Length(max = 6, message = "养老起缴月不能超过6个字符") @Length(max = 6, message = "养老起缴月不能超过6个字符")
@ExcelAttribute(name = "养老起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "养老起缴月", maxLength = 6, min = 6, isInteger = true)
private String pensionStart; private String pensionStart;
/** /**
...@@ -288,7 +285,7 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -288,7 +285,7 @@ public class TPreDispatchInfo extends BaseEntity {
*/ */
@Schema(description ="医疗起缴月") @Schema(description ="医疗起缴月")
@Length(max = 6, message = "医疗起缴月不能超过6个字符") @Length(max = 6, message = "医疗起缴月不能超过6个字符")
@ExcelAttribute(name = "医疗起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "医疗起缴月", maxLength = 6, min = 6, isInteger = true)
private String medicalStart; private String medicalStart;
/** /**
...@@ -309,8 +306,7 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -309,8 +306,7 @@ public class TPreDispatchInfo extends BaseEntity {
* 工伤起缴月 * 工伤起缴月
*/ */
@Schema(description ="工伤起缴月") @Schema(description ="工伤起缴月")
@Length(max = 6, message = "工伤起缴月不能超过6个字符") @ExcelAttribute(name = "工伤起缴月", maxLength = 6, min = 6, isInteger = true)
@ExcelAttribute(name = "工伤起缴月", maxLength = 6, isInteger = true)
private String injuryStart; private String injuryStart;
/** /**
...@@ -332,7 +328,7 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -332,7 +328,7 @@ public class TPreDispatchInfo extends BaseEntity {
*/ */
@Schema(description ="生育起缴月") @Schema(description ="生育起缴月")
@Length(max = 6, message = "生育起缴月不能超过6个字符") @Length(max = 6, message = "生育起缴月不能超过6个字符")
@ExcelAttribute(name = "生育起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "生育起缴月", maxLength = 6, min = 6, isInteger = true)
private String birthStart; private String birthStart;
/** /**
...@@ -354,7 +350,7 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -354,7 +350,7 @@ public class TPreDispatchInfo extends BaseEntity {
*/ */
@Schema(description ="失业起缴月") @Schema(description ="失业起缴月")
@Length(max = 6, message = "失业起缴月不能超过6个字符") @Length(max = 6, message = "失业起缴月不能超过6个字符")
@ExcelAttribute(name = "失业起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "失业起缴月", maxLength = 6, min = 6, isInteger = true)
private String unemploymentStart; private String unemploymentStart;
/** /**
...@@ -376,21 +372,21 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -376,21 +372,21 @@ public class TPreDispatchInfo extends BaseEntity {
*/ */
@Schema(description ="公积金起缴月") @Schema(description ="公积金起缴月")
@Length(max = 6, message = "公积金起缴月不能超过6个字符") @Length(max = 6, message = "公积金起缴月不能超过6个字符")
@ExcelAttribute(name = "公积金起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "公积金起缴月", maxLength = 6, min = 6, isInteger = true)
private String fundStart; private String fundStart;
/** /**
* 公积金个人比例 * 公积金个人比例
*/ */
@Schema(description ="公积金个人比例") @Schema(description ="公积金个人比例")
@ExcelAttribute(name = "公积金个人比例", isFloat = true,max = "99.99") @ExcelAttribute(name = "公积金个人比例", isFloat = true,max = "100.00")
private BigDecimal fundPersonalPer; private BigDecimal fundPersonalPer;
/** /**
* 公积金企业比例 * 公积金企业比例
*/ */
@Schema(description ="公积金企业比例") @Schema(description ="公积金企业比例")
@ExcelAttribute(name = "公积金企业比例", isFloat = true,max = "99.99") @ExcelAttribute(name = "公积金企业比例", isFloat = true,max = "100.00")
private BigDecimal fundCompanyPer; private BigDecimal fundCompanyPer;
/** /**
...@@ -439,9 +435,9 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -439,9 +435,9 @@ public class TPreDispatchInfo extends BaseEntity {
private String serviceType; private String serviceType;
/** /**
* 养老城市 * 城市
*/ */
@Schema(description ="养老城市") @Schema(description ="城市")
private String pensionAddressReduce; private String pensionAddressReduce;
/** /**
......
...@@ -220,16 +220,16 @@ public class TPreDispatchReduceVo { ...@@ -220,16 +220,16 @@ public class TPreDispatchReduceVo {
* 备注说明1 * 备注说明1
*/ */
@Schema(description ="备注说明1") @Schema(description ="备注说明1")
@Length(max = 255, message = "备注说明1不能超过255个字符") @Length(max = 250, message = "备注说明1不能超过250个字符")
@ExcelAttribute(name = "备注说明1", maxLength = 255) @ExcelAttribute(name = "备注说明1", maxLength = 250)
private String remarkOne; private String remarkOne;
/** /**
* 备注说明2 * 备注说明2
*/ */
@Schema(description ="备注说明2") @Schema(description ="备注说明2")
@Length(max = 255, message = "备注说明2不能超过255个字符") @Length(max = 250, message = "备注说明2不能超过250个字符")
@ExcelAttribute(name = "备注说明2", maxLength = 255) @ExcelAttribute(name = "备注说明2", maxLength = 250)
private String remarkTwo; private String remarkTwo;
/** /**
...@@ -244,7 +244,7 @@ public class TPreDispatchReduceVo { ...@@ -244,7 +244,7 @@ public class TPreDispatchReduceVo {
*/ */
@Schema(description ="养老起缴月") @Schema(description ="养老起缴月")
@Length(max = 6, message = "养老起缴月不能超过6个字符") @Length(max = 6, message = "养老起缴月不能超过6个字符")
@ExcelAttribute(name = "养老起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "养老起缴月", maxLength = 6, min = 6, isInteger = true)
private String pensionStart; private String pensionStart;
/** /**
...@@ -259,7 +259,7 @@ public class TPreDispatchReduceVo { ...@@ -259,7 +259,7 @@ public class TPreDispatchReduceVo {
*/ */
@Schema(description ="医疗起缴月") @Schema(description ="医疗起缴月")
@Length(max = 6, message = "医疗起缴月不能超过6个字符") @Length(max = 6, message = "医疗起缴月不能超过6个字符")
@ExcelAttribute(name = "医疗起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "医疗起缴月", maxLength = 6, min = 6, isInteger = true)
private String medicalStart; private String medicalStart;
/** /**
...@@ -281,7 +281,7 @@ public class TPreDispatchReduceVo { ...@@ -281,7 +281,7 @@ public class TPreDispatchReduceVo {
*/ */
@Schema(description ="工伤起缴月") @Schema(description ="工伤起缴月")
@Length(max = 6, message = "工伤起缴月不能超过6个字符") @Length(max = 6, message = "工伤起缴月不能超过6个字符")
@ExcelAttribute(name = "工伤起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "工伤起缴月", maxLength = 6, min = 6, isInteger = true)
private String injuryStart; private String injuryStart;
/** /**
...@@ -296,7 +296,7 @@ public class TPreDispatchReduceVo { ...@@ -296,7 +296,7 @@ public class TPreDispatchReduceVo {
*/ */
@Schema(description ="生育起缴月") @Schema(description ="生育起缴月")
@Length(max = 6, message = "生育起缴月不能超过6个字符") @Length(max = 6, message = "生育起缴月不能超过6个字符")
@ExcelAttribute(name = "生育起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "生育起缴月", maxLength = 6, min = 6, isInteger = true)
private String birthStart; private String birthStart;
/** /**
...@@ -311,7 +311,7 @@ public class TPreDispatchReduceVo { ...@@ -311,7 +311,7 @@ public class TPreDispatchReduceVo {
*/ */
@Schema(description ="失业起缴月") @Schema(description ="失业起缴月")
@Length(max = 6, message = "失业起缴月不能超过6个字符") @Length(max = 6, message = "失业起缴月不能超过6个字符")
@ExcelAttribute(name = "失业起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "失业起缴月", maxLength = 6, min = 6, isInteger = true)
private String unemploymentStart; private String unemploymentStart;
/** /**
...@@ -326,21 +326,21 @@ public class TPreDispatchReduceVo { ...@@ -326,21 +326,21 @@ public class TPreDispatchReduceVo {
*/ */
@Schema(description ="公积金起缴月") @Schema(description ="公积金起缴月")
@Length(max = 6, message = "公积金起缴月不能超过6个字符") @Length(max = 6, message = "公积金起缴月不能超过6个字符")
@ExcelAttribute(name = "公积金起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "公积金起缴月", maxLength = 6, min = 6, isInteger = true)
private String fundStart; private String fundStart;
/** /**
* 公积金个人比例 * 公积金个人比例
*/ */
@Schema(description ="公积金个人比例") @Schema(description ="公积金个人比例")
@ExcelAttribute(name = "公积金个人比例", isFloat = true,max = "99.99") @ExcelAttribute(name = "公积金个人比例", isFloat = true,max = "100.00")
private BigDecimal fundPersonalPer; private BigDecimal fundPersonalPer;
/** /**
* 公积金企业比例 * 公积金企业比例
*/ */
@Schema(description ="公积金企业比例") @Schema(description ="公积金企业比例")
@ExcelAttribute(name = "公积金企业比例", isFloat = true,max = "99.99") @ExcelAttribute(name = "公积金企业比例", isFloat = true,max = "100.00")
private BigDecimal fundCompanyPer; private BigDecimal fundCompanyPer;
/** /**
...@@ -689,8 +689,8 @@ public class TPreDispatchReduceVo { ...@@ -689,8 +689,8 @@ public class TPreDispatchReduceVo {
* 备注 * 备注
*/ */
@Schema(description ="备注") @Schema(description ="备注")
@Length(max = 255, message = "备注不能超过255个字符") @Length(max = 250, message = "备注不能超过250个字符")
@ExcelAttribute(name = "备注", maxLength = 255) @ExcelAttribute(name = "备注", maxLength = 250)
private String remark; private String remark;
/** /**
......
...@@ -174,7 +174,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -174,7 +174,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
* 养老起缴月 * 养老起缴月
*/ */
@Length(max = 6, message = "养老起缴月不能超过6个字符") @Length(max = 6, message = "养老起缴月不能超过6个字符")
@ExcelAttribute(name = "养老起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "养老起缴月", maxLength = 6, min = 6, isInteger = true)
private String pensionStart; private String pensionStart;
/** /**
* 医疗城市 * 医疗城市
...@@ -191,7 +191,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -191,7 +191,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
* 医疗起缴月 * 医疗起缴月
*/ */
@Length(max = 6, message = "医疗起缴月不能超过6个字符") @Length(max = 6, message = "医疗起缴月不能超过6个字符")
@ExcelAttribute(name = "医疗起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "医疗起缴月", maxLength = 6, min = 6, isInteger = true)
private String medicalStart; private String medicalStart;
/** /**
* 工伤城市 * 工伤城市
...@@ -208,7 +208,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -208,7 +208,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
* 工伤起缴月 * 工伤起缴月
*/ */
@Length(max = 6, message = "工伤起缴月不能超过6个字符") @Length(max = 6, message = "工伤起缴月不能超过6个字符")
@ExcelAttribute(name = "工伤起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "工伤起缴月", maxLength = 6, min = 6, isInteger = true)
private String injuryStart; private String injuryStart;
/** /**
* 生育城市 * 生育城市
...@@ -225,7 +225,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -225,7 +225,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
* 生育起缴月 * 生育起缴月
*/ */
@Length(max = 6, message = "生育起缴月不能超过6个字符") @Length(max = 6, message = "生育起缴月不能超过6个字符")
@ExcelAttribute(name = "生育起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "生育起缴月", maxLength = 6, min = 6, isInteger = true)
private String birthStart; private String birthStart;
/** /**
* 失业城市 * 失业城市
...@@ -242,7 +242,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -242,7 +242,7 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
* 失业起缴月 * 失业起缴月
*/ */
@Length(max = 6, message = "失业起缴月不能超过6个字符") @Length(max = 6, message = "失业起缴月不能超过6个字符")
@ExcelAttribute(name = "失业起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "失业起缴月", maxLength = 6, min = 6, isInteger = true)
private String unemploymentStart; private String unemploymentStart;
/** /**
* 公积金城市 * 公积金城市
...@@ -259,17 +259,17 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -259,17 +259,17 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
* 公积金起缴月 * 公积金起缴月
*/ */
@Length(max = 6, message = "公积金起缴月不能超过6个字符") @Length(max = 6, message = "公积金起缴月不能超过6个字符")
@ExcelAttribute(name = "公积金起缴月", maxLength = 6, isInteger = true) @ExcelAttribute(name = "公积金起缴月", maxLength = 6, min = 6, isInteger = true)
private String fundStart; private String fundStart;
/** /**
* 公积金个人比例 * 公积金个人比例
*/ */
@ExcelAttribute(name = "公积金个人比例", isFloat = true,max = "99.99") @ExcelAttribute(name = "公积金个人比例", isFloat = true,max = "100.00")
private BigDecimal fundPersonalPer; private BigDecimal fundPersonalPer;
/** /**
* 公积金企业比例 * 公积金企业比例
*/ */
@ExcelAttribute(name = "公积金企业比例", isFloat = true,max = "99.99") @ExcelAttribute(name = "公积金企业比例", isFloat = true,max = "100.00")
private BigDecimal fundCompanyPer; private BigDecimal fundCompanyPer;
/** /**
* 派单分公司 * 派单分公司
......
...@@ -251,6 +251,7 @@ public class TPreDispatchInfoController { ...@@ -251,6 +251,7 @@ public class TPreDispatchInfoController {
return R.ok(errorInfo); return R.ok(errorInfo);
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
return R.failed(PreDispatchConstants.DATA_IMPORT_ANALYSIS_ERROR); return R.failed(PreDispatchConstants.DATA_IMPORT_ANALYSIS_ERROR);
} }
} }
......
...@@ -356,6 +356,7 @@ public class TPreDispatchInfoServiceImpl extends ServiceImpl<TPreDispatchInfoMap ...@@ -356,6 +356,7 @@ public class TPreDispatchInfoServiceImpl extends ServiceImpl<TPreDispatchInfoMap
TDispatchImportVo importVo = new TDispatchImportVo(); TDispatchImportVo importVo = new TDispatchImportVo();
// 初始化派增的派单数据 // 初始化派增的派单数据
initDispatchAddVo(preInfo, importVo); initDispatchAddVo(preInfo, importVo);
importVo.setRowIndex(CommonConstants.ONE_INT);
List<TDispatchImportVo> importVoList = new ArrayList<>(); List<TDispatchImportVo> importVoList = new ArrayList<>();
importVoList.add(importVo); importVoList.add(importVo);
// 如果档案地市空 只能用缴纳地封装,如果缴纳地有问题直接返回 // 如果档案地市空 只能用缴纳地封装,如果缴纳地有问题直接返回
...@@ -562,8 +563,8 @@ public class TPreDispatchInfoServiceImpl extends ServiceImpl<TPreDispatchInfoMap ...@@ -562,8 +563,8 @@ public class TPreDispatchInfoServiceImpl extends ServiceImpl<TPreDispatchInfoMap
tPreDispatchInfo.setFundAddress(tPreDispatchInfo.getFundAddressReduce()); tPreDispatchInfo.setFundAddress(tPreDispatchInfo.getFundAddressReduce());
} }
// 合同开始截止时间 同步更新派单的合同时间 // 合同开始截止时间 同步更新派单的合同时间
tPreDispatchInfo.setContractEndAdd(tPreDispatchInfo.getContractEnd()); // tPreDispatchInfo.setContractEndAdd(tPreDispatchInfo.getContractEnd());
tPreDispatchInfo.setContractStartAdd(tPreDispatchInfo.getContractStart()); // tPreDispatchInfo.setContractStartAdd(tPreDispatchInfo.getContractStart());
// 没问题重置异常状态,有问题 在前面就返回了 // 没问题重置异常状态,有问题 在前面就返回了
tPreDispatchInfo.setExceptionContent(CommonConstants.EMPTY_STRING); tPreDispatchInfo.setExceptionContent(CommonConstants.EMPTY_STRING);
tPreDispatchInfo.setPreStatus(CommonConstants.ZERO_STRING); tPreDispatchInfo.setPreStatus(CommonConstants.ZERO_STRING);
...@@ -2358,6 +2359,7 @@ public class TPreDispatchInfoServiceImpl extends ServiceImpl<TPreDispatchInfoMap ...@@ -2358,6 +2359,7 @@ public class TPreDispatchInfoServiceImpl extends ServiceImpl<TPreDispatchInfoMap
importVo = new TDispatchImportVo(); importVo = new TDispatchImportVo();
// 初始化派增的派单数据 // 初始化派增的派单数据
initDispatchAddVo(pre, importVo); initDispatchAddVo(pre, importVo);
importVo.setRowIndex(i);
List<TDispatchImportVo> importVoList = new ArrayList<>(); List<TDispatchImportVo> importVoList = new ArrayList<>();
importVoList.add(importVo); importVoList.add(importVo);
// 如果档案地市空 只能用缴纳地封装,如果缴纳地有问题直接返回 // 如果档案地市空 只能用缴纳地封装,如果缴纳地有问题直接返回
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment