Lines 3243-3261
sub _get_discount_from_rule {
Link Here
|
3243 |
categorycode => $categorycode, |
3243 |
categorycode => $categorycode, |
3244 |
}, |
3244 |
}, |
3245 |
{ |
3245 |
{ |
3246 |
branchcode => '*', |
3246 |
branchcode => undef, |
3247 |
categorycode => $categorycode, |
3247 |
categorycode => $categorycode, |
3248 |
itemtype => $itemtype, |
3248 |
itemtype => $itemtype, |
3249 |
}, |
3249 |
}, |
3250 |
{ |
3250 |
{ |
3251 |
branchcode => $branchcode, |
3251 |
branchcode => $branchcode, |
3252 |
categorycode => $categorycode, |
3252 |
categorycode => $categorycode, |
3253 |
itemtype => '*', |
3253 |
itemtype => undef, |
3254 |
}, |
3254 |
}, |
3255 |
{ |
3255 |
{ |
3256 |
branchcode => '*', |
3256 |
branchcode => undef, |
3257 |
categorycode => $categorycode, |
3257 |
categorycode => $categorycode, |
3258 |
itemtype => '*', |
3258 |
itemtype => undef, |
3259 |
}, |
3259 |
}, |
3260 |
); |
3260 |
); |
3261 |
|
3261 |
|
3262 |
- |
|
|