Lines 1338-1343
sub IsAvailableForItemLevelRequest {
Link Here
|
1338 |
my $patron = shift; |
1338 |
my $patron = shift; |
1339 |
my $pickup_branchcode = shift; |
1339 |
my $pickup_branchcode = shift; |
1340 |
|
1340 |
|
|
|
1341 |
return 0 unless $patron; |
1342 |
|
1341 |
my $dbh = C4::Context->dbh; |
1343 |
my $dbh = C4::Context->dbh; |
1342 |
# must check the notforloan setting of the itemtype |
1344 |
# must check the notforloan setting of the itemtype |
1343 |
# FIXME - a lot of places in the code do this |
1345 |
# FIXME - a lot of places in the code do this |
1344 |
- |
|
|