liding
5 小时以前 56424206be7af38a02be17f215654f3ca813ebcb
src/main/java/com/ruoyi/sales/service/ReceiptPaymentService.java
@@ -2,7 +2,6 @@
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.sales.dto.CustomerInteractionDto;
import com.ruoyi.sales.dto.InvoiceLedgerDto;
import com.ruoyi.sales.dto.ReceiptPaymentDto;
import com.ruoyi.sales.pojo.ReceiptPayment;
@@ -16,6 +15,7 @@
    /**
     * 回款登记新增
     *
     * @param receiptPayment
     * @return
     */
@@ -23,6 +23,7 @@
    /**
     * 回款登记修改
     *
     * @param receiptPayment
     * @return
     */
@@ -30,6 +31,7 @@
    /**
     * 回款登记删除
     *
     * @param ids
     * @return
     */
@@ -37,14 +39,16 @@
    /**
     * 回款登记分页查询
     *
     * @param page
     * @param receiptPaymentDto
     * @return
     */
    IPage<ReceiptPaymentDto> receiptPaymentListPage (Page page, ReceiptPaymentDto receiptPaymentDto);
    IPage<ReceiptPaymentDto> receiptPaymentListPage(Page page, ReceiptPaymentDto receiptPaymentDto);
    /**
     * 回款登记详情
     *
     * @param id
     * @return
     */
@@ -54,6 +58,7 @@
    /**
     * 查询已经绑定发票的开票台账
     *
     * @param page
     * @param receiptPaymentDto
     * @return
@@ -62,12 +67,13 @@
    /**
     * 开票台账详情
     *
     * @param id
     * @return
     */
    InvoiceLedgerDto invoiceInfo(Integer id);
    Map<String,BigDecimal> getAmountMouth();
    Map<String, BigDecimal> getAmountMouth();
    /**
     * 查询回款记录
@@ -81,10 +87,11 @@
    /**
     * 客户往来记录查询
     *
     * @param receiptPaymentDto
     * @return
     */
    List<InvoiceLedgerDto> customerInteractions (InvoiceLedgerDto receiptPaymentDto);
    List<InvoiceLedgerDto> customerInteractions(InvoiceLedgerDto receiptPaymentDto);
    /**
     * 查询回款记录分页
@@ -100,4 +107,12 @@
     * 部分导出回款列表
     */
    void exportPaymentList(HttpServletResponse response, List<Long> ids);
    /**
     * 客户销售记录查询
     *
     * @param receiptPaymentDto
     * @return
     */
    List<InvoiceLedgerDto> customerSalesInteractions(InvoiceLedgerDto receiptPaymentDto);
}