blob: 13d9e2c012caeb19bf7a254b1597b9d9af31bd12 (
plain)
1
2
3
4
5
6
7
8
|
import odooApi from '~/libs/odooApi';
import { IVoucher } from '~/types/voucher';
export const getVoucherAll = async (): Promise<IVoucher[]> => {
const url = `/api/v1/voucher`;
return await odooApi('GET', url);
};
|