2
我試圖創建新的客戶帳戶使用我的自定義module.I需要存儲性別與客戶帳戶創建。這裏是我試圖存儲性別的集合。Magento客戶收集的性別
$customer = Mage::getModel('customer/customer')->setId(null);
$customer->setData('firstname', $data['first_name']);
$customer->setData('lastname', $data['last_name']);
$customer->setData('email', $data['email']);
$customer->setData('gender', $data['gender']);
$customer->setData('is_active', 1);
$customer->setData('confirmation', null);
$customer->setConfirmation(null);
$customer->getGroupId();
$customer->save();
在這個集合中,名字,姓氏和電子郵件被正確保存在客戶表中。 但是性別信息沒有保存在客戶表中?
它的工作完美..請非常謝謝.. –