mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:13:26 +08:00
【修复】修复使用积分,优惠券,全局营销并行多优惠的条件叠加的情况下,可能存在下单金额低于0元的问题。
This commit is contained in:
@@ -670,6 +670,12 @@ namespace CoreCms.Net.Services
|
||||
return jm;
|
||||
}
|
||||
|
||||
//判断最终价格
|
||||
if (cartDto.amount < 0)
|
||||
{
|
||||
cartDto.amount = 0;
|
||||
}
|
||||
|
||||
jm.status = true;
|
||||
jm.data = cartDto;
|
||||
jm.msg = "4";
|
||||
|
||||
Reference in New Issue
Block a user