yujian
2019-11-12 8f5ca1d337950be2a20cdb1a91a29a86fde1b07d
fanli/src/main/java/com/yeshi/fanli/service/impl/redpack/RedPackWinInviteServiceImpl.java
@@ -12,6 +12,7 @@
import com.google.gson.Gson;
import com.yeshi.fanli.dao.mybatis.redpack.RedPackWinInviteMapper;
import com.yeshi.fanli.dto.mq.user.body.UserAccountBindingMQMsg;
import com.yeshi.fanli.dto.msg.MsgRedPackAddContentDTO;
import com.yeshi.fanli.entity.bus.msg.MsgMoneyDetail.MsgTypeMoneyTypeEnum;
import com.yeshi.fanli.entity.bus.user.UserExtraTaoBaoInfo;
@@ -78,6 +79,12 @@
      return redPackWinInviteMapper.countRewardRecord(uid);
   }
   
   @Override
   public BigDecimal getRewardMoney(Long uid) {
      return redPackWinInviteMapper.getRewardMoney(uid);
   }
   @RedPackGetVersionLimit(uid = "#uid")
   @RequestSerializableByKeyService(key = "#uid")
   @Transactional(rollbackFor = Exception.class)
@@ -89,7 +96,6 @@
      // 上一级的奖励
      UserInfo boss = threeSaleSerivce.getBoss(uid);
      if(boss != null) {
         firstReward(uid, source, orderNo);
         bossReward(boss.getId(), uid, source, orderNo);
      }
   }
@@ -109,54 +115,6 @@
      firstSharedOrderRewardToBoss(uid, teamUid, source, orderNo);
      firstSharedOrderRewardTheMonthToBoss(uid, teamUid, source, orderNo);
   }
   /**
    * 被邀请人下首单返利(下单就给):
    * 完成首笔订单 (已到账) 首单=不限制金额、不限制商品、不限制数量、不限制订单类型)
    * @param uid
    * @param source
    * @param orderNo
    * @param bossId
    */
   @Transactional
   private void firstReward(Long uid, Integer source, String orderNo) throws Exception{
      // 奖励一次
      long total = redPackWinInviteMapper.countByUidAndType(uid, RedPackWinInviteTypeEnum.newUserReward.name());
      if (total > 0)
         return;
      // 1、判断是否用户首个订单
      CommonOrderVO order = commonOrderService.firstValidOrderByUid(uid);
      if (order == null || source != order.getSourceType() || !orderNo.equals(order.getOrderNo()))
         return;
      // 金额
      BigDecimal money = new BigDecimal(redPackConfigService.getValueByKey("new_user_first_order"));
      // 3、获得红包记录
      RedPackWinInvite winInvite = new RedPackWinInvite();
      winInvite.setCreateTime(new Date());
      winInvite.setUpdateTime(new Date());
      winInvite.setType(RedPackWinInviteTypeEnum.newUserReward);
      winInvite.setUid(uid);
      winInvite.setTeamUid(null);
      winInvite.setMoney(money);
      winInvite.setSource(source);
      winInvite.setOrderNo(orderNo);
      redPackWinInviteMapper.insertSelective(winInvite);
      // 4、增加红包
      redPackBalanceService.addRedPack(uid, money, RedPackDetailFactory.createNewUserReward(winInvite));
      //消息
      MsgRedPackAddContentDTO dto = new MsgRedPackAddContentDTO();
      dto.setTitle("红包增加");
      dto.setMoney("¥" + money.setScale(2));
      dto.setBalance("¥" + redPackBalanceService.getBalance(uid).setScale(2));
      userMoneyMsgNotificationService.redPackMsg(uid, MsgTypeMoneyTypeEnum.redPackNewUserReward, new Gson().toJson(dto), "红包可用于购买会员");
   }
   
   /**
    * 上级奖励:被邀请人完成首笔分享订单 (已到账) 
@@ -272,7 +230,17 @@
   }
   
   
   @RequestSerializableByKeyService(key = "#uid")
   @RedPackGetVersionLimit(uid = "#bindingMQMsg.uid")
   @RequestSerializableByKeyService(key = "#bindingMQMsg.uid")
   public void userAccountBinding(UserAccountBindingMQMsg bindingMQMsg) throws Exception{
      Integer type = bindingMQMsg.getType();
      if (type == UserAccountBindingMQMsg.TYPE_PHONE || type == UserAccountBindingMQMsg.TYPE_TAOBAO) {
         inviteSucceedReward(bindingMQMsg.getUid());
      }
   }
   @Override
   @Transactional
   public void inviteSucceedReward(Long uid) throws Exception{