Browse Source

Bug 18936: (follow-up) fix rental discount lookup

Signed-off-by: Minna Kivinen <minna.kivinen@hamk.fi>
Signed-off-by: Joonas Kylmälä <joonas.kylmala@helsinki.fi>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Jesse Weaver 7 years ago
committed by Martin Renvoize
parent
commit
f541228579
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 8
      C4/Circulation.pm

8
C4/Circulation.pm

@ -3283,19 +3283,19 @@ sub _get_discount_from_rule {
categorycode => $categorycode,
},
{
branchcode => '*',
branchcode => undef,
categorycode => $categorycode,
itemtype => $itemtype,
},
{
branchcode => $branchcode,
categorycode => $categorycode,
itemtype => '*',
itemtype => undef,
},
{
branchcode => '*',
branchcode => undef,
categorycode => $categorycode,
itemtype => '*',
itemtype => undef,
},
);

Loading…
Cancel
Save