summaryrefslogtreecommitdiff
path: root/src-migrate/services/checkout.ts
blob: 3dd1c8e8c0553807bede4ef77b564f505e4a9055 (plain)
1
2
3
4
5
6
7
import odooApi from '~/common/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}