chenrui
2025-05-20 eeffb4c90d96b32bfefe7903ae5fddc10365b40a
src/api/salesManagement/invoiceLedger.js
@@ -46,3 +46,40 @@
    })
}
// 开票台账部分也查询
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
    })
}