| | |
| | | return paymentRegistrationMapper.deleteById(id); |
| | | } |
| | | |
| | | @Override |
| | | public IPage<PaymentRegistrationDto> supplierNameListPage(Page page, PaymentLedgerDto paymentLedgerDto) { |
| | | return paymentRegistrationMapper.supplierNameListPage(page, paymentLedgerDto); |
| | | } |
| | | |
| | | @Override |
| | | public List<PaymentRegistrationDto> supplierNameListPageDetails(PaymentLedgerDto paymentLedgerDto) { |
| | | return paymentRegistrationMapper.supplierNameListPageDetails(paymentLedgerDto); |
| | | } |
| | | |
| | | // 批量查询采购台账(当月) |
| | | private Map<Long, List<PurchaseLedger>> batchQueryPurchaseLedgers(List<Long> supplierIds, LocalDate startDate, LocalDate endDate) { |
| | | LambdaQueryWrapper<PurchaseLedger> query = new LambdaQueryWrapper<>(); |