|  | @@ -188,15 +188,19 @@ public class ExportController extends BaseController {
 | 
	
		
			
				|  |  |              row.setTransferFee(transferFee);
 | 
	
		
			
				|  |  |              BigDecimal musicalFee = BigDecimal.ZERO;
 | 
	
		
			
				|  |  |              BigDecimal teachingFee = BigDecimal.ZERO;
 | 
	
		
			
				|  |  | +            BigDecimal courseFee = BigDecimal.ZERO;
 | 
	
		
			
				|  |  |              if (row.getOrderDetailList() != null) {
 | 
	
		
			
				|  |  |                  for (StudentPaymentOrderDetail orderDetail : row.getOrderDetailList()) {
 | 
	
		
			
				|  |  |                      if (orderDetail.getType().equals(OrderDetailTypeEnum.MUSICAL)) {
 | 
	
		
			
				|  |  |                          musicalFee = musicalFee.add(orderDetail.getPrice());
 | 
	
		
			
				|  |  | -                    } else if (orderDetail.getType().equals(OrderDetailTypeEnum.ACCESSORIES) || orderDetail.getType().equals(OrderDetailTypeEnum.TEACHING)) {
 | 
	
		
			
				|  |  | +                    }else if(orderDetail.getType().equals(OrderDetailTypeEnum.COURSE)){
 | 
	
		
			
				|  |  | +                        courseFee = courseFee.add(orderDetail.getPrice());
 | 
	
		
			
				|  |  | +                    }else if (orderDetail.getType().equals(OrderDetailTypeEnum.ACCESSORIES) || orderDetail.getType().equals(OrderDetailTypeEnum.TEACHING) || orderDetail.getType().equals(OrderDetailTypeEnum.OTHER)) {
 | 
	
		
			
				|  |  |                          teachingFee = teachingFee.add(orderDetail.getPrice());
 | 
	
		
			
				|  |  |                      }
 | 
	
		
			
				|  |  |                  }
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  | +            row.setCourseFee(courseFee);
 | 
	
		
			
				|  |  |              row.setMusicalFee(musicalFee);
 | 
	
		
			
				|  |  |              row.setTeachingFee(teachingFee);
 | 
	
		
			
				|  |  |              //专业
 | 
	
	
		
			
				|  | @@ -206,7 +210,7 @@ public class ExportController extends BaseController {
 | 
	
		
			
				|  |  |                      row.setSubjectName(studentRegistration.getSubjectName());
 | 
	
		
			
				|  |  |                      row.setSchoolName(studentRegistration.getSchoolName());
 | 
	
		
			
				|  |  |                      if (studentRegistration.getKitType() != null && studentRegistration.getKitType().equals("LEASE")) {
 | 
	
		
			
				|  |  | -                        row.setLeaseFee(musicalFee);
 | 
	
		
			
				|  |  | +                        row.setLeaseFee(studentRegistration.getDepositFee());
 | 
	
		
			
				|  |  |                          row.setMusicalFee(BigDecimal.ZERO);
 | 
	
		
			
				|  |  |                      }
 | 
	
		
			
				|  |  |                  }
 | 
	
	
		
			
				|  | @@ -250,9 +254,9 @@ public class ExportController extends BaseController {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          try {
 | 
	
		
			
				|  |  |              String[] header = {"序号", "学生姓名", "交易流水号", "订单编号", "收款渠道", "收款账户", "支付金额", "到账时间",
 | 
	
		
			
				|  |  | -                    "关联乐团ID/VIP课ID", "课程形态", "押金", "乐器", "教辅费用", "零星收款费用", "零星收款类别", "手续费", "专业", "分部", "单位/学校", "备注"};
 | 
	
		
			
				|  |  | +                    "关联乐团ID/VIP课ID", "课程形态","课程费用", "押金", "乐器", "教辅费用", "零星收款费用", "零星收款类别", "手续费", "专业", "分部", "单位/学校", "备注"};
 | 
	
		
			
				|  |  |              String[] body = {"id", "user.username", "transNo", "orderNo", "paymentChannel", "merNos", "actualAmount", "payTime", "musicGroupId",
 | 
	
		
			
				|  |  | -                    "groupType.desc", "leaseFee", "musicalFee", "teachingFee", "sporadicAmount", "sporadicType", "transferFee", "subjectName", "organName", "schoolName", "memo"};
 | 
	
		
			
				|  |  | +                    "groupType.desc", "courseFee","leaseFee", "musicalFee", "teachingFee", "sporadicAmount", "sporadicType", "transferFee", "subjectName", "organName", "schoolName", "memo"};
 | 
	
		
			
				|  |  |              HSSFWorkbook workbook = POIUtil.exportExcel(header, body, studentPaymentOrderExportDtos);
 | 
	
		
			
				|  |  |              response.setContentType("application/octet-stream");
 | 
	
		
			
				|  |  |              response.setHeader("Content-Disposition", "attachment;filename=lender-" + DateUtil.getDate(new Date()) + ".xls");
 |