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