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