实际上,我在 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。