Authored by wangnan

【7天的收订金额】加字段 fix

... ... @@ -36,7 +36,7 @@ public class ProductSalesInfoBuilder implements ViewBuilder {
Map<Integer, BigDecimal> productSalesInfoMap = productSalesInfoList.stream().parallel().collect(Collectors.toMap(ProductSalesInfo::getProductSkn, ProductSalesInfo::getSevendayMoney));
productIndexBOs.stream().forEach(p -> {
if (productSalesInfoMap.containsKey(p.getProductSkn())) {
p.setCtrValue(productSalesInfoMap.get(p.getProductSkn()));
p.setSevendayMoney(productSalesInfoMap.get(p.getProductSkn()));
}
});
}
... ...