blob: 94a6821637416ce2d4944099d4b40c031c522fd6 (
plain)
1
2
3
4
5
6
7
8
|
import odooApi from '@/core/api/odooApi'
const productPriceApi = async ({ id }) => {
const dataProductPrice = await odooApi('GET', `/api/v1/product/template/price/${id}`)
return dataProductPrice
}
export default productPriceApi
|