gaoluyang
2025-08-01 dbbe04a85edc5bb356d471121a0b49fd7c0aa0c7
src/api/salesManagement/receiptPayment.js
@@ -10,10 +10,10 @@
    })
}
// 分页查询
export function receiptPaymentListPage(query) {
// 客户往来记录查询
export function customerInteractions(query) {
    return request({
        url: '/receiptPayment/listPage',
        url: '/receiptPayment/customerInteractions',
        method: 'get',
        params: query
    })
@@ -54,3 +54,31 @@
        params: query
    })
}
// 询回款记录
export function receiptPaymentHistoryList(query) {
    return request({
        url: '/receiptPayment/receiptPaymentHistoryList',
        method: 'get',
        params: query
    })
}
/**
 * 查询回款记录分页查询
 */
export function receiptPaymentHistoryListPage(query) {
    return request({
        url: '/receiptPayment/receiptPaymentHistoryListPage',
        method: 'get',
        params: query
    })
}
export function receiptPaymentHistoryListNoPage(query) {
    return request({
        url: '/receiptPayment/receiptPaymentHistoryListNoPage',
        method: 'get',
        params: query
    })
}