Jak zapisać nazwę klienta do kasy?

9

Nazwa klienta nie jest zapisywana w module onestepcheckout. Czy brakuje kroku w zapisywaniu zamówienia?

$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('[email protected]')
        ->setCustomerIsGuest(true)
        ->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID)->save();
    $this->getOnepage()->saveOrder();
    $this->getOnepage()->getQuote()->save();

wprowadź opis zdjęcia tutaj

Vlad Vinnikov
źródło

Odpowiedzi:

9

Niestety nie przegapiłeś ani kroku. W szablonie sekcji administratora /app/design/adminhtml/default/default/template/sales/order/view/info.phtmlmożesz zobaczyć wezwanie do getCustomerName w zamówieniu.

W klasie Mage_Sales_Model_Orderzamówienia funkcja getCustomerName wygląda następująco:

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

Kiedy system przygotowuje wycenę gościa, nigdy nie ustawia imienia i nazwiska, więc nigdy nie zostaje zapisana w kolejności:

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;
}

Tak więc niestety wszystkie zamówienia gości będą wyświetlane jako goście w sekcji administratora. Możesz tutaj wykonać jedną z następujących czynności.

  1. Jeśli kod nie jest w standardowym procesie, skorzystaj z poniższych $quote->setCustomerFirstname($firstname)i $quote->setCustomerLastname($lastname).
  2. Wykonaj kopię lustrzaną wyświetlacza e-mail zamówienia i weź nazwę ustawioną w adresie rozliczeniowym. $customerName = $this->getBillingAddress()->getName();
  3. Ustaw imię i nazwisko klienta (z adresu) w akcji sales_order_place_beforelubsales_convert_quote_to_order
David Manners
źródło
Obserwator Sales_convert_quote_to_order nie działa. prawdopodobnie robię coś złegoclass Amazon_Payments_Model_Observer extends Varien_Object { public function salesQuoteSaveAfter($observer) { $order = $observer->getEvent()->getOrder(); $order->setCustomerFirstname('ljslkdfjds'); $order->save();
Vlad Vinnikov
Czy masz z tym jakieś błędy?
David Manners,
Wywołanie funkcji członka getMethodInstance() na obiekcie niebędącym obiektem w app/code/core/Mage/Payment/Model/Observer.php.
Vlad Vinnikov,
3

aktualizacja kodu kasy rozwiązała mój problem: 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();
Vlad Vinnikov
źródło