合并冲突
This commit is contained in:
parent
4f051fcf04
commit
065bea67b1
|
|
@ -285,7 +285,7 @@ public class SalaryAcctResultBO {
|
|||
List<SalaryAcctResultPO> acctResult = acctResultMap.getOrDefault(e.getEmployeeId(), Collections.emptyList());
|
||||
Map<Long, Object> resultValueMap = SalaryEntityUtil.convert2Map(acctResult,
|
||||
SalaryAcctResultPO::getSalaryItemId, SalaryAcctResultPO::getResultValue);
|
||||
Map<Long, String> resultFeedbackValueMap = SalaryEntityUtil.convert2Map(acctResult.stream().filter(result -> StringUtils.isNotBlank(result.getEkFeedback())).collect(Collectors.toList()),
|
||||
Map<Long, String> resultFeedbackValueMap = SalaryEntityUtil.convert2Map(acctResult.stream().filter(r -> StringUtils.isNotBlank(r.getEkFeedback())).collect(Collectors.toList()),
|
||||
SalaryAcctResultPO::getSalaryItemId, SalaryAcctResultPO::getEkFeedback);
|
||||
// 薪资项目的值
|
||||
Map<String, Object> map = SalaryEntityUtil.convert2Map(salaryItems, o -> "" + o.getId(), o -> resultValueMap.getOrDefault(o.getId(), StringUtils.EMPTY));
|
||||
|
|
|
|||
Loading…
Reference in New Issue