| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.account.mapper.AccountStatementMapper; |
| | | import com.ruoyi.purchase.dto.VatDto; |
| | | import com.ruoyi.purchase.dto.VatSummaryDto; |
| | | import com.ruoyi.purchase.service.PurchaseReportService; |
| | | import com.ruoyi.purchase.vo.PurchaseReportVo; |
| | | import com.ruoyi.sales.mapper.SalesLedgerMapper; |
| | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Service |
| | | @Slf4j |
| | |
| | | } |
| | | |
| | | @Override |
| | | public IPage<VatDto> listVat(Page page, String month) { |
| | | return accountStatementMapper.selectVatDtoPage(page, month); |
| | | public IPage<VatDto> listVat(Page page, String month, String type) { |
| | | return accountStatementMapper.selectVatDtoPage(page, month, type); |
| | | } |
| | | |
| | | @Override |
| | | public List<VatSummaryDto> vatSummary(String year) { |
| | | return accountStatementMapper.selectVatSummary(year); |
| | | } |
| | | |
| | | @Override |
| | | public IPage<VatDto> listVatDetail(Page page, String month) { |
| | | return accountStatementMapper.listVatDetail(page, month); |
| | | } |
| | | } |