From d6d2376a29df178a5c5e4c276d412e72c7025e95 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Thu, 15 Jan 2026 19:44:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97=E5=A4=84=E7=90=86=20?= =?UTF-8?q?=E5=8C=BA=E5=9F=9F=E9=85=8D=E7=BD=AE=E4=BF=A1=E6=81=AF=E6=9C=AA?= =?UTF-8?q?=E6=89=BE=E5=88=B0=E7=9A=84=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/listener/team/TeamBillSettleListener.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/team/TeamBillSettleListener.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/team/TeamBillSettleListener.java index aefa03d6..b60c02da 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/team/TeamBillSettleListener.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/team/TeamBillSettleListener.java @@ -152,7 +152,12 @@ public class TeamBillSettleListener implements MessageListener { // 获得区域配置细信息 SysRegionConfig regionConfig = sysRegionConfigService.getById(teamProfile.getRegion()); if (Objects.isNull(regionConfig)) { - log.warn("没有获得团队的区域数据,团队ID:{}", teamProfile.getId()); + log.warn("没有获得团队的区域数据,团队ID:{}", teamProfile.getId()); + teamBillCycleService.updateStatus(teamBillCycle.getId(), TeamBillCycleStatus.HANG_UP, + new TeamRemark() + .setRemark("[挂起]区域配置细信息未找到,系统无法处理") + .setCreateTime(TimestampUtils.now()) + ); return null; }