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

(-)a/C4/Circulation.pm (-5 / +4 lines)
Lines 3246-3264 sub _get_discount_from_rule { Link Here
3246
            categorycode => $categorycode,
3246
            categorycode => $categorycode,
3247
        },
3247
        },
3248
        {
3248
        {
3249
            branchcode   => '*',
3249
            branchcode   => undef,
3250
            categorycode => $categorycode,
3250
            categorycode => $categorycode,
3251
            itemtype     => $itemtype,
3251
            itemtype     => $itemtype,
3252
        },
3252
        },
3253
        {
3253
        {
3254
            branchcode   => $branchcode,
3254
            branchcode   => $branchcode,
3255
            categorycode => $categorycode,
3255
            categorycode => $categorycode,
3256
            itemtype     => '*',
3256
            itemtype     => undef,
3257
        },
3257
        },
3258
        {
3258
        {
3259
            branchcode   => '*',
3259
            branchcode   => undef,
3260
            categorycode => $categorycode,
3260
            categorycode => $categorycode,
3261
            itemtype     => '*',
3261
            itemtype     => undef,
3262
        },
3262
        },
3263
    );
3263
    );
3264
3264
3265
- 

Return to bug 18936