การสร้างลูกค้าออกโดยใช้โปรแกรม


13

ฉันต้องการสร้างลูกค้าบางคนโดยทางโปรแกรมและมีปัญหาเมื่อฉันต้องการบันทึกรหัสเว็บไซต์

ฉันมี ID เว็บไซต์หลายแห่ง:

0 => admin
1 => germany
2 => hungary
3 => romania

นี่คือรหัสของฉัน:

 $customer = Mage::getModel("customer/customer");
 $customer->setWebsiteId(3);
 $customer->setStoreId(1);
.....
 $customer->save();

เมื่อฉันบันทึกลูกค้าฉันจะได้รับAdminค่าที่เลือกจากเลื่อนลงเว็บไซต์ ไม่ว่าฉันจะให้ค่าอะไรกับรหัสเว็บไซต์ (เหมือน12321) ฉันก็จะได้Adminค่า ทำไม

ขอบคุณ

คำตอบ:


0

คุณลองด้วยรหัสนี้ได้ไหม:

//If you know store id
$storeId = 'id';
$store = Mage::getModel('core/store')->load($storeId); // Mage::app()->getStore($storeId);
if($store && $store->getId()) {
    $customer = Mage::getModel("customer/customer");
    $customer->setStore($store);
}


//->setStore reference:app/code/core/Mage/Customer/Model/Customer.php
/**
 * Set store to customer
 *
 * @param Mage_Core_Model_Store $store
 * @return Mage_Customer_Model_Customer
 */
public function setStore(Mage_Core_Model_Store $store)
{
    $this->setStoreId($store->getId());
    $this->setWebsiteId($store->getWebsite()->getId());
    return $this;
}

ฉันได้รับข้อความแสดงข้อผิดพลาดนี้: ข้อผิดพลาดร้ายแรง: Uncaught Mage_Core_Exception: ต้องระบุรหัสเว็บไซต์ลูกค้าเมื่อใช้ขอบเขตเว็บไซต์
Attila Naghi

1
คุณกำลังพยายามโหลดลูกค้าทางอีเมลหรือไม่ ปัญหานี้ได้รับการอ้างอิงใน: app / code / core / Mage / ลูกค้า / รุ่น / ทรัพยากร / ลูกค้า. php
osrecio

0

นี่คือตัวอย่างของรหัสของฉันและคุณต้องตั้งรหัสเว็บไซต์ 2 ครั้ง อย่าถามฉันทำไม อาจมีบางคนที่จะให้ทางออกที่ดีกว่าแก่คุณ แต่อันนี้เหมาะกับฉัน:

 $customer->setWebsiteId(1);
 $customer->setStoreId(5);
 $customer->setData(.....)

 $customer->save();

 $customer->setConfirmation(null);
 $customer->setWebsiteId(1); 
 $customer->save();

0

ลองรหัสนี้

$websitesArray = array(0 => "admin",
                1 => "germany",
                2 => "hungary",
                3 => "romania");
foreach($websitesArray as $websiteId => $websiteName) {
    $website = Mage::getModel('core/website')->load($websiteId);
    if($website->getId()) {
        $customer = Mage::getModel("customer/customer");
        $customer->setWebsiteId($website->getId())
                    ->setFirstname('John')
                    ->setLastname('Doe')
                    ->setEmail('jd1@ex.com')
                    ->setPassword('somepassword');

        try{
            $customer->save();
        }
        catch (Exception $e) {
        }       
    }
}

บันทึก :

ไปที่ด้านผู้ดูแลระบบSystem > configuration > Customers > Customer Configuration > Account Sharing Optionsและตั้งค่าPer Websiteในฟิลด์Share Customer Accounts

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.