|
Lines 221-227
my $strsth =
Link Here
|
| 221 |
AND reserves.priority <> 0 |
221 |
AND reserves.priority <> 0 |
| 222 |
AND reserves.suspend = 0 |
222 |
AND reserves.suspend = 0 |
| 223 |
AND notforloan = 0 AND itemlost = 0 AND withdrawn = 0 |
223 |
AND notforloan = 0 AND itemlost = 0 AND withdrawn = 0 |
| 224 |
AND default_branch_item_rules.holdallowed != 0 |
224 |
AND ( default_branch_item_rules.holdallowed IS NULL OR default_branch_item_rules.holdallowed != 0 ) |
| 225 |
"; |
225 |
"; |
| 226 |
# GROUP BY reserves.biblionumber allows only items that are not checked out, else multiples occur when |
226 |
# GROUP BY reserves.biblionumber allows only items that are not checked out, else multiples occur when |
| 227 |
# multiple patrons have a hold on an item |
227 |
# multiple patrons have a hold on an item |
| 228 |
- |
|
|