Commit f6320b7e authored by 黄奎's avatar 黄奎
parents 40d2f34d 48388c5b
......@@ -2689,6 +2689,11 @@ namespace Mall.Module.Product
}
}
}
if (dcList.Where(x => x.SmallShopId > 0).Any())
{
IsCommissionCoupons = false;
}
}
}
}
......
......@@ -1489,6 +1489,11 @@ namespace Mall.Module.Product
}
MaxSellMoney = model.SpecificationPriceList.Max(x => x.SellingPrice ?? 0);
model.SellingPrice = model.SpecificationPriceList.Min(x => x.SellingPrice ?? 0);
decimal MaxPrice = MaxSellMoney + Math.Ceiling(MaxSellMoney / 10);
if (MaxPrice > model.OriginalPrice)
{
model.OriginalPrice = MaxPrice;
}
}
//区域
model.AreaList = new List<RB_Goods_Area_Extend>();
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment