Merge branch 'master' into Bulbasaur

This commit is contained in:
lifenlong
2021-06-01 15:51:50 +08:00
9 changed files with 56 additions and 11 deletions

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);
}