|
@@ -36,8 +36,6 @@ public class ConsoleExportFacade {
|
|
|
private FilterFacade filterFacade;
|
|
|
@Autowired
|
|
|
private ConsoleByDoctorFacade consoleByDoctorFacade;
|
|
|
- @Autowired
|
|
|
- private GetDoctorDetailFacade getDoctorDetailFacade;
|
|
|
|
|
|
/**
|
|
|
* 病案首页合格率占比
|
|
@@ -911,7 +909,7 @@ public class ConsoleExportFacade {
|
|
|
*/
|
|
|
public void getDoctorDetailPageExport(HttpServletResponse response, GetDoctorDetailPageVO getDetailListPageVO) {
|
|
|
//1.查询
|
|
|
- IPage<GetDoctorDetailPageDTO> doctorDetailPage = getDoctorDetailFacade.getDoctorDetailPage(getDetailListPageVO);
|
|
|
+ IPage<GetDoctorDetailPageDTO> doctorDetailPage = consoleByDoctorFacade.getDoctorDetailPage(getDetailListPageVO);
|
|
|
//2.列表拷贝
|
|
|
List<ExportGetDoctorDetailPageDTO> records = BeanUtil.listCopyTo(doctorDetailPage.getRecords(), ExportGetDoctorDetailPageDTO.class);
|
|
|
//3.导出
|
|
@@ -948,7 +946,7 @@ public class ConsoleExportFacade {
|
|
|
getDetailRecordListPageVO.setSize(Long.MAX_VALUE);
|
|
|
getDetailRecordListPageVO.setSearchCount(false);
|
|
|
//1.查询
|
|
|
- IPage<GetDetailRecordListPageDTO> detailRecordListPage = getDoctorDetailFacade.getDetailRecordListPage(getDetailRecordListPageVO);
|
|
|
+ IPage<GetDetailRecordListPageDTO> detailRecordListPage = consoleByDoctorFacade.getDetailRecordListPage(getDetailRecordListPageVO);
|
|
|
List<ExportGetDetailRecordListPageDTO> records = BeanUtil.listCopyTo(detailRecordListPage.getRecords(), ExportGetDetailRecordListPageDTO.class);
|
|
|
String fileName = "缺陷病历信息.xls";
|
|
|
response.setContentType("text/html;charset=UTF-8");
|