Magento 1.9订单确认电子邮件购物车中的货币符号错误 - 使用PayPal付款时 - formatPrice()

2022-08-30 15:22:38

我有Magento 1.9.0.1运行,英镑(£)作为基础和默认显示货币,欧元(€)作为允许的货币。

如果用户选择以欧元结账,则网站所有工作正常,除非他们以自己的货币PayPal付款,则订单确认电子邮件有误。在我下面的测试中,我以欧元(€)签出,但我PayPal帐户使用的是英镑(£)。

购物车的商品价格和小计以欧元显示,但带有 £ 符号。小计、交货和总计均以欧元显示,并带有正确的€符号。

以下示例显示了具有近似价格的基本表示形式:

Items       Quantity    Item Price    Sub Total
---         ---         ---           ---
Product     1           £150.00       £150.00  <<-- These £'s should be €'s
-----------------------------------------------
Sub Total:                  €150.00 
Delivery:                   €0.00 
Total:                      €150.00 
Grand Total to be Charged:  £100.00

我试图追踪它,但我不确定它在哪里出错,这是一场噩梦。电子邮件呼叫:

(Mage_Checkout_Helper_Data) $this->helper('checkout')->formatPrice(...);

这要求

(Mage_Core_Model_Store) $this->getQuote()->getStore()->formatPrice($price);

这最终找到了通往Zend货币方法的方式,但我不知道货币符号在哪里丢失。

此问题仅在使用PayPal结帐时发生,而不是在通过CC直接通过网站付款时发生。

任何人都可以为我指出正确的方向吗?谢谢


答案 1

在确认电子邮件中,不应呼叫任何地方。如果是这种情况,订单电子邮件将使用结账项模板而不是其自己的模板,这可能是由未完全实现的自定义产品类型或模版中的 Bug 引起的。$this->helper('checkout')->formatPrice(...)

订单总计显示正确的货币,因为总计块使用订单的方法,该方法考虑了订单的货币:formatPrice()

$this->getOrder()->formatPrice($total->getValue());

单个项目的模板也使用 。但根据产品类型,使用不同的模板。这是默认模板$_order->formatPrice(...)

每个产品类型的块和模板都在 sales 中定义.xml操作:addItemRender

<sales_email_order_items>

    <block type="sales/order_email_items" name="items" template="email/order/items.phtml">
        <action method="addItemRender"><type>default</type><block>sales/order_email_items_order_default</block><template>email/order/items/order/default.phtml</template></action>
        <action method="addItemRender"><type>grouped</type><block>sales/order_email_items_order_grouped</block><template>email/order/items/order/default.phtml</template></action>
        <block type="sales/order_totals" name="order_totals" template="sales/order/totals.phtml">
            <action method="setLabelProperties"><value>colspan="3" align="right" style="padding:3px 9px"</value></action>
            <action method="setValueProperties"><value>align="right" style="padding:3px 9px"</value></action>
            <block type="tax/sales_order_tax" name="tax" template="tax/order/tax.phtml">
                <action method="setIsPlaneMode"><value>1</value></action>
            </block>
        </block>
    </block>
    <block type="core/text_list" name="additional.product.info" />
</sales_email_order_items>

添加产品类型的模块必须在那里注册自己的渲染器,正如在 bundle 中看到的那样.xml

<sales_email_order_items>
    <reference name="items">
        <action method="addItemRender"><type>bundle</type><block>bundle/sales_order_items_renderer</block><template>bundle/email/order/items/order/default.phtml</template></action>
    </reference>
</sales_email_order_items>

如果未定义,则默认呈现器是结帐中的呈现器,其中不使用订单模型本身,仅使用单个项目(未附加货币信息)。在那里,价格格式由结帐助手完成,该助手没有有关订单的信息,因此它使用当前选定的商店货币。

为什么这只是像PayPal这样的在线支付的问题?因为使用其他方法,使用“下订单”按钮立即创建订单确认邮件,则当前选择的商店货币仍然与订单货币相同。但在来自PayPal回调请求中,此上下文将丢失,并将使用默认货币。

您需要做什么?

  1. 在布局 XML 文件中搜索布局句柄,以查看默认项呈现器是否已正确注册<sales_email_order_items>
  2. 确保任何自定义产品类型也注册其渲染器
  3. 检查项呈现器使用的模板。也许这是您的主题中的一个错误,您只需要替换为.$this->_helper('checkout')->formatPrice()$_order->formatPrice()

答案 2

这似乎是字符集货币错误。您需要通过搜索该特定代码来申请电子邮件模板。charset utf-8


推荐