グリッドに列を追加(オブザーバー)-where句の列 'store_id'があいまいな問題


16

オブザーバーアプローチを使用して、注文グリッドに列を追加しています。

  1. イベントで-> sales_order_grid_collection_load_beforeコレクションに結合を追加しています
  2. イベントで-> core_block_abstract_prepare_layout_beforeグリッドに列を追加しています

編集詳細情報の:

イベント(1)の場合:

   public function salesOrderGridCollectionLoadBefore($observer)
{
    $collection = $observer->getOrderGridCollection();
    $collection->addFilterToMap('store_id', 'main_table.store_id');
    $select = $collection->getSelect();
    $select->joinLeft(array('oe' => $collection->getTable('sales/order')), 'oe.entity_id=main_table.entity_id', array('oe.customer_group_id'));

}

イベント(2)の場合:

public function appendCustomColumn(Varien_Event_Observer $observer)
{
    $block = $observer->getBlock();
    if (!isset($block)) {
        return $this;
    }

    if ($block->getType() == 'adminhtml/sales_order_grid') {
        /* @var $block Mage_Adminhtml_Block_Customer_Grid */
        $this->_addColumnToGrid($block);
    }
}

protected function _addColumnToGrid($grid)
{

    $groups = Mage::getResourceModel('customer/group_collection')
        ->addFieldToFilter('customer_group_id', array('gt' => 0))
        ->load()
        ->toOptionHash();
    $groups[0] = 'Guest';


    /* @var $block Mage_Adminhtml_Block_Customer_Grid */
    $grid->addColumnAfter('customer_group_id', array(
        'header' => Mage::helper('customer')->__('Customer Group'),
        'index' => 'customer_group_id',
        'filter_index' => 'oe.customer_group_id',
        'type' => 'options',
        'options' => $groups,
    ), 'shipping_name');
}

ストアビューフィルターでグリッドをフィルター処理するまで、すべて正常に動作します: where句の列 'store_id'があいまいな問題です

クエリを印刷しました:

SELECT `main_table`.*, `oe`.`customer_group_id` 
FROM `sales_flat_order_grid` AS `main_table`
LEFT JOIN `sales_flat_order` AS `oe` ON oe.entity_id=main_table.entity_id 
WHERE (store_id = '5') AND (oe.customer_group_id = '6')

あなたの場合は、別名をstore_id見逃していますmain_table

このIを達成するためにだけ設定する必要があるfilter_indexストアID列のためではなく、観測者を通じて 質問は、私はそれを行うことができる方法であるので、その場で
ブロッククラスをオーバーライドせずに?(それ以外の場合、オブザーバーアプローチは役に立たない)

回答:


32

先ほど述べた他のソリューションでもう一度試してみましょう:-)、グリッドテーブルにフィールドを追加する方法を示す完全な拡張機能を構築しました。その後は、注文グリッドページに列を追加するためのレイアウト更新ファイルのみが必要です。

拡張機能Example_SalesGridを呼び出しましたが、必要に応じて変更できます。

/app/etc/modules/Example_SalesGrid.xmlにモジュールinit xmlを作成することから始めましょう。

<?xml version="1.0" encoding="UTF-8"?>
<!--
 Module bootstrap file
-->
<config>
    <modules>
        <Example_SalesGrid>
            <active>true</active>
            <codePool>community</codePool>
            <depends>
                <Mage_Sales />
            </depends>
        </Example_SalesGrid>
    </modules>
</config>

次に、/ app / code / community / Example / SalesGrid / etc / config.xmlにモジュール構成xmlを作成します / / / / / /。

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Example_SalesGrid>
            <version>0.1.0</version> <!-- define version for sql upgrade -->
        </Example_SalesGrid>
    </modules>
    <global>
        <models>
            <example_salesgrid>
                <class>Example_SalesGrid_Model</class>
            </example_salesgrid>
        </models>
        <blocks>
            <example_salesgrid>
                <class>Example_SalesGrid_Block</class>
            </example_salesgrid>
        </blocks>
        <events>
            <!-- Add observer configuration -->
            <sales_order_resource_init_virtual_grid_columns>
                <observers>
                    <example_salesgrid>
                        <model>example_salesgrid/observer</model>
                        <method>addColumnToResource</method>
                    </example_salesgrid>
                </observers>
            </sales_order_resource_init_virtual_grid_columns>
        </events>
        <resources>
            <!-- initialize sql upgrade setup -->
            <example_salesgrid_setup>
                <setup>
                    <module>Example_SalesGrid</module>
                    <class>Mage_Sales_Model_Mysql4_Setup</class>
                </setup>
            </example_salesgrid_setup>
        </resources>
    </global>
    <adminhtml>
        <layout>
            <!-- layout upgrade configuration -->
            <updates>
                <example_salesgrid>
                    <file>example/salesgrid.xml</file>
                </example_salesgrid>
            </updates>
        </layout>
    </adminhtml>
</config>

次に、/ app / code / community / Example / SalesGrid / sql / example_salesgrid_setup / install-0.1.0.phpに sqlアップグレードスクリプトを作成します。 / / / / / /。

<?php
/**
 * Setup scripts, add new column and fulfills
 * its values to existing rows
 *
 */
$this->startSetup();
// Add column to grid table

$this->getConnection()->addColumn(
    $this->getTable('sales/order_grid'),
    'customer_group_id',
    'smallint(6) DEFAULT NULL'
);

// Add key to table for this field,
// it will improve the speed of searching & sorting by the field
$this->getConnection()->addKey(
    $this->getTable('sales/order_grid'),
    'customer_group_id',
    'customer_group_id'
);

// Now you need to fullfill existing rows with data from address table

$select = $this->getConnection()->select();
$select->join(
    array('order'=>$this->getTable('sales/order')),
    $this->getConnection()->quoteInto(
        'order.entity_id = order_grid.entity_id'
    ),
    array('customer_group_id' => 'customer_group_id')
);
$this->getConnection()->query(
    $select->crossUpdateFromSelect(
        array('order_grid' => $this->getTable('sales/order_grid'))
    )
);

$this->endSetup();

次に、/ app / design / adminhtml / default / default / layout / example / salesgrid.xmlにレイアウト更新ファイルを作成します

<?xml version="1.0"?>
<layout>
    <!-- main layout definition that adds the column -->
    <add_order_grid_column_handle>
        <reference name="sales_order.grid">
            <action method="addColumnAfter">
                <columnId>customer_group_id</columnId>
                <arguments module="sales" translate="header">
                    <header>Customer Group</header>
                    <index>customer_group_id</index>
                    <type>options</type>
                    <filter>Example_SalesGrid_Block_Widget_Grid_Column_Customer_Group</filter>
                    <renderer>Example_SalesGrid_Block_Widget_Grid_Column_Renderer_Customer_Group</renderer>
                    <width>200</width>
                </arguments>
                <after>grand_total</after>
            </action>
        </reference>
    </add_order_grid_column_handle>
    <!-- order grid action -->
    <adminhtml_sales_order_grid>
        <!-- apply the layout handle defined above -->
        <update handle="add_order_grid_column_handle" />
    </adminhtml_sales_order_grid>
    <!-- order grid view action -->
    <adminhtml_sales_order_index>
        <!-- apply the layout handle defined above -->
        <update handle="add_order_grid_column_handle" />
    </adminhtml_sales_order_index>
</layout>

ここで、2つのブロックファイルが必要です。1つはフィルターオプションを作成するためのもので、/ app / code / community / Example / SalesGrid / Block / Widget / Grid / Column / Customer / Group.php:

<?php

class Example_SalesGrid_Block_Widget_Grid_Column_Customer_Group extends Mage_Adminhtml_Block_Widget_Grid_Column_Filter_Select  {

    protected $_options = false;

    protected function _getOptions(){

        if(!$this->_options) {
            $methods = array();
            $methods[] = array(
                'value' =>  '',
                'label' =>  ''
            );
            $methods[] = array(
                'value' =>  '0',
                'label' =>  'Guest'
            );

            $groups = Mage::getResourceModel('customer/group_collection')
                ->addFieldToFilter('customer_group_id', array('gt' => 0))
                ->load()
                ->toOptionArray();

            $this->_options = array_merge($methods,$groups);
        }
        return $this->_options;
    }
}

そして、行の値を表示される正しいテキストに変換する2番目、/app / code / community / Example / SalesGrid / Block / Widget / Grid / Column / Renderer / Customer / Group.php

<?php

class Example_SalesGrid_Block_Widget_Grid_Column_Renderer_Customer_Group extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract   {

    protected $_options = false;

    protected function _getOptions(){

        if(!$this->_options) {
            $methods = array();
            $methods[0] = 'Guest';

            $groups = Mage::getResourceModel('customer/group_collection')
                ->addFieldToFilter('customer_group_id', array('gt' => 0))
                ->load()
                ->toOptionHash();
            $this->_options = array_merge($methods,$groups);
        }
        return $this->_options;
    }

    public function render(Varien_Object $row){
        $value = $this->_getValue($row);
        $options = $this->_getOptions();
        return isset($options[$value]) ? $options[$value] : $value;
    }
}

最後に必要なファイルは、sales / order(sales_flat_order)以外のテーブルから追加の列を作成する場合にのみ必要です。sales / orderの列名に一致するsales / order_gridのすべてのフィールドは、sales / order_gridテーブルで自動的に更新されます。たとえば、支払いオプションを追加する必要がある場合は、このオブザーバーがフィールドをクエリに追加して、データを正しいテーブルにコピーできるようにする必要があります。これに使用されるオブザーバーは/app/code/community/Example/SalesGrid/Model/Observer.phpにありますます。

<?php
/**
 * Event observer model
 *
 *
 */
class Example_SalesGrid_Model_Observer {

    public function addColumnToResource(Varien_Event_Observer $observer) {
        // Only needed if you use a table other than sales/order (sales_flat_order)

        //$resource = $observer->getEvent()->getResource();
        //$resource->addVirtualGridColumn(
        //  'payment_method',
        //  'sales/order_payment',
        //  array('entity_id' => 'parent_id'),
        //  'method'
        //);
    }
}

このコードは、次の例に基づいています http://www.ecomdev.org/2010/07/27/adding-order-attribute-to-orders-grid-in-magento-1-4-1.htmlます

上記の例で問題が解決することを願っています。


申し訳ありませんが、旅行中にテストすることができませんでした...私のアプローチよりも少し複雑に聞こえます(新しい注文でも機能しますか?)
Fra

グリッドオブザーバーは、変更ごとにデータの変更を処理します。これは、他のテーブルへの結合を作成する必要のないネイティブのMagentoの使用法であるため、大量の注文に対するクエリを高速化します(すべてのデータはsales_flat_order_gridに格納されます)。
ウラジミールケルホフ

私が試してみて、これを使用すると、私はエラーを取得警告:Varien_Db_Adapter_Pdo_Mysql :: quoteInto()の引数2がありません
Vaishalパテル

4

これらを使用してみてください:

public function salesOrderGridCollectionLoadBefore($observer)
{
    /**
     * @var $select Varien_DB_Select
     */
    $collection = $observer->getOrderGridCollection();
    $collection->addFilterToMap('store_id', 'main_table.store_id');
    $select     = $collection->getSelect();
    $select->joinLeft(array('oe' => $collection->getTable('sales/order')), 'oe.entity_id=main_table.entity_id', array('oe.customer_group_id'));
    if ($where = $select->getPart('where')) {
        foreach ($where as $key=> $condition) {
            if (strpos($condition, 'store_id')) {
                $value       = explode('=', trim($condition, ')'));
                $value       = trim($value[1], "' ");
                $where[$key] = "(main_table.store_id = '$value')";
            }
        }
        $select->setPart('where', $where);
    }
}

1
これはOPのオブザーバーアプローチの答えとして本当に受け入れられるべきでした。
musicliftsme

2

メソッドsalesOrderGridCollectionLoadBeforeに次のコードが本当に必要$collection->addFilterToMap('store_id', 'main_table.store_id');ですか?削除しない場合は、次を試してください。

protected function _addColumnToGrid($grid)
{
....... // here you code from your post above

    $storeIdColumn = $grid->getColumn('store_id');

    if($storeIdColumn) {
        $storeIdColumn->addData(array('filter_index' => 'main_table.store_id'));
    }
}

すでに:(両方試したColumn('store_id');上で使用できませんcore_block_abstract_prepare_layout_before (_prepareColumnは()カラムはその時点で存在していないので、後に呼び出される) addFilterToMapやっていないされている仕事
フラ

addFilterToMapが機能しない理由は何ですか?
Fra

Soory私はこの最後の日を見る時間はあまりありませんでした。たぶん明日。addFilterToMapを使用しないと言った理由の少しを覚えているので、ちょうどアイデアは、おそらく間違って使用する方法、パラメーターが間違っている、または良い瞬間に使用されていないことです。それは覚えているからのアイデアです。
シルヴァンレイエ

2

静的な列名を使用する代わりに、すべての列に対して以下のメソッドを使用できます。1つの列で機能するmageUzの回答を使用し、他の列に移動すると同じエラーが発生する可能性があることを理解できます。したがって、以下のコードは、すべての列のソリューションを同時に提供します。

public function salesOrderGridCollectionLoadBefore(Varien_Event_Observer $observer)
{
    $collection = $observer->getOrderGridCollection();
    $select = $collection->getSelect();
    $select->joinLeft(array('order' => $collection->getTable('sales/order')), 'order.entity_id=main_table.entity_id',array('shipping_arrival_date' => 'shipping_arrival_date'));

    if ($where = $select->getPart('where')) {
        foreach ($where as $key=> $condition) {
            $parsedString = $this->get_string_between($condition, '`', '`');
    $yes = $this->checkFiledExistInTable('order_grid',$parsedString);
    if($yes){
        $condition = str_replace('`','',$condition);
        $where[$key] = str_replace($parsedString,"main_table.".$parsedString,$condition);
    }
        }
        $select->setPart('where', $where);
    }
}

 public function checkFiledExistInTable($entity=null,$parsedString=null){
   $resource = Mage::getSingleton('core/resource');
   $readConnection = $resource->getConnection('core_read');

    if($entity == 'order'){
       $table = 'sales/order';
    }elseif($entity == 'order_grid'){
        $table = 'sales/order_grid';
    }else{
        return false;
    }

     $tableName = $resource->getTableName($table);
    $saleField = $readConnection->describeTable($tableName);

    if (array_key_exists($parsedString,$saleField)){
       return true;
   }else{
      return false;
   }
 }

function get_string_between($string, $start, $end){
    $string = ' ' . $string;
    $ini = strpos($string, $start);
    if ($ini == 0) return '';
    $ini += strlen($start);
    $len = strpos($string, $end, $ini) - $ini;
    return substr($string, $ini, $len);
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.