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

Joo*_*nas 5 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();
Run Code Online (Sandbox Code Playgroud)

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

$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();
Run Code Online (Sandbox Code Playgroud)

我可以在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();
Run Code Online (Sandbox Code Playgroud)

现在我可以看到选择组件,是|没有选项,它的工作完美.它也在客户注册表上显示如下:

<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>
Run Code Online (Sandbox Code Playgroud)

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

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

但它不会拯救.如何保存?

小智 5

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

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

然后它工作


Joo*_*nas 2

我用 javascript 让它工作。我隐藏选择元素并使用 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);
Run Code Online (Sandbox Code Playgroud)

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