From 12bed9e2a3ba049f3db44ba126f58eaa1ec5e821 Mon Sep 17 00:00:00 2001 From: jianweie code Date: Tue, 26 Mar 2024 15:48:44 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BC=98=E5=8C=96=E3=80=91=E7=A7=BB?= =?UTF-8?q?=E9=99=A4=E5=90=8E=E7=AB=AF=E6=94=AF=E4=BB=98=E5=8D=95=E6=89=8B?= =?UTF-8?q?=E5=8A=A8=E5=88=B7=E6=96=B0=E6=A8=A1=E5=BC=8F=E4=B8=8B=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E7=9A=84=E9=AA=8C=E8=AF=81=EF=BC=8C=E9=98=B2=E6=AD=A2?= =?UTF-8?q?=E5=87=BA=E7=8E=B0=E5=9B=A0=E4=B8=BA=E8=BF=9C=E7=AB=AF=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E5=80=BCnull=E7=9A=84=E6=83=85=E5=86=B5=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E6=9B=B4=E6=96=B0=E5=A4=B1=E8=B4=A5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CoreCms.Net.Services/Bill/CoreCmsBillPaymentsServices.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CoreCms.Net.Services/Bill/CoreCmsBillPaymentsServices.cs b/CoreCms.Net.Services/Bill/CoreCmsBillPaymentsServices.cs index 34ab5c1b..9b875ad5 100644 --- a/CoreCms.Net.Services/Bill/CoreCmsBillPaymentsServices.cs +++ b/CoreCms.Net.Services/Bill/CoreCmsBillPaymentsServices.cs @@ -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, "支付成功后,更新支付单状态", "没有找到此未支付的支付单号");