|
Lines 141-147
my @auto_renews = Koha::Checkouts->search(
Link Here
|
| 141 |
auto_renew => 1, |
141 |
auto_renew => 1, |
| 142 |
'patron.autorenew_checkouts' => 1, |
142 |
'patron.autorenew_checkouts' => 1, |
| 143 |
}, |
143 |
}, |
| 144 |
{ join => [ 'patron', 'item' ] } |
144 |
{ |
|
|
145 |
join => [ 'patron', 'item' ], |
| 146 |
order_by => 'patron.borrowernumber', |
| 147 |
} |
| 145 |
)->as_list; |
148 |
)->as_list; |
| 146 |
print "found " . scalar @auto_renews . " auto renewals\n" if $verbose; |
149 |
print "found " . scalar @auto_renews . " auto renewals\n" if $verbose; |
| 147 |
|
150 |
|
| 148 |
- |
|
|