Skip to content

Commit

Permalink
!232 fix: 修复编辑规格值顺序错误问题
Browse files Browse the repository at this point in the history
Merge pull request !232 from OceansDeep/feature/pg
  • Loading branch information
OceansDeep authored and gitee-org committed Sep 9, 2022
2 parents 02d017e + 322256c commit 3011645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public List<GoodsSku> getGoodsSkuByIdFromCache(List<String> ids) {

@Override
public List<GoodsSkuVO> getGoodsListByGoodsId(String goodsId) {
List<GoodsSku> list = this.list(new LambdaQueryWrapper<GoodsSku>().eq(GoodsSku::getGoodsId, goodsId).orderByAsc(GoodsSku::getGoodsName));
List<GoodsSku> list = this.list(new LambdaQueryWrapper<GoodsSku>().eq(GoodsSku::getGoodsId, goodsId));
return this.getGoodsSkuVOList(list);
}

Expand Down

0 comments on commit 3011645

Please sign in to comment.