zss
7 天以前 13fd47c5aa585b74bfc8b77722bde3f7a2399587
src/main/java/com/ruoyi/sales/service/ReceiptPaymentService.java
@@ -5,7 +5,10 @@
import com.ruoyi.sales.dto.ReceiptPaymentDto;
import com.ruoyi.sales.pojo.ReceiptPayment;
import jakarta.servlet.http.HttpServletResponse;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
public interface ReceiptPaymentService {
@@ -14,7 +17,7 @@
     * @param receiptPayment
     * @return
     */
    int receiptPaymentSaveOrUpdate(ReceiptPayment receiptPayment);
    int receiptPaymentSaveOrUpdate(List<ReceiptPayment> receiptPayment);
    /**
     * 回款登记修改
@@ -44,4 +47,43 @@
     * @return
     */
    ReceiptPaymentDto receiptPaymentInfo(Integer id);
    BigDecimal getReceiptAmount();
    /**
     * 查询已经绑定发票的开票台账
     * @param page
     * @param receiptPaymentDto
     * @return
     */
    IPage<ReceiptPaymentDto> bindInvoiceNoRegPage(Page page, ReceiptPaymentDto receiptPaymentDto);
    Map<String,BigDecimal> getAmountMouth();
    /**
     * 查询回款记录
     */
    List<ReceiptPaymentDto> receiptPaymentHistoryList(ReceiptPaymentDto receiptPaymentDto);
    /**
     * 查询回款记录分页
     */
    IPage<ReceiptPaymentDto> receiptPaymentHistoryListPage(Page page, ReceiptPaymentDto receiptPaymentDto);
    /**
     * 查询回款记录分页
     */
    List<ReceiptPaymentDto> receiptPaymentHistoryListNoPage(ReceiptPaymentDto receiptPaymentDto);
    /**
     * 全导出回款列表
     */
    void exportPaymentList(HttpServletResponse response);
    /**
     * 部分导出回款列表
     */
    void exportPaymentList(HttpServletResponse response, List<Long> ids);
}