mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:13:26 +08:00
【优化】移除后端支付单手动刷新模式下金额的验证,防止出现因为远端返回值null的情况导致更新失败。
This commit is contained in:
@@ -669,9 +669,7 @@ namespace CoreCms.Net.Services
|
||||
|
||||
var jm = new WebApiCallBack();
|
||||
|
||||
var billPaymentInfo = await _dal.QueryByClauseAsync(p =>
|
||||
p.paymentId == paymentId && p.money == money &&
|
||||
p.status != (int)GlobalEnumVars.BillPaymentsStatus.Payed);
|
||||
var billPaymentInfo = await _dal.QueryByClauseAsync(p => p.paymentId == paymentId && p.status != (int)GlobalEnumVars.BillPaymentsStatus.Payed);
|
||||
if (billPaymentInfo == null)
|
||||
{
|
||||
NLogUtil.WriteAll(LogLevel.Trace, LogType.Order, "支付成功后,更新支付单状态", "没有找到此未支付的支付单号");
|
||||
|
||||
Reference in New Issue
Block a user