// 开票台账页面接口
|
import request from '@/utils/request'
|
|
// 分页查询
|
export function invoiceLedgerList(query) {
|
return request({
|
url: '/invoiceLedger/page',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 新增
|
export function invoiceLedgerSaveOrUpdate(query) {
|
return request({
|
url: '/invoiceLedger/saveOrUpdate',
|
method: 'post',
|
data: query
|
})
|
}
|
|
// 开票台账删除
|
export function invoiceLedgerDel(query) {
|
return request({
|
url: '/invoiceLedger/del',
|
method: 'delete',
|
data: query
|
})
|
}
|
|
// 详情查询
|
export function invoiceLedgerDetail(query) {
|
return request({
|
url: '/invoiceLedger/info',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 附件提交
|
export function commitFile(query) {
|
return request({
|
url: '/invoiceLedger/commitFile',
|
method: 'post',
|
data: query
|
})
|
}
|
|
// 开票台账部分也查询
|
export function invoiceLedgerListNoPage(query) {
|
return request({
|
url: '/invoiceLedger/list',
|
method: 'get',
|
data: query
|
})
|
}
|
|
// 分页查询
|
export function invoiceLedgerSalesAccount(query) {
|
return request({
|
url: '/invoiceLedger/salesAccount',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 产品开票记录分页查询
|
export function registrationProductPage(query) {
|
return request({
|
url: '/invoiceLedger/registrationProductPage',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 产品开票详情查询
|
export function invoiceLedgerProductInfo(query) {
|
return request({
|
url: '/invoiceLedger/invoiceLedgerProductInfo',
|
method: 'get',
|
params: query
|
})
|
}
|