blob: 4fe4cd7d82f27082ff6c6df232ccbda9fbfc3ab5 (
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/v1/product/${id}`)
return dataProduct
}
export default productApi
|