chenrui
昨天 ece2dfeb926d728b10db38038e4d12e9e9851c24
src/api/salesManagement/invoiceLedger.js
@@ -55,3 +55,31 @@
    })
}
// 分页查询
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
    })
}