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

(-)a/C4/Circulation.pm (-5 / +4 lines)
Lines 3229-3247 sub _get_discount_from_rule { Link Here
3229
            categorycode => $categorycode,
3229
            categorycode => $categorycode,
3230
        },
3230
        },
3231
        {
3231
        {
3232
            branchcode   => '*',
3232
            branchcode   => undef,
3233
            categorycode => $categorycode,
3233
            categorycode => $categorycode,
3234
            itemtype     => $itemtype,
3234
            itemtype     => $itemtype,
3235
        },
3235
        },
3236
        {
3236
        {
3237
            branchcode   => $branchcode,
3237
            branchcode   => $branchcode,
3238
            categorycode => $categorycode,
3238
            categorycode => $categorycode,
3239
            itemtype     => '*',
3239
            itemtype     => undef,
3240
        },
3240
        },
3241
        {
3241
        {
3242
            branchcode   => '*',
3242
            branchcode   => undef,
3243
            categorycode => $categorycode,
3243
            categorycode => $categorycode,
3244
            itemtype     => '*',
3244
            itemtype     => undef,
3245
        },
3245
        },
3246
    );
3246
    );
3247
3247
3248
- 

Return to bug 18936