ฉันใช้ Google googling ลองผิดลองถูก แต่ฉันไม่สามารถหาวิธีแก้ปัญหาได้
- ความสามารถในการเปลี่ยนฟิลด์และคำสั่งของ sales_order_grid และ
- ความสามารถในการแสดงสองฟิลด์ที่กำหนดเองในตารางนี้ (กรองได้)
อดีต (จุดที่ 1) ได้รับการแก้ไขโดยการขยายMage_Adminhtml_Block_Widget_Grid
ในโมดูลที่กำหนดเองของฉัน (ฉันรู้เกี่ยวกับผู้สังเกตการณ์ แต่โมดูลที่ติดตั้งอื่น ๆ ก็เอาชนะการเปลี่ยนแปลงของฉันกับผู้สังเกตการณ์)
ไม่ว่าหลังเป็นปัญหาปัจจุบันของฉันด้านล่างนี้เป็นสองวิธีที่ทำให้ฉันไม่ผ่าน
วิธีที่ 1
<?php
/* @var $this Mage_Sales_Model_Mysql4_Setup */
$this->startSetup();
$connection = $this->getConnection();
/**
* Create the payment method dropdown field, because this field _may_ be
* used for searching we will create an index for it.
*/
$connection->addColumn(
$this->getTable('sales/order_grid'),
'x_payment_method',
"ENUM('PayPal', 'SagePay') DEFAULT NULL"
);
$connection->addKey($this->getTable('sales/order_grid'), 'x_payment_type', 'x_payment_type');
/**
* Create the order channel field to identify where the order was originally
* generated from. Also add an index for this field for additional filtering.
*/
$connection->addColumn(
$this->getTable('sales/order_grid'),
'x_sale_channel',
"ENUM('Amazon', 'Play', 'eBay', 'Website') NOT NULL DEFAULT 'Website'"
);
$connection->addKey($this->getTable('sales/order_grid'), 'x_sale_channel','x_sale_channel');
$this->endSetup();
วิธีที่ 2
ณ จุดนี้ฉันเหนื่อยกับการอ่านบทความ 7 ฉบับเดียวกันที่ไม่ได้ช่วยฉันจึงพยายามทำให้สาขาหนึ่งทำงานได้ ฉันยังตรวจสอบบันทึกข้อผิดพลาดใน Magento และพบว่า "$ this-> getTable ()" นั้นผิดพลาดดังนั้นฉันจึงลบออก
<?php
/* @var $this Mage_Sales_Model_Mysql4_Setup */
$this->startSetup();
$connection = $this->getConnection();
/**
* Create the payment method dropdown field, because this field _may_ be
* used for searching we will create an index for it.
*/
$this->addAttribute('sales_flat_order', 'x_test_option', array(
'label' => 'X Test Option',
'type' => 'varchar',
'input' => 'select',
'visible' => true,
'required' => false,
'position' => 1,
'visible_on_front' => false,
'option' => array('value' => array('web', 'test 1', 'test 2')),
'default' => array('web'),
));
$this->endSetup();
ข้อใดทำให้คำถามเกิดความแตกต่างระหว่างคอลัมน์กับแอตทริบิวต์ ข้อสันนิษฐานเบื้องต้นของฉันคือคอลัมน์จะถูกเพิ่มในตารางหลักที่มีอยู่ในขณะที่เพิ่มแอตทริบิวต์ลงในตาราง EAV_ * และเกี่ยวข้องอย่างเหมาะสม