From 13f769221fc13a1a95d1e9f799c490fea22844c8 Mon Sep 17 00:00:00 2001 From: winter <664946893@qq.com> Date: Wed, 15 Jan 2025 09:44:52 +0800 Subject: [PATCH] fix --- .../park/impl/haikangweishiv3/HaiKangWeiShiV3ParkService.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mallinkService/src/main/java/com/iformall/service/park/impl/haikangweishiv3/HaiKangWeiShiV3ParkService.java b/mallinkService/src/main/java/com/iformall/service/park/impl/haikangweishiv3/HaiKangWeiShiV3ParkService.java index 440e37e54..2acb41f38 100644 --- a/mallinkService/src/main/java/com/iformall/service/park/impl/haikangweishiv3/HaiKangWeiShiV3ParkService.java +++ b/mallinkService/src/main/java/com/iformall/service/park/impl/haikangweishiv3/HaiKangWeiShiV3ParkService.java @@ -207,7 +207,9 @@ public class HaiKangWeiShiV3ParkService extends BaseParkService implements ParkA String couponStart = dateToISO8601Time(coupon.getValidStartDate()); String couponEnd = dateToISO8601Time(coupon.getValidEndDate()); - JSONObject retObj = haikangV3.useCoupon(park,getConfig(park),carNumber,couponCode,couponStart,couponEnd,coupon); + ArtemisConfig config = getConfig(park); + JSONObject retObj = haikangV3.useCoupon(park,config,carNumber,couponCode,couponStart,couponEnd,coupon); + haikangV3.getCarStopFee(park, carNumber, config); RedisCacheUtils.cache(redisTemplate, "carStop:haikangv3StopInfoUseCoupon:"+carNumber+":"+inRecordSyscode, 1, 24*3600); return new ResultData();