// 开票登记页面接口
|
import request from '@/utils/request'
|
|
// 新增/修改
|
export function receiptPaymentSaveOrUpdate(query) {
|
return request({
|
url: '/receiptPayment/saveOrUpdate',
|
method: 'post',
|
data: query
|
})
|
}
|
|
// 客户往来记录查询
|
export function customerInteractions(query) {
|
return request({
|
url: '/receiptPayment/customerInteractions',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 详情
|
export function receiptPaymentInfo(query) {
|
return request({
|
url: '/receiptPayment/info',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 删除
|
export function receiptPaymentDel(query) {
|
return request({
|
url: '/receiptPayment/del',
|
method: 'delete',
|
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
|
})
|
}
|
|
export function receiptPaymentHistoryListNoPage(query) {
|
return request({
|
url: '/receiptPayment/receiptPaymentHistoryListNoPage',
|
method: 'get',
|
params: query
|
})
|
}
|