结算处理 区域配置信息未找到的状态

This commit is contained in:
tianfeng 2026-01-15 19:44:31 +08:00
parent 10ab62cb15
commit d6d2376a29

View File

@ -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;
}