Parcourir la source

属性值排序问题更改

ingredientmanage
zhaoy il y a 7 mois
Parent
révision
b96790df61
1 fichiers modifiés avec 2 ajouts et 3 suppressions
  1. +2
    -3
      BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs

+ 2
- 3
BPA.SAAS.Manage.Application/DataBase/Services/GoodsAttributeService.cs Voir le fichier

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


Chargement…
Annuler
Enregistrer