Bug 19276: Update the number of tests
[koha.git] / t / db_dependent / Circulation.t
blob720018c28db42a1a5c591c7fe700f081310a52e1
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Test::More tests => 102;
22 use DateTime;
24 use t::lib::Mocks;
25 use t::lib::TestBuilder;
27 use C4::Circulation;
28 use C4::Biblio;
29 use C4::Items;
30 use C4::Log;
31 use C4::Members;
32 use C4::Reserves;
33 use C4::Overdues qw(UpdateFine CalcFine);
34 use Koha::DateUtils;
35 use Koha::Database;
36 use Koha::IssuingRules;
37 use Koha::Checkouts;
38 use Koha::Patrons;
39 use Koha::Subscriptions;
41 my $schema = Koha::Database->schema;
42 $schema->storage->txn_begin;
43 my $builder = t::lib::TestBuilder->new;
44 my $dbh = C4::Context->dbh;
46 # Start transaction
47 $dbh->{RaiseError} = 1;
49 # Start with a clean slate
50 $dbh->do('DELETE FROM issues');
52 my $library = $builder->build({
53 source => 'Branch',
54 });
55 my $library2 = $builder->build({
56 source => 'Branch',
57 });
58 my $itemtype = $builder->build(
59 { source => 'Itemtype',
60 value => { notforloan => undef, rentalcharge => 0 }
62 )->{itemtype};
63 my $patron_category = $builder->build({ source => 'Category', value => { enrolmentfee => 0 } });
65 my $CircControl = C4::Context->preference('CircControl');
66 my $HomeOrHoldingBranch = C4::Context->preference('HomeOrHoldingBranch');
68 my $item = {
69 homebranch => $library2->{branchcode},
70 holdingbranch => $library2->{branchcode}
73 my $borrower = {
74 branchcode => $library2->{branchcode}
77 # No userenv, PickupLibrary
78 t::lib::Mocks::mock_preference('IndependentBranches', '0');
79 t::lib::Mocks::mock_preference('CircControl', 'PickupLibrary');
80 is(
81 C4::Context->preference('CircControl'),
82 'PickupLibrary',
83 'CircControl changed to PickupLibrary'
85 is(
86 C4::Circulation::_GetCircControlBranch($item, $borrower),
87 $item->{$HomeOrHoldingBranch},
88 '_GetCircControlBranch returned item branch (no userenv defined)'
91 # No userenv, PatronLibrary
92 t::lib::Mocks::mock_preference('CircControl', 'PatronLibrary');
93 is(
94 C4::Context->preference('CircControl'),
95 'PatronLibrary',
96 'CircControl changed to PatronLibrary'
98 is(
99 C4::Circulation::_GetCircControlBranch($item, $borrower),
100 $borrower->{branchcode},
101 '_GetCircControlBranch returned borrower branch'
104 # No userenv, ItemHomeLibrary
105 t::lib::Mocks::mock_preference('CircControl', 'ItemHomeLibrary');
107 C4::Context->preference('CircControl'),
108 'ItemHomeLibrary',
109 'CircControl changed to ItemHomeLibrary'
112 $item->{$HomeOrHoldingBranch},
113 C4::Circulation::_GetCircControlBranch($item, $borrower),
114 '_GetCircControlBranch returned item branch'
117 # Now, set a userenv
118 C4::Context->_new_userenv('xxx');
119 C4::Context->set_userenv(0,0,0,'firstname','surname', $library2->{branchcode}, 'Midway Public Library', '', '', '');
120 is(C4::Context->userenv->{branch}, $library2->{branchcode}, 'userenv set');
122 # Userenv set, PickupLibrary
123 t::lib::Mocks::mock_preference('CircControl', 'PickupLibrary');
125 C4::Context->preference('CircControl'),
126 'PickupLibrary',
127 'CircControl changed to PickupLibrary'
130 C4::Circulation::_GetCircControlBranch($item, $borrower),
131 $library2->{branchcode},
132 '_GetCircControlBranch returned current branch'
135 # Userenv set, PatronLibrary
136 t::lib::Mocks::mock_preference('CircControl', 'PatronLibrary');
138 C4::Context->preference('CircControl'),
139 'PatronLibrary',
140 'CircControl changed to PatronLibrary'
143 C4::Circulation::_GetCircControlBranch($item, $borrower),
144 $borrower->{branchcode},
145 '_GetCircControlBranch returned borrower branch'
148 # Userenv set, ItemHomeLibrary
149 t::lib::Mocks::mock_preference('CircControl', 'ItemHomeLibrary');
151 C4::Context->preference('CircControl'),
152 'ItemHomeLibrary',
153 'CircControl changed to ItemHomeLibrary'
156 C4::Circulation::_GetCircControlBranch($item, $borrower),
157 $item->{$HomeOrHoldingBranch},
158 '_GetCircControlBranch returned item branch'
161 # Reset initial configuration
162 t::lib::Mocks::mock_preference('CircControl', $CircControl);
164 C4::Context->preference('CircControl'),
165 $CircControl,
166 'CircControl reset to its initial value'
169 # Set a simple circ policy
170 $dbh->do('DELETE FROM issuingrules');
171 $dbh->do(
172 q{INSERT INTO issuingrules (categorycode, branchcode, itemtype, reservesallowed,
173 maxissueqty, issuelength, lengthunit,
174 renewalsallowed, renewalperiod,
175 norenewalbefore, auto_renew,
176 fine, chargeperiod)
177 VALUES (?, ?, ?, ?,
178 ?, ?, ?,
179 ?, ?,
180 ?, ?,
181 ?, ?
185 '*', '*', '*', 25,
186 20, 14, 'days',
187 1, 7,
188 undef, 0,
189 .10, 1
192 # Test C4::Circulation::ProcessOfflinePayment
193 my $sth = C4::Context->dbh->prepare("SELECT COUNT(*) FROM accountlines WHERE amount = '-123.45' AND accounttype = 'Pay'");
194 $sth->execute();
195 my ( $original_count ) = $sth->fetchrow_array();
197 C4::Context->dbh->do("INSERT INTO borrowers ( cardnumber, surname, firstname, categorycode, branchcode ) VALUES ( '99999999999', 'Hall', 'Kyle', ?, ? )", undef, $patron_category->{categorycode}, $library2->{branchcode} );
199 C4::Circulation::ProcessOfflinePayment({ cardnumber => '99999999999', amount => '123.45' });
201 $sth->execute();
202 my ( $new_count ) = $sth->fetchrow_array();
204 ok( $new_count == $original_count + 1, 'ProcessOfflinePayment makes payment correctly' );
206 C4::Context->dbh->do("DELETE FROM accountlines WHERE borrowernumber IN ( SELECT borrowernumber FROM borrowers WHERE cardnumber = '99999999999' )");
207 C4::Context->dbh->do("DELETE FROM borrowers WHERE cardnumber = '99999999999'");
208 C4::Context->dbh->do("DELETE FROM accountlines");
210 # CanBookBeRenewed tests
212 # Generate test biblio
213 my $biblio = MARC::Record->new();
214 my $title = 'Silence in the library';
215 $biblio->append_fields(
216 MARC::Field->new('100', ' ', ' ', a => 'Moffat, Steven'),
217 MARC::Field->new('245', ' ', ' ', a => $title),
220 my ($biblionumber, $biblioitemnumber) = AddBiblio($biblio, '');
222 my $barcode = 'R00000342';
223 my $branch = $library2->{branchcode};
225 my ( $item_bibnum, $item_bibitemnum, $itemnumber ) = AddItem(
227 homebranch => $branch,
228 holdingbranch => $branch,
229 barcode => $barcode,
230 replacementprice => 12.00,
231 itype => $itemtype
233 $biblionumber
236 my $barcode2 = 'R00000343';
237 my ( $item_bibnum2, $item_bibitemnum2, $itemnumber2 ) = AddItem(
239 homebranch => $branch,
240 holdingbranch => $branch,
241 barcode => $barcode2,
242 replacementprice => 23.00,
243 itype => $itemtype
245 $biblionumber
248 my $barcode3 = 'R00000346';
249 my ( $item_bibnum3, $item_bibitemnum3, $itemnumber3 ) = AddItem(
251 homebranch => $branch,
252 holdingbranch => $branch,
253 barcode => $barcode3,
254 replacementprice => 23.00,
255 itype => $itemtype
257 $biblionumber
263 # Create borrowers
264 my %renewing_borrower_data = (
265 firstname => 'John',
266 surname => 'Renewal',
267 categorycode => $patron_category->{categorycode},
268 branchcode => $branch,
271 my %reserving_borrower_data = (
272 firstname => 'Katrin',
273 surname => 'Reservation',
274 categorycode => $patron_category->{categorycode},
275 branchcode => $branch,
278 my %hold_waiting_borrower_data = (
279 firstname => 'Kyle',
280 surname => 'Reservation',
281 categorycode => $patron_category->{categorycode},
282 branchcode => $branch,
285 my %restricted_borrower_data = (
286 firstname => 'Alice',
287 surname => 'Reservation',
288 categorycode => $patron_category->{categorycode},
289 debarred => '3228-01-01',
290 branchcode => $branch,
293 my $renewing_borrowernumber = AddMember(%renewing_borrower_data);
294 my $reserving_borrowernumber = AddMember(%reserving_borrower_data);
295 my $hold_waiting_borrowernumber = AddMember(%hold_waiting_borrower_data);
296 my $restricted_borrowernumber = AddMember(%restricted_borrower_data);
298 my $renewing_borrower = Koha::Patrons->find( $renewing_borrowernumber )->unblessed;
299 my $restricted_borrower = Koha::Patrons->find( $restricted_borrowernumber )->unblessed;
301 my $bibitems = '';
302 my $priority = '1';
303 my $resdate = undef;
304 my $expdate = undef;
305 my $notes = '';
306 my $checkitem = undef;
307 my $found = undef;
309 my $issue = AddIssue( $renewing_borrower, $barcode);
310 my $datedue = dt_from_string( $issue->date_due() );
311 is (defined $issue->date_due(), 1, "Item 1 checked out, due date: " . $issue->date_due() );
313 my $issue2 = AddIssue( $renewing_borrower, $barcode2);
314 $datedue = dt_from_string( $issue->date_due() );
315 is (defined $issue2, 1, "Item 2 checked out, due date: " . $issue2->date_due());
318 my $borrowing_borrowernumber = Koha::Checkouts->find( { itemnumber => $itemnumber } )->borrowernumber;
319 is ($borrowing_borrowernumber, $renewing_borrowernumber, "Item checked out to $renewing_borrower->{firstname} $renewing_borrower->{surname}");
321 my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber, 1);
322 is( $renewokay, 1, 'Can renew, no holds for this title or item');
325 # Biblio-level hold, renewal test
326 AddReserve(
327 $branch, $reserving_borrowernumber, $biblionumber,
328 $bibitems, $priority, $resdate, $expdate, $notes,
329 $title, $checkitem, $found
332 # Testing of feature to allow the renewal of reserved items if other items on the record can fill all needed holds
333 C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 1");
334 t::lib::Mocks::mock_preference('AllowRenewalIfOtherItemsAvailable', 1 );
335 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber);
336 is( $renewokay, 1, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
337 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber2);
338 is( $renewokay, 1, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
340 # Now let's add an item level hold, we should no longer be able to renew the item
341 my $hold = Koha::Database->new()->schema()->resultset('Reserve')->create(
343 borrowernumber => $hold_waiting_borrowernumber,
344 biblionumber => $biblionumber,
345 itemnumber => $itemnumber,
346 branchcode => $branch,
347 priority => 3,
350 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber);
351 is( $renewokay, 0, 'Bug 13919 - Renewal possible with item level hold on item');
352 $hold->delete();
354 # Now let's add a waiting hold on the 3rd item, it's no longer available tp check out by just anyone, so we should no longer
355 # be able to renew these items
356 $hold = Koha::Database->new()->schema()->resultset('Reserve')->create(
358 borrowernumber => $hold_waiting_borrowernumber,
359 biblionumber => $biblionumber,
360 itemnumber => $itemnumber3,
361 branchcode => $branch,
362 priority => 0,
363 found => 'W'
366 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber);
367 is( $renewokay, 0, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
368 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber2);
369 is( $renewokay, 0, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
370 t::lib::Mocks::mock_preference('AllowRenewalIfOtherItemsAvailable', 0 );
372 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber);
373 is( $renewokay, 0, '(Bug 10663) Cannot renew, reserved');
374 is( $error, 'on_reserve', '(Bug 10663) Cannot renew, reserved (returned error is on_reserve)');
376 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber2);
377 is( $renewokay, 0, '(Bug 10663) Cannot renew, reserved');
378 is( $error, 'on_reserve', '(Bug 10663) Cannot renew, reserved (returned error is on_reserve)');
380 my $reserveid = Koha::Holds->search({ biblionumber => $biblionumber, borrowernumber => $reserving_borrowernumber })->next->reserve_id;
381 my $reserving_borrower = Koha::Patrons->find( $reserving_borrowernumber )->unblessed;
382 AddIssue($reserving_borrower, $barcode3);
383 my $reserve = $dbh->selectrow_hashref(
384 'SELECT * FROM old_reserves WHERE reserve_id = ?',
385 { Slice => {} },
386 $reserveid
388 is($reserve->{found}, 'F', 'hold marked completed when checking out item that fills it');
390 # Item-level hold, renewal test
391 AddReserve(
392 $branch, $reserving_borrowernumber, $biblionumber,
393 $bibitems, $priority, $resdate, $expdate, $notes,
394 $title, $itemnumber, $found
397 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber, 1);
398 is( $renewokay, 0, '(Bug 10663) Cannot renew, item reserved');
399 is( $error, 'on_reserve', '(Bug 10663) Cannot renew, item reserved (returned error is on_reserve)');
401 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber2, 1);
402 is( $renewokay, 1, 'Can renew item 2, item-level hold is on item 1');
404 # Items can't fill hold for reasons
405 ModItem({ notforloan => 1 }, $biblionumber, $itemnumber);
406 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber, 1);
407 is( $renewokay, 1, 'Can renew, item is marked not for loan, hold does not block');
408 ModItem({ notforloan => 0, itype => $itemtype }, $biblionumber, $itemnumber,1);
410 # FIXME: Add more for itemtype not for loan etc.
412 # Restricted users cannot renew when RestrictionBlockRenewing is enabled
413 my $barcode5 = 'R00000347';
414 my ( $item_bibnum5, $item_bibitemnum5, $itemnumber5 ) = AddItem(
416 homebranch => $branch,
417 holdingbranch => $branch,
418 barcode => $barcode5,
419 replacementprice => 23.00,
420 itype => $itemtype
422 $biblionumber
424 my $datedue5 = AddIssue($restricted_borrower, $barcode5);
425 is (defined $datedue5, 1, "Item with date due checked out, due date: $datedue5");
427 t::lib::Mocks::mock_preference('RestrictionBlockRenewing','1');
428 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber2);
429 is( $renewokay, 1, '(Bug 8236), Can renew, user is not restricted');
430 ( $renewokay, $error ) = CanBookBeRenewed($restricted_borrowernumber, $itemnumber5);
431 is( $renewokay, 0, '(Bug 8236), Cannot renew, user is restricted');
433 # Users cannot renew an overdue item
434 my $barcode6 = 'R00000348';
435 my ( $item_bibnum6, $item_bibitemnum6, $itemnumber6 ) = AddItem(
437 homebranch => $branch,
438 holdingbranch => $branch,
439 barcode => $barcode6,
440 replacementprice => 23.00,
441 itype => $itemtype
443 $biblionumber
446 my $barcode7 = 'R00000349';
447 my ( $item_bibnum7, $item_bibitemnum7, $itemnumber7 ) = AddItem(
449 homebranch => $branch,
450 holdingbranch => $branch,
451 barcode => $barcode7,
452 replacementprice => 23.00,
453 itype => $itemtype
455 $biblionumber
457 my $datedue6 = AddIssue( $renewing_borrower, $barcode6);
458 is (defined $datedue6, 1, "Item 2 checked out, due date: ".$datedue6->date_due);
460 my $now = dt_from_string();
461 my $five_weeks = DateTime::Duration->new(weeks => 5);
462 my $five_weeks_ago = $now - $five_weeks;
463 t::lib::Mocks::mock_preference('finesMode', 'production');
465 my $passeddatedue1 = AddIssue($renewing_borrower, $barcode7, $five_weeks_ago);
466 is (defined $passeddatedue1, 1, "Item with passed date due checked out, due date: " . $passeddatedue1->date_due);
468 my ( $fine ) = CalcFine( GetItem(undef, $barcode7), $renewing_borrower->{categorycode}, $branch, $five_weeks_ago, $now );
469 C4::Overdues::UpdateFine(
471 issue_id => $passeddatedue1->id(),
472 itemnumber => $itemnumber7,
473 borrowernumber => $renewing_borrower->{borrowernumber},
474 amount => $fine,
475 type => 'FU',
476 due => Koha::DateUtils::output_pref($five_weeks_ago)
480 t::lib::Mocks::mock_preference('RenewalLog', 0);
481 my $date = output_pref( { dt => dt_from_string(), datenonly => 1, dateformat => 'iso' } );
482 my $old_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["RENEWAL"]) } );
483 AddRenewal( $renewing_borrower->{borrowernumber}, $itemnumber7, $branch );
484 my $new_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["RENEWAL"]) } );
485 is ($new_log_size, $old_log_size, 'renew log not added because of the syspref RenewalLog');
487 t::lib::Mocks::mock_preference('RenewalLog', 1);
488 $date = output_pref( { dt => dt_from_string(), datenonly => 1, dateformat => 'iso' } );
489 $old_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["RENEWAL"]) } );
490 AddRenewal( $renewing_borrower->{borrowernumber}, $itemnumber7, $branch );
491 $new_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["RENEWAL"]) } );
492 is ($new_log_size, $old_log_size + 1, 'renew log successfully added');
494 my $fines = Koha::Account::Lines->search( { borrowernumber => $renewing_borrower->{borrowernumber}, itemnumber => $itemnumber7 } );
495 is( $fines->count, 2 );
496 is( $fines->next->accounttype, 'F', 'Fine on renewed item is closed out properly' );
497 is( $fines->next->accounttype, 'F', 'Fine on renewed item is closed out properly' );
498 $fines->delete();
501 my $old_issue_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["ISSUE"]) } );
502 my $old_renew_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["RENEWAL"]) } );
503 AddIssue( $renewing_borrower,$barcode7,Koha::DateUtils::output_pref({str=>$datedue6->date_due, dateformat =>'iso'}),0,$date, 0, undef );
504 $new_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["RENEWAL"]) } );
505 is ($new_log_size, $old_renew_log_size + 1, 'renew log successfully added when renewed via issuing');
506 $new_log_size = scalar(@{GetLogs( $date, $date, undef,["CIRCULATION"], ["ISSUE"]) } );
507 is ($new_log_size, $old_issue_log_size, 'renew not logged as issue when renewed via issuing');
509 $fines = Koha::Account::Lines->search( { borrowernumber => $renewing_borrower->{borrowernumber}, itemnumber => $itemnumber7 } );
510 $fines->delete();
512 t::lib::Mocks::mock_preference('OverduesBlockRenewing','blockitem');
513 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber6);
514 is( $renewokay, 1, '(Bug 8236), Can renew, this item is not overdue');
515 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber7);
516 is( $renewokay, 0, '(Bug 8236), Cannot renew, this item is overdue');
519 $hold = Koha::Holds->search({ biblionumber => $biblionumber, borrowernumber => $reserving_borrowernumber })->next;
520 $hold->cancel;
522 # Bug 14101
523 # Test automatic renewal before value for "norenewalbefore" in policy is set
524 # In this case automatic renewal is not permitted prior to due date
525 my $barcode4 = '11235813';
526 my ( $item_bibnum4, $item_bibitemnum4, $itemnumber4 ) = AddItem(
528 homebranch => $branch,
529 holdingbranch => $branch,
530 barcode => $barcode4,
531 replacementprice => 16.00,
532 itype => $itemtype
534 $biblionumber
537 $issue = AddIssue( $renewing_borrower, $barcode4, undef, undef, undef, undef, { auto_renew => 1 } );
538 ( $renewokay, $error ) =
539 CanBookBeRenewed( $renewing_borrowernumber, $itemnumber4 );
540 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
541 is( $error, 'auto_too_soon',
542 'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = undef (returned code is auto_too_soon)' );
544 # Bug 7413
545 # Test premature manual renewal
546 $dbh->do('UPDATE issuingrules SET norenewalbefore = 7');
548 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber);
549 is( $renewokay, 0, 'Bug 7413: Cannot renew, renewal is premature');
550 is( $error, 'too_soon', 'Bug 7413: Cannot renew, renewal is premature (returned code is too_soon)');
552 # Bug 14395
553 # Test 'exact time' setting for syspref NoRenewalBeforePrecision
554 t::lib::Mocks::mock_preference( 'NoRenewalBeforePrecision', 'exact_time' );
556 GetSoonestRenewDate( $renewing_borrowernumber, $itemnumber ),
557 $datedue->clone->add( days => -7 ),
558 'Bug 14395: Renewals permitted 7 days before due date, as expected'
561 # Bug 14395
562 # Test 'date' setting for syspref NoRenewalBeforePrecision
563 t::lib::Mocks::mock_preference( 'NoRenewalBeforePrecision', 'date' );
565 GetSoonestRenewDate( $renewing_borrowernumber, $itemnumber ),
566 $datedue->clone->add( days => -7 )->truncate( to => 'day' ),
567 'Bug 14395: Renewals permitted 7 days before due date, as expected'
570 # Bug 14101
571 # Test premature automatic renewal
572 ( $renewokay, $error ) =
573 CanBookBeRenewed( $renewing_borrowernumber, $itemnumber4 );
574 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
575 is( $error, 'auto_too_soon',
576 'Bug 14101: Cannot renew, renewal is automatic and premature (returned code is auto_too_soon)'
579 # Change policy so that loans can only be renewed exactly on due date (0 days prior to due date)
580 # and test automatic renewal again
581 $dbh->do('UPDATE issuingrules SET norenewalbefore = 0');
582 ( $renewokay, $error ) =
583 CanBookBeRenewed( $renewing_borrowernumber, $itemnumber4 );
584 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
585 is( $error, 'auto_too_soon',
586 'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = 0 (returned code is auto_too_soon)'
589 # Change policy so that loans can be renewed 99 days prior to the due date
590 # and test automatic renewal again
591 $dbh->do('UPDATE issuingrules SET norenewalbefore = 99');
592 ( $renewokay, $error ) =
593 CanBookBeRenewed( $renewing_borrowernumber, $itemnumber4 );
594 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic' );
595 is( $error, 'auto_renew',
596 'Bug 14101: Cannot renew, renewal is automatic (returned code is auto_renew)'
599 subtest "too_late_renewal / no_auto_renewal_after" => sub {
600 plan tests => 14;
601 my $item_to_auto_renew = $builder->build(
602 { source => 'Item',
603 value => {
604 biblionumber => $biblionumber,
605 homebranch => $branch,
606 holdingbranch => $branch,
611 my $ten_days_before = dt_from_string->add( days => -10 );
612 my $ten_days_ahead = dt_from_string->add( days => 10 );
613 AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
615 $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 9');
616 ( $renewokay, $error ) =
617 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
618 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
619 is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
621 $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 10');
622 ( $renewokay, $error ) =
623 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
624 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
625 is( $error, 'auto_too_late', 'Cannot auto renew, too late - no_auto_renewal_after is inclusive(returned code is auto_too_late)' );
627 $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 11');
628 ( $renewokay, $error ) =
629 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
630 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
631 is( $error, 'auto_too_soon', 'Cannot auto renew, too soon - no_auto_renewal_after is defined(returned code is auto_too_soon)' );
633 $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 11');
634 ( $renewokay, $error ) =
635 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
636 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
637 is( $error, 'auto_renew', 'Cannot renew, renew is automatic' );
639 $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = NULL, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => -1 ) );
640 ( $renewokay, $error ) =
641 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
642 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
643 is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
645 $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 15, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => -1 ) );
646 ( $renewokay, $error ) =
647 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
648 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
649 is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
651 $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = NULL, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => 1 ) );
652 ( $renewokay, $error ) =
653 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
654 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
655 is( $error, 'auto_renew', 'Cannot renew, renew is automatic' );
658 subtest "auto_too_much_oweing | OPACFineNoRenewalsBlockAutoRenew" => sub {
659 plan tests => 6;
660 my $item_to_auto_renew = $builder->build({
661 source => 'Item',
662 value => {
663 biblionumber => $biblionumber,
664 homebranch => $branch,
665 holdingbranch => $branch,
669 my $ten_days_before = dt_from_string->add( days => -10 );
670 my $ten_days_ahead = dt_from_string->add( days => 10 );
671 AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
673 $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 11');
674 C4::Context->set_preference('OPACFineNoRenewalsBlockAutoRenew','1');
675 C4::Context->set_preference('OPACFineNoRenewals','10');
676 my $fines_amount = 5;
677 C4::Accounts::manualinvoice( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber}, "Some fines", 'F', $fines_amount );
678 ( $renewokay, $error ) =
679 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
680 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
681 is( $error, 'auto_renew', 'Can auto renew, OPACFineNoRenewals=10, patron has 5' );
683 C4::Accounts::manualinvoice( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber}, "Some fines", 'F', $fines_amount );
684 ( $renewokay, $error ) =
685 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
686 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
687 is( $error, 'auto_renew', 'Can auto renew, OPACFineNoRenewals=10, patron has 10' );
689 C4::Accounts::manualinvoice( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber}, "Some fines", 'F', $fines_amount );
690 ( $renewokay, $error ) =
691 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
692 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
693 is( $error, 'auto_too_much_oweing', 'Cannot auto renew, OPACFineNoRenewals=10, patron has 15' );
695 $dbh->do('DELETE FROM accountlines WHERE borrowernumber=?', undef, $renewing_borrowernumber);
698 subtest "GetLatestAutoRenewDate" => sub {
699 plan tests => 5;
700 my $item_to_auto_renew = $builder->build(
701 { source => 'Item',
702 value => {
703 biblionumber => $biblionumber,
704 homebranch => $branch,
705 holdingbranch => $branch,
710 my $ten_days_before = dt_from_string->add( days => -10 );
711 my $ten_days_ahead = dt_from_string->add( days => 10 );
712 AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
713 $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = "", no_auto_renewal_after_hard_limit = NULL');
714 my $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
715 is( $latest_auto_renew_date, undef, 'GetLatestAutoRenewDate should return undef if no_auto_renewal_after or no_auto_renewal_after_hard_limit are not defined' );
716 my $five_days_before = dt_from_string->add( days => -5 );
717 $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 5, no_auto_renewal_after_hard_limit = NULL');
718 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
719 is( $latest_auto_renew_date->truncate( to => 'minute' ),
720 $five_days_before->truncate( to => 'minute' ),
721 'GetLatestAutoRenewDate should return -5 days if no_auto_renewal_after = 5 and date_due is 10 days before'
723 my $five_days_ahead = dt_from_string->add( days => 5 );
724 $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 15, no_auto_renewal_after_hard_limit = NULL');
725 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
726 is( $latest_auto_renew_date->truncate( to => 'minute' ),
727 $five_days_ahead->truncate( to => 'minute' ),
728 'GetLatestAutoRenewDate should return +5 days if no_auto_renewal_after = 15 and date_due is 10 days before'
730 my $two_days_ahead = dt_from_string->add( days => 2 );
731 $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = "", no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => 2 ) );
732 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
733 is( $latest_auto_renew_date->truncate( to => 'day' ),
734 $two_days_ahead->truncate( to => 'day' ),
735 'GetLatestAutoRenewDate should return +2 days if no_auto_renewal_after_hard_limit is defined and not no_auto_renewal_after'
737 $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 15, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => 2 ) );
738 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
739 is( $latest_auto_renew_date->truncate( to => 'day' ),
740 $two_days_ahead->truncate( to => 'day' ),
741 'GetLatestAutoRenewDate should return +2 days if no_auto_renewal_after_hard_limit is < no_auto_renewal_after'
746 # Too many renewals
748 # set policy to forbid renewals
749 $dbh->do('UPDATE issuingrules SET norenewalbefore = NULL, renewalsallowed = 0');
751 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber);
752 is( $renewokay, 0, 'Cannot renew, 0 renewals allowed');
753 is( $error, 'too_many', 'Cannot renew, 0 renewals allowed (returned code is too_many)');
755 # Test WhenLostForgiveFine and WhenLostChargeReplacementFee
756 t::lib::Mocks::mock_preference('WhenLostForgiveFine','1');
757 t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','1');
759 C4::Overdues::UpdateFine(
761 issue_id => $issue->id(),
762 itemnumber => $itemnumber,
763 borrowernumber => $renewing_borrower->{borrowernumber},
764 amount => 15.00,
765 type => q{},
766 due => Koha::DateUtils::output_pref($datedue)
770 LostItem( $itemnumber, 1 );
772 my $item = Koha::Database->new()->schema()->resultset('Item')->find($itemnumber);
773 ok( !$item->onloan(), "Lost item marked as returned has false onloan value" );
775 my $total_due = $dbh->selectrow_array(
776 'SELECT SUM( amountoutstanding ) FROM accountlines WHERE borrowernumber = ?',
777 undef, $renewing_borrower->{borrowernumber}
780 ok( $total_due == 12, 'Borrower only charged replacement fee with both WhenLostForgiveFine and WhenLostChargeReplacementFee enabled' );
782 C4::Context->dbh->do("DELETE FROM accountlines");
784 t::lib::Mocks::mock_preference('WhenLostForgiveFine','0');
785 t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','0');
787 C4::Overdues::UpdateFine(
789 issue_id => $issue2->id(),
790 itemnumber => $itemnumber2,
791 borrowernumber => $renewing_borrower->{borrowernumber},
792 amount => 15.00,
793 type => q{},
794 due => Koha::DateUtils::output_pref($datedue)
798 LostItem( $itemnumber2, 0 );
800 my $item2 = Koha::Database->new()->schema()->resultset('Item')->find($itemnumber2);
801 ok( $item2->onloan(), "Lost item *not* marked as returned has true onloan value" );
803 $total_due = $dbh->selectrow_array(
804 'SELECT SUM( amountoutstanding ) FROM accountlines WHERE borrowernumber = ?',
805 undef, $renewing_borrower->{borrowernumber}
808 ok( $total_due == 15, 'Borrower only charged fine with both WhenLostForgiveFine and WhenLostChargeReplacementFee disabled' );
810 my $future = dt_from_string();
811 $future->add( days => 7 );
812 my $units = C4::Overdues::get_chargeable_units('days', $future, $now, $library2->{branchcode});
813 ok( $units == 0, '_get_chargeable_units returns 0 for items not past due date (Bug 12596)' );
815 # Users cannot renew any item if there is an overdue item
816 t::lib::Mocks::mock_preference('OverduesBlockRenewing','block');
817 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber6);
818 is( $renewokay, 0, '(Bug 8236), Cannot renew, one of the items is overdue');
819 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber7);
820 is( $renewokay, 0, '(Bug 8236), Cannot renew, one of the items is overdue');
825 # GetUpcomingDueIssues tests
826 my $barcode = 'R00000342';
827 my $barcode2 = 'R00000343';
828 my $barcode3 = 'R00000344';
829 my $branch = $library2->{branchcode};
831 #Create another record
832 my $biblio2 = MARC::Record->new();
833 my $title2 = 'Something is worng here';
834 $biblio2->append_fields(
835 MARC::Field->new('100', ' ', ' ', a => 'Anonymous'),
836 MARC::Field->new('245', ' ', ' ', a => $title2),
838 my ($biblionumber2, $biblioitemnumber2) = AddBiblio($biblio2, '');
840 #Create third item
841 AddItem(
843 homebranch => $branch,
844 holdingbranch => $branch,
845 barcode => $barcode3,
846 itype => $itemtype
848 $biblionumber2
851 # Create a borrower
852 my %a_borrower_data = (
853 firstname => 'Fridolyn',
854 surname => 'SOMERS',
855 categorycode => $patron_category->{categorycode},
856 branchcode => $branch,
859 my $a_borrower_borrowernumber = AddMember(%a_borrower_data);
860 my $a_borrower = Koha::Patrons->find( $a_borrower_borrowernumber )->unblessed;
862 my $yesterday = DateTime->today(time_zone => C4::Context->tz())->add( days => -1 );
863 my $two_days_ahead = DateTime->today(time_zone => C4::Context->tz())->add( days => 2 );
864 my $today = DateTime->today(time_zone => C4::Context->tz());
866 my $issue = AddIssue( $a_borrower, $barcode, $yesterday );
867 my $datedue = dt_from_string( $issue->date_due() );
868 my $issue2 = AddIssue( $a_borrower, $barcode2, $two_days_ahead );
869 my $datedue2 = dt_from_string( $issue->date_due() );
871 my $upcoming_dues;
873 # GetUpcomingDueIssues tests
874 for my $i(0..1) {
875 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => $i } );
876 is ( scalar( @$upcoming_dues ), 0, "No items due in less than one day ($i days in advance)" );
879 #days_in_advance needs to be inclusive, so 1 matches items due tomorrow, 0 items due today etc.
880 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 2 } );
881 is ( scalar ( @$upcoming_dues), 1, "Only one item due in 2 days or less" );
883 for my $i(3..5) {
884 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => $i } );
885 is ( scalar( @$upcoming_dues ), 1,
886 "Bug 9362: Only one item due in more than 2 days ($i days in advance)" );
889 # Bug 11218 - Due notices not generated - GetUpcomingDueIssues needs to select due today items as well
891 my $issue3 = AddIssue( $a_borrower, $barcode3, $today );
893 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => -1 } );
894 is ( scalar ( @$upcoming_dues), 0, "Overdues can not be selected" );
896 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 0 } );
897 is ( scalar ( @$upcoming_dues), 1, "1 item is due today" );
899 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 1 } );
900 is ( scalar ( @$upcoming_dues), 1, "1 item is due today, none tomorrow" );
902 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 2 } );
903 is ( scalar ( @$upcoming_dues), 2, "2 items are due withing 2 days" );
905 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 3 } );
906 is ( scalar ( @$upcoming_dues), 2, "2 items are due withing 2 days" );
908 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues();
909 is ( scalar ( @$upcoming_dues), 2, "days_in_advance is 7 in GetUpcomingDueIssues if not provided" );
914 my $barcode = '1234567890';
915 my $branch = $library2->{branchcode};
917 my $biblio = MARC::Record->new();
918 my ($biblionumber, $biblioitemnumber) = AddBiblio($biblio, '');
920 #Create third item
921 my ( undef, undef, $itemnumber ) = AddItem(
923 homebranch => $branch,
924 holdingbranch => $branch,
925 barcode => $barcode,
926 itype => $itemtype
928 $biblionumber
931 # Create a borrower
932 my %a_borrower_data = (
933 firstname => 'Kyle',
934 surname => 'Hall',
935 categorycode => $patron_category->{categorycode},
936 branchcode => $branch,
939 my $borrowernumber = AddMember(%a_borrower_data);
941 my $borrower = Koha::Patrons->find( $borrowernumber )->unblessed;
942 my $issue = AddIssue( $borrower, $barcode );
943 UpdateFine(
945 issue_id => $issue->id(),
946 itemnumber => $itemnumber,
947 borrowernumber => $borrowernumber,
948 amount => 0,
949 type => q{}
953 my $hr = $dbh->selectrow_hashref(q{SELECT COUNT(*) AS count FROM accountlines WHERE borrowernumber = ? AND itemnumber = ?}, undef, $borrowernumber, $itemnumber );
954 my $count = $hr->{count};
956 is ( $count, 0, "Calling UpdateFine on non-existant fine with an amount of 0 does not result in an empty fine" );
960 $dbh->do('DELETE FROM issues');
961 $dbh->do('DELETE FROM items');
962 $dbh->do('DELETE FROM issuingrules');
963 $dbh->do(
965 INSERT INTO issuingrules ( categorycode, branchcode, itemtype, reservesallowed, maxissueqty, issuelength, lengthunit, renewalsallowed, renewalperiod,
966 norenewalbefore, auto_renew, fine, chargeperiod ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
969 '*', '*', '*', 25,
970 20, 14, 'days',
971 1, 7,
972 undef, 0,
973 .10, 1
975 my $biblio = MARC::Record->new();
976 my ( $biblionumber, $biblioitemnumber ) = AddBiblio( $biblio, '' );
978 my $barcode1 = '1234';
979 my ( undef, undef, $itemnumber1 ) = AddItem(
981 homebranch => $library2->{branchcode},
982 holdingbranch => $library2->{branchcode},
983 barcode => $barcode1,
984 itype => $itemtype
986 $biblionumber
988 my $barcode2 = '4321';
989 my ( undef, undef, $itemnumber2 ) = AddItem(
991 homebranch => $library2->{branchcode},
992 holdingbranch => $library2->{branchcode},
993 barcode => $barcode2,
994 itype => $itemtype
996 $biblionumber
999 my $borrowernumber1 = AddMember(
1000 firstname => 'Kyle',
1001 surname => 'Hall',
1002 categorycode => $patron_category->{categorycode},
1003 branchcode => $library2->{branchcode},
1005 my $borrowernumber2 = AddMember(
1006 firstname => 'Chelsea',
1007 surname => 'Hall',
1008 categorycode => $patron_category->{categorycode},
1009 branchcode => $library2->{branchcode},
1012 my $borrower1 = Koha::Patrons->find( $borrowernumber1 )->unblessed;
1013 my $borrower2 = Koha::Patrons->find( $borrowernumber2 )->unblessed;
1015 my $issue = AddIssue( $borrower1, $barcode1 );
1017 my ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $itemnumber1 );
1018 is( $renewokay, 1, 'Bug 14337 - Verify the borrower can renew with no hold on the record' );
1020 AddReserve(
1021 $library2->{branchcode}, $borrowernumber2, $biblionumber,
1022 '', 1, undef, undef, '',
1023 undef, undef, undef
1026 C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 0");
1027 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 0 );
1028 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $itemnumber1 );
1029 is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable and onshelfholds are disabled' );
1031 C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 0");
1032 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 1 );
1033 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $itemnumber1 );
1034 is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable is enabled and onshelfholds is disabled' );
1036 C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 1");
1037 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 0 );
1038 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $itemnumber1 );
1039 is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable is disabled and onshelfhold is enabled' );
1041 C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 1");
1042 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 1 );
1043 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $itemnumber1 );
1044 is( $renewokay, 1, 'Bug 14337 - Verify the borrower can renew with a hold on the record if AllowRenewalIfOtherItemsAvailable and onshelfhold are enabled' );
1046 # Setting item not checked out to be not for loan but holdable
1047 ModItem({ notforloan => -1 }, $biblionumber, $itemnumber2);
1049 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $itemnumber1 );
1050 is( $renewokay, 0, 'Bug 14337 - Verify the borrower can not renew with a hold on the record if AllowRenewalIfOtherItemsAvailable is enabled but the only available item is notforloan' );
1054 # Don't allow renewing onsite checkout
1055 my $barcode = 'R00000XXX';
1056 my $branch = $library->{branchcode};
1058 #Create another record
1059 my $biblio = MARC::Record->new();
1060 $biblio->append_fields(
1061 MARC::Field->new('100', ' ', ' ', a => 'Anonymous'),
1062 MARC::Field->new('245', ' ', ' ', a => 'A title'),
1064 my ($biblionumber, $biblioitemnumber) = AddBiblio($biblio, '');
1066 my (undef, undef, $itemnumber) = AddItem(
1068 homebranch => $branch,
1069 holdingbranch => $branch,
1070 barcode => $barcode,
1071 itype => $itemtype
1073 $biblionumber
1076 my $borrowernumber = AddMember(
1077 firstname => 'fn',
1078 surname => 'dn',
1079 categorycode => $patron_category->{categorycode},
1080 branchcode => $branch,
1083 my $borrower = Koha::Patrons->find( $borrowernumber )->unblessed;
1085 my $issue = AddIssue( $borrower, $barcode, undef, undef, undef, undef, { onsite_checkout => 1 } );
1086 my ( $renewed, $error ) = CanBookBeRenewed( $borrowernumber, $itemnumber );
1087 is( $renewed, 0, 'CanBookBeRenewed should not allow to renew on-site checkout' );
1088 is( $error, 'onsite_checkout', 'A correct error code should be returned by CanBookBeRenewed for on-site checkout' );
1092 my $library = $builder->build({ source => 'Branch' });
1094 my $biblio = MARC::Record->new();
1095 my ($biblionumber, $biblioitemnumber) = AddBiblio($biblio, '');
1097 my $barcode = 'just a barcode';
1098 my ( undef, undef, $itemnumber ) = AddItem(
1100 homebranch => $library->{branchcode},
1101 holdingbranch => $library->{branchcode},
1102 barcode => $barcode,
1103 itype => $itemtype
1105 $biblionumber,
1108 my $patron = $builder->build({ source => 'Borrower', value => { branchcode => $library->{branchcode} } } );
1110 my $issue = AddIssue( $patron, $barcode );
1111 UpdateFine(
1113 issue_id => $issue->id(),
1114 itemnumber => $itemnumber,
1115 borrowernumber => $patron->{borrowernumber},
1116 amount => 1,
1117 type => q{}
1120 UpdateFine(
1122 issue_id => $issue->id(),
1123 itemnumber => $itemnumber,
1124 borrowernumber => $patron->{borrowernumber},
1125 amount => 2,
1126 type => q{}
1129 is( Koha::Account::Lines->search({ issue_id => $issue->id })->count, 1, 'UpdateFine should not create a new accountline when updating an existing fine');
1132 subtest 'CanBookBeIssued & AllowReturnToBranch' => sub {
1133 plan tests => 26;
1135 my $homebranch = $builder->build( { source => 'Branch' } );
1136 my $holdingbranch = $builder->build( { source => 'Branch' } );
1137 my $otherbranch = $builder->build( { source => 'Branch' } );
1138 my $patron_1 = $builder->build( { source => 'Borrower' } );
1139 my $patron_2 = $builder->build( { source => 'Borrower' } );
1141 my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1142 my $item = $builder->build(
1143 { source => 'Item',
1144 value => {
1145 homebranch => $homebranch->{branchcode},
1146 holdingbranch => $holdingbranch->{branchcode},
1147 notforloan => 0,
1148 itemlost => 0,
1149 withdrawn => 0,
1150 restricted => 0,
1151 biblionumber => $biblioitem->{biblionumber}
1156 set_userenv($holdingbranch);
1158 my $issue = AddIssue( $patron_1, $item->{barcode} );
1159 is( ref($issue), 'Koha::Schema::Result::Issue' ); # FIXME Should be Koha::Checkout
1161 my ( $error, $question, $alerts );
1163 # AllowReturnToBranch == anywhere
1164 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'anywhere' );
1165 ## Can be issued from homebranch
1166 set_userenv($homebranch);
1167 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1168 is( keys(%$error), 0, 'There should not be any errors (impossible)' );
1169 is( keys(%$alerts), 0, 'There should not be any alerts' );
1170 is( exists $question->{ISSUED_TO_ANOTHER}, 1 );
1171 ## Can be issued from holdingbranch
1172 set_userenv($holdingbranch);
1173 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1174 is( keys(%$error), 0, 'There should not be any errors (impossible)' );
1175 is( keys(%$alerts), 0, 'There should not be any alerts' );
1176 is( exists $question->{ISSUED_TO_ANOTHER}, 1 );
1177 ## Can be issued from another branch
1178 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1179 is( keys(%$error), 0, 'There should not be any errors (impossible)' );
1180 is( keys(%$alerts), 0, 'There should not be any alerts' );
1181 is( exists $question->{ISSUED_TO_ANOTHER}, 1 );
1183 # AllowReturnToBranch == holdingbranch
1184 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'holdingbranch' );
1185 ## Cannot be issued from homebranch
1186 set_userenv($homebranch);
1187 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1188 is( keys(%$question) + keys(%$alerts), 0 );
1189 is( exists $error->{RETURN_IMPOSSIBLE}, 1 );
1190 is( $error->{branch_to_return}, $holdingbranch->{branchcode} );
1191 ## Can be issued from holdinbranch
1192 set_userenv($holdingbranch);
1193 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1194 is( keys(%$error) + keys(%$alerts), 0 );
1195 is( exists $question->{ISSUED_TO_ANOTHER}, 1 );
1196 ## Cannot be issued from another branch
1197 set_userenv($otherbranch);
1198 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1199 is( keys(%$question) + keys(%$alerts), 0 );
1200 is( exists $error->{RETURN_IMPOSSIBLE}, 1 );
1201 is( $error->{branch_to_return}, $holdingbranch->{branchcode} );
1203 # AllowReturnToBranch == homebranch
1204 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'homebranch' );
1205 ## Can be issued from holdinbranch
1206 set_userenv($homebranch);
1207 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1208 is( keys(%$error) + keys(%$alerts), 0 );
1209 is( exists $question->{ISSUED_TO_ANOTHER}, 1 );
1210 ## Cannot be issued from holdinbranch
1211 set_userenv($holdingbranch);
1212 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1213 is( keys(%$question) + keys(%$alerts), 0 );
1214 is( exists $error->{RETURN_IMPOSSIBLE}, 1 );
1215 is( $error->{branch_to_return}, $homebranch->{branchcode} );
1216 ## Cannot be issued from holdinbranch
1217 set_userenv($otherbranch);
1218 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1219 is( keys(%$question) + keys(%$alerts), 0 );
1220 is( exists $error->{RETURN_IMPOSSIBLE}, 1 );
1221 is( $error->{branch_to_return}, $homebranch->{branchcode} );
1223 # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
1226 subtest 'AddIssue & AllowReturnToBranch' => sub {
1227 plan tests => 9;
1229 my $homebranch = $builder->build( { source => 'Branch' } );
1230 my $holdingbranch = $builder->build( { source => 'Branch' } );
1231 my $otherbranch = $builder->build( { source => 'Branch' } );
1232 my $patron_1 = $builder->build( { source => 'Borrower' } );
1233 my $patron_2 = $builder->build( { source => 'Borrower' } );
1235 my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1236 my $item = $builder->build(
1237 { source => 'Item',
1238 value => {
1239 homebranch => $homebranch->{branchcode},
1240 holdingbranch => $holdingbranch->{branchcode},
1241 notforloan => 0,
1242 itemlost => 0,
1243 withdrawn => 0,
1244 biblionumber => $biblioitem->{biblionumber}
1249 set_userenv($holdingbranch);
1251 my $ref_issue = 'Koha::Schema::Result::Issue'; # FIXME Should be Koha::Checkout
1252 my $issue = AddIssue( $patron_1, $item->{barcode} );
1254 my ( $error, $question, $alerts );
1256 # AllowReturnToBranch == homebranch
1257 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'anywhere' );
1258 ## Can be issued from homebranch
1259 set_userenv($homebranch);
1260 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1261 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1262 ## Can be issued from holdinbranch
1263 set_userenv($holdingbranch);
1264 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1265 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1266 ## Can be issued from another branch
1267 set_userenv($otherbranch);
1268 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1269 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1271 # AllowReturnToBranch == holdinbranch
1272 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'holdingbranch' );
1273 ## Cannot be issued from homebranch
1274 set_userenv($homebranch);
1275 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1276 ## Can be issued from holdingbranch
1277 set_userenv($holdingbranch);
1278 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1279 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1280 ## Cannot be issued from another branch
1281 set_userenv($otherbranch);
1282 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1284 # AllowReturnToBranch == homebranch
1285 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'homebranch' );
1286 ## Can be issued from homebranch
1287 set_userenv($homebranch);
1288 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1289 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1290 ## Cannot be issued from holdinbranch
1291 set_userenv($holdingbranch);
1292 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1293 ## Cannot be issued from another branch
1294 set_userenv($otherbranch);
1295 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1296 # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
1299 subtest 'CanBookBeIssued + Koha::Patron->is_debarred|has_overdues' => sub {
1300 plan tests => 8;
1302 my $library = $builder->build( { source => 'Branch' } );
1303 my $patron = $builder->build( { source => 'Borrower', value => { gonenoaddress => undef, lost => undef, debarred => undef, borrowernotes => "" } } );
1305 my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
1306 my $item_1 = $builder->build(
1307 { source => 'Item',
1308 value => {
1309 homebranch => $library->{branchcode},
1310 holdingbranch => $library->{branchcode},
1311 notforloan => 0,
1312 itemlost => 0,
1313 withdrawn => 0,
1314 restricted => 0,
1315 biblionumber => $biblioitem_1->{biblionumber}
1319 my $biblioitem_2 = $builder->build( { source => 'Biblioitem' } );
1320 my $item_2 = $builder->build(
1321 { source => 'Item',
1322 value => {
1323 homebranch => $library->{branchcode},
1324 holdingbranch => $library->{branchcode},
1325 notforloan => 0,
1326 itemlost => 0,
1327 withdrawn => 0,
1328 restricted => 0,
1329 biblionumber => $biblioitem_2->{biblionumber}
1334 my ( $error, $question, $alerts );
1336 # Patron cannot issue item_1, they have overdues
1337 my $yesterday = DateTime->today( time_zone => C4::Context->tz() )->add( days => -1 );
1338 my $issue = AddIssue( $patron, $item_1->{barcode}, $yesterday ); # Add an overdue
1340 t::lib::Mocks::mock_preference( 'OverduesBlockCirc', 'confirmation' );
1341 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1342 is( keys(%$error) + keys(%$alerts), 0, 'No key for error and alert ' . keys(%$error) . ' ' . keys(%$alerts) );
1343 is( $question->{USERBLOCKEDOVERDUE}, 1, 'OverduesBlockCirc=confirmation, USERBLOCKEDOVERDUE should be set for question' );
1345 t::lib::Mocks::mock_preference( 'OverduesBlockCirc', 'block' );
1346 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1347 is( keys(%$question) + keys(%$alerts), 0, 'No key for question and alert ' . keys(%$question) . ' ' . keys(%$alerts) );
1348 is( $error->{USERBLOCKEDOVERDUE}, 1, 'OverduesBlockCirc=block, USERBLOCKEDOVERDUE should be set for error' );
1350 # Patron cannot issue item_1, they are debarred
1351 my $tomorrow = DateTime->today( time_zone => C4::Context->tz() )->add( days => 1 );
1352 Koha::Patron::Debarments::AddDebarment( { borrowernumber => $patron->{borrowernumber}, expiration => $tomorrow } );
1353 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1354 is( keys(%$question) + keys(%$alerts), 0, 'No key for question and alert ' . keys(%$question) . ' ' . keys(%$alerts) );
1355 is( $error->{USERBLOCKEDWITHENDDATE}, output_pref( { dt => $tomorrow, dateformat => 'sql', dateonly => 1 } ), 'USERBLOCKEDWITHENDDATE should be tomorrow' );
1357 Koha::Patron::Debarments::AddDebarment( { borrowernumber => $patron->{borrowernumber} } );
1358 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1359 is( keys(%$question) + keys(%$alerts), 0, 'No key for question and alert ' . keys(%$question) . ' ' . keys(%$alerts) );
1360 is( $error->{USERBLOCKEDNOENDDATE}, '9999-12-31', 'USERBLOCKEDNOENDDATE should be 9999-12-31 for unlimited debarments' );
1363 subtest 'CanBookBeIssued + Statistic patrons "X"' => sub {
1364 plan tests => 1;
1366 my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1367 my $patron_category = $builder->build_object(
1369 class => 'Koha::Patron::Categories',
1370 value => { category_type => 'X' }
1373 my $patron = $builder->build_object(
1375 class => 'Koha::Patrons',
1376 value => {
1377 categorycode => $patron_category->categorycode,
1378 gonenoaddress => undef,
1379 lost => undef,
1380 debarred => undef,
1381 borrowernotes => ""
1385 my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
1386 my $item_1 = $builder->build(
1388 source => 'Item',
1389 value => {
1390 homebranch => $library->branchcode,
1391 holdingbranch => $library->branchcode,
1392 notforloan => 0,
1393 itemlost => 0,
1394 withdrawn => 0,
1395 restricted => 0,
1396 biblionumber => $biblioitem_1->{biblionumber}
1401 my ( $error, $question, $alerts ) = CanBookBeIssued( $patron->unblessed, $item_1->{barcode} );
1402 is( $error->{STATS}, 1, '"Error" flag "STATS" must be set if CanBookBeIssued is called with a statistic patron (category_type=X)' );
1404 # TODO There are other tests to provide here
1407 subtest 'MultipleReserves' => sub {
1408 plan tests => 3;
1410 my $biblio = MARC::Record->new();
1411 my $title = 'Silence in the library';
1412 $biblio->append_fields(
1413 MARC::Field->new('100', ' ', ' ', a => 'Moffat, Steven'),
1414 MARC::Field->new('245', ' ', ' ', a => $title),
1417 my ($biblionumber, $biblioitemnumber) = AddBiblio($biblio, '');
1419 my $branch = $library2->{branchcode};
1421 my $barcode1 = 'R00110001';
1422 my ( $item_bibnum1, $item_bibitemnum1, $itemnumber1 ) = AddItem(
1424 homebranch => $branch,
1425 holdingbranch => $branch,
1426 barcode => $barcode1,
1427 replacementprice => 12.00,
1428 itype => $itemtype
1430 $biblionumber
1433 my $barcode2 = 'R00110002';
1434 my ( $item_bibnum2, $item_bibitemnum2, $itemnumber2 ) = AddItem(
1436 homebranch => $branch,
1437 holdingbranch => $branch,
1438 barcode => $barcode2,
1439 replacementprice => 12.00,
1440 itype => $itemtype
1442 $biblionumber
1445 my $bibitems = '';
1446 my $priority = '1';
1447 my $resdate = undef;
1448 my $expdate = undef;
1449 my $notes = '';
1450 my $checkitem = undef;
1451 my $found = undef;
1453 my %renewing_borrower_data = (
1454 firstname => 'John',
1455 surname => 'Renewal',
1456 categorycode => $patron_category->{categorycode},
1457 branchcode => $branch,
1459 my $renewing_borrowernumber = AddMember(%renewing_borrower_data);
1460 my $renewing_borrower = Koha::Patrons->find( $renewing_borrowernumber )->unblessed;
1461 my $issue = AddIssue( $renewing_borrower, $barcode1);
1462 my $datedue = dt_from_string( $issue->date_due() );
1463 is (defined $issue->date_due(), 1, "item 1 checked out");
1464 my $borrowing_borrowernumber = Koha::Checkouts->find({ itemnumber => $itemnumber1 })->borrowernumber;
1466 my %reserving_borrower_data1 = (
1467 firstname => 'Katrin',
1468 surname => 'Reservation',
1469 categorycode => $patron_category->{categorycode},
1470 branchcode => $branch,
1472 my $reserving_borrowernumber1 = AddMember(%reserving_borrower_data1);
1473 AddReserve(
1474 $branch, $reserving_borrowernumber1, $biblionumber,
1475 $bibitems, $priority, $resdate, $expdate, $notes,
1476 $title, $checkitem, $found
1479 my %reserving_borrower_data2 = (
1480 firstname => 'Kirk',
1481 surname => 'Reservation',
1482 categorycode => $patron_category->{categorycode},
1483 branchcode => $branch,
1485 my $reserving_borrowernumber2 = AddMember(%reserving_borrower_data2);
1486 AddReserve(
1487 $branch, $reserving_borrowernumber2, $biblionumber,
1488 $bibitems, $priority, $resdate, $expdate, $notes,
1489 $title, $checkitem, $found
1493 my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber1, 1);
1494 is($renewokay, 0, 'Bug 17641 - should cover the case where 2 books are both reserved, so failing');
1497 my $barcode3 = 'R00110003';
1498 my ( $item_bibnum3, $item_bibitemnum3, $itemnumber3 ) = AddItem(
1500 homebranch => $branch,
1501 holdingbranch => $branch,
1502 barcode => $barcode3,
1503 replacementprice => 12.00,
1504 itype => $itemtype
1506 $biblionumber
1510 my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber1, 1);
1511 is($renewokay, 1, 'Bug 17641 - should cover the case where 2 books are reserved, but a third one is available');
1515 subtest 'CanBookBeIssued + AllowMultipleIssuesOnABiblio' => sub {
1516 plan tests => 5;
1518 my $library = $builder->build( { source => 'Branch' } );
1519 my $patron = $builder->build( { source => 'Borrower' } );
1521 my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1522 my $biblionumber = $biblioitem->{biblionumber};
1523 my $item_1 = $builder->build(
1524 { source => 'Item',
1525 value => {
1526 homebranch => $library->{branchcode},
1527 holdingbranch => $library->{branchcode},
1528 notforloan => 0,
1529 itemlost => 0,
1530 withdrawn => 0,
1531 biblionumber => $biblionumber,
1535 my $item_2 = $builder->build(
1536 { source => 'Item',
1537 value => {
1538 homebranch => $library->{branchcode},
1539 holdingbranch => $library->{branchcode},
1540 notforloan => 0,
1541 itemlost => 0,
1542 withdrawn => 0,
1543 biblionumber => $biblionumber,
1548 my ( $error, $question, $alerts );
1549 my $issue = AddIssue( $patron, $item_1->{barcode}, dt_from_string->add( days => 1 ) );
1551 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 0);
1552 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1553 is( keys(%$error) + keys(%$alerts), 0, 'No error or alert should be raised' );
1554 is( $question->{BIBLIO_ALREADY_ISSUED}, 1, 'BIBLIO_ALREADY_ISSUED question flag should be set if AllowMultipleIssuesOnABiblio=0 and issue already exists' );
1556 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 1);
1557 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1558 is( keys(%$error) + keys(%$question) + keys(%$alerts), 0, 'No BIBLIO_ALREADY_ISSUED flag should be set if AllowMultipleIssuesOnABiblio=1' );
1560 # Add a subscription
1561 Koha::Subscription->new({ biblionumber => $biblionumber })->store;
1563 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 0);
1564 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1565 is( keys(%$error) + keys(%$question) + keys(%$alerts), 0, 'No BIBLIO_ALREADY_ISSUED flag should be set if it is a subscription' );
1567 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 1);
1568 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1569 is( keys(%$error) + keys(%$question) + keys(%$alerts), 0, 'No BIBLIO_ALREADY_ISSUED flag should be set if it is a subscription' );
1572 subtest 'AddReturn + CumulativeRestrictionPeriods' => sub {
1573 plan tests => 8;
1575 my $library = $builder->build( { source => 'Branch' } );
1576 my $patron = $builder->build( { source => 'Borrower' } );
1578 # Add 2 items
1579 my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
1580 my $item_1 = $builder->build(
1582 source => 'Item',
1583 value => {
1584 homebranch => $library->{branchcode},
1585 holdingbranch => $library->{branchcode},
1586 notforloan => 0,
1587 itemlost => 0,
1588 withdrawn => 0,
1589 biblionumber => $biblioitem_1->{biblionumber}
1593 my $biblioitem_2 = $builder->build( { source => 'Biblioitem' } );
1594 my $item_2 = $builder->build(
1596 source => 'Item',
1597 value => {
1598 homebranch => $library->{branchcode},
1599 holdingbranch => $library->{branchcode},
1600 notforloan => 0,
1601 itemlost => 0,
1602 withdrawn => 0,
1603 biblionumber => $biblioitem_2->{biblionumber}
1608 # And the issuing rule
1609 Koha::IssuingRules->search->delete;
1610 my $rule = Koha::IssuingRule->new(
1612 categorycode => '*',
1613 itemtype => '*',
1614 branchcode => '*',
1615 maxissueqty => 99,
1616 issuelength => 1,
1617 firstremind => 1, # 1 day of grace
1618 finedays => 2, # 2 days of fine per day of overdue
1619 lengthunit => 'days',
1622 $rule->store();
1624 # Patron cannot issue item_1, they have overdues
1625 my $five_days_ago = dt_from_string->subtract( days => 5 );
1626 my $ten_days_ago = dt_from_string->subtract( days => 10 );
1627 AddIssue( $patron, $item_1->{barcode}, $five_days_ago ); # Add an overdue
1628 AddIssue( $patron, $item_2->{barcode}, $ten_days_ago )
1629 ; # Add another overdue
1631 t::lib::Mocks::mock_preference( 'CumulativeRestrictionPeriods', '0' );
1632 AddReturn( $item_1->{barcode}, $library->{branchcode},
1633 undef, undef, dt_from_string );
1634 my $debarments = Koha::Patron::Debarments::GetDebarments(
1635 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1636 is( scalar(@$debarments), 1 );
1638 # FIXME Is it right? I'd have expected 5 * 2 - 1 instead
1639 # Same for the others
1640 my $expected_expiration = output_pref(
1642 dt => dt_from_string->add( days => ( 5 - 1 ) * 2 ),
1643 dateformat => 'sql',
1644 dateonly => 1
1647 is( $debarments->[0]->{expiration}, $expected_expiration );
1649 AddReturn( $item_2->{barcode}, $library->{branchcode},
1650 undef, undef, dt_from_string );
1651 $debarments = Koha::Patron::Debarments::GetDebarments(
1652 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1653 is( scalar(@$debarments), 1 );
1654 $expected_expiration = output_pref(
1656 dt => dt_from_string->add( days => ( 10 - 1 ) * 2 ),
1657 dateformat => 'sql',
1658 dateonly => 1
1661 is( $debarments->[0]->{expiration}, $expected_expiration );
1663 Koha::Patron::Debarments::DelUniqueDebarment(
1664 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1666 t::lib::Mocks::mock_preference( 'CumulativeRestrictionPeriods', '1' );
1667 AddIssue( $patron, $item_1->{barcode}, $five_days_ago ); # Add an overdue
1668 AddIssue( $patron, $item_2->{barcode}, $ten_days_ago )
1669 ; # Add another overdue
1670 AddReturn( $item_1->{barcode}, $library->{branchcode},
1671 undef, undef, dt_from_string );
1672 $debarments = Koha::Patron::Debarments::GetDebarments(
1673 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1674 is( scalar(@$debarments), 1 );
1675 $expected_expiration = output_pref(
1677 dt => dt_from_string->add( days => ( 5 - 1 ) * 2 ),
1678 dateformat => 'sql',
1679 dateonly => 1
1682 is( $debarments->[0]->{expiration}, $expected_expiration );
1684 AddReturn( $item_2->{barcode}, $library->{branchcode},
1685 undef, undef, dt_from_string );
1686 $debarments = Koha::Patron::Debarments::GetDebarments(
1687 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1688 is( scalar(@$debarments), 1 );
1689 $expected_expiration = output_pref(
1691 dt => dt_from_string->add( days => ( 5 - 1 ) * 2 + ( 10 - 1 ) * 2 ),
1692 dateformat => 'sql',
1693 dateonly => 1
1696 is( $debarments->[0]->{expiration}, $expected_expiration );
1699 subtest 'AddReturn | is_overdue' => sub {
1700 plan tests => 5;
1702 t::lib::Mocks::mock_preference('CalculateFinesOnReturn', 1);
1703 t::lib::Mocks::mock_preference('finesMode', 'production');
1704 t::lib::Mocks::mock_preference('MaxFine', '100');
1706 my $library = $builder->build( { source => 'Branch' } );
1707 my $patron = $builder->build( { source => 'Borrower' } );
1709 my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1710 my $item = $builder->build(
1712 source => 'Item',
1713 value => {
1714 homebranch => $library->{branchcode},
1715 holdingbranch => $library->{branchcode},
1716 notforloan => 0,
1717 itemlost => 0,
1718 withdrawn => 0,
1719 biblionumber => $biblioitem->{biblionumber},
1724 Koha::IssuingRules->search->delete;
1725 my $rule = Koha::IssuingRule->new(
1727 categorycode => '*',
1728 itemtype => '*',
1729 branchcode => '*',
1730 maxissueqty => 99,
1731 issuelength => 6,
1732 lengthunit => 'days',
1733 fine => 1, # Charge 1 every day of overdue
1734 chargeperiod => 1,
1737 $rule->store();
1739 my $one_day_ago = dt_from_string->subtract( days => 1 );
1740 my $five_days_ago = dt_from_string->subtract( days => 5 );
1741 my $ten_days_ago = dt_from_string->subtract( days => 10 );
1742 $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1744 # No date specify, today will be used
1745 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
1746 AddReturn( $item->{barcode}, $library->{branchcode} );
1747 is( int($patron->account->balance()), 10, 'Patron should have a charge of 10 (10 days x 1)' );
1748 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1750 # specify return date 5 days before => no overdue
1751 AddIssue( $patron->unblessed, $item->{barcode}, $five_days_ago ); # date due was 5d ago
1752 AddReturn( $item->{barcode}, $library->{branchcode}, undef, undef, $ten_days_ago );
1753 is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
1754 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1756 # specify return date 5 days later => overdue
1757 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
1758 AddReturn( $item->{barcode}, $library->{branchcode}, undef, undef, $five_days_ago );
1759 is( int($patron->account->balance()), 5, 'AddReturn: pass return_date => overdue' );
1760 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1762 # specify dropbox date 5 days before => no overdue
1763 AddIssue( $patron->unblessed, $item->{barcode}, $five_days_ago ); # date due was 5d ago
1764 AddReturn( $item->{barcode}, $library->{branchcode}, undef, 1, undef, $ten_days_ago );
1765 is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
1766 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1768 # specify dropbox date 5 days later => overdue, or... not
1769 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
1770 AddReturn( $item->{barcode}, $library->{branchcode}, undef, 1, undef, $five_days_ago );
1771 is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue in dropbox mode' ); # FIXME? This is weird, the FU fine is created ( _CalculateAndUpdateFine > C4::Overdues::UpdateFine ) then remove later (in _FixOverduesOnReturn). Looks like it is a feature
1772 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1776 subtest 'Set waiting flag' => sub {
1777 plan tests => 4;
1779 my $library_1 = $builder->build( { source => 'Branch' } );
1780 my $patron_1 = $builder->build( { source => 'Borrower', value => { branchcode => $library_1->{branchcode} } } );
1781 my $library_2 = $builder->build( { source => 'Branch' } );
1782 my $patron_2 = $builder->build( { source => 'Borrower', value => { branchcode => $library_2->{branchcode} } } );
1784 my $biblio = $builder->build( { source => 'Biblio' } );
1785 my $biblioitem = $builder->build( { source => 'Biblioitem', value => { biblionumber => $biblio->{biblionumber} } } );
1786 my $item = $builder->build(
1788 source => 'Item',
1789 value => {
1790 homebranch => $library_1->{branchcode},
1791 holdingbranch => $library_1->{branchcode},
1792 notforloan => 0,
1793 itemlost => 0,
1794 withdrawn => 0,
1795 biblionumber => $biblioitem->{biblionumber},
1802 set_userenv( $library_2 );
1803 my $reserve_id = AddReserve(
1804 $library_2->{branchcode}, $patron_2->{borrowernumber}, $biblioitem->{biblionumber},
1805 '', 1, undef, undef, '', undef, $item->{itemnumber},
1808 set_userenv( $library_1 );
1809 my $do_transfer = 1;
1810 my ( $res, $rr ) = AddReturn( $item->{barcode}, $library_1->{branchcode} );
1811 ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
1812 my $hold = Koha::Holds->find( $reserve_id );
1813 is( $hold->found, 'T', 'Hold is in transit' );
1815 my ( $status ) = CheckReserves($item->{itemnumber});
1816 is( $status, 'Reserved', 'Hold is not waiting yet');
1818 set_userenv( $library_2 );
1819 $do_transfer = 0;
1820 AddReturn( $item->{barcode}, $library_2->{branchcode} );
1821 ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
1822 $hold = Koha::Holds->find( $reserve_id );
1823 is( $hold->found, 'W', 'Hold is waiting' );
1824 ( $status ) = CheckReserves($item->{itemnumber});
1825 is( $status, 'Waiting', 'Now the hold is waiting');
1828 sub set_userenv {
1829 my ( $library ) = @_;
1830 C4::Context->set_userenv(0,0,0,'firstname','surname', $library->{branchcode}, $library->{branchname}, '', '', '');