如何在magento中为客户添加自定义复选框字段?

时间:2012-07-24 04:17:53

标签: magento

在mysql4-install-0.1.0.php中,我可以在我的magento模块中添加自定义文本字段,如下所示:

$entityTypeId     = $setup->getEntityTypeId('customer');
$attributeSetId   = $setup->getDefaultAttributeSetId($entityTypeId);
$attributeGroupId = $setup->getDefaultAttributeGroupId($entityTypeId, $attributeSetId);

$setup->addAttribute('customer', 'resale', array(
    'input'         => 'text',
    'type'          => 'varchar',
    'label'         => 'Resale number',
    'visible'       => 1,
    'required'      => 1,
    'user_defined' => 1,
));

$setup->addAttributeToGroup(
 $entityTypeId,
 $attributeSetId,
 $attributeGroupId,
 'resale',
 '999'  //sort_order
);

$oAttribute = Mage::getSingleton('eav/config')->getAttribute('customer', 'resale');
$oAttribute->setData('used_in_forms', array('adminhtml_customer','customer_account_create'));
$oAttribute->save();

我还想添加一个复选框字段。我这样添加:

$setup->addAttribute('customer', 'marketattended1', array(
    'input'         => 'checkbox',
    'type'          => 'int',
    'label'         => 'San Francisco International Gift Fair',
    'visible'       => 1,
    'required'      => 0,
    'user_defined' => 1,
));

$setup->addAttributeToGroup(
 $entityTypeId,
 $attributeSetId,
 $attributeGroupId,
 'marketattended1',
 '999'  //sort_order
);

$oAttribute = Mage::getSingleton('eav/config')->getAttribute('customer', 'marketattended1');
$oAttribute->setData('used_in_forms', array('adminhtml_customer','customer_account_create'));
$oAttribute->save();

我可以在admin / customer中看到我的复选框字段,但是当我尝试编辑或添加新客户时,它将无法保存客户。它只是永远显示“请等待”指标。如何使这项工作?

*的修改

在非对象

上调用成员函数setAttribute()

我发现此错误或服务器响应。

*的修改

我更改了安装程序代码:

$setup->addAttribute('customer', 'marketattended1', array(
    'input'         => 'boolean',
    'type'          => 'int',
    'label'         => 'San Francisco International Gift Fair',
    'visible'       => 1,
    'required'      => 0,
    'user_defined' => 1,
    //'source'        => 'eav/entity_attribute_source_boolean'
));

$setup->addAttributeToGroup(
 $entityTypeId,
 $attributeSetId,
 $attributeGroupId,
 'marketattended1',
 '999'  //sort_order
);

$oAttribute = Mage::getSingleton('eav/config')->getAttribute('customer', 'marketattended1');
$oAttribute->setData('used_in_forms', array('adminhtml_customer','customer_account_create'));
$oAttribute->save();

现在我可以看到带有yes | no选项的select组件,它的工作正常。它也在客户注册表上显示如下:

<div class="field">
   <label for="marketattended1">San Francisco International Gift Fair</label>
   <select id="marketattended1" name="marketattended1" class=" select">
      <option value="0">No</option>
      <option value="1">Yes</option>
   </select></div>

我希望它是复选框。我试过这样的:

   <div class="field">
      <input class="checkbox" id="marketattended1" onchange="[removed]changechecked()" type="checkbox" value="1" />
      <label  class="required">*Others</label >
   </div>

但它不会保存。如何保存?

2 个答案:

答案 0 :(得分:5)

您必须添加复选框的名称:

<input class="checkbox" id="marketattended1" name="marketattended1" onchange="[removed]changechecked()" type="checkbox" value="1" />

然后它可以工作

答案 1 :(得分:2)

我用javascript工作了。我隐藏了select元素并使用jQuery添加了复选框。当用户点击复选框时,我会更改选择的值。

(function($){
    $(document).ready(function(){
        var selects = $('.checkselect');
        $.each(selects, function(index, select){
            var checkbox = "<input class='selectcheckbox' type='checkbox' value='0' />";
            $(select).append($(checkbox));
            $(select).find('select').hide();
            $(select).on('click', '.selectcheckbox', function(){
                if($(this).is(':checked'))
                    $(select).find('select').val('1');
                else 
                    $(select).find('select').val('0');
            });
        });
    });
})(jQuery);

不是最好的解决方案,但我必须在项目中取得进展。如果有人找到更好的解决方案,请在这里回答。