|
@@ -59,7 +59,7 @@ public class ConsoleByDeptExportController {
|
|
|
* @param qcResultShortPageVO
|
|
|
* @return
|
|
|
*/
|
|
|
- @ApiOperation(value = "病案首页不合格/合格数病历详情页导出[by:cy]",
|
|
|
+ @ApiOperation(value = "病案首页不合格/合格数病历详情页导出-科室[by:cy]",
|
|
|
notes = "behospitalCode: 病历号<br>" +
|
|
|
"patName: 病人姓名 <br>" +
|
|
|
"behDeptName:科室名称 <br>" +
|
|
@@ -101,23 +101,39 @@ public class ConsoleByDeptExportController {
|
|
|
consoleByDeptExportFacade.entryGroupExportByDeptPage(response,filterPageByDeptVO);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 各模块缺陷占比导出-科室
|
|
|
+ *
|
|
|
+ * @param filterPageByDeptVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+
|
|
|
+ @ApiOperation(value = "各模块缺陷占比导出-科室[by:cy]",
|
|
|
+ notes = "type: 统计维度 1-本月,2-本年(必填)<br>" +
|
|
|
+ "isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
+ @PostMapping("/entryGroupExportByDeptCase")
|
|
|
+ @SysLogger("entryGroupExportByDeptCase")
|
|
|
+ public void entryGroupExportByDeptCase(HttpServletResponse response, @RequestBody @Valid FilterPageByDeptVO filterPageByDeptVO) {
|
|
|
+ consoleByDeptExportFacade.entryGroupExportByDeptCase(response, filterPageByDeptVO);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
- * 条目缺陷占比(内页)
|
|
|
+ * 条目缺陷占比(内页)-科室
|
|
|
*
|
|
|
- * @param filterPageVO
|
|
|
+ * @param filterPageByDeptVO
|
|
|
* @return
|
|
|
-
|
|
|
- @ApiOperation(value = "条目缺陷占比导出[by:gaodm]",
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "条目缺陷占比(内页)-科室[by:cy]",
|
|
|
notes = "type: 统计维度 1-本月,2-本年(必填)<br>" +
|
|
|
"isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
- @PostMapping("/entryGroupByEntryExport")
|
|
|
- @SysLogger("entryGroupByEntryExport")
|
|
|
- public void entryGroupByEntryExport(HttpServletResponse response, @RequestBody @Valid FilterPageVO filterPageVO) {
|
|
|
- consoleExportFacade.entryGroupByEntryExport(response, filterPageVO);
|
|
|
+ @PostMapping("/entryGroupByEntryDeptPage")
|
|
|
+ @SysLogger("entryGroupByEntryDeptPage")
|
|
|
+ public void entryGroupByEntryDeptPage(HttpServletResponse response, @RequestBody @Valid FilterPageByDeptVO filterPageByDeptVO) {
|
|
|
+ consoleByDeptExportFacade.entryGroupByEntryDeptPage(response, filterPageByDeptVO);
|
|
|
}
|
|
|
|
|
|
-*//**
|
|
|
+/**
|
|
|
* 病历稽查统计(首页)
|
|
|
* @param filterVO
|
|
|
* @return
|
|
@@ -213,35 +229,21 @@ public class ConsoleByDeptExportController {
|
|
|
*
|
|
|
* @param filterPageVO
|
|
|
* @return
|
|
|
- *//*
|
|
|
+ */
|
|
|
|
|
|
- @ApiOperation(value = "各科室甲级病历占比排行导出[by:gaodm]",
|
|
|
+/* @ApiOperation(value = "各科室甲级病历占比排行导出[by:gaodm]",
|
|
|
notes = "type: 统计维度 1-本月,2-本年(必填)<br>" +
|
|
|
"isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
@PostMapping("/levelPercentGroupByDeptExport")
|
|
|
@SysLogger("levelPercentGroupByDeptExport")
|
|
|
public void levelPercentGroupByDeptExport(HttpServletResponse response, @RequestBody @Valid FilterPageVO filterPageVO) {
|
|
|
consoleExportFacade.levelPercentGroupByDeptExport(response, filterPageVO);
|
|
|
- }
|
|
|
+ }*/
|
|
|
|
|
|
|
|
|
-/**
|
|
|
- * 各模块缺陷占比导出
|
|
|
- *
|
|
|
- * @param filterPageVO
|
|
|
- * @return
|
|
|
- *//*
|
|
|
|
|
|
- @ApiOperation(value = "各模块缺陷占比导出[by:gaodm]",
|
|
|
- notes = "type: 统计维度 1-本月,2-本年(必填)<br>" +
|
|
|
- "isPlacefile: 是否归档(0:未归档,1:已归档) <br>")
|
|
|
- @PostMapping("/entryCountGroupByCaseExport")
|
|
|
- @SysLogger("entryCountGroupByCaseExport")
|
|
|
- public void entryCountGroupByCaseExport(HttpServletResponse response, @RequestBody @Valid FilterPageVO filterPageVO) {
|
|
|
- consoleExportFacade.entryCountGroupByCaseExport(response, filterPageVO);
|
|
|
- }
|
|
|
|
|
|
-*//**
|
|
|
+/**
|
|
|
* 关键条目缺陷占比统计导出
|
|
|
*
|
|
|
* @param entryStatisticsVO
|