|
@@ -545,7 +545,7 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
Objects.isNull(e.getStudentId()) ||
|
|
|
Objects.isNull(e.getVipGroupId())).count();
|
|
|
if(count > 0){
|
|
|
- return;
|
|
|
+ new BizException("参数校验失败");
|
|
|
}
|
|
|
for (FinancialExpenditure financialExpenditure : financialExpenditureList) {
|
|
|
ReturnFeeDto returnFeeDto = new ReturnFeeDto();
|
|
@@ -566,7 +566,7 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
filter(e -> StringUtils.isEmpty(e.getMusicGroupId()) ||
|
|
|
Objects.isNull(e.getStudentId())).count();
|
|
|
if(count > 0){
|
|
|
- return;
|
|
|
+ new BizException("参数校验失败");
|
|
|
}
|
|
|
for (FinancialExpenditure financialExpenditure : financialExpenditureList) {
|
|
|
musicGroupService.checkDirectQuitMusicGroupOa(financialExpenditure);
|