0

Hybris Out of the box doesn't provide any friendly way to define prices for products at point of service/vendor level, I need to implement price for products per store, what is the best way to implement this?

Nexussim Lements
  • 535
  • 1
  • 15
  • 47

1 Answers1

0

I think the best approach is to make a composite attribute in the POS model with UserPriceGroup.

<typegroup name="PointOfService">
            <itemtype code="PointOfService" autocreate="false" generate="false">
                <attributes>
                    <attribute qualifier="posUsergroup" type="UserPriceGroup">
                        <persistence type="property"/>
                        <modifiers optional="false" initial="true"/>
                    </attribute>
                </attributes>
                </attributes>
            </itemtype>
        </typegroup>

--> PriceRow supports different prices based on UserPriceGroup.

Raushan Kumar
  • 1,195
  • 12
  • 21