admin
2020-07-03 651a15c78f668bef3859d9ed1bb7ad0b669d3600
fanli/src/main/java/com/yeshi/fanli/controller/client/v1/PushController.java
@@ -288,7 +288,7 @@
               jumpDetail = jumpDetailV2Service.getByTypeCache("goodsdetail",Constant.getPlatformCode(acceptData.getPlatform()),
                     Integer.parseInt(acceptData.getVersion()));
            } else {
               String url = configService.get(ConfigKeyEnum.pushGoodsDetails.getKey());
               String url = configService.getValue(ConfigKeyEnum.pushGoodsDetails.getKey(),acceptData.getSystem());
               if (url == null) {
                  url = "";
               }
@@ -321,7 +321,7 @@
               }
            }
            
            String url = configService.get(ConfigKeyEnum.pushActivityLink.getKey());
            String url = configService.getValue(ConfigKeyEnum.pushActivityLink.getKey(),acceptData.getSystem());
            if (url == null) {
               url = "";
            }
@@ -452,7 +452,7 @@
         scanResult = scanNum +"";
      }
      
      String jumpLink = configService.get(ConfigKeyEnum.activityDetailLink.getKey()) + "?type=%s&id=%s";
      String jumpLink = configService.getValue(ConfigKeyEnum.activityDetailLink.getKey(),acceptData.getSystem()) + "?type=%s&id=%s";
      jumpLink = String.format(jumpLink, "circle", goodsEvaluate.getId());
      if (!StringUtil.isNullOrEmpty(goodsEvaluate.getJumpLink())) {
         goodsEvaluate.setJumpLink(jumpLink);