|  | @@ -62,9 +62,11 @@ public class DegreeRegistrationServiceImpl extends BaseServiceImpl<Integer, Degr
 | 
	
		
			
				|  |  |          if (chargeInfo == null || chargeInfo.getDelFlag().equals(1) || chargeInfo.getOpenFlag().equals(1)) {
 | 
	
		
			
				|  |  |              throw new BizException("你选的考试级别不存在");
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  | -        if (chargeInfo.getTitle().equals("二级") && StringUtils.isBlank(degreeRegistration.getTheoryCert())) {
 | 
	
		
			
				|  |  | -            throw new BizException(chargeInfo.getTitle() + "考试必须上传证书");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        if (!chargeInfo.getTitle().equals("一级") && !chargeInfo.getTitle().equals("二级") && StringUtils.isBlank(degreeRegistration.getTheoryCert())) {
 | 
	
		
			
				|  |  | +            throw new BizException("报考级别为"+chargeInfo.getTitle() + ",必须上传证书");
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          degreeRegistration.setLevel(chargeInfo.getTitle());
 | 
	
		
			
				|  |  |          BigDecimal theoryMoney = BigDecimal.ZERO;
 | 
	
		
			
				|  |  |          switch (degreeRegistration.getTheoryLevel()) {
 |