|
@@ -26,10 +26,8 @@ import com.ym.mec.util.date.DateUtil;
|
|
|
import com.ym.mec.util.excel.POIUtil;
|
|
|
import com.ym.mec.util.ini.IniFileUtil;
|
|
|
import com.ym.mec.util.upload.UploadUtil;
|
|
|
-
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
|
|
-import org.apache.poi.ss.formula.functions.T;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.boot.system.ApplicationHome;
|
|
@@ -40,7 +38,6 @@ import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
import javax.annotation.PostConstruct;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
-
|
|
|
import java.io.*;
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
import java.math.BigDecimal;
|
|
@@ -51,7 +48,6 @@ import java.util.concurrent.Executors;
|
|
|
import java.util.function.BiFunction;
|
|
|
import java.util.function.Function;
|
|
|
import java.util.stream.Collectors;
|
|
|
-import java.util.stream.Stream;
|
|
|
|
|
|
import static com.ym.mec.biz.dal.enums.OrderTypeEnum.OUTORDER;
|
|
|
|
|
@@ -178,8 +174,6 @@ public class ExportServiceImpl implements ExportService {
|
|
|
private SysUserCashAccountLogService sysUserCashAccountLogService;
|
|
|
@Autowired
|
|
|
private StudentStatisticsService studentStatisticsService;
|
|
|
- @Autowired
|
|
|
- private SysTenantConfigService sysTenantConfigService;
|
|
|
|
|
|
@Value("${spring.profiles.active:dev}")
|
|
|
private String profiles;
|
|
@@ -1403,7 +1397,9 @@ public class ExportServiceImpl implements ExportService {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}, executor);
|
|
|
- return BaseController.succeed(managerDownload.getName() + "导出申请已提交,请到【报表中心-下载列表查看】");
|
|
|
+ HttpResponseResult<Object> succeed = BaseController.succeed();
|
|
|
+ succeed.setMsg(managerDownload.getName() + "导出申请已提交,请到【报表中心-下载列表查看】");
|
|
|
+ return succeed;
|
|
|
}
|
|
|
|
|
|
//学员小课记录导出
|
|
@@ -2729,7 +2725,7 @@ public class ExportServiceImpl implements ExportService {
|
|
|
order.setMaintenanceFee(order.getMaintenanceFee());
|
|
|
order.setMusicalFee(BigDecimal.ZERO);
|
|
|
order.setTeachingFee(BigDecimal.ZERO);
|
|
|
- order.setOtherFee(BigDecimal.ZERO);
|
|
|
+// order.setOtherFee(BigDecimal.ZERO);
|
|
|
order.setLeaseFee(BigDecimal.ZERO);
|
|
|
continue;
|
|
|
}
|