指定以编程方式创建的优惠券代码的操作

时间:2012-12-13 20:18:28

标签: magento

基于在线发布的几个帖子(http://www.magentocommerce.com/boards/viewthread/178767/和http://marius-strajeru.blogspot.co.uk/2010/04/create-bulk-discount-rules.html)中的信息,我将一些代码放在一起以生成一些优惠券代码。

我坚持的一件事是如何编写代码来指定优惠券使用的“操作”特定条件。这将在Magento管理系统中“操作”选项卡的“仅将规则应用于符合以下条件的购物车项目”部分中指定。

在Magento管理系统中,我将构建以下行:

类别不是10,20,30之一

我需要知道的是如何在代码中复制它。 我目前有以下内容,似乎没有效果 - 至少,当我查看生成的优惠券代码时,我需要的操作值丢失。

    $actions = array();
    $actions[1] = array(
    'type' => 'salesrule/rule_condition_category',
    'aggregator' => 'all',
    'value' => 1,
    'new_child' => ''
    );
    $actions['1--1'] = array(
        'type' => 'salesrule/rule_condition_category',
        'attribute' => 'category_ids',
        'operator' => '!()',
        'value' => '932,341,800',
        'is_value_processed' => 0,
    );
    $model->setData('actions',$actions);

我假设代码完全错误,尽管没有绊倒系统。 有人可以说明我将如何实现我的需求吗?

1 个答案:

答案 0 :(得分:2)

这是我最终的结果,效果很好!

        $conditions = array(
            "1" => array(
                'type' => 'salesrule/rule_condition_combine',
                'aggregator' => 'all',
                'value' => 1,
                'new_child' => false
                ),
            "1--1" => array(
                'type' => 'salesrule/rule_condition_product_found',
                'value' => 1,
                'aggregator' => 'all',
                'new_child' => false
            ),
            "1--1--1" => array(
                'type' => 'salesrule/rule_condition_product',
                'attribute' => 'category_ids',
                'operator' => '!()',
                'value' => '10,20,30'
            )
        );
        $actions = array(
            "1" => array(
                    "type"          => "salesrule/rule_condition_product",
                    "aggregator"    => "all",
                    "value"         => "1",
                    "new_child"     => false
            ),
            "1--1" => array(
                    "type"          => "salesrule/rule_condition_product",
                    "attribute"     => "category_ids",
                    'operator' => '!()',
                    'value' => '10,20,30'
            )
        );

        $rule->setData('conditions',$conditions);
        $rule->setData("actions",$actions);