From 3818974122e7b80e0fe04fd5709a853bac831caa Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期二, 12 十一月 2024 20:18:01 +0800 Subject: [PATCH] 代码提交 --- xinquan-modules/xinquan-order/src/main/java/com/xinquan/order/controller/client/ClientOrderController.java | 355 ++++++++++++++++++++++++++++++++++++++--------------------- 1 files changed, 228 insertions(+), 127 deletions(-) diff --git a/xinquan-modules/xinquan-order/src/main/java/com/xinquan/order/controller/client/ClientOrderController.java b/xinquan-modules/xinquan-order/src/main/java/com/xinquan/order/controller/client/ClientOrderController.java index 850c99f..aaa65d7 100644 --- a/xinquan-modules/xinquan-order/src/main/java/com/xinquan/order/controller/client/ClientOrderController.java +++ b/xinquan-modules/xinquan-order/src/main/java/com/xinquan/order/controller/client/ClientOrderController.java @@ -62,7 +62,7 @@ import java.security.interfaces.ECPublicKey; import java.time.LocalDateTime; import java.util.*; - +import java.util.stream.Collectors; /** @@ -96,6 +96,7 @@ @GetMapping("/getMeditationIsBuy/{id}/{meditationId}") public R<Integer> getMeditationIsBuy(@PathVariable("id")Long id,@PathVariable("meditationId")Long meditationId) { List<Order> list = orderService.lambdaQuery().eq(Order::getBusinessId, meditationId) + .eq(Order::getAppUserId, id) .eq(Order::getOrderFrom, 1) .eq(Order::getPaymentStatus, 2) .ne(Order::getRefundStatus, 3).list(); @@ -117,12 +118,20 @@ if (byId==null){ return R.fail("订单失效"); } + if (byId.getGiveUserId()!=null){ + AppUser data1 = remoteAppUserService.getAppUserById(byId.getGiveUserId() + "").getData(); + payOrderVO.setPhone(data1.getCellPhone()); + } + + AppUser data1 = remoteAppUserService.getAppUserById(byId.getAppUserId() + "").getData(); + payOrderVO.setBalance(data1.getBalance()); payOrderVO.setOrderId(id); if (byId.getOrderFrom()==1){ Meditation data = remoteMeditationService.getMeditationById(byId.getBusinessId()).getData(); payOrderVO.setTitle(data.getMeditationTitle()); payOrderVO.setOrderFrom(1); - payOrderVO.setTargetId(data.getId()); + payOrderVO.setCoverUrl(data.getCoverUrl()); + payOrderVO.setId(data.getId()); switch (type){ case 1: payOrderVO.setAmount(data.getGeneralPrice()); @@ -139,7 +148,8 @@ payOrderVO.setTitle(data.getCourseTitle()); payOrderVO.setTutor(data.getTutor()); payOrderVO.setOrderFrom(2); - payOrderVO.setTargetId(data.getId()); + payOrderVO.setCoverUrl(data.getCoverUrl()); + payOrderVO.setId(data.getId()); switch (type){ case 1: payOrderVO.setAmount(data.getGeneralPrice()); @@ -164,20 +174,36 @@ }) public R<List<OrderCourseVO>> balanceList(Integer state, Integer pageCurr, Integer pageSize) { LoginUser loginUser = tokenService.getLoginUser(); - Long userId = loginUser.getUserid(); if (loginUser==null){ return R.tokenError("登录失效"); } - Page<Order> page = orderService.lambdaQuery() - .eq(Order::getAppUserId, userId) + Long userId = loginUser.getUserid(); + List<OrderCourseVO> res = new ArrayList<>(); + List<Order> page = orderService.lambdaQuery() .eq(Order::getOrderFrom, state) .ne(Order::getPaymentStatus, 3) - .orderByDesc(BaseModel::getCreateTime).page(new Page<>(pageCurr, pageSize)); + .orderByDesc(BaseModel::getCreateTime).list(); + List<Order> list = orderService.lambdaQuery().eq(Order::getGiveUserId, userId).list(); + for (Order order : page) { + OrderCourseVO orderCourseVO = new OrderCourseVO(); + orderCourseVO.setId(order.getId()); + orderCourseVO.setOrderFrom(order.getOrderFrom()); + orderCourseVO.setBusinessId(order.getBusinessId()); + if (order.getAppUserId().equals(userId) && order.getGiveUserId() == null){ + BeanUtils.copyProperties(order, orderCourseVO); + orderCourseVO.setBusinessId(order.getBusinessId()); + res.add(orderCourseVO); + } + if (order.getGiveUserId()!=null&&order.getGiveUserId().equals(userId)){ + BeanUtils.copyProperties(order, orderCourseVO); + orderCourseVO.setBusinessId(order.getBusinessId()); + res.add(orderCourseVO); - PageDTO<OrderCourseVO> res = PageDTO.of(page, OrderCourseVO.class); - List<OrderCourseVO> list = res.getList(); - ArrayList<OrderCourseVO> orderCourseVOS = new ArrayList<>(); - for (OrderCourseVO orderCourseVO : res.getList()) { + } + + } + List<OrderCourseVO> res1 = new ArrayList<>(); + for (OrderCourseVO orderCourseVO : res) { switch (orderCourseVO.getOrderFrom()){ case 1: Meditation data1 = remoteMeditationService.getMeditationById(orderCourseVO.getBusinessId()).getData(); @@ -189,11 +215,14 @@ orderCourseVO.setIosPrice(data1.getIosPrice()); orderCourseVO.setCount(data1.getRealLearnedNum()+data1.getVirtualLearnedNum()); orderCourseVO.setChargeType(data1.getChargeType()); + orderCourseVO.setCoverDescription(data1.getCoverDescription()); + res1.add(orderCourseVO); break; case 2: OrderCourseVO data = remoteCourseService.getCourseByIdAny(orderCourseVO).getData(); if (data==null)continue; BeanUtils.copyProperties(data, orderCourseVO); + Course data4 = remoteCourseService.getCourseById(data.getBusinessId()).getData(); List<CourseChapter> data2 = remoteCourseService.getChapterByCourseId(orderCourseVO.getBusinessId() + "").getData(); int temp = 0 ; for (CourseChapter courseChapter : data2) { @@ -201,11 +230,46 @@ } Integer data3 = remoteCourseService.getCountByCourseId(orderCourseVO.getBusinessId() + "").getData(); orderCourseVO.setCount(data3+temp); + if (data4!=null){ + orderCourseVO.setCourseTitle(data4.getCourseTitle()); + orderCourseVO.setCoverUrl(data4.getCoverUrl()); + orderCourseVO.setBusinessId(data4.getId()); + } + res1.add(orderCourseVO); break; } - } - return R.ok(res.getList()); + List<OrderCourseVO> orderCourseVOS = new ArrayList<>(); + List<Long> longs1 = new ArrayList<>(); + for (OrderCourseVO orderCourseVO : res1) { + if (!longs1.contains(orderCourseVO.getBusinessId())){ + longs1.add(orderCourseVO.getBusinessId()); + orderCourseVOS.add(orderCourseVO); + } + } + List<OrderCourseVO> testing = testing(orderCourseVOS.size(), pageCurr, pageSize, orderCourseVOS); + return R.ok(testing); + } + public static List<OrderCourseVO> testing(long total, long current, long size, List<OrderCourseVO> str){ + List<OrderCourseVO> result = new ArrayList<>(); + //获取初始化分页结构 + Page<OrderCourseVO> page = new Page<>(current - 1, size, total); + //获取集合下标初始值 + long startIndex = (current - 1) * size; + //获取集合下标结束值 + long endInddex = 0; + if(startIndex + page.getCurrent() >= total || size > total){ + endInddex = total; + }else { + endInddex = Math.min(startIndex + page.getSize(), total); + } + //如果输入的开始查询下标大于集合大小,则查询为空值 + if(startIndex > total){ + result = Collections.emptyList(); + }else{ + result = str.subList((int)startIndex,(int)endInddex); + } + return result; } /** * 根据邀请用户ids 查询对应佣金 @@ -242,6 +306,7 @@ @ApiOperation(value = "创建支付订单", notes = "微信|支付宝") @ApiImplicitParams({ @ApiImplicitParam(name = "targetId", value = "目标id 订单类型为会员和充值时不传", dataType = "Long", required = false), + @ApiImplicitParam(name = "orderId", value = "订单id 待支付时传", dataType = "Long", required = false), @ApiImplicitParam(name = "orderFrom", value = "订单来源 1=冥想音频 2=课程 3=购买会员 4充值", dataType = "Integer", required = true), @ApiImplicitParam(name = "receiverId", value = "被赠送课程APP用户id", dataType = "Long", required = false), @ApiImplicitParam(name = "balanceFlag", value = "是否使用余额抵扣 1=是 2=否", dataType = "Integer", required = false), @@ -251,6 +316,7 @@ }) public R<ClientPlaceOrderVO> placeOrder( @RequestParam(value = "targetId", required = false) Long targetId, + @RequestParam(value = "orderId", required = false) Long orderId, @RequestParam(value = "orderFrom") Integer orderFrom, @RequestParam(value = "receiverId", required = false) Long receiverId, @RequestParam(value = "balanceFlag", required = false) Integer balanceFlag, @@ -261,7 +327,7 @@ try { return R.ok( - orderService.placeOrder(targetId, orderFrom, receiverId, + orderService.placeOrder(targetId, orderFrom, receiverId,orderId, balanceFlag, payType,amount,vipType)); } catch (Exception e) { throw new RuntimeException(e); @@ -297,13 +363,14 @@ @ApiImplicitParam(name = "vipType", value = "订单类型为会员时 必传 会员类型 1月度 2季度 3年度", dataType = "Integer", required = false), }) public R placeOrderApple( - @RequestParam(value = "targetId") Long targetId, + @RequestParam(value = "targetId", required = false) Long targetId, @RequestParam(value = "orderFrom") Integer orderFrom, @RequestParam(value = "receiverId", required = false) Long receiverId, - @RequestParam(value = "balanceFlag") Integer balanceFlag, - @RequestParam(value = "amount") BigDecimal amount, - @RequestParam(value = "vipType") Integer vipType, - @RequestParam(value = "transactionIdentifier")String transactionIdentifier) throws Exception { + @RequestParam(value = "balanceFlag", required = false) Integer balanceFlag, + @RequestParam(value = "amount", required = false) BigDecimal amount, + @RequestParam(value = "vipType", required = false) Integer vipType, + @RequestParam(value = "transactionIdentifier")String transactionIdentifier) + throws Exception { return R.ok(orderService.placeOrderApple(targetId, orderFrom, receiverId, @@ -374,6 +441,11 @@ order.setRealPayAmount(data.getIosPrice()); break; } + if (receiverId!=null){ + remoteAppUserService.addNotice(receiverId + "", data.getId() + "", + userId + "", order.getTotalAmount() + ""); + } + break; } @@ -382,6 +454,7 @@ case 2: if (receiverId!=null){ remoteAppUserService.addAppUserCourse(order.getBusinessId(),order.getGiveUserId(),order.getId(),1); + remoteAppUserService.addNotice(receiverId+"",order.getBusinessId()+"",order.getAppUserId()+"",order.getTotalAmount()+""); }else{ // 自己购买 remoteAppUserService.addAppUserCourse(order.getBusinessId(),order.getAppUserId(),order.getId(),2); @@ -403,52 +476,42 @@ appUserWalletRecord1.setChildAppUserId(order.getAppUserId()); appUserWalletRecord1.setOrderId(order.getId()); remoteAppUserService.addBalanceRecord(appUserWalletRecord1); - switch (orderFrom){ - case 1: - - break; - case 2: - - if (receiverId!=null){ - remoteAppUserService.addAppUserCourse(order.getBusinessId(),order.getGiveUserId(),order.getId(),1); - }else{ - remoteAppUserService.addAppUserCourse(order.getBusinessId(),userId,order.getId(),1); - } - break; - } - // 判断订单所属用户是否有上级 是否需要做分佣处理 AppUser data = remoteAppUserService.getAppUserById(order.getAppUserId() + "").getData(); BigDecimal realPayAmount = order.getRealPayAmount(); if (data.getInviteUserId()!=null) { - if (order.getOrderFrom() == 1 || order.getOrderFrom() == 2) { - // 分佣给上级 先远程查询分佣比例 - CommissionRule data1 = sysUserClient.getCommission().getData(); - if (data1 != null) { - if (data1.getProportion() != null) { - BigDecimal bigDecimal = realPayAmount.multiply(data1.getProportion()) - .setScale(2, BigDecimal.ROUND_HALF_DOWN); - // 上级获取的分佣金额 - AppUser appUserById = remoteAppUserService.getAppUserById(data.getInviteUserId() + "").getData(); - // 更新用户余额 - remoteAppUserService.updateAppUser( - AppUserDTO.builder().balance( - appUserById.getBalance().add(bigDecimal)) - .build(), SecurityConstants.INNER); - // 新增分佣流水明细 - AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); - appUserWalletRecord.setAppUserId(data.getInviteUserId()); - appUserWalletRecord.setChangeType(1); - appUserWalletRecord.setReason("分佣收益"); - appUserWalletRecord.setAmount(bigDecimal); - appUserWalletRecord.setChildAppUserId(order.getAppUserId()); - appUserWalletRecord.setOrderId(order.getId()); - remoteAppUserService.addBalanceRecord(appUserWalletRecord); - order.setCommissionAmount(bigDecimal); - order.setCommissionId(data.getInviteUserId()); - orderService.updateById(order); - } - } + if (order.getOrderFrom() == 1 || order.getOrderFrom() == 2 || order.getOrderFrom() == 3) { +// // 查询实际支付价格 不包含余额抵扣价格 +// OrderPaymentRecord one1 = orderPaymentRecordService.lambdaQuery().eq(OrderPaymentRecord::getOrderId, order.getId()) +// .one(); +// // 分佣给上级 先远程查询分佣比例 +// CommissionRule data1 = sysUserClient.getCommission().getData(); +// if (data1 != null) { +// if (data1.getProportion() != null) { +// +// BigDecimal bigDecimal = one1.getPayAmount().multiply(data1.getProportion()).divide(new BigDecimal("100")) +// .setScale(2, BigDecimal.ROUND_HALF_DOWN); +// // 上级获取的分佣金额 +// AppUser appUserById = remoteAppUserService.getAppUserById(data.getInviteUserId() + "").getData(); +// // 更新用户余额 +// remoteAppUserService.updateAppUser( +// AppUserDTO.builder().balance( +// appUserById.getBalance().add(bigDecimal)) +// .build(), SecurityConstants.INNER); +// // 新增分佣流水明细 +// AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); +// appUserWalletRecord.setAppUserId(data.getInviteUserId()); +// appUserWalletRecord.setChangeType(1); +// appUserWalletRecord.setReason("分佣收益"); +// appUserWalletRecord.setAmount(bigDecimal); +// appUserWalletRecord.setChildAppUserId(order.getAppUserId()); +// appUserWalletRecord.setOrderId(order.getId()); +// remoteAppUserService.addBalanceRecord(appUserWalletRecord); +// order.setCommissionAmount(bigDecimal); +// order.setCommissionId(data.getInviteUserId()); +// orderService.updateById(order); +// } +// } } } return R.ok(); @@ -488,33 +551,48 @@ // 支付金额 String string3 = jsonObject1.getString("pay_fee"); Order one = orderService.lambdaQuery().eq(Order::getBizOrderNo, string).one(); + if (one.getPaymentStatus()==2){ + return; + } one.setPaymentStatus(2); one.setPaymentTime(LocalDateTime.now()); OrderPaymentRecord one2 = orderPaymentRecordService.lambdaQuery().eq(OrderPaymentRecord::getOrderId, one.getId()) .ne(OrderPaymentRecord::getPaymentType, 4).one(); if (one2!=null){ one2.setPaymentStatus(2); + // 扣除用户余额 + Object data = remoteAppUserService.deleteBalance(one.getAppUserId() + "", one2.getPayAmount() + "").getData(); orderPaymentRecordService.updateById(one2); } // 实际支付金额 BigDecimal realPayAmount = one.getRealPayAmount(); // 判断订单所属用户是否有上级 是否需要做分佣处理 AppUser data = remoteAppUserService.getAppUserById(one.getAppUserId() + "").getData(); + if (one.getGiveUserId()!=null){ + remoteAppUserService.addNotice(one.getGiveUserId() + "", one.getBusinessId() + "", + one.getAppUserId() + "", one.getTotalAmount() + ""); + } + if (data.getInviteUserId()!=null) { - if (one.getOrderFrom() == 1 || one.getOrderFrom() == 2) { - // 分佣给上级 先远程查询分佣比例 + + if (one.getOrderFrom() == 1 || one.getOrderFrom() == 2 || one.getOrderFrom() == 3) { + // 查询实际支付价格 不包含余额抵扣价格 + OrderPaymentRecord one1 = orderPaymentRecordService.lambdaQuery().eq(OrderPaymentRecord::getOrderId, one.getId()) + .ne(OrderPaymentRecord::getPaymentType, 4).one(); + // 分佣给上级 先远程查询分佣比例 CommissionRule data1 = sysUserClient.getCommission().getData(); if (data1 != null) { if (data1.getProportion() != null) { - BigDecimal bigDecimal = realPayAmount.multiply(data1.getProportion()) + + BigDecimal bigDecimal = one1.getPayAmount().multiply(data1.getProportion()).divide(new BigDecimal("100")) .setScale(2, BigDecimal.ROUND_HALF_DOWN); // 上级获取的分佣金额 AppUser appUserById = remoteAppUserService.getAppUserById(data.getInviteUserId() + "").getData(); // 更新用户余额 - remoteAppUserService.updateAppUser( - AppUserDTO.builder().balance( - appUserById.getBalance().add(bigDecimal)) - .build(), SecurityConstants.INNER); +// remoteAppUserService.updateAppUser( +// AppUserDTO.builder().balance( +// appUserById.getBalance().add(bigDecimal)) +// .build(), SecurityConstants.INNER); // 新增分佣流水明细 AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); appUserWalletRecord.setAppUserId(data.getInviteUserId()); @@ -536,7 +614,7 @@ OrderPaymentRecord one1 = orderPaymentRecordService.lambdaQuery().eq(OrderPaymentRecord::getOrderId, one.getId()) .eq(OrderPaymentRecord::getPaymentType, 4).one(); AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); - appUserWalletRecord.setAppUserId(data.getInviteUserId()); + appUserWalletRecord.setAppUserId(one.getAppUserId()); String reason=null; switch (one.getOrderFrom()){ case 1: @@ -570,7 +648,6 @@ } appUserWalletRecord.setReason(reason); appUserWalletRecord.setAmount(one1.getPayAmount()); - appUserWalletRecord.setChildAppUserId(one.getAppUserId()); appUserWalletRecord.setOrderId(one.getId()); remoteAppUserService.addBalanceRecord(appUserWalletRecord); }else{ @@ -672,8 +749,12 @@ .eq(OrderPaymentRecord::getPayOrderNo, string).ne(OrderPaymentRecord::getPaymentStatus, 2).one(); if (two!=null){ Order one = orderService.getById(two.getOrderId()); + if (one.getPaymentStatus()==2){ + return; + } one.setPaymentStatus(2); one.setPaymentTime(LocalDateTime.now()); + orderService.updateById(one); OrderPaymentRecord one2 = orderPaymentRecordService.lambdaQuery().eq(OrderPaymentRecord::getOrderId, one.getId()) .ne(OrderPaymentRecord::getPaymentType, 4).one(); if (one2!=null){ @@ -683,33 +764,45 @@ // 实际支付金额 BigDecimal realPayAmount = one.getRealPayAmount(); // 判断订单所属用户是否有上级 是否需要做分佣处理 - AppUser data3 = remoteAppUserService.getAppUserById(one.getAppUserId() + "").getData(); - if (data3.getInviteUserId()!=null){ - // 分佣给上级 先远程查询分佣比例 - CommissionRule data1 = sysUserClient.getCommission().getData(); - if (data1!=null){ - if (data1.getProportion()!=null){ - BigDecimal bigDecimal = realPayAmount.multiply(data1.getProportion()) - .setScale(2, BigDecimal.ROUND_HALF_DOWN); - // 上级获取的分佣金额 - AppUser appUserById = remoteAppUserService.getAppUserById(data3.getInviteUserId() + "").getData(); - // 更新用户余额 - remoteAppUserService.updateAppUser( - AppUserDTO.builder().balance( - appUserById.getBalance().add(bigDecimal)) - .build(), SecurityConstants.INNER); - // 新增分佣流水明细 - AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); - appUserWalletRecord.setAppUserId(data3.getInviteUserId()); - appUserWalletRecord.setChangeType(1); - appUserWalletRecord.setReason("分佣收益"); - appUserWalletRecord.setAmount(bigDecimal); - appUserWalletRecord.setChildAppUserId(one.getAppUserId()); - appUserWalletRecord.setOrderId(one.getId()); - remoteAppUserService.addBalanceRecord(appUserWalletRecord); - one.setCommissionAmount(bigDecimal); - one.setCommissionId(data3.getInviteUserId()); - orderService.updateById(one); + AppUser data9 = remoteAppUserService.getAppUserById(one.getAppUserId() + "").getData(); + if (one.getGiveUserId()!=null){ + remoteAppUserService.addNotice(one.getGiveUserId() + "", one.getBusinessId() + "", + one.getAppUserId() + "", one.getTotalAmount() + ""); + } + + if (data9.getInviteUserId()!=null) { + + if (one.getOrderFrom() == 1 || one.getOrderFrom() == 2 || one.getOrderFrom() == 3) { + // 查询实际支付价格 不包含余额抵扣价格 + OrderPaymentRecord one1 = orderPaymentRecordService.lambdaQuery().eq(OrderPaymentRecord::getOrderId, one.getId()) + .ne(OrderPaymentRecord::getPaymentType, 4).one(); + // 分佣给上级 先远程查询分佣比例 + CommissionRule data1 = sysUserClient.getCommission().getData(); + if (data1 != null) { + if (data1.getProportion() != null) { + + BigDecimal bigDecimal = one1.getPayAmount().multiply(data1.getProportion()).divide(new BigDecimal("100")) + .setScale(2, BigDecimal.ROUND_HALF_DOWN); + // 上级获取的分佣金额 + AppUser appUserById = remoteAppUserService.getAppUserById(data9.getInviteUserId() + "").getData(); + // 更新用户余额 +// remoteAppUserService.updateAppUser( +// AppUserDTO.builder().balance( +// appUserById.getBalance().add(bigDecimal)) +// .build(), SecurityConstants.INNER); + // 新增分佣流水明细 + AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); + appUserWalletRecord.setAppUserId(data9.getInviteUserId()); + appUserWalletRecord.setChangeType(1); + appUserWalletRecord.setReason("分佣收益"); + appUserWalletRecord.setAmount(bigDecimal); + appUserWalletRecord.setChildAppUserId(one.getAppUserId()); + appUserWalletRecord.setOrderId(one.getId()); + remoteAppUserService.addBalanceRecord(appUserWalletRecord); + one.setCommissionAmount(bigDecimal); + one.setCommissionId(data9.getInviteUserId()); + orderService.updateById(one); + } } } } @@ -718,7 +811,7 @@ OrderPaymentRecord one1 = orderPaymentRecordService.lambdaQuery().eq(OrderPaymentRecord::getOrderId, one.getId()) .eq(OrderPaymentRecord::getPaymentType, 4).one(); AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); - appUserWalletRecord.setAppUserId(data3.getInviteUserId()); + appUserWalletRecord.setAppUserId(data9.getInviteUserId()); String reason=null; switch (one.getOrderFrom()){ case 1: @@ -743,35 +836,6 @@ // 会员 reason = "购买【"+one.getBuyContent()+"】"; appUserWalletRecord.setChangeType(2); - if (data3.getInviteUserId()!=null){ - // 分佣给上级 先远程查询分佣比例 - CommissionRule data4 = sysUserClient.getCommission().getData(); - if (data4!=null){ - if (data4.getProportion()!=null){ - BigDecimal bigDecimal = realPayAmount.multiply(data4.getProportion()) - .setScale(2, BigDecimal.ROUND_HALF_DOWN); - // 上级获取的分佣金额 - AppUser appUserById = remoteAppUserService.getAppUserById(data3.getInviteUserId() + "").getData(); - // 更新用户余额 - remoteAppUserService.updateAppUser( - AppUserDTO.builder().balance( - appUserById.getBalance().add(bigDecimal)) - .build(), SecurityConstants.INNER); - // 新增分佣流水明细 - AppUserWalletRecord appUserWalletRecord1 = new AppUserWalletRecord(); - appUserWalletRecord1.setAppUserId(data3.getInviteUserId()); - appUserWalletRecord1.setChangeType(1); - appUserWalletRecord1.setReason("分佣收益"); - appUserWalletRecord1.setAmount(bigDecimal); - appUserWalletRecord1.setChildAppUserId(one.getAppUserId()); - appUserWalletRecord1.setOrderId(one.getId()); - remoteAppUserService.addBalanceRecord(appUserWalletRecord1); - one.setCommissionAmount(bigDecimal); - one.setCommissionId(data3.getInviteUserId()); - orderService.updateById(one); - } - } - } break; case 4: // 充值 @@ -784,6 +848,42 @@ appUserWalletRecord.setChildAppUserId(one.getAppUserId()); appUserWalletRecord.setOrderId(one.getId()); remoteAppUserService.addBalanceRecord(appUserWalletRecord); + }else{ + switch (one.getOrderFrom()){ + case 2: + Course data2 = remoteCourseService.getCourseById(one.getBusinessId()).getData(); + // 增加用户与课程的关系表 + if (one.getGiveUserId()!=null){ + remoteAppUserService.addAppUserCourse(one.getBusinessId(),one.getGiveUserId(),one.getId(),1); + }else{ + // 自己购买 + remoteAppUserService.addAppUserCourse(one.getBusinessId(),one.getAppUserId(),one.getId(),2); + } + break; + case 3: + // 会员 + if (one.getBuyContent().contains("月")){ + + remoteAppUserService.addVipExpireTime(one.getAppUserId(),1); + }else if (one.getBuyContent().contains("季")){ + remoteAppUserService.addVipExpireTime(one.getAppUserId(),2); + }else if (one.getBuyContent().contains("年")){ + remoteAppUserService.addVipExpireTime(one.getAppUserId(),3); + } + break; + case 4: + System.err.println("进入充值"); + remoteAppUserService.addBalance(one.getAppUserId(),one.getTotalAmount()); + AppUserWalletRecord appUserWalletRecord = new AppUserWalletRecord(); + appUserWalletRecord.setAppUserId(one.getAppUserId()); + appUserWalletRecord.setChangeType(1); + appUserWalletRecord.setReason("充值"); + appUserWalletRecord.setAmount(one.getTotalAmount()); + appUserWalletRecord.setChildAppUserId(one.getAppUserId()); + appUserWalletRecord.setOrderId(one.getId()); + remoteAppUserService.addBalanceRecord(appUserWalletRecord); + break; + } } PrintWriter out = response.getWriter(); out.write("succeeded"); @@ -901,6 +1001,7 @@ .eq(OrderPaymentRecord::getPaymentStatus, 2).one(); if (two==null){ one.setRemark("余额支付"); + one.setBalance(one.getTotalAmount()); }else{ switch (two.getPaymentType()){ case 1: -- Gitblit v1.7.1