Browse Source

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

Joburgess 5 years ago
parent
commit
ee19b339e2

+ 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)){