|
@@ -106,7 +106,6 @@ public class DegreeRegistrationServiceImpl extends BaseServiceImpl<Integer, Degr
|
|
|
theoryMoney = new BigDecimal(320);
|
|
|
break;
|
|
|
case "免考":
|
|
|
- theoryMoney = new BigDecimal(0);
|
|
|
break;
|
|
|
default:
|
|
|
throw new BizException("您选择的乐理级别不存在,请核对");
|
|
@@ -121,6 +120,8 @@ public class DegreeRegistrationServiceImpl extends BaseServiceImpl<Integer, Degr
|
|
|
} else if (degree.getStatus().equals(2)) {
|
|
|
//throw new BizException("您本次已报名,请勿重复报名");
|
|
|
} else {
|
|
|
+ degreeRegistration.setMoney(degree.getMoney());
|
|
|
+ degreeRegistration.setTheoryMoney(degree.getTheoryMoney());
|
|
|
degreeRegistration.setId(degree.getId());
|
|
|
degreeRegistration.setStatus(1);
|
|
|
degreeRegistration.setCreateTime(nowDate);
|