ゲストのチェックアウトのために顧客名を保存する方法は?


9

顧客名がonestepcheckoutモジュールに保存されていません。注文を保存するときに見落としたステップはありますか?

$shippingInfo = array(
        'city'=> (string)$shippingAddress->City,
        'country_id' => (string)$shippingAddress->CountryCode,
        'email' => (string)$customerInfo->Email,
        'firstname' => (string)$firstname,
        'lastname' => (string)$lastname,
        'postcode' => (string)$shippingAddress->PostalCode,
        'street' => array(   (string)$shippingAddress->AddressLine1, ),
        'telephone' => (string)$shippingAddress->Phone,
        'use_for_shipping' => '1',
        'name'=>'hello there'
    );
    if(!empty($regionId)){
        $shippingInfo['region_id'] = $regionId;
    }
    else{
        $shippingInfo['region'] = $regionCode;
    }

$quote = $this->getOnepage()->getQuote();  
$quote->collectTotals()->save();
$quote->getBillingAddress()
    ->addData($shippingInfo);

$quote->getShippingAddress()
    ->addData($shippingInfo);
$quote->setCheckoutMethod('guest')
        ->setCustomerId(null)
        ->setCustomerEmail('test@example.com')
        ->setCustomerIsGuest(true)
        ->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID)->save();
    $this->getOnepage()->saveOrder();
    $this->getOnepage()->getQuote()->save();

ここに画像の説明を入力してください

回答:


9

悲しいことに、あなたは一歩を逃していない。adminセクションテンプレート/app/design/adminhtml/default/default/template/sales/order/view/info.phtmlでは、注文でgetCustomerNameの呼び出しを確認できます。

注文クラスMage_Sales_Model_OrderのgetCustomerName関数は次のとおりです。

public function getCustomerName()
{
    if ($this->getCustomerFirstname()) {
        $customerName = $this->getCustomerFirstname() . ' ' . $this->getCustomerLastname();
    }
    else {
        $customerName = Mage::helper('sales')->__('Guest');
    }
    return $customerName;
}

ゲストの見積もりがシステムによって準備されると、姓名が設定されることはないため、注文に保存されることはありません。

protected function _prepareGuestQuote()
{
    $quote = $this->getQuote();
    $quote->setCustomerId(null)
        ->setCustomerEmail($quote->getBillingAddress()->getEmail())
        ->setCustomerIsGuest(true)
        ->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID);
    return $this;
}

残念なことに、すべてのゲストの注文は管理セクションにゲストとして表示されます。ここでは、次のいずれかを実行できます。

  1. コードが標準プロセスにない場合は、以下$quote->setCustomerFirstname($firstname)を使用します$quote->setCustomerLastname($lastname)
  2. フロントエンド注文の電子メール表示をミラーリングし、請求先住所に設定されている名前を使用します。 $customerName = $this->getBillingAddress()->getName();
  3. アクションに顧客の氏名(住所から)を設定する、sales_order_place_beforeまたはsales_convert_quote_to_order

オブザーバーsales_convert_quote_to_orderが機能しません。おそらく私は何か間違っているclass Amazon_Payments_Model_Observer extends Varien_Object { public function salesQuoteSaveAfter($observer) { $order = $observer->getEvent()->getOrder(); $order->setCustomerFirstname('ljslkdfjds'); $order->save();
Vlad Vinnikov 2013年

それでエラーが発生しますか?
David Manners、2013年

getMethodInstance() 非オブジェクトに対するメンバー関数の呼び出しapp/code/core/Mage/Payment/Model/Observer.php
Vlad Vinnikov 2013年

3

チェックアウトコードを更新すると問題が解決しました: app/code/local/AW/Onestepcheckout/controllers/AjaxController.php

$quote = $this->getOnepage()->getQuote();
$quote->collectTotals()->save();
$quote->getBillingAddress()
        ->addData($shippingInfo);

$quote->getShippingAddress()
        ->addData($shippingInfo);

$quote->setCustomerFirstname('first')->setCustomerLastname('last');
$this->getOnepage()->saveOrder();
$this->getOnepage()->getQuote()->save();
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.