且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Magento CE 1.8.1.0总计(含税)不正确

更新时间:2023-11-30 10:31:58

我遇到了相同的问题, 解决它的步骤是:

I had encountered the same issue, steps to solve it are:

  1. 转到此位置:app/code/core/Mage/Sales/etc/config.xml
  2. 在app/code/local中复制它的副本:app/code/local/Mage/Sales/etc/config.xml
  3. 接下来在第1221行添加msrp

  1. Go to this location : app/code/core/Mage/Sales/etc/config.xml
  2. Make a copy of it in app/code/local : app/code/local/Mage/Sales/etc/config.xml
  3. next on line number 1221 add msrp

<shipping>
   <class>sales/quote_address_total_shipping</class>
   <after>subtotal,freeshipping,tax_subtotal,msrp</after>
   <before>grand_total</before>
</shipping>

  • 下一步在第1230行添加add

  • Next add on line 1230 add

    <msrp>
       <class>sales/quote_address_total_msrp</class>
       <before>grand_total</before>
    </msrp>
    

    1. 这应该可以解决您的问题.谢谢:)