liding
7 小时以前 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,6 +39,7 @@
    /**
     * 回款登记分页查询
     *
     * @param page
     * @param receiptPaymentDto
     * @return
@@ -45,6 +48,7 @@
    /**
     * 回款登记详情
     *
     * @param id
     * @return
     */
@@ -54,6 +58,7 @@
    /**
     * 查询已经绑定发票的开票台账
     *
     * @param page
     * @param receiptPaymentDto
     * @return
@@ -62,6 +67,7 @@
    /**
     * 开票台账详情
     *
     * @param id
     * @return
     */
@@ -81,6 +87,7 @@
    /**
     * 客户往来记录查询
     *
     * @param receiptPaymentDto
     * @return
     */
@@ -100,4 +107,12 @@
     * 部分导出回款列表
     */
    void exportPaymentList(HttpServletResponse response, List<Long> ids);
    /**
     * 客户销售记录查询
     *
     * @param receiptPaymentDto
     * @return
     */
    List<InvoiceLedgerDto> customerSalesInteractions(InvoiceLedgerDto receiptPaymentDto);
}