private void CheckProductCanDelete(int ProductId) { if (PromoteHelper.ProductCountDownExist(ProductId)) { throw new HidistroAshxException("商品正在参加限时购不能编辑规格、价格、库存以及销售状态"); } if (PromoteHelper.ProductGroupBuyExist(ProductId)) { throw new HidistroAshxException("商品正在参加团购不能编辑规格、价格、库存以及销售状态等"); } if (VShopHelper.ExistEffectiveFightGroupInfo(ProductId)) { throw new HidistroAshxException("商品正在参加火拼团不能编辑规格、价格、库存以及销售状态等"); } if (!CombinationBuyHelper.ExistEffectiveCombinationBuyInfo(ProductId)) { return; } throw new HidistroAshxException("商品正在参加组合购不能编辑规格、价格、库存以及销售状态等"); }