0

实际上,我在 Magento 中使用销售报价,并且我不理解 config.xml 中全局标记后面元素中的 this 的定义

#app/code/core/sales/etc/config.xml

<global>
<sales>
        <quote>
            <totals>
                <nominal>
                    <class>sales/quote_address_total_nominal</class>
                    <before>subtotal</before>
                </nominal>
                <subtotal>
                    <class>sales/quote_address_total_subtotal</class>
                    <after>nominal</after>
                    <before>grand_total</before>
                </subtotal>
                <shipping>
                    <class>sales/quote_address_total_shipping</class>
                    <after>subtotal,freeshipping,tax_subtotal</after>
                    <before>grand_total</before>
                </shipping>
                <grand_total>
                    <class>sales/quote_address_total_grand</class>
                    <after>subtotal</after>
                </grand_total>
            </totals>
              ...

我需要这个来解决扩展 AW 关注点和 onestepcheckout 的冲突。我几乎没有工作,只有一个错误。这个错误是报价商品没有将运输数量传递给订单商品,并且芯片的导入始终为0。

4

1 回答 1

1

两者都是付费扩展并且有很好的(免费)支持,所以请联系支持热线来解决这个问题。

您还应该概述此 wiki 页面以了解记录的问题 http://www.getsweettooth.com/wiki/index.php/One_Step_Checkout_Compatibility

于 2012-02-21T10:34:47.883 回答