港湾 优化调薪为0 不调薪

This commit is contained in:
Harryxzy 2025-01-04 23:54:01 +08:00
parent e12450aa56
commit a3b9621ee4
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ public class shgwPltxActionNEW implements Action {
List<Map<String, Object>> importData = new ArrayList<>();
gwPltxDt1POS.stream()
.filter(po -> po.getDx() != null && !po.getDx().equals(BigDecimal.ZERO))
.filter(po -> po.getDx() != null && (po.getDx().compareTo(BigDecimal.ZERO) != 0 ))
.forEach(po -> {
HashMap<String, Object> map = new HashMap<>();
map.put("员工id", po.getXm());

View File

@ -62,7 +62,7 @@ public class shgwPltxActionNEWCheck implements Action {
List<Map<String, Object>> importData = new ArrayList<>();
gwPltxDt1POS.stream()
.filter(po -> po.getDx() != null && !po.getDx().equals(BigDecimal.ZERO))
.filter(po -> po.getDx() != null && (po.getDx().compareTo(BigDecimal.ZERO) != 0))
.forEach(po -> {
HashMap<String, Object> map = new HashMap<>();
map.put("员工id", po.getXm());