Проблема такова
По документации , в shopping cart price rules должна отображаться опция для выбора SKU, для создания таких вот правил:

и другие фильтры, не только SKU
у меня же отображается лишь следующее :

?
02.11.2010 11:54
<select id="actions__1__new_child" name="rule[actions][1][new_child]" class=" element-value-changer select"> <option value="" selected="selected">Please choose a condition to add...</option> <option value="salesrule/rule_condition_product_combine">Conditions Combination</option> <optgroup label="Cart Item Attribute"> <option value="salesrule/rule_condition_product|quote_item_price">Price in cart</option> <option value="salesrule/rule_condition_product|quote_item_qty">Quantity in cart</option> <option value="salesrule/rule_condition_product|quote_item_row_total">Row total in cart</option> </optgroup> <optgroup label="Product Attribute"> <option value="salesrule/rule_condition_product|attribute_set_id">Attribute Set</option> <option value="salesrule/rule_condition_product|category_ids">Category</option> </optgroup> </select>
02.11.2010 12:57
protected function _addSpecialAttributes(array &$attributes) { parent::_addSpecialAttributes($attributes); $attributes['quote_item_qty'] = Mage::helper('salesrule')->__('Quantity in cart'); $attributes['quote_item_price'] = Mage::helper('salesrule')->__('Price in cart'); $attributes['quote_item_row_total'] = Mage::helper('salesrule')->__('Row total in cart'); }
protected function _addSpecialAttributes(array &$attributes) { $attributes['attribute_set_id'] = Mage::helper('catalogrule')->__('Attribute Set'); $attributes['category_ids'] = Mage::helper('catalogrule')->__('Category'); }
http://svn.magentocommerce.com/source/branches/1.4
02.11.2010 14:23
$installer->getConnection()->addColumn( $installer->getTable('catalog/eav_attribute'), 'is_used_for_promo_rules', "TINYINT(1) UNSIGNED NOT NULL DEFAULT '0'" );
02.11.2010 15:08
07.11.2010 16:36
http://www.magentocommerce.com/downloadнет , есть только sample data для версии 1.2
08.11.2010 02:52
29.11.2010 19:17