Magento的 - 如何创建“小数”属性类型(Magento - How to create “d

2019-07-31 02:07发布

我已经做了一些网上搜索的,但我还没有找到这个问题的任何解答。 我有一个情况我需要的产品属性,它是一个十进制值,它必须支持负数,以及积极的,也必须是可排序。 出于某种原因,Magento的没有一个“小数”属性类型。 使用十进制值的唯一类型是价格,但不支持负数。 如果我使用“文本”作为类型,它支持我想做的事情,而是因为它看到的值作为字符串,而不是浮点数它没有正确排序。 我已经能够解决这个问题,因为其他人在帖子中,我发现,通过手工编辑eav_attribute表,并改变从“价格”到“文”“frontend_input”,但留下“backend_type”为“十进制” 。 这个伟大的工程...直到有人编辑在管理面板的属性。 一旦保存属性,Magento的发现自己的frontend_input是“文本”和改变“backend_type”到“VARCHAR”。 解决这个,我能想到的唯一方法是通过创建一个自定义属性的类型,但我不知道从哪里开始,我不能在网上找到的任何细节这一点。

有其他人遇到这个问题? 如果是这样,你做了什么来纠正呢? 如果我需要创建一个自定义的属性类型,你有什么建议,或者你可以点我在任何的教程有没有做这个?

谢谢!

Answer 1:

你要做的是创建一个自定义的属性类型。

这可以通过首先创建安装脚本(这将更新数据库)来完成。

startSetup();

$installer->addAttribute('catalog_product', 'product_type', array(
    'group'             => 'Product Options',
    'label'             => 'Product Type',
    'note'              => '',
    'type'              => 'dec',    //backend_type
    'input'             => 'select', //frontend_input
    'frontend_class'    => '',
    'source'            => 'sourcetype/attribute_source_type',
    'backend'           => '',
    'frontend'          => '',
    'global'            => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
    'required'          => true,
    'visible_on_front'  => false,
    'apply_to'          => 'simple',
    'is_configurable'   => false,
    'used_in_product_listing'   => false,
    'sort_order'        => 5,
));

$installer->endSetup();

之后,你需要创建一个名为自定义的PHP类:

Whatever_Sourcetype_Model_Attribute_Source_Type

并在那里贴上此在:

class Whatever_Sourcetype_Model_Attribute_Source_Type extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
{
    const MAIN = 1;
    const OTHER = 2;

public function getAllOptions()
{
    if (is_null($this->_options)) {
        $this->_options = array(
            array(
                'label' => Mage::helper('sourcetype')->__('Main Product'),
                'value' =>  self::MAIN
            ),
            array(
                'label' => Mage::helper('sourcetype')->__('Other Product'),
                'value' =>  self::OTHER
            ),
        );
    }
    return $this->_options;
}

public function toOptionArray()
{
    return $this->getAllOptions();
}

public function addValueSortToCollection($collection, $dir = 'asc')
{
    $adminStore  = Mage_Core_Model_App::ADMIN_STORE_ID;
    $valueTable1 = $this->getAttribute()->getAttributeCode() . '_t1';
    $valueTable2 = $this->getAttribute()->getAttributeCode() . '_t2';

    $collection->getSelect()->joinLeft(
        array($valueTable1 => $this->getAttribute()->getBackend()->getTable()),
        "`e`.`entity_id`=`{$valueTable1}`.`entity_id`"
        . " AND `{$valueTable1}`.`attribute_id`='{$this->getAttribute()->getId()}'"
        . " AND `{$valueTable1}`.`store_id`='{$adminStore}'",
        array()
    );

    if ($collection->getStoreId() != $adminStore) {
        $collection->getSelect()->joinLeft(
            array($valueTable2 => $this->getAttribute()->getBackend()->getTable()),
            "`e`.`entity_id`=`{$valueTable2}`.`entity_id`"
            . " AND `{$valueTable2}`.`attribute_id`='{$this->getAttribute()->getId()}'"
            . " AND `{$valueTable2}`.`store_id`='{$collection->getStoreId()}'",
            array()
        );
        $valueExpr = new Zend_Db_Expr("IF(`{$valueTable2}`.`value_id`>0, `{$valueTable2}`.`value`, `{$valueTable1}`.`value`)");

    } else {
        $valueExpr = new Zend_Db_Expr("`{$valueTable1}`.`value`");
    }



    $collection->getSelect()
        ->order($valueExpr, $dir);

    return $this;
}

public function getFlatColums()
{
    $columns = array(
        $this->getAttribute()->getAttributeCode() => array(
            'type'      => 'int',
            'unsigned'  => false,
            'is_null'   => true,
            'default'   => null,
            'extra'     => null
        )
    );
    return $columns;
}


public function getFlatUpdateSelect($store)
{
    return Mage::getResourceModel('eav/entity_attribute')
        ->getFlatUpdateSelect($this->getAttribute(), $store);
}
}

希望这可以帮助。

欲了解更多信息请参见这里。



文章来源: Magento - How to create “decimal” attribute type