在安装模块期间如何更改 eav 属性属性。
具体来说,我想将产品属性从需要更改为不需要。
我目前正在模块设置中的 getDefaultEntities 调用中合并更新的产品属性,但它给出了奇怪的结果。
例如:
public function getDefaultEntities()
{
return array(
'catalog_product' => array(
'entity_attribute_collection' => 'catalog/product_attribute_collection',
'attribute_model' => 'catalog/resource_eav_attribute',
'table' => 'catalog/product',
'entity_model' => 'catalog/product',
'additional_attribute_table' => 'catalog/eav_attribute',
'attributes' => array(
'short_description' => array('required'=> false)
)
)
);
}
导致 short_description 字段丢失其前端标签