magento
Пользовательские атрибуты
Поиск…
Вступление
Пользовательские атрибуты для продаж, категории и т. Д.
Атрибут продаж
Пользовательский атрибут в таблицах, связанных с продажами, таких как: sales_flat_quote, sales_flat_order_item, sales_flat_order и т. Д. Таблица
В вашем установочном файле sql / some_setup / mysql-install-0.1.0.php:
<?php
$installer = $this;
$installer->startSetup();
$installer->addAttribute('quote', 'custom_field', array('type' => 'varchar'));
$installer->addAttribute('order', 'custom_field', array('type' => 'varchar'));
$installer->endSetup();
?>
Другой способ сделать это:
<?php
$installer = $this;
$installer->startSetup();
$installer->run("ALTER TABLE sales_flat_order_item ADD COLUMN 'custom_field' DECIMAL(12,4) NULL;");
$installer->endSetup();
?>
После этого обязательно очистите кеш.
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow