|
Lines 314-320
sub CanItemBeReserved {
Link Here
|
| 314 |
my $ruleitemtype; # itemtype of the matching issuing rule |
314 |
my $ruleitemtype; # itemtype of the matching issuing rule |
| 315 |
my $allowedreserves = 0; # Total number of holds allowed across all records |
315 |
my $allowedreserves = 0; # Total number of holds allowed across all records |
| 316 |
my $holds_per_record = 1; # Total number of holds allowed for this one given record |
316 |
my $holds_per_record = 1; # Total number of holds allowed for this one given record |
| 317 |
my $holds_per_day = 0; # Total number of holds allowed per day for the given patron |
317 |
my $holds_per_day; # Default to unlimited |
| 318 |
|
318 |
|
| 319 |
# we retrieve borrowers and items informations # |
319 |
# we retrieve borrowers and items informations # |
| 320 |
# item->{itype} will come for biblioitems if necessery |
320 |
# item->{itype} will come for biblioitems if necessery |
| 321 |
- |
|
|