|
@@ -729,20 +729,21 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
|
|
|
throw new BizException("该课程已结束报名!");
|
|
|
}
|
|
|
|
|
|
- StudentPaymentOrder byStudentVipGroup = studentPaymentOrderDao.findByStudentVipGroup(vipGroupBuyParams.getVipGroupId(), user.getId());
|
|
|
+ StudentPaymentOrder successOrder = studentPaymentOrderDao.findByStudentVipGroup(vipGroupBuyParams.getVipGroupId(),
|
|
|
+ user.getId(),
|
|
|
+ DealStatusEnum.SUCCESS.getMsg());
|
|
|
|
|
|
- if(Objects.nonNull(byStudentVipGroup)){
|
|
|
+ if(Objects.nonNull(successOrder)){
|
|
|
+ throw new BizException("您已购买过此课程");
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- Map payMap = payService.getPayMap(
|
|
|
- vipGroup.getTotalPrice(),
|
|
|
- byStudentVipGroup.getOrderNo(),
|
|
|
- "https://47.99.212.176:8000/api-student/studentOrder/notify",
|
|
|
- "http://mstudev.dayaedu.com/#/paymentResult",
|
|
|
- "vip课购买",
|
|
|
- vipGroup.getName());
|
|
|
+ StudentPaymentOrder byStudentVipGroup = studentPaymentOrderDao.findByStudentVipGroup(vipGroupBuyParams.getVipGroupId(),
|
|
|
+ user.getId(),
|
|
|
+ DealStatusEnum.ING.getMsg());
|
|
|
|
|
|
- return payMap;
|
|
|
+ if(Objects.nonNull(byStudentVipGroup)){
|
|
|
+ byStudentVipGroup.setStatus(DealStatusEnum.CLOSE);
|
|
|
+ studentPaymentOrderDao.update(byStudentVipGroup);
|
|
|
}
|
|
|
|
|
|
VipGroupClassGroupMapper vipGroupClassGroupMapper = vipGroupClassGroupMapperDao.findByVipGroupId(vipGroup.getId());
|
|
@@ -791,8 +792,8 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
|
|
|
Map payMap = payService.getPayMap(
|
|
|
vipGroup.getTotalPrice(),
|
|
|
orderNo,
|
|
|
- "https://dyme.utools.club/api-student/studentOrder/notify",
|
|
|
- "https://dyme.utools.club/paymentresult",
|
|
|
+ "http://mstudev.dayaedu.com/api-student/studentOrder/notify",
|
|
|
+ "http://mstudev.dayaedu.com/#/paymentresult?orderNo="+orderNo,
|
|
|
"vip课购买",
|
|
|
vipGroup.getName());
|
|
|
|
|
@@ -872,7 +873,7 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
|
|
|
public void applyRefund(Long vipGroupId,Integer studentId) {
|
|
|
|
|
|
StudentApplyRefunds studentApplyRefunds=new StudentApplyRefunds();
|
|
|
- StudentPaymentOrder studentPaymentOrder = studentPaymentOrderDao.findByStudentVipGroup(vipGroupId,studentId);
|
|
|
+ StudentPaymentOrder studentPaymentOrder = studentPaymentOrderDao.findByStudentVipGroup(vipGroupId,studentId,DealStatusEnum.SUCCESS.getMsg());
|
|
|
if(null==studentPaymentOrder){
|
|
|
throw new BizException("未找到相关订单信息!");
|
|
|
}
|
|
@@ -891,9 +892,6 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
|
|
|
studentApplyRefunds.setOrigPaymentOrderId(studentPaymentOrder.getId());
|
|
|
studentApplyRefunds.setUserId(studentId.intValue());
|
|
|
studentApplyRefundsDao.insert(studentApplyRefunds);
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
@@ -919,30 +917,33 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
|
|
|
studentApplyRefunds.setRemark(remark);
|
|
|
studentApplyRefundsDao.update(studentApplyRefunds);
|
|
|
switch (studentApplyRefunds.getStatus()) {
|
|
|
- case PASS:
|
|
|
- sysUserCashAccountService.updateBalance(studentApplyRefunds.getUserId(), studentApplyRefunds.getActualAmount());
|
|
|
- SysUserCashAccount sysUserCashAccount = sysUserCashAccountService.get(studentApplyRefunds.getUserId().intValue());
|
|
|
- SysUserCashAccountDetail sysUserCashAccountDetail = new SysUserCashAccountDetail();
|
|
|
- sysUserCashAccountDetail.setUserId(studentApplyRefunds.getUserId());
|
|
|
- sysUserCashAccountDetail.setType(PlatformCashAccountDetailTypeEnum.REFUNDS);
|
|
|
- sysUserCashAccountDetail.setStatus(DealStatusEnum.SUCCESS);
|
|
|
- sysUserCashAccountDetail.setAmount(amount);
|
|
|
- sysUserCashAccountDetail.setBalance(sysUserCashAccount.getBalance());
|
|
|
- sysUserCashAccountDetail.setAttribute(studentApplyRefunds.getId().toString());
|
|
|
- sysUserCashAccountDetailDao.insert(sysUserCashAccountDetail);
|
|
|
-
|
|
|
- ClassGroupStudentMapper classStudentMapperByUserIdAndClassGroupId = classGroupStudentMapperDao.findClassStudentMapperByUserIdAndClassGroupId(studentPaymentOrder.getUserId(),
|
|
|
- studentPaymentOrder.getClassGroupId());
|
|
|
-
|
|
|
- classStudentMapperByUserIdAndClassGroupId.setStatus(ClassGroupStudentStatusEnum.LEAVE);
|
|
|
- classGroupStudentMapperDao.update(classStudentMapperByUserIdAndClassGroupId);
|
|
|
-
|
|
|
- break;
|
|
|
- case REJECT:
|
|
|
-
|
|
|
- break;
|
|
|
- default:
|
|
|
- throw new BizException("审核状态错误!");
|
|
|
+ case PASS:
|
|
|
+ sysUserCashAccountService.updateBalance(studentApplyRefunds.getUserId(), studentApplyRefunds.getActualAmount());
|
|
|
+ SysUserCashAccount sysUserCashAccount = sysUserCashAccountService.get(studentApplyRefunds.getUserId().intValue());
|
|
|
+ SysUserCashAccountDetail sysUserCashAccountDetail = new SysUserCashAccountDetail();
|
|
|
+ sysUserCashAccountDetail.setUserId(studentApplyRefunds.getUserId());
|
|
|
+ sysUserCashAccountDetail.setType(PlatformCashAccountDetailTypeEnum.REFUNDS);
|
|
|
+ sysUserCashAccountDetail.setStatus(DealStatusEnum.SUCCESS);
|
|
|
+ sysUserCashAccountDetail.setAmount(amount);
|
|
|
+ sysUserCashAccountDetail.setBalance(sysUserCashAccount.getBalance());
|
|
|
+ sysUserCashAccountDetail.setAttribute(studentApplyRefunds.getId().toString());
|
|
|
+ sysUserCashAccountDetailDao.insert(sysUserCashAccountDetail);
|
|
|
+
|
|
|
+ ClassGroupStudentMapper classStudentMapperByUserIdAndClassGroupId = classGroupStudentMapperDao.findClassStudentMapperByUserIdAndClassGroupId(studentPaymentOrder.getUserId(),
|
|
|
+ studentPaymentOrder.getClassGroupId());
|
|
|
+
|
|
|
+ classStudentMapperByUserIdAndClassGroupId.setStatus(ClassGroupStudentStatusEnum.LEAVE);
|
|
|
+ classGroupStudentMapperDao.update(classStudentMapperByUserIdAndClassGroupId);
|
|
|
+
|
|
|
+
|
|
|
+ ImGroupMember[] imGroupMembers = new ImGroupMember[]{new ImGroupMember(studentApplyRefunds.getUserId().toString())};
|
|
|
+ imFeignService.groupJoin(new ImGroupModel(studentPaymentOrder.getClassGroupId().toString(), imGroupMembers, null));
|
|
|
+ break;
|
|
|
+ case REJECT:
|
|
|
+
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ throw new BizException("审核状态错误!");
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1034,7 +1035,7 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
|
|
|
}
|
|
|
Map<Integer, BigDecimal> studentSurplusClassFees = MapUtil.convertMybatisMap(maps);
|
|
|
for(Integer userId:studentSurplusClassFees.keySet()){
|
|
|
- StudentPaymentOrder studentPaymentOrder = studentPaymentOrderDao.findByStudentVipGroup(vipGroupId,userId);
|
|
|
+ StudentPaymentOrder studentPaymentOrder = studentPaymentOrderDao.findByStudentVipGroup(vipGroupId,userId,DealStatusEnum.SUCCESS.getMsg());
|
|
|
if(null==studentPaymentOrder){
|
|
|
throw new BizException("未找到相关订单信息!");
|
|
|
}
|