Commit 4fbb84f1 authored by 王亚雷's avatar 王亚雷

修复收益显示错误

parent 490ff777
......@@ -196,7 +196,7 @@ public class ProductServiceImpl implements ProductService, Constant {
infos.forEach(info -> {
ProductInfoVO vo = new ProductInfoVO();
if (fundCountMap.containsKey(info.getId())) {
FundCount fundCount = fundCounts.get(0);
FundCount fundCount = fundCountMap.get(info.getId());
vo.setRet1m(multiply100(fundCount.getRet1m()));
vo.setRetIncep(multiply100(fundCount.getRetIncep()));
}
......
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