blob: 03ac3d6da588042d0471f0fff4947d70cf0c2fec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import odooApi from '@/core/api/odooApi'
export const getVoucher = async () => {
const dataVoucher = await odooApi('GET', `/api/v1/voucher`)
return dataVoucher
}
export const findVoucher = async (code) => {
const dataVoucher = await odooApi('GET', `/api/v1/voucher?code=${code}`)
return dataVoucher
}
|