我已經花了兩天時間,我覺得我已經嘗試過所有的東西,但我仍然一直在撞牆。如何將報價屬性轉換爲在Magento中訂購?
我有兩個屬性(module_job_id,module_channel_id),我想添加到報價和訂單。我設法得到的是報價屬性工作正常,我可以看到他們存儲在數據庫中,他們可以很好地檢索。
唯一剩下的就是將價格從報價轉移到訂單。我究竟做錯了什麼?
這是我的模塊配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Company_Module>
<version>0.1.9</version>
</Company_Module>
</modules>
<global>
<fieldsets>
<sales_convert_quote>
<module_job_id>
<to_order>*</to_order>
</module_job_id>
<module_channel_id>
<to_order>*</to_order>
</module_channel_id>
</sales_convert_quote>
</fieldsets>
<resources>
<company_module>
<setup>
<module>Company_Module</module>
<class>Mage_Sales_Model_Mysql4_Setup</class>
</setup>
<connection>
<use>core_setup</use>
</connection>
</company_module>
</resources>
</global>
</config>
安裝文件SQL/company_module/mysql4安裝-0.1.0.php:
<?php
$installer = $this;
$installer->startSetup();
$installer->getConnection()->addColumn($installer->getTable('sales/quote'), 'module_job_id',
'VARCHAR(255) NULL DEFAULT NULL');
$installer->getConnection()->addColumn($installer->getTable('sales/quote'), 'module_channel_id',
'VARCHAR(255) NULL DEFAULT NULL');
$installer->getConnection()->addColumn($installer->getTable('sales/order'), 'module_job_id',
'VARCHAR(255) NULL DEFAULT NULL');
$installer->getConnection()->addColumn($installer->getTable('sales/order'), 'module_channel_id',
'VARCHAR(255) NULL DEFAULT NULL');
$installer->addAttribute('order', 'module_job_id', array('type' => 'varchar'));
$installer->addAttribute('quote', 'module_job_id', array('type' => 'varchar'));
$installer->addAttribute('order', 'module_channel_id', array('type' => 'varchar'));
$installer->addAttribute('quote', 'module_channel_id', array('type' => 'varchar'));
$installer->endSetup();
我試過的addAttribute的所有可能的組合和addColumns在安裝文件中。結果是我在sales_flat_quote和sales_flat_order中都有兩個屬性作爲列。但是,沒有任何屬性在eav_attribute中。我不確定是否可以。
我試過的另一件事是在sales_convert_quote_to_order觀察者中顯式設置order屬性值。這不起作用:
public function salesConvertQuoteToOrder($observer)
{
$order = $observer->getEvent()->getOrder();
$order->setModuleJobId('123');
$order->setModuleChannelId('456');
}
我不知道這是否是重要的,但這些都是我的系統(僅順序,無報價...)的實體類型:
mysql> SELECT entity_type_id, entity_type_code FROM eav_entity_type;
+----------------+------------------+
| entity_type_id | entity_type_code |
+----------------+------------------+
| 3 | catalog_category |
| 4 | catalog_product |
| 7 | creditmemo |
| 1 | customer |
| 2 | customer_address |
| 6 | invoice |
| 5 | order |
| 8 | shipment |
+----------------+------------------+
而且,eav_entity是空的。我也希望這也可以。
mysql> select * from eav_entity;
Empty set (0.00 sec)
這是在Magento 1.6.2.0上。感謝堆!