Adjustable attributes

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Is there anwyay without extending the whole product logic, that i can create 3 product atributes and do the following.

requirement 1) Attributes width, height and depth, min max values
requirement 2) Although customer can adjust within min max, price is effected per 100mm
7 years ago
Hi Steve

select p.Name as Product, a.Name as Attribute, v.Name, v.PriceAdjustment
from Product as p
join Product_ProductAttribute_Mapping as m on p.Id = m.ProductId
join ProductAttribute as a on m.ProductAttributeId = a.Id
join ProductAttributeValue as v on m.id = v.ProductAttributeMappingId
where ProductId = 24
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.