| | |
| | | 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); |
| | | } |
| | | } |