喻健
2018-11-16 7b3172f799fc5e357f0faf2c88ea5230a231d6a9
fanli/src/main/java/com/yeshi/fanli/controller/client/RecommendController.java
@@ -1883,7 +1883,10 @@
      BigDecimal shareMoney = taoBaoGoodsBriefService.getShareGoodsUserHongBao(tb);
      data.put("shareMoney", "¥" + shareMoney);
      // 分享赚人提示
      List<ShamUser> listShareUser = shamUserService.listRandShareUser(10, shareMoney, 1, 5);
      List<ShamUser> listShareUser = new ArrayList<ShamUser>();
      if (tb.getBiz30day() >= 1000) {
         listShareUser = shamUserService.listRandShareUser(10, shareMoney, 1, 5);
      }
      // 判断收藏
      if (StringUtil.isNullOrEmpty(uid)) {
@@ -1911,7 +1914,7 @@
      goods.put("coupon", StringUtil.isNullOrEmpty(tb.getCouponInfo()) ? false : true);
      // 领券人列表
      List<ShamUser> listCouponUser = null;
      List<ShamUser> listCouponUser = new ArrayList<ShamUser>();
      // 获取券信息
      if (!StringUtil.isNullOrEmpty(tb.getCouponInfo())) {
@@ -1932,8 +1935,10 @@
               + tb.getCouponEffectiveEndTime().replace("-", "."));
         goods.put("couponInfo", couponInfo);
         // 领券人列表
         listCouponUser = shamUserService.listRandCouponUser(5, 1, 300);
         if (tb.getBiz30day() >= 1000) {
            // 领券人列表
            listCouponUser = shamUserService.listRandCouponUser(5, 1, 300);
         }
      }
      data.put("tbPidInfo", clientTBPid);