Magento新定制订单行“qty”字段

时间:2013-05-03 11:21:04

标签: magento

Magento目前有以下标准“数量”字段;对于每个订单行(例如):

[qty_canceled] => 0.0000
[qty_invoiced] => 1.0000
[qty_ordered] => 1.0000
[qty_refunded] => 0.0000
[qty_shipped] => 1.0000

在订单视图中,您可以这样看:

enter image description here 我想做的是添加一个名为 qty_allocated 的新自定义字段

这个新字段将与第三方集成一起用于自动订单处理,我不想使用官方的数量字段。

有人知道这是否可行?如果是这样,我该如何实现这一目标? 我需要能够在Magento上显示/更新此字段。

提前感谢任何提示/指南。

1 个答案:

答案 0 :(得分:0)

为订单商品创建属性的示例:

$installer = new Mage_Sales_Model_Resource_Setup('core_setup');

$installer ->addAttribute('order_item', 'qty_allocated', array(
    'label'     => 'QTY Allocated',
    'type'      => 'varchar',
    'input'     => 'text',
    'visible'   => true,
    'required'  => false,
    'position'  => 10,
));
//$installer->endSetup();