| | |
| | | |
| | | private final CommonFileMapper commonFileMapper; |
| | | |
| | | private final TempFileMapper tempFileMapper; |
| | | |
| | | @Value("${file.upload-dir}") |
| | | private String uploadDir; |
| | | |
| | | @Override |
| | | public List<InvoicePurchaseDto> selectInvoicePurchaseList(InvoicePurchaseDto invoicePurchaseDto) { |
| | |
| | | |
| | | @Override |
| | | public IPage<InvoicePurchaseReportDto> listPurchaseReport(Page page, InvoicePurchaseReportDto invoicePurchaseReportDto) { |
| | | |
| | | // 增值税 = 销售的(含税总价-不含税总价)减去采购的(含税总价-不含税总价) |
| | | return invoicePurchaseMapper.selectPurchaseReport(page, invoicePurchaseReportDto); |
| | | } |
| | | |