View | Details | Raw Unified | Return to bug 18936
Collapse All | Expand All

(-)a/C4/Circulation.pm (-5 / +4 lines)
Lines 3283-3301 sub _get_discount_from_rule { Link Here
3283
            categorycode => $categorycode,
3283
            categorycode => $categorycode,
3284
        },
3284
        },
3285
        {
3285
        {
3286
            branchcode   => '*',
3286
            branchcode   => undef,
3287
            categorycode => $categorycode,
3287
            categorycode => $categorycode,
3288
            itemtype     => $itemtype,
3288
            itemtype     => $itemtype,
3289
        },
3289
        },
3290
        {
3290
        {
3291
            branchcode   => $branchcode,
3291
            branchcode   => $branchcode,
3292
            categorycode => $categorycode,
3292
            categorycode => $categorycode,
3293
            itemtype     => '*',
3293
            itemtype     => undef,
3294
        },
3294
        },
3295
        {
3295
        {
3296
            branchcode   => '*',
3296
            branchcode   => undef,
3297
            categorycode => $categorycode,
3297
            categorycode => $categorycode,
3298
            itemtype     => '*',
3298
            itemtype     => undef,
3299
        },
3299
        },
3300
    );
3300
    );
3301
3301
3302
- 

Return to bug 18936