From 30242115da6f82e091b526236685fdd620c044da Mon Sep 17 00:00:00 2001 From: wjt Date: Thu, 15 Jun 2023 16:54:11 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A6=81=E7=94=A8=E7=9B=B4=E5=AE=A2=EF=BC=8C?= =?UTF-8?q?=E6=80=BB=E9=87=8F=E5=BD=92=E9=9B=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/agent/service/impl/ChannelManageServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/agent/service/impl/ChannelManageServiceImpl.java b/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/agent/service/impl/ChannelManageServiceImpl.java index cd42eb91..cdec77fb 100644 --- a/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/agent/service/impl/ChannelManageServiceImpl.java +++ b/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/agent/service/impl/ChannelManageServiceImpl.java @@ -150,9 +150,11 @@ public class ChannelManageServiceImpl implements ChannelManageService { int num = channelCustom.getSurplusNum(); channelCustom.setStatus(3); channelCustom.setSurplusNum(0); + channelCustom.setTotalNum(0); //返回话费 int bill = channelCustom.getSurplusPhoneBill(); channelCustom.setSurplusPhoneBill(0); + channelCustom.setTotalPhoneBill(0); list.add(channelCustom); if (channelCustom.getParentId() != null) { channelCustomRepository.updateSurplusNum(channelCustom.getParentId(), num, bill);