magento
Attributi personalizzati
Ricerca…
introduzione
Attributi personalizzati per vendite, categoria, ecc.
Attributo di vendita
Attributo personalizzato nelle tabelle relative alle vendite come: sales_flat_quote, sales_flat_order_item, sales_flat_order, tabella ecc.
Nel file di installazione 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();
?>
Un altro modo per farlo è:
<?php
$installer = $this;
$installer->startSetup();
$installer->run("ALTER TABLE sales_flat_order_item ADD COLUMN 'custom_field' DECIMAL(12,4) NULL;");
$installer->endSetup();
?>
Assicurati di svuotare la cache dopo questo.
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow