|
Lines 2564-2570
sub _calculate_new_debar_dt {
Link Here
|
| 2564 |
my $circcontrol = C4::Context->preference('CircControl'); |
2564 |
my $circcontrol = C4::Context->preference('CircControl'); |
| 2565 |
my $issuing_rule = Koha::CirculationRules->get_effective_rules( |
2565 |
my $issuing_rule = Koha::CirculationRules->get_effective_rules( |
| 2566 |
{ categorycode => $patron->categorycode, |
2566 |
{ categorycode => $patron->categorycode, |
| 2567 |
itemtype => $item->{itype}, |
2567 |
itemtype => $item->effective_itemtype, |
| 2568 |
branchcode => $branchcode, |
2568 |
branchcode => $branchcode, |
| 2569 |
rules => [ |
2569 |
rules => [ |
| 2570 |
'finedays', |
2570 |
'finedays', |
| 2571 |
- |
|
|