3

我有 2 个自定义集合。具有平面数据的通常集合。我需要将它们加入到客户选择中。它适用于 innerJoin,但对连接字段的过滤和排序不起作用。我该如何解决这个问题?

_prepareCollection() 示例

$collection = Mage::getResourceModel('customer/customer_collection')
    ->addNameToSelect()
    ->addAttributeToSelect('email');

$collection
    ->getSelect()
    ->joinInner(array('my_table' => $collection->getTable('my/table')), 'e.entity_id = my_table.customer_id', array('custom_field' => my_table.custom_field))
    ->joinInner(array('my_table1' => $collection->getTable('my/table1')), 'my_table1.other_id = my_table.id', array('custom_field1' => my_table1.custom_field));

$this->setCollection($collection);
return parent::_prepareCollection();

因此,排序和过滤不适用于 custom_field 和 custom_field1

添加列调用:

$this->addColumn('custom_field',
        array(
            'header'=>$this->__('Shopping club name'),
            'index'=>'custom_field',
            'filter_index'=>'my_table.custom_field',
    ));

过滤时出现致命错误:

Call to a member function getBackend() on a non-object

排序不起作用,没有显示错误

如果您将平面连接到平面表,则“filter_index”可以正常工作。但是这里 flat 与 EAV 相连。

4

2 回答 2

15

这其实一点都不难!

当我这样做时,我将 last_login 添加到客户网格中。

第一步,您已经完成,但为了完整起见,我将其包括在此处,是将该列添加到初始 select 语句中:

/**
 * set collection object
 *
 * @param Mage_Customer_Model_Resource_Customer_Collection $collection
 */
public function setCollection($collection)
{
    //Group by email since multiple customer_ids can exist in the log/customer.
    $collection->groupByEmail();

    //join the last_login field here.
    $collection->getSelect()->joinLeft(array('c_log' => $collection->getTable('log/customer')), 'c_log.customer_id=e.entity_id', array('last_login' => 'login_at'));

    parent::setCollection($collection);
}

接下来,我们将列添加到网格中。请注意,我们定义了两个回调。'filter_condition_callback' 是 Magento 的股票。奇怪的是,没有回调索引(据我所知)对此进行排序。我们需要添加一个排序回调,否则我们无法对新列进行排序。

    $this->addColumnAfter('last_login', array(
         'header'                    => Mage::helper('customer')->__('Last Login'),
         'type'                      => 'datetime',
         'align'                     => 'center',
         'index'                     => 'last_login',
         'filter_index'              => '`c_log`.`login_at`',
         'gmtoffset'                 => true,
         //Stock Magento Callback - Notice the callback key has been assigned.
         'filter_condition_callback' => 'filter_last_login',
         //Custom Callback Index
         'order_callback'            => 'sort_last_login'
    ), 'customer_since');

接下来,我们添加将处理过滤和排序的回调函数:

if (!function_exists('filter_last_login')) {
    /**
     * @param Mage_Customer_Model_Resource_Customer_Collection $collection
     * @param Mage_Adminhtml_Block_Widget_Grid_Column          $column
     */
    function filter_last_login($collection, $column)
    {
        if (!$column->getFilter()->getCondition()) {
            return;
        }

        $condition = $collection->getConnection()
            ->prepareSqlCondition('c_log.login_at', $column->getFilter()->getCondition());
        $collection->getSelect()->where($condition);
    }
}

if (!function_exists('sort_last_login')) {
    /**
     * @param Mage_Customer_Model_Resource_Customer_Collection $collection
     * @param Mage_Adminhtml_Block_Widget_Grid_Column          $column
     */
    function sort_last_login($collection, $column)
    {
        $collection->getSelect()->order($column->getIndex() . ' ' . strtoupper($column->getDir()));
    }
}

最后,由于 order_callback 不是真正的索引,我们需要调用此回调(如果已定义)而不是默认的排序机制。这就是我完成它的方式:

/**
 * Sets sorting order by some column
 *
 * @param Mage_Adminhtml_Block_Widget_Grid_Column $column
 *
 * @return Mage_Adminhtml_Block_Widget_Grid
 */
protected function _setCollectionOrder($column)
{
    if ($column->getOrderCallback()) {
        call_user_func($column->getOrderCallback(), $this->getCollection(), $column);

        return $this;
    }

    return parent::_setCollectionOrder($column);
}

希望这可以帮助某人。

于 2013-05-08T17:53:02.097 回答
6

您能否显示将您的属性添加到网格的 addColumn() 调用?

它应该是这样的:

$this->addColumn('custom_field', array(
    ...
    'filter_index' => 'my_table.custom_field',
    ...
));

可能您为“filter_index”键设置了别名值。

于 2013-01-17T06:23:19.700 回答