| | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.common.utils.SecurityUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.sales.dto.InvoiceLedgerDto; |
| | | import com.ruoyi.sales.dto.ReceiptPaymentDto; |
| | | import com.ruoyi.sales.dto.ReceiptPaymentExeclDto; |
| | | import com.ruoyi.sales.mapper.ReceiptPaymentMapper; |
| | |
| | | return receiptPaymentDtoIPage; |
| | | } |
| | | |
| | | /** |
| | | * 开票台账详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @Override |
| | | public InvoiceLedgerDto invoiceInfo(Integer id) { |
| | | return receiptPaymentMapper.invoiceInfo(id); |
| | | } |
| | | |
| | | @Override |
| | | public Map<String,BigDecimal> getAmountMouth() { |
| | | List<SalesLedger> salesLedgers = salesLedgerMapper.selectList(null); |
| | |
| | | @Override |
| | | public IPage<ReceiptPaymentDto> receiptPaymentHistoryListPage(Page page, ReceiptPaymentDto receiptPaymentDto) { |
| | | return receiptPaymentMapper.receiptPaymentHistoryListPage(page, receiptPaymentDto); |
| | | } |
| | | |
| | | /** |
| | | * 客户往来记录查询 |
| | | * @param receiptPaymentDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<InvoiceLedgerDto> customerInteractions(InvoiceLedgerDto receiptPaymentDto) { |
| | | return receiptPaymentMapper.invoiceLedgerSalesAccount(receiptPaymentDto); |
| | | } |
| | | |
| | | /** |