Grant总计在Magento 1.9中减税

时间:2018-04-07 18:26:22

标签: magento magento-1.9 totals tax

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

  • 产品价格含税
  • 包含税的小计
  • 税收本身

但最终价格太低了。它不包括税,这是客户在结账时要求支付的费用。 Sample checkout

我们在Magento的税务设置。 Tax settings in Magento Tax settings in Magento Tax settings in Magento

我的想法已经用完了,可能出错了什么以及是什么导致了这些想法。你能帮忙吗?

2 个答案:

答案 0 :(得分:1)

问题是由Przelewy24扩展引起的。它甚至不必打开。一旦上传到服务器,就会导致问题。从服务器上删除后,一切恢复正常。

答案 1 :(得分:0)

受到以下解决方案的启发:https://stackoverflow.com/a/42826358/2787671

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

并添加:

<before>grand_total</before>

结果:

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