0

製品のカスタムオプションとして配達日を追加しました。管理画面の受注グリッドに納期を表示させたい。のローカル コピーを作成しましたNamespace_Module_Block_Adminhtml_Sales_Order_Grid

ここでは、_prepareCollection()関数で製品オプションを取得できます。

$collection = Mage::getResourceModel($this->_getCollectionClass())
    ->join(
    'sales/order_item',
    '`sales/order_item`.order_id=`main_table`.entity_id',
    array(
        **'proptions' => new Zend_Db_Expr('group_concat(`sales/order_item`.product_options SEPARATOR ",")'),**
    )
);

次に、列を次のように追加します。

$this->addColumn('proptions', array(
        'header'    => Mage::helper('Sales')->__('Product Options'),
        'width'     => '100px',
        'index'     => 'proptions',
        'renderer'  =>  new Namespace_Module_Block_Adminhtml_Renderer_Data(),
    ));

Namespace_Module_Block_Adminhtml_Renderer_Data()私は方法を持っています:

public function _getValue(Varien_Object $row)
{
    $val = $row->getData($this->getColumn()->getIndex());  // row value
    $array = unserialize($val);

    //loop thru the $array and create a format string
    //
    $options = $array['options'];
    $format_val = '';
    foreach ($options as $key=> $value) {
        $format_val = $format_val . $key . "=>" . $value . " , ";
    }

    return $format_val;
}

表示がおかしい。配列を正しくループしているとは思いません。ここで何が間違っていますか?

4

2 に答える 2

1

ダイレクト SQL クエリで実行する場合は、このファイルを開きます。->app->design->adminhtml->default->default->template-> your template->info.phtml にこのコードを追加します

<div class="entry-edit">
            <div class="entry-edit-head">
                <h4 class="icon-head head-products"><?php echo Mage::helper('sales')->__('Delivery Time Information') ?></h4>
            </div>
        </div>
        <div class="grid np">

$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
//$write = Mage::getSingleton('core/resource')->getConnection('core_write');//for writing to database
$sql = "SELECT * FROM tablename";

$results = $connection->fetchAll($sql);
foreach($results as $result) {
  echo $result['column_name']."<br/>";
} 
</div></div></div>
于 2014-02-19T06:18:52.600 に答える