7

我创建了一个“公司名称”属性,该属性被添加到我的客户帐户信息中,并且是必填字段。

它会在注册、表单和编辑页面上填满,并且也会显示在后端的客户网格上。

但是,我无法在我的任何订单电子邮件模板中显示公司名称。

我相信这是因为在我的订单表中既没有任何名为“公司名称”的列,也没有任何自定义变量可以传递给订单/发票/发货模板以在客户姓名后面的行旁边显示公司名称。

谁能指出我可以在其中创建包含自定义“公司名称”属性的自定义变量并将其传递给所有类型的销售电子邮件模板的文件

谢谢

4

1 回答 1

19

经过一番搜索,我找到了正确的文件来进行更改。由于我已经将“公司名称”作为我的属性之一,因此我检索了该字段的值并将其作为参数传递给以下函数

app/code/core/Mage/Sales/Model/Order.php

public function sendNewOrderEmail()
{
 /*Existing Code*/
 if ($this->getCustomerIsGuest()) {
        $templateId = Mage::getStoreConfig(self::XML_PATH_EMAIL_GUEST_TEMPLATE, $storeId);
        $customerId = Mage::getModel('customer/customer')->load($this->getCustomerId());
        $companyname = $customerId->getCompanyname();
        $customerName = $this->getBillingAddress()->getName();
    } else {
        $templateId = Mage::getStoreConfig(self::XML_PATH_EMAIL_TEMPLATE, $storeId);
        $customerId = Mage::getModel('customer/customer')->load($this->getCustomerId());
        $companyname = $customerId->getCompanyname();
        $customerName = $this->getCustomerName();
    }
    /*Existing Code*/
    $mailer->setTemplateParams(array(
      'order'        =>  $this,
      'billing'      =>  $this->getBillingAddress(),
      'payment_html' => $paymentBlockHtml,
      'companyname'  => $companyname
   ));
   /*Rest of the code remains the same*/
 }

进行此更改后。我编辑了我的交易电子邮件以包含此参数。由于我想在送货地址中显示,我将变量放在此行之前

   System > Transactional Emails > New Order Email 

     {{ var companyname }}
     {{var order.getShippingAddress.format('html')}}

如果您的公司名称被保存为客户信息的一部分,那么这将显示在您的订单电子邮件中的“送货地址”信息中。

您可以对发票和发货电子邮件执行相同的操作。

希望这可以帮助某人!:-)

于 2012-07-09T14:41:42.590 回答