二开,人员报送,刷新不采集税期当月或者之后月份
This commit is contained in:
parent
df093e606c
commit
d296fba3e9
|
|
@ -147,6 +147,12 @@ public class EmployeeDeclareRefresh {
|
|||
employeeDeclare.setEmploymentStatus(EmploymentStatusEnum.ABNORMAL.getValue());
|
||||
employeeDeclare.setDismissDate(salaryArchive.getPayEndDate());
|
||||
}
|
||||
|
||||
//二开,过滤起始发薪日期>=当前税款所属期的
|
||||
Date payStartDate = salaryArchive.getPayStartDate();
|
||||
if (!payStartDate.before(dto.getTaxCycle())) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
employeeIds.add(employeeDeclare.getEmployeeId());
|
||||
result.getNewEmployeeDeclares().add(employeeDeclare);
|
||||
|
|
|
|||
Loading…
Reference in New Issue