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 }