0

Hybris Out of the box は、サービス/ベンダー レベルで製品の価格を定義するわかりやすい方法を提供しません。店舗ごとに製品の価格を実装する必要があります。これを実装する最良の方法は何ですか?

4

1 に答える 1

0

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>

--> PriceRow は、UserPriceGroup に基づいてさまざまな価格をサポートします。

于 2021-03-23T11:47:49.577 に答える