From ba1dbea29f9d876937a670561d60bc09e79d1f28 Mon Sep 17 00:00:00 2001 From: shanji <18996038927@163.com> Date: Fri, 14 Apr 2023 20:22:21 +0800 Subject: [PATCH] 1 --- .../PurchaseOrderV2/BatchPurchase/BatchPurchaseBusiness.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BBWY.Server.Business/PurchaseOrderV2/BatchPurchase/BatchPurchaseBusiness.cs b/BBWY.Server.Business/PurchaseOrderV2/BatchPurchase/BatchPurchaseBusiness.cs index cbfbd28d..ed8f68e7 100644 --- a/BBWY.Server.Business/PurchaseOrderV2/BatchPurchase/BatchPurchaseBusiness.cs +++ b/BBWY.Server.Business/PurchaseOrderV2/BatchPurchase/BatchPurchaseBusiness.cs @@ -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().InnerJoin((ps, p) => ps.PurchaserId == p.Id) .Where((ps, p) => ps.ShopId == request.ShopId) .Where((ps, p) => skuIdList.Contains(ps.SkuId))