|
|
@ -52,7 +52,7 @@ namespace BBWY.Server.Business |
|
|
|
if (productSkuList == null || productSkuList.Count() == 0) |
|
|
|
return null; |
|
|
|
|
|
|
|
var skuIdList = productSkuList.Select(s => p.Id).ToList(); |
|
|
|
var skuIdList = productSkuList.Select(s => s.Id).ToList(); |
|
|
|
var schemeList = fsql.Select<PurchaseScheme, Purchaser>().InnerJoin((ps, p) => ps.PurchaserId == p.Id) |
|
|
|
.Where((ps, p) => ps.ShopId == request.ShopId) |
|
|
|
.Where((ps, p) => skuIdList.Contains(ps.SkuId)) |
|
|
|