From 065c18eaffd02c88059fa654a1af2c4ecaa014bb Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Thu, 6 Nov 2025 18:35:44 +0800 Subject: [PATCH] =?UTF-8?q?=E9=81=93=E5=85=B7=E5=88=B8=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/command/propcoupon/PropCouponUseCmdExe.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/PropCouponUseCmdExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/PropCouponUseCmdExe.java index 0c0fb41c..6faae721 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/PropCouponUseCmdExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/propcoupon/PropCouponUseCmdExe.java @@ -261,7 +261,8 @@ public class PropCouponUseCmdExe { private PropsNobleVipAbilityDTO getVipAbilityBySysOriginSourceId(Long propId, String sysOrigin) { - PropsCommodityStore commodityStore = propsCommodityStoreService.getById(propId); + PropsCommodityStoreDTO commodityStore = ResponseAssert.requiredSuccess( + propsCommodityStoreClient.getPropsCommodityStore(sysOrigin, propId)); ResponseAssert.notNull(OtherErrorCode.PROP_COUPON_PROP_NOT_FOUND, commodityStore); PropsNobleVipAbilityDTO nobleVipAbility = ResponseAssert.requiredSuccess( propsNobleVipClient.getAbilityDTO(commodityStore.getSourceId()));