liding
7 小时以前 4d1bd63eada739fdef9a05839c90a7b564fa2dab
src/main/java/com/ruoyi/sales/mapper/ReceiptPaymentMapper.java
@@ -21,6 +21,7 @@
    /**
     * 查询已经绑定发票的开票台账
     *
     * @param page
     * @param receiptPaymentDto
     * @return
@@ -29,6 +30,7 @@
    /**
     * 开票台账详情
     *
     * @param id
     * @return
     */
@@ -36,6 +38,7 @@
    /**
     * 计算前多少条数据回款金额综合
     *
     * @param customerId
     * @param total
     * @return
@@ -50,17 +53,19 @@
    /**
     * 查询回款记录分页
     */
    IPage<ReceiptPaymentDto> receiptPaymentHistoryListPage(Page page,@Param("params") ReceiptPaymentDto receiptPaymentDto);
    IPage<ReceiptPaymentDto> receiptPaymentHistoryListPage(Page page, @Param("params") ReceiptPaymentDto receiptPaymentDto);
    /**
     * 客户往来记录查询
     *
     * @param receiptPaymentDto
     * @return
     */
    List<CustomerInteractionDto> customerInteractions (ReceiptPaymentDto receiptPaymentDto);
    List<CustomerInteractionDto> customerInteractions(ReceiptPaymentDto receiptPaymentDto);
    /**
     * 客户回款记录查询
     *
     * @param invoiceLedgerDto
     * @return
     */
@@ -69,10 +74,11 @@
    /**
     * 查询回款记录不分页
     */
    List<ReceiptPaymentDto> receiptPaymentHistoryListNoPage( @Param("params") ReceiptPaymentDto receiptPaymentDto);
    List<ReceiptPaymentDto> receiptPaymentHistoryListNoPage(@Param("params") ReceiptPaymentDto receiptPaymentDto);
    /**
     * 通过开票登记产品id查询是否已经有回款记录
     *
     * @param invoiceRegistrationProductId
     * @return
     */
@@ -80,8 +86,8 @@
    List<ReceiptPaymentDto> bindInvoiceNoRegListAll();
    List<ReceiptPaymentExeclDto> bindInvoiceNoRegListByIds(List<Long> ids,Long tenantId);
    List<ReceiptPaymentExeclDto> bindInvoiceNoRegListByIds(List<Long> ids, Long tenantId);
    List<InvoiceLedgerDto> customerSalesInteractions(InvoiceLedgerDto receiptPaymentDto);
    List<InvoiceLedgerDto> customerSalesInteractions(@Param("ew") InvoiceLedgerDto receiptPaymentDto);
}