chenrui
8 天以前 bf6d13fdf5ba7dd4dd2533e62f95f529b272a31e
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
    })
@@ -36,3 +36,41 @@
        data: query
    })
}
// 查询已经绑定发票的开票台账
export function bindInvoiceNoRegPage(query) {
    return request({
        url: '/receiptPayment/bindInvoiceNoRegPage',
        method: 'get',
        params: query
    })
}
// 开票台账详情
export function invoiceInfo(query) {
    return request({
        url: '/receiptPayment/invoiceInfo',
        method: 'get',
        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
    })
}