|
Lines 2036-2042
sub OPACItemHoldsAllowed {
Link Here
|
| 2036 |
issuingrules.itemtype desc, |
2036 |
issuingrules.itemtype desc, |
| 2037 |
issuingrules.branchcode desc |
2037 |
issuingrules.branchcode desc |
| 2038 |
LIMIT 1"; |
2038 |
LIMIT 1"; |
| 2039 |
my $dbh = C4::Context->dbh; |
|
|
| 2040 |
my $sth = $dbh->prepare($query); |
2039 |
my $sth = $dbh->prepare($query); |
| 2041 |
$sth->execute($borrower->{categorycode},$itype,$branchcode); |
2040 |
$sth->execute($borrower->{categorycode},$itype,$branchcode); |
| 2042 |
my $data = $sth->fetchrow_hashref; |
2041 |
my $data = $sth->fetchrow_hashref; |
| 2043 |
- |
|
|