9 天以前 f0efc10af370936b4db47b8428eb1ca4686431f9
src/main/java/com/ruoyi/purchase/controller/AccountingReportController.java
@@ -65,4 +65,11 @@
        ExcelUtil<VatDto> util = new ExcelUtil<VatDto>(VatDto.class);
        util.exportExcel(response, result.getRecords() , "增值税比对");
    }
    @GetMapping("/listVatDetail")
    @Operation(summary = "增值税明细-按发票/订单展示")
    public AjaxResult listVatDetail(Page page, String month) {
        IPage<VatDto> result = invoicePurchaseService.listVatDetail(page, month);
        return AjaxResult.success(result);
    }
}