积分商品店铺名称问题处理

This commit is contained in:
Chopper 2021-05-26 09:27:27 +08:00
parent e4aa6abefa
commit b855cfb5f8

View File

@ -39,7 +39,7 @@ public class PointsGoodsManagerController {
AuthUser currentUser = UserContext.getCurrentUser();
List<PointsGoodsVO> collect = new ArrayList<>();
for (PointsGoodsVO i : pointsGoodsList) {
i.setStoreName("platform");
i.setStoreName(i.getGoodsSku().getStoreName());
i.setStoreId(currentUser.getId());
collect.add(i);
}