Skip to content

Commit

Permalink
!231 fix: 修复保存草稿商品规格顺序问题
Browse files Browse the repository at this point in the history
Merge pull request !231 from OceansDeep/feature/pg
  • Loading branch information
OceansDeep authored and gitee-org committed Sep 9, 2022
2 parents e2bf90e + 2f13bce commit 02d017e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private List<GoodsSku> getGoodsSkuList(List<Map<String, Object>> skuList) {
}

private GoodsSku add(Map<String, Object> map) {
Map<String, Object> specMap = new HashMap<>(2);
Map<String, Object> specMap = new LinkedHashMap<>();
GoodsSku sku = new GoodsSku();
for (Map.Entry<String, Object> m : map.entrySet()) {
switch (m.getKey()) {
Expand Down

0 comments on commit 02d017e

Please sign in to comment.