From 3fc58aef2f6f47c4a356df23479e3becca630177 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期四, 27 六月 2024 17:11:47 +0800 Subject: [PATCH] 铺货和计划订单的修改。计划订单增加批量查看 --- CoreCms.Net.Services/Good/CoreCmsGoodsServices.cs | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/CoreCms.Net.Services/Good/CoreCmsGoodsServices.cs b/CoreCms.Net.Services/Good/CoreCmsGoodsServices.cs index 3841395..b8fb661 100644 --- a/CoreCms.Net.Services/Good/CoreCmsGoodsServices.cs +++ b/CoreCms.Net.Services/Good/CoreCmsGoodsServices.cs @@ -552,6 +552,9 @@ if (product == null) return null; good.skuList = await GetCoreCmsProductsView(good, products, userId, isPromotion, type, groupId); + var coutiscut = products.Where(x => x.isCustomizable == true).Count(); + if (coutiscut > 0) + good.isCustomizable = true; } else { @@ -836,6 +839,7 @@ item.distributionCutMoney = o.distributionCutMoney; item.mktPrice = o.mktprice; item.selPrice = o.price; + item.isCustomizable = o.isCustomizable; if (type == GlobalEnumVars.OrderType.PinTuan.ToString().ToLowerInvariant()) { if (isMaxPinTuanGoodsNums) @@ -892,6 +896,7 @@ item.distributionCutMoney = o.distributionCutMoney; item.mktPrice = o.mktprice; item.selPrice = o.price; + item.isCustomizable = o.isCustomizable; if (type == GlobalEnumVars.OrderType.PinTuan.ToString().ToLowerInvariant()) { if (isMaxPinTuanGoodsNums) -- Gitblit v1.9.1