|
|
@@ -3,6 +3,8 @@ package com.jzg.console.controller;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.jzg.commons.core.base.BaseController;
|
|
|
import com.jzg.commons.core.page.HttpResult;
|
|
|
+import com.jzg.commons.entity.report.dto.FeeAuditSummaryVo;
|
|
|
+import com.jzg.commons.entity.report.vo.FeeAuditSummaryParam;
|
|
|
import com.jzg.commons.entity.report.vo.ReportSearchCommonVo;
|
|
|
import com.jzg.console.service.*;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
@@ -45,6 +47,10 @@ public class ReportFinanceDataManageController extends BaseController {
|
|
|
@Autowired
|
|
|
private ReportPersonCheckDataService reportPersonCheckDataService;
|
|
|
|
|
|
+ //费用审核汇总统计
|
|
|
+ @Autowired
|
|
|
+ private ReportFeeAuditSummaryService reportFeeAuditSummaryService;
|
|
|
+
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -154,8 +160,8 @@ public class ReportFinanceDataManageController extends BaseController {
|
|
|
@PostMapping(value = "/receivableDataDetailPageList")
|
|
|
public HttpResult<?> receivableDataDetailPageList(@RequestBody ReportSearchCommonVo reportSearchCommonVo) {
|
|
|
try{
|
|
|
- List<?> list = reportReceivableDataService.getDetailListByParams(reportSearchCommonVo);
|
|
|
- return HttpResult.ok(list);
|
|
|
+ IPage<?> pageList = reportReceivableDataService.getPageDetailListByParams(reportSearchCommonVo);
|
|
|
+ return HttpResult.ok(pageList);
|
|
|
}catch (Exception e){
|
|
|
return HttpResult.error(e.getMessage());
|
|
|
}
|
|
|
@@ -187,8 +193,8 @@ public class ReportFinanceDataManageController extends BaseController {
|
|
|
@PostMapping(value = "/meetDataPageList")
|
|
|
public HttpResult<?> meetDataPageList(@RequestBody ReportSearchCommonVo reportSearchCommonVo) {
|
|
|
try{
|
|
|
- List<?> list = reportMeetDataService.getListByParams(reportSearchCommonVo);
|
|
|
- return HttpResult.ok(list);
|
|
|
+ IPage<?> pageList = reportMeetDataService.getPageListByParams(reportSearchCommonVo);
|
|
|
+ return HttpResult.ok(pageList);
|
|
|
}catch (Exception e){
|
|
|
return HttpResult.error(e.getMessage());
|
|
|
}
|
|
|
@@ -213,7 +219,7 @@ public class ReportFinanceDataManageController extends BaseController {
|
|
|
* @version
|
|
|
* @author: hxl
|
|
|
* @Date: 2025/9/22 17:11
|
|
|
- * @Description: 业务数据-对接人-明细查询
|
|
|
+ * @Description: 财务数据-应付-明细查询
|
|
|
*/
|
|
|
@Operation(summary = "财务数据-应付-明细查询", description = "财务数据-应付-明细查询")
|
|
|
@PostMapping(value = "/meetDataDetailPageList")
|
|
|
@@ -340,4 +346,19 @@ public class ReportFinanceDataManageController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 费用审核汇总统计:按保险公司分组统计待审核、已审核、审核不通过、疑问订单数量及平均审核时长
|
|
|
+ * @author: jk
|
|
|
+ */
|
|
|
+ @Operation(summary = "费用审核-汇总统计列表", description = "费用审核-汇总统计列表")
|
|
|
+ @PostMapping(value = "/feeAuditSummaryPageList")
|
|
|
+ public HttpResult<IPage<FeeAuditSummaryVo>> feeAuditSummaryPageList(@RequestBody FeeAuditSummaryParam param) {
|
|
|
+ try {
|
|
|
+ IPage<FeeAuditSummaryVo> pageList = reportFeeAuditSummaryService.getFeeAuditSummaryPage(param);
|
|
|
+ return HttpResult.ok(pageList);
|
|
|
+ } catch (Exception e) {
|
|
|
+ return HttpResult.error(e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|