@@ -110,6 +110,9 @@ public class MusicGroupDeliveryRecordServiceImpl extends BaseServiceImpl<Long, M
}
List<Goods> goodsList = goodsService.findGoodsByIds(goodsIdsStr.toString());
+ goodsList.forEach(t -> {
+ t.setSellCount(0);
+ });
Map<Integer, Goods> goodsMap = goodsList.stream().collect(Collectors.toMap(Goods::getId, t -> t));
Goods g = null;