Spaces:
Running
Running
File size: 307 Bytes
308a91d 454ca1f 308a91d | 1 2 3 4 5 6 7 8 9 10 11 | import api from './axios';
export const createOrder = (items, branch_id = null) =>
api.post('/api/orders/', { items, ...(branch_id ? { branch_id } : {}) });
export const getOrders = (params = {}) =>
api.get('/api/orders/', { params });
export const getOrder = (id) =>
api.get(`/api/orders/${id}`);
|