2

基于在几篇在线帖子中找到的信息(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);

我假设代码完全是错误的,尽管没有使系统跳闸。我怎样才能达到我所需要的?

4

1 回答 1

3

这就是我最终得到的,效果很好!

        $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);
于 2012-12-17T14:45:58.810 回答