import odooApi from '@/core/api/odooApi' export const getVoucher = async (id) => { const dataVoucher = await odooApi('GET', `/api/v1/user/${id}/voucher`) return dataVoucher } export const findVoucher = async (code, id) => { const dataVoucher = await odooApi('GET', `/api/v1/user/${id}/voucher?code=${code}`) return dataVoucher }