By default in magento there is no qty field of simple product for custom option. If you want to add qty as per your custom option you can add now using this post.
Suppose you have custom option 'Color: Red, Blue, White' of your simple product and you want to add different qty option for your color option you can do it now.
1. go to app\design\adminhtml\default\default\template\catalog\product\edit\options\type\select.phtml
Find the below code:
'<th class="type-sku"><?php echo Mage::helper('catalog')->__('SKU') ?></th>'+
'<th class="type-qty"><?php echo Mage::helper('catalog')->__('Qty') ?></th>'+
'<td><input type="text" class="input-text" name="product[options][{{id}}][values][{{select_id}}][sku]" value="{{sku}}"></td>'+
'<td><input type="text" class="input-text" name="product[options][{{id}}][values][{{select_id}}][qty]" value="{{qty}}"></td>'+
2. go to app\code\core\Mage\Adminhtml\Block\Catalog\Product\Edit\Tab\Options\Option.php
Find the below code:
$value['sku'] = $this->htmlEscape($option->getSku());
$value['qty'] = $this->htmlEscape($option->getQty());
Find the below code:
'sku' => $this->htmlEscape($_value->getSku()),
'qty' => $this->htmlEscape($_value->getQty()),
3. Add field in “catalog_product_option_type_value” table
`qty` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Qty',
本文介绍如何在Magento中为简单产品的自定义选项添加数量字段。通过修改Magento的源代码,可以为不同颜色等选项设置不同的库存数量。具体步骤包括编辑PHP文件和数据库结构。
417

被折叠的 条评论
为什么被折叠?



