Commit 8856a394 authored by 332784038@qq.com's avatar 332784038@qq.com

单独将复制价格的业务功能改动优选合并处理

parent 3329b28b
......@@ -994,7 +994,7 @@ public class ProductPriceServiceImpl extends AbstractService<ProductPriceMapper,
});
} else {
Map<String, ProductPriceSpecialDO> dictTypeMap = productPriceSpecialDOList.stream()
.collect(Collectors.toMap(ProductPriceSpecialDO::getSpecialDictType, v -> v));
.collect(Collectors.toMap(ProductPriceSpecialDO::getSpecialDictType, v -> v, (v1, v2) -> v2));
specialList.forEach(t -> {
String dictType = t.getSpecialDictType();
ProductPriceSpecialDO productPriceSpecialDO = dictTypeMap.get(dictType);
......
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