港湾 优化调薪为0 不调薪
This commit is contained in:
parent
e12450aa56
commit
a3b9621ee4
|
|
@ -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());
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in New Issue