プログラムで顧客を作成する


13

一部の顧客をプログラムで作成したいのですが、WebサイトIDを保存したいときに問題があります。

複数のウェブサイトIDがあります:

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

これは私のコードです:

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

顧客を保存するとAdminウェブサイトのドロップダウンから値が選択さます。私がウェブサイトIDに与える値(たとえば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;
}

このエラーメッセージが表示されます。致命的なエラー:キャッチされていないMage_Core_Exception:Webサイトスコープを使用する場合、顧客のWebサイトIDを指定する必要があります
Attila Naghi

1
メールで顧客をロードしようとしていますか?この問題は、中に参照される:アプリ/コード/コア/メイジ/顧客/モデル/リソース/ Customer.phpを:212 + 0-お読みください:inchoo.net/magento/programming-magento/...
osrecio

0

これは私のコードのサンプルであり、WebサイトIDを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.