Hybris开箱即用并没有提供任何友好的方式来定义服务点/供应商级别的产品价格,我需要实现每个商店的产品价格,实现这一点的最佳方式是什么?
发布于 2021-03-23 19:47:50
我认为最好的方法是使用UserPriceGroup在POS机模型中创建一个复合属性。
<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>-->根据UserPriceGroup,PriceRow支持不同的价格。
https://stackoverflow.com/questions/66742083
复制相似问题