blob: 68185021412aed3cb50c1c520f7677cdd07926eb (
plain)
1
2
3
4
5
6
7
8
|
import odooApi from '@/core/api/odooApi'
const getVoucher = async () => {
const dataVoucher = await odooApi('GET', `/api/v1/voucher`)
return dataVoucher
}
export default getVoucher
|