Hybris Out of the box 没有提供任何友好的方式来定义服务点/供应商级别的产品价格,我需要为每个商店的产品实施价格,实现这一点的最佳方式是什么?
1 回答
0
我认为最好的方法是在 POS 模型中使用 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 支持基于 UserPriceGroup 的不同价格。
于 2021-03-23T11:47:49.577 回答