Commit 2adf19c0 authored by 张亚辉's avatar 张亚辉

公募分红

parent e936c12d
...@@ -154,6 +154,9 @@ public class ProductOrderServiceImpl implements ProductOrderService, Constant { ...@@ -154,6 +154,9 @@ public class ProductOrderServiceImpl implements ProductOrderService, Constant {
.stream().collect(Collectors.groupingBy(TxFundNav::getFundId)); .stream().collect(Collectors.groupingBy(TxFundNav::getFundId));
return distributionList.stream().map(c -> { return distributionList.stream().map(c -> {
if (!txFundNavMap.containsKey(String.valueOf(c.getFundId()))) {
return null;
}
final FundBounsResp build = FundBounsResp.builder() final FundBounsResp build = FundBounsResp.builder()
.fundId(c.getFundId()) .fundId(c.getFundId())
.fundCode(c.getFundCode()) .fundCode(c.getFundCode())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment