Szukaj…


Wprowadzenie

Niestandardowe atrybuty sprzedaży, kategorii itp.

Atrybut sprzedaży

Niestandardowy atrybut w tabelach związanych ze sprzedażą, takich jak: sales_flat_quote, sales_flat_order_item, sales_flat_order itp.

W pliku instalacyjnym 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();
 ?>

Innym sposobem na to jest:

<?php
$installer = $this;
$installer->startSetup();
$installer->run("ALTER TABLE sales_flat_order_item ADD COLUMN 'custom_field' DECIMAL(12,4) NULL;");
$installer->endSetup();
?>

Po tym wyczyść pamięć podręczną.



Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow