浏览代码

1、vip课列表增加字段;
2、vip课导出增加字段;
3、vip课加学员限制;
4、vip课休学限制;

Joburgess 5 年之前
父节点
当前提交
ee19b339e2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/VipGroupServiceImpl.java

+ 1 - 1
mec-biz/src/main/java/com/ym/mec/biz/service/impl/VipGroupServiceImpl.java

@@ -1575,7 +1575,7 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
 			throw new BizException("指定的课程不存在");
 		}
 		if(!VipGroupStatusEnum.PROGRESS.equals(vipGroup.getStatus())){
-			throw new BizException("无法进行该操作");
+			throw new BizException("当前课程组状态非进行中,无法进行该操作");
 		}
 		List<StudentApplyRefunds> studentApplyRefunds = studentApplyRefundsDao.findByGroupAndUser(vipGroupId.toString(), GroupType.VIP.getCode(), studentId);
 		if(!CollectionUtils.isEmpty(studentApplyRefunds)){