From 043029e647c0c0df0f4fe7668389fee85b85ab5f Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Wed, 4 Feb 2026 10:08:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=A2=E9=98=9F=E6=94=BF=E7=AD=96=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E6=8B=A5=E6=9C=89=E8=80=85=E7=9A=84countryCode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/command/team/query/TeamReleasePolicyQryExe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/TeamReleasePolicyQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/TeamReleasePolicyQryExe.java index ee302224..3a28bac4 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/TeamReleasePolicyQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/team/query/TeamReleasePolicyQryExe.java @@ -37,7 +37,7 @@ public class TeamReleasePolicyQryExe { TeamProfile teamProfile = teamProfileService.getById(cmd.getId()); ResponseAssert.notNull(TeamErrorCode.TEAM_NOT_FOUND, teamProfile); - UserProfile userProfile = userProfileGateway.getByUserId(cmd.getReqUserId()); + UserProfile userProfile = userProfileGateway.getByUserId(teamProfile.getOwnUserId()); Map policyManagerMap = teamPolicyManagerService.mapRegionReleaseWithCountry(Set.of(teamProfile.getRegion())); TeamPolicyManager teamPolicyManager = TeamBillCycleUtils.getPolicyFromMap(policyManagerMap, teamProfile.getRegion(), userProfile.getCountryCode());