| | |
| | | @Override
|
| | | @RequestSerializableByKeyService(key = "#orderUid")
|
| | | @Transactional(rollbackFor = Exception.class)
|
| | | public void winRedPackByOrder(Long orderUid, String orderNo, Integer source) {
|
| | | public void winRedPackByOrder(Long orderUid, String orderNo, Integer source, Date downTime) {
|
| | | if (orderUid == null || StringUtil.isNullOrEmpty(orderNo)) {
|
| | | return;
|
| | | }
|
| | |
| | | UserInfoRegister register = userInfoRegisterService.selectByPrimaryKey(orderUid);
|
| | | if (register == null)
|
| | | return;
|
| | | // 注册48小时 + 以内
|
| | | // 注册48小时 以内 :新人
|
| | | long registerTime = register.getCreateTime().getTime();
|
| | | |
| | | // 48小时限制
|
| | | if (downTime.getTime() < registerTime || downTime.getTime() > registerTime + 1000*60*60*48)
|
| | | return;
|
| | |
|
| | | // 是否存在上下级关系
|
| | | ThreeSale threeSale = threeSaleSerivce.getByWorkerId(orderUid);
|
| | | if (threeSale == null)
|
| | | return;
|
| | |
|
| | | Long bossId = threeSale.getBoss().getId();
|
| | | if (bossId == null)
|
| | | return;
|
| | |
|
| | | // 该邀请是否已领取
|
| | | // 小于2.1.3版本不增加
|
| | | UserActiveLog activeLog = userActiveLogService.getUserLatestActiveInfo(bossId);
|
| | | if (activeLog == null)
|
| | | return;
|
| | | if (!VersionUtil.greaterThan_2_1_3("appstore".equalsIgnoreCase(activeLog.getChannel()) ? "ios" : "android",
|
| | | activeLog.getVersionCode()))
|
| | | return;
|
| | | |
| | | // 该邀请是否已添加
|
| | | RedPackWinInvite threeStage = redPackWinInviteMapper.getByUidAndTeamUid(bossId, orderUid);
|
| | | if (threeStage != null)
|
| | | return;
|
| | |
| | | return;
|
| | | }
|
| | |
|
| | | // 48小时内订单
|
| | | long spaceTime = 1000 * 60 * 48;
|
| | | Long succeedTime = threeSale.getSucceedTime();
|
| | | Date thirdCreateTime = list.get(0).getThirdCreateTime();
|
| | | if (thirdCreateTime == null || thirdCreateTime.getTime() > succeedTime + spaceTime) {
|
| | | return;
|
| | | }
|
| | | |
| | | // 商品比例限制
|
| | | BigDecimal limitRate = new BigDecimal(redPackConfigService.getValueByKey("goods_reate_limit"));
|
| | | BigDecimal limitPayMent = new BigDecimal(redPackConfigService.getValueByKey("goods_pay_ment_limit"));
|
| | | |
| | | boolean satisfy = false;
|
| | | // 遍历是否存在符合相应商品
|
| | | for (CommonOrder commonOrder: list) {
|
| | | // 邀请关系之后
|
| | | long downTime = commonOrder.getThirdCreateTime().getTime();
|
| | | if (downTime < threeSale.getCreateTime())
|
| | | continue;
|
| | | // 48小时限制
|
| | | if (downTime < registerTime || downTime > registerTime + 1000*60*60*48)
|
| | | long thirdTime = commonOrder.getThirdCreateTime().getTime();
|
| | | if (thirdTime < threeSale.getCreateTime())
|
| | | continue;
|
| | | // 付款金额限制
|
| | | BigDecimal payment = commonOrder.getPayment();
|
| | |
| | | winInvite.setType(RedPackWinInviteTypeEnum.inviteDownOrder);
|
| | | winInvite.setIdentifyCode(StringUtil.Md5(RedPackWinInviteTypeEnum.inviteDownOrder.name() + ":" + orderUid));
|
| | | redPackWinInviteMapper.insertSelective(winInvite);
|
| | | }
|
| | |
|
| | | @Override
|
| | | @RequestSerializableByKeyService(key = "#orderUid")
|
| | | public boolean verifyOrder(Long orderUid, String orderNo, Integer source, Date downTime) {
|
| | | boolean satisfy = false;
|
| | | // 注册时间
|
| | | UserInfoRegister register = userInfoRegisterService.selectByPrimaryKey(orderUid);
|
| | | if (register == null) |
| | | return satisfy;
|
| | | // 注册48小时 以内:新人
|
| | | long registerTime = register.getCreateTime().getTime();
|
| | | // 48小时限制
|
| | | if (downTime.getTime() < registerTime || downTime.getTime() > registerTime + 1000*60*60*48)
|
| | | return satisfy;
|
| | | |
| | | // 是否已奖励
|
| | | List<UserSystemCoupon> coupons = userSystemCouponService.getUserCouponBySource(orderUid, UserSystemCoupon.SOURCE_PULL_NEW);
|
| | | if (coupons != null && coupons.size() > 0) {
|
| | | return satisfy;
|
| | | }
|
| | | |
| | | // 是否存在上下级关系
|
| | | ThreeSale threeSale = threeSaleSerivce.getByWorkerId(orderUid);
|
| | | if (threeSale == null)
|
| | | return satisfy;
|
| | | Long bossId = threeSale.getBoss().getId();
|
| | | if (bossId == null)
|
| | | return satisfy;
|
| | | |
| | | // 小于2.1.3版本不增加
|
| | | UserActiveLog activeLog = userActiveLogService.getUserLatestActiveInfo(orderUid);
|
| | | if (activeLog == null)
|
| | | return satisfy;
|
| | | if (!VersionUtil.greaterThan_2_1_3("appstore".equalsIgnoreCase(activeLog.getChannel()) ? "ios" : "android",
|
| | | activeLog.getVersionCode()))
|
| | | return satisfy;
|
| | | |
| | | // 查询订单
|
| | | List<CommonOrder> list = commonOrderService.getByOrderNo(orderUid, orderNo);
|
| | | if (list == null || list.size() ==0)
|
| | | return satisfy;
|
| | | |
| | | // 商品比例限制
|
| | | BigDecimal limitRate = new BigDecimal(redPackConfigService.getValueByKey("goods_reate_limit"));
|
| | | BigDecimal limitPayMent = new BigDecimal(redPackConfigService.getValueByKey("goods_pay_ment_limit"));
|
| | | // 遍历是否存在符合相应商品
|
| | | for (CommonOrder commonOrder: list) {
|
| | | // 邀请关系之后
|
| | | long thirdTime = commonOrder.getThirdCreateTime().getTime();
|
| | | if (thirdTime < threeSale.getCreateTime())
|
| | | continue;
|
| | | // 付款金额限制
|
| | | BigDecimal payment = commonOrder.getPayment();
|
| | | if (payment == null || payment.compareTo(limitPayMent) < 0) |
| | | continue;
|
| | | |
| | | // 商品佣金比例限制
|
| | | BigDecimal eIncome = commonOrder.geteIncome();
|
| | | BigDecimal settlement = commonOrder.getSettlement();
|
| | | if(eIncome == null || settlement == null) {
|
| | | continue;
|
| | | }
|
| | | BigDecimal rete = MoneyBigDecimalUtil.div(eIncome, settlement);
|
| | | if (rete.compareTo(limitRate) >= 0) {
|
| | | satisfy = true;
|
| | | break;
|
| | | }
|
| | | }
|
| | | |
| | | return satisfy;
|
| | | }
|
| | |
|
| | | @Override
|
| | | @RequestSerializableByKeyService(key = "#orderUid")
|
| | | @Transactional(rollbackFor = Exception.class)
|
| | | public void winFreeCoupon(Long orderUid, String orderNo, Integer source, Date downTime) {
|
| | | if (orderUid == null || StringUtil.isNullOrEmpty(orderNo)) {
|
| | | return;
|
| | | }
|
| | | |
| | | // 注册时间
|
| | | UserInfoRegister register = userInfoRegisterService.selectByPrimaryKey(orderUid);
|
| | | if (register == null) |
| | | return;
|
| | | // 注册48小时 以内:新人
|
| | | long registerTime = register.getCreateTime().getTime();
|
| | | // 48小时限制
|
| | | if (downTime.getTime() < registerTime || downTime.getTime() > registerTime + 1000*60*60*48)
|
| | | return;
|
| | | |
| | | // 是否已奖励
|
| | | List<UserSystemCoupon> coupons = userSystemCouponService.getUserCouponBySource(orderUid, UserSystemCoupon.SOURCE_PULL_NEW);
|
| | | if (coupons != null && coupons.size() > 0) {
|
| | | return;
|
| | | }
|
| | | |
| | | // 查询订单
|
| | | List<CommonOrder> list = commonOrderService.getByOrderNo(orderUid, orderNo);
|
| | | if (list == null || list.size() ==0) {
|
| | | return;
|
| | | }
|
| | | |
| | | // 商品比例限制
|
| | | BigDecimal limitRate = new BigDecimal(redPackConfigService.getValueByKey("goods_reate_limit"));
|
| | | BigDecimal limitPayMent = new BigDecimal(redPackConfigService.getValueByKey("goods_pay_ment_limit"));
|
| | | |
| | | boolean satisfy = false;
|
| | | // 遍历是否存在符合相应商品
|
| | | for (CommonOrder commonOrder: list) {
|
| | | // 付款金额限制
|
| | | BigDecimal payment = commonOrder.getPayment();
|
| | | if (payment == null || payment.compareTo(limitPayMent) < 0) |
| | | continue;
|
| | | |
| | | // 商品佣金比例限制
|
| | | BigDecimal eIncome = commonOrder.geteIncome();
|
| | | BigDecimal settlement = commonOrder.getSettlement();
|
| | | if(eIncome == null || settlement == null) {
|
| | | continue;
|
| | | }
|
| | | BigDecimal rete = MoneyBigDecimalUtil.div(eIncome, settlement);
|
| | | if (rete.compareTo(limitRate) >= 0) {
|
| | | satisfy = true;
|
| | | break;
|
| | | }
|
| | | }
|
| | | |
| | | if (!satisfy) {
|
| | | return;
|
| | | }
|
| | |
|
| | | // 赠送购买者一张免单券
|
| | | try {
|
| | | userSystemCouponService.freeCouponWinBySystem(orderUid, CouponTypeEnum.freeCouponBuy, UserSystemCoupon.SOURCE_EXCHANGE,
|
| | | 1, true, 2);
|
| | | userSystemCouponService.freeCouponWinBySystem(orderUid, CouponTypeEnum.freeCouponBuy, |
| | | UserSystemCoupon.SOURCE_PULL_NEW, 1, true, 2);
|
| | | } catch (UserSystemCouponException e) {
|
| | | e.printStackTrace();
|
| | | } catch (Exception e) {
|
| | | e.printStackTrace();
|
| | | }
|
| | | }
|
| | | |
| | |
|
| | | @Override
|
| | | public List<Long> listWinUid(int start, int count) {
|