liyong
3 天以前 97857de7bc536e459f8d5de78494c03cebc3171e
src/main/java/com/ruoyi/purchase/controller/AccountingReportController.java
@@ -26,9 +26,16 @@
    private IInvoicePurchaseService invoicePurchaseService;
    @GetMapping("/list")
    @Log(title = "采购报表", businessType = BusinessType.OTHER)
    @Log(title = "采购报表-项目利润", businessType = BusinessType.OTHER)
    public AjaxResult list(Page page, InvoicePurchaseReportDto invoicePurchaseReportDto) {
        IPage<InvoicePurchaseReportDto> result =invoicePurchaseService.listPurchaseReport(page, invoicePurchaseReportDto);
        return AjaxResult.success(result);
    }
    @Log(title = "采购报表-增值税比对", businessType = BusinessType.OTHER)
    @GetMapping("/listVat")
    public AjaxResult listVat(Page page, InvoicePurchase invoicePurchase) {
        IPage<InvoicePurchase> result = invoicePurchaseService.listVat(page, invoicePurchase);
        return AjaxResult.success(result);
    }
}