blob: 8156d1ec5b71adf29680e20e104f8e6bf4fdcddb (
plain)
1
2
3
4
5
6
7
8
9
|
import odooApi from '@/core/api/odooApi'
const productApi = async ({ id }) => {
if (!id) return
const dataProduct = await odooApi('GET', `/api/v2/product/${id}`)
return dataProduct
}
export default productApi
|