จะบันทึกชื่อลูกค้าสำหรับการเช็คเอ้าท์ของแขกได้อย่างไร


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

น่าเศร้าที่คุณไม่พลาดขั้นตอน ในเทมเพลตส่วนผู้ดูแลระบบ/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

คุณได้รับข้อผิดพลาดหรือไม่?
David Manners

การเรียกร้องให้ฟังก์ชั่นสมาชิกในที่ไม่ใช่วัตถุgetMethodInstance() app/code/core/Mage/Payment/Model/Observer.php
Vlad Vinnikov

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.