【修复】修复下单页面,计算优惠券是否可用中,【订单满XX金额满足条件】计算金额异常的问题。

This commit is contained in:
jianweie code
2023-11-07 15:31:06 +08:00
parent a65372ad11
commit daa7bc371f

View File

@@ -705,7 +705,6 @@ namespace CoreCms.Net.Services
#endregion
#region
/// <summary>
@@ -1086,7 +1085,7 @@ namespace CoreCms.Net.Services
foreach (var product in cartProducts)
{
var money = product.products.price * product.nums;
goodsAmount += Math.Round(goodsAmount + money, 2);
goodsAmount = Math.Round(goodsAmount + money, 2);
}
if (goodsAmount >= objMoney)
{