From 3b9b2b92be889ab1a84d0093f4fa2c9cab0b8050 Mon Sep 17 00:00:00 2001 From: lijiarao Date: Fri, 9 Aug 2024 16:42:21 +0800 Subject: [PATCH] =?UTF-8?q?update=2088309=20=E3=80=90=E6=89=80=E6=9C=89?= =?UTF-8?q?=E4=BC=9A=E8=AE=AE=E3=80=91=E4=BC=81=E4=B8=9A=E7=AB=AF--?= =?UTF-8?q?=E6=8A=A5=E5=90=8D=E5=90=8E=E7=BC=B4=E8=B4=B9=E6=96=B9=E5=BC=8F?= =?UTF-8?q?=E4=BB=8E=E6=89=93=E5=8C=85=E5=88=87=E6=8D=A2=E6=88=90=E6=B1=87?= =?UTF-8?q?=E6=AC=BE/=E9=9C=80=E8=A6=81=E7=BC=B4=E8=B4=B9--=E5=88=B0?= =?UTF-8?q?=E8=B4=A6=E5=BC=80=E7=A5=A8=E7=9A=84=E7=8A=B6=E6=80=81=E5=92=8C?= =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E6=8C=89=E9=92=AE=E6=B2=A1=E6=9C=89=E5=90=8C?= =?UTF-8?q?=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../meeting/service/impl/PayMeetingSituationServiceImpl.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/meeting/service/impl/PayMeetingSituationServiceImpl.java b/jero-boot-incoming-payment/src/main/java/com/jero/meeting/service/impl/PayMeetingSituationServiceImpl.java index c9bdff50..67091017 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/meeting/service/impl/PayMeetingSituationServiceImpl.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/meeting/service/impl/PayMeetingSituationServiceImpl.java @@ -1451,7 +1451,10 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl wrapper = new LambdaQueryWrapper<>(); + wrapper.select(PayMeetingSituation::getPayMode); + wrapper.eq(PayMeetingSituation::getId,situationId); + PayMeetingSituation old = this.getOne(wrapper); Integer oldPayMode = old.getPayMode(); if (MeetingSubitemCommon.PAY_MODE_3.equals(oldPayMode)){ payMeetingSituation1.setPaymentStatus(PaymentStatusEnum.TO_BE_UPLOADED.getCode());