import odooApi from '~/libs/odooApi'; import { IVoucher } from '~/types/voucher'; export const getVoucherAll = async (): Promise => { const url = `/api/v1/voucher`; return await odooApi('GET', url); };