防止未归档时合并计税异常
This commit is contained in:
parent
28551918c2
commit
32f5f25341
|
|
@ -248,7 +248,7 @@ public class SalaryAcctCalculateServiceImpl extends Service implements SalaryAcc
|
|||
*/
|
||||
private String handleConsolidatedTax(String resultValue, SalaryItemPO salaryItemPO, SalaryAcctCalculateBO salaryAcctCalculateBO, List<SalaryAcctEmployeePO> otherSalaryAcctEmployeePOS, List<SalaryAcctResultPO> otherSalaryAcctResultPOS) {
|
||||
// 如果相同税款所属期内没有其他薪资核算人员,就不存在合并计税
|
||||
if (CollectionUtils.isEmpty(otherSalaryAcctEmployeePOS)) {
|
||||
if (CollectionUtils.isEmpty(otherSalaryAcctEmployeePOS)||CollectionUtils.isEmpty(otherSalaryAcctResultPOS)) {
|
||||
return resultValue;
|
||||
}
|
||||
// 相同税款所属期内其他薪资核算记录
|
||||
|
|
|
|||
Loading…
Reference in New Issue