Magento 1.9 中的赠款总额减税

Grant total subtracts tax in Magento 1.9

我们的 Magento 突然停止正确计算总计,我们这边没有任何已知的变化。当税收规则适用时,Magento 会正确计算

但是最终价格太低了。它不含税,这是客户在结帐时需要支付的费用。

我们在 Magento 中的税收设置。

我 运行 没有想法,可能是什么地方出了问题,是什么原因造成的。你能帮忙吗?

问题是由 Przelewy24 扩展引起的。它甚至不必打开。将其上传到服务器后,便引起了问题。从服务器删除后一切恢复正常

灵感来自解决方案:

对我来说,将 app/code/core/Mage/Sales/etc/config.xml 的 config->global->sales->totals->msrp 节点复制到我的 app/code/local/MyPackage/MyModule/etc/config.xml

中就足够了

并添加:

<before>grand_total</before>

结果:

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