Explorar el Código

商家端好友证券bug修复

wuchen hace 2 meses
padre
commit
23919c9dbf

+ 11 - 6
alien-store/src/main/java/shop/alien/store/controller/LifeDiscountCouponStoreFriendController.java

@@ -54,12 +54,12 @@ public class LifeDiscountCouponStoreFriendController {
         }
     }
 
-    @TrackEvent(
-            eventType = "COUPON_GIVE",
-            eventCategory = "COUPON",
-            storeId = "#{#lifeDiscountCouponStoreFriendDto.storeId}",
-            targetType = "COUPON"
-    )
+//    @TrackEvent(
+//            eventType = "COUPON_GIVE",
+//            eventCategory = "COUPON",
+//            storeId = "#{#lifeDiscountCouponStoreFriendDto.storeId}",
+//            targetType = "COUPON"
+//    )
     @ApiOperation("给好友发放优惠券")
     @ApiOperationSupport(order = 2)
     @PostMapping("/setFriendCoupon")
@@ -185,5 +185,10 @@ public class LifeDiscountCouponStoreFriendController {
     private R<List<LifeDiscountCouponFriendRuleVo>> getReceivedSendFriendCouponList(@RequestParam(value = "storeUserId",required = false) String storeUserId, @RequestParam(value = "friendStoreUserId",required = false)String friendStoreUserId, @RequestParam(value = "storeName",required = false)String storeName) {
         log.info("LifeDiscountCouponStoreFriendController.getReceivedSendFriendCouponList?storeId={},friendStoreUserId={},storeName={}", storeUserId,friendStoreUserId,storeName);
         return R.data(lifeDiscountCouponStoreFriendService.getReceivedSendFriendCouponList(storeUserId,friendStoreUserId,storeName));
+
+
+
+
+
     }
 }