Lines 3226-3244
sub _get_discount_from_rule {
Link Here
|
3226 |
categorycode => $categorycode, |
3226 |
categorycode => $categorycode, |
3227 |
}, |
3227 |
}, |
3228 |
{ |
3228 |
{ |
3229 |
branchcode => '*', |
3229 |
branchcode => undef, |
3230 |
categorycode => $categorycode, |
3230 |
categorycode => $categorycode, |
3231 |
itemtype => $itemtype, |
3231 |
itemtype => $itemtype, |
3232 |
}, |
3232 |
}, |
3233 |
{ |
3233 |
{ |
3234 |
branchcode => $branchcode, |
3234 |
branchcode => $branchcode, |
3235 |
categorycode => $categorycode, |
3235 |
categorycode => $categorycode, |
3236 |
itemtype => '*', |
3236 |
itemtype => undef, |
3237 |
}, |
3237 |
}, |
3238 |
{ |
3238 |
{ |
3239 |
branchcode => '*', |
3239 |
branchcode => undef, |
3240 |
categorycode => $categorycode, |
3240 |
categorycode => $categorycode, |
3241 |
itemtype => '*', |
3241 |
itemtype => undef, |
3242 |
}, |
3242 |
}, |
3243 |
); |
3243 |
); |
3244 |
|
3244 |
|
3245 |
- |
|
|