summaryrefslogtreecommitdiff
path: root/src-migrate/services/checkout.ts
blob: 3eff95a818042c444784ade83f695b6c8af3a422 (plain)
1
2
3
4
5
6
7
import odooApi from '~/libs/odooApi';

export const getUserCheckout = async (userId: number) => {
  return await odooApi('GET', `/api/v1/user/${userId}/sale_order/checkout`);
};

// /api/v1/user/${id}/sale_order/checkout?voucher=${voucher}