我尝试使用我的自定义模块创建新客户帐户。我需要将性别与客户帐户创建一起存储。这是我尝试存储性别的集合。
$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();
在此集合中,名字、姓氏和电子邮件正确保存在客户表中。但是性别信息没有保存在客户表中?