Browse Source

属性值排序问题更改

ingredientmanage
zhaoy 7 months ago
parent
commit
b96790df61
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs

+ 2
- 3
BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs View File

@@ -331,9 +331,8 @@ namespace BPA.Franchisee.Application.FranchiseeCenter.GoodsServices
GoodsAttributeId = p.GoodsAttributeId,
AttributeValue = x.AttributeValue,
Sort = x.Sort
}).ToList();
})
.OrderBy(x=>x.Sort,OrderByType.Asc)
}).OrderBy(x => x.Sort, OrderByType.Asc).ToList();
}) .OrderBy(x=>x.Sort,OrderByType.Asc)
.ToListAsync();
return goodsAttributeList;
}


Loading…
Cancel
Save