Bug 25531: Add tests
[koha.git] / t / db_dependent / Circulation.t
blobe9f28b55d99a2a57f63805e1189a7394d159aa53
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;
19 use utf8;
21 use Test::More tests => 48;
22 use Test::MockModule;
23 use Test::Deep qw( cmp_deeply );
25 use Data::Dumper;
26 use DateTime;
27 use Time::Fake;
28 use POSIX qw( floor );
29 use t::lib::Mocks;
30 use t::lib::TestBuilder;
32 use C4::Accounts;
33 use C4::Calendar;
34 use C4::Circulation;
35 use C4::Biblio;
36 use C4::Items;
37 use C4::Log;
38 use C4::Reserves;
39 use C4::Overdues qw(UpdateFine CalcFine);
40 use Koha::DateUtils;
41 use Koha::Database;
42 use Koha::Items;
43 use Koha::Item::Transfers;
44 use Koha::Checkouts;
45 use Koha::Patrons;
46 use Koha::Holds;
47 use Koha::CirculationRules;
48 use Koha::Subscriptions;
49 use Koha::Account::Lines;
50 use Koha::Account::Offsets;
51 use Koha::ActionLogs;
53 sub set_userenv {
54 my ( $library ) = @_;
55 t::lib::Mocks::mock_userenv({ branchcode => $library->{branchcode} });
58 sub str {
59 my ( $error, $question, $alert ) = @_;
60 my $s;
61 $s = %$error ? ' (error: ' . join( ' ', keys %$error ) . ')' : '';
62 $s .= %$question ? ' (question: ' . join( ' ', keys %$question ) . ')' : '';
63 $s .= %$alert ? ' (alert: ' . join( ' ', keys %$alert ) . ')' : '';
64 return $s;
67 sub test_debarment_on_checkout {
68 my ($params) = @_;
69 my $item = $params->{item};
70 my $library = $params->{library};
71 my $patron = $params->{patron};
72 my $due_date = $params->{due_date} || dt_from_string;
73 my $return_date = $params->{return_date} || dt_from_string;
74 my $expected_expiration_date = $params->{expiration_date};
76 $expected_expiration_date = output_pref(
78 dt => $expected_expiration_date,
79 dateformat => 'sql',
80 dateonly => 1,
83 my @caller = caller;
84 my $line_number = $caller[2];
85 AddIssue( $patron, $item->{barcode}, $due_date );
87 my ( undef, $message ) = AddReturn( $item->{barcode}, $library->{branchcode}, undef, $return_date );
88 is( $message->{WasReturned} && exists $message->{Debarred}, 1, 'AddReturn must have debarred the patron' )
89 or diag('AddReturn returned message ' . Dumper $message );
90 my $debarments = Koha::Patron::Debarments::GetDebarments(
91 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
92 is( scalar(@$debarments), 1, 'Test at line ' . $line_number );
94 is( $debarments->[0]->{expiration},
95 $expected_expiration_date, 'Test at line ' . $line_number );
96 Koha::Patron::Debarments::DelUniqueDebarment(
97 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
100 my $schema = Koha::Database->schema;
101 $schema->storage->txn_begin;
102 my $builder = t::lib::TestBuilder->new;
103 my $dbh = C4::Context->dbh;
105 # Prevent random failures by mocking ->now
106 my $now_value = dt_from_string;
107 my $mocked_datetime = Test::MockModule->new('DateTime');
108 $mocked_datetime->mock( 'now', sub { return $now_value->clone; } );
110 my $cache = Koha::Caches->get_instance();
111 $dbh->do(q|DELETE FROM special_holidays|);
112 $dbh->do(q|DELETE FROM repeatable_holidays|);
113 $cache->clear_from_cache('single_holidays');
115 # Start with a clean slate
116 $dbh->do('DELETE FROM issues');
117 $dbh->do('DELETE FROM borrowers');
119 my $library = $builder->build({
120 source => 'Branch',
122 my $library2 = $builder->build({
123 source => 'Branch',
125 my $itemtype = $builder->build(
127 source => 'Itemtype',
128 value => {
129 notforloan => undef,
130 rentalcharge => 0,
131 rentalcharge_daily => 0,
132 defaultreplacecost => undef,
133 processfee => undef
136 )->{itemtype};
137 my $patron_category = $builder->build(
139 source => 'Category',
140 value => {
141 category_type => 'P',
142 enrolmentfee => 0,
143 BlockExpiredPatronOpacActions => -1, # Pick the pref value
148 my $CircControl = C4::Context->preference('CircControl');
149 my $HomeOrHoldingBranch = C4::Context->preference('HomeOrHoldingBranch');
151 my $item = {
152 homebranch => $library2->{branchcode},
153 holdingbranch => $library2->{branchcode}
156 my $borrower = {
157 branchcode => $library2->{branchcode}
160 t::lib::Mocks::mock_preference('AutoReturnCheckedOutItems', 0);
162 # No userenv, PickupLibrary
163 t::lib::Mocks::mock_preference('IndependentBranches', '0');
164 t::lib::Mocks::mock_preference('CircControl', 'PickupLibrary');
166 C4::Context->preference('CircControl'),
167 'PickupLibrary',
168 'CircControl changed to PickupLibrary'
171 C4::Circulation::_GetCircControlBranch($item, $borrower),
172 $item->{$HomeOrHoldingBranch},
173 '_GetCircControlBranch returned item branch (no userenv defined)'
176 # No userenv, PatronLibrary
177 t::lib::Mocks::mock_preference('CircControl', 'PatronLibrary');
179 C4::Context->preference('CircControl'),
180 'PatronLibrary',
181 'CircControl changed to PatronLibrary'
184 C4::Circulation::_GetCircControlBranch($item, $borrower),
185 $borrower->{branchcode},
186 '_GetCircControlBranch returned borrower branch'
189 # No userenv, ItemHomeLibrary
190 t::lib::Mocks::mock_preference('CircControl', 'ItemHomeLibrary');
192 C4::Context->preference('CircControl'),
193 'ItemHomeLibrary',
194 'CircControl changed to ItemHomeLibrary'
197 $item->{$HomeOrHoldingBranch},
198 C4::Circulation::_GetCircControlBranch($item, $borrower),
199 '_GetCircControlBranch returned item branch'
202 # Now, set a userenv
203 t::lib::Mocks::mock_userenv({ branchcode => $library2->{branchcode} });
204 is(C4::Context->userenv->{branch}, $library2->{branchcode}, 'userenv set');
206 # Userenv set, PickupLibrary
207 t::lib::Mocks::mock_preference('CircControl', 'PickupLibrary');
209 C4::Context->preference('CircControl'),
210 'PickupLibrary',
211 'CircControl changed to PickupLibrary'
214 C4::Circulation::_GetCircControlBranch($item, $borrower),
215 $library2->{branchcode},
216 '_GetCircControlBranch returned current branch'
219 # Userenv set, PatronLibrary
220 t::lib::Mocks::mock_preference('CircControl', 'PatronLibrary');
222 C4::Context->preference('CircControl'),
223 'PatronLibrary',
224 'CircControl changed to PatronLibrary'
227 C4::Circulation::_GetCircControlBranch($item, $borrower),
228 $borrower->{branchcode},
229 '_GetCircControlBranch returned borrower branch'
232 # Userenv set, ItemHomeLibrary
233 t::lib::Mocks::mock_preference('CircControl', 'ItemHomeLibrary');
235 C4::Context->preference('CircControl'),
236 'ItemHomeLibrary',
237 'CircControl changed to ItemHomeLibrary'
240 C4::Circulation::_GetCircControlBranch($item, $borrower),
241 $item->{$HomeOrHoldingBranch},
242 '_GetCircControlBranch returned item branch'
245 # Reset initial configuration
246 t::lib::Mocks::mock_preference('CircControl', $CircControl);
248 C4::Context->preference('CircControl'),
249 $CircControl,
250 'CircControl reset to its initial value'
253 # Set a simple circ policy
254 $dbh->do('DELETE FROM circulation_rules');
255 Koha::CirculationRules->set_rules(
257 categorycode => undef,
258 branchcode => undef,
259 itemtype => undef,
260 rules => {
261 reservesallowed => 25,
262 issuelength => 14,
263 lengthunit => 'days',
264 renewalsallowed => 1,
265 renewalperiod => 7,
266 norenewalbefore => undef,
267 auto_renew => 0,
268 fine => .10,
269 chargeperiod => 1,
274 my ( $reused_itemnumber_1, $reused_itemnumber_2 );
275 subtest "CanBookBeRenewed tests" => sub {
276 plan tests => 83;
278 C4::Context->set_preference('ItemsDeniedRenewal','');
279 # Generate test biblio
280 my $biblio = $builder->build_sample_biblio();
282 my $branch = $library2->{branchcode};
284 my $item_1 = $builder->build_sample_item(
286 biblionumber => $biblio->biblionumber,
287 library => $branch,
288 replacementprice => 12.00,
289 itype => $itemtype
292 $reused_itemnumber_1 = $item_1->itemnumber;
294 my $item_2 = $builder->build_sample_item(
296 biblionumber => $biblio->biblionumber,
297 library => $branch,
298 replacementprice => 23.00,
299 itype => $itemtype
302 $reused_itemnumber_2 = $item_2->itemnumber;
304 my $item_3 = $builder->build_sample_item(
306 biblionumber => $biblio->biblionumber,
307 library => $branch,
308 replacementprice => 23.00,
309 itype => $itemtype
313 # Create borrowers
314 my %renewing_borrower_data = (
315 firstname => 'John',
316 surname => 'Renewal',
317 categorycode => $patron_category->{categorycode},
318 branchcode => $branch,
321 my %reserving_borrower_data = (
322 firstname => 'Katrin',
323 surname => 'Reservation',
324 categorycode => $patron_category->{categorycode},
325 branchcode => $branch,
328 my %hold_waiting_borrower_data = (
329 firstname => 'Kyle',
330 surname => 'Reservation',
331 categorycode => $patron_category->{categorycode},
332 branchcode => $branch,
335 my %restricted_borrower_data = (
336 firstname => 'Alice',
337 surname => 'Reservation',
338 categorycode => $patron_category->{categorycode},
339 debarred => '3228-01-01',
340 branchcode => $branch,
343 my %expired_borrower_data = (
344 firstname => 'Ça',
345 surname => 'Glisse',
346 categorycode => $patron_category->{categorycode},
347 branchcode => $branch,
348 dateexpiry => dt_from_string->subtract( months => 1 ),
351 my $renewing_borrowernumber = Koha::Patron->new(\%renewing_borrower_data)->store->borrowernumber;
352 my $reserving_borrowernumber = Koha::Patron->new(\%reserving_borrower_data)->store->borrowernumber;
353 my $hold_waiting_borrowernumber = Koha::Patron->new(\%hold_waiting_borrower_data)->store->borrowernumber;
354 my $restricted_borrowernumber = Koha::Patron->new(\%restricted_borrower_data)->store->borrowernumber;
355 my $expired_borrowernumber = Koha::Patron->new(\%expired_borrower_data)->store->borrowernumber;
357 my $renewing_borrower_obj = Koha::Patrons->find( $renewing_borrowernumber );
358 my $renewing_borrower = $renewing_borrower_obj->unblessed;
359 my $restricted_borrower = Koha::Patrons->find( $restricted_borrowernumber )->unblessed;
360 my $expired_borrower = Koha::Patrons->find( $expired_borrowernumber )->unblessed;
362 my $bibitems = '';
363 my $priority = '1';
364 my $resdate = undef;
365 my $expdate = undef;
366 my $notes = '';
367 my $checkitem = undef;
368 my $found = undef;
370 my $issue = AddIssue( $renewing_borrower, $item_1->barcode);
371 my $datedue = dt_from_string( $issue->date_due() );
372 is (defined $issue->date_due(), 1, "Item 1 checked out, due date: " . $issue->date_due() );
374 my $issue2 = AddIssue( $renewing_borrower, $item_2->barcode);
375 $datedue = dt_from_string( $issue->date_due() );
376 is (defined $issue2, 1, "Item 2 checked out, due date: " . $issue2->date_due());
379 my $borrowing_borrowernumber = Koha::Checkouts->find( { itemnumber => $item_1->itemnumber } )->borrowernumber;
380 is ($borrowing_borrowernumber, $renewing_borrowernumber, "Item checked out to $renewing_borrower->{firstname} $renewing_borrower->{surname}");
382 my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
383 is( $renewokay, 1, 'Can renew, no holds for this title or item');
386 # Biblio-level hold, renewal test
387 AddReserve(
389 branchcode => $branch,
390 borrowernumber => $reserving_borrowernumber,
391 biblionumber => $biblio->biblionumber,
392 priority => $priority,
393 reservation_date => $resdate,
394 expiration_date => $expdate,
395 notes => $notes,
396 itemnumber => $checkitem,
397 found => $found,
401 # Testing of feature to allow the renewal of reserved items if other items on the record can fill all needed holds
402 Koha::CirculationRules->set_rule(
404 categorycode => undef,
405 branchcode => undef,
406 itemtype => undef,
407 rule_name => 'onshelfholds',
408 rule_value => '1',
411 t::lib::Mocks::mock_preference('AllowRenewalIfOtherItemsAvailable', 1 );
412 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
413 is( $renewokay, 1, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
414 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
415 is( $renewokay, 1, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
417 # Now let's add an item level hold, we should no longer be able to renew the item
418 my $hold = Koha::Database->new()->schema()->resultset('Reserve')->create(
420 borrowernumber => $hold_waiting_borrowernumber,
421 biblionumber => $biblio->biblionumber,
422 itemnumber => $item_1->itemnumber,
423 branchcode => $branch,
424 priority => 3,
427 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
428 is( $renewokay, 0, 'Bug 13919 - Renewal possible with item level hold on item');
429 $hold->delete();
431 # 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
432 # be able to renew these items
433 $hold = Koha::Database->new()->schema()->resultset('Reserve')->create(
435 borrowernumber => $hold_waiting_borrowernumber,
436 biblionumber => $biblio->biblionumber,
437 itemnumber => $item_3->itemnumber,
438 branchcode => $branch,
439 priority => 0,
440 found => 'W'
443 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
444 is( $renewokay, 0, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
445 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
446 is( $renewokay, 0, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
447 t::lib::Mocks::mock_preference('AllowRenewalIfOtherItemsAvailable', 0 );
449 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
450 is( $renewokay, 0, '(Bug 10663) Cannot renew, reserved');
451 is( $error, 'on_reserve', '(Bug 10663) Cannot renew, reserved (returned error is on_reserve)');
453 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
454 is( $renewokay, 0, '(Bug 10663) Cannot renew, reserved');
455 is( $error, 'on_reserve', '(Bug 10663) Cannot renew, reserved (returned error is on_reserve)');
457 my $reserveid = Koha::Holds->search({ biblionumber => $biblio->biblionumber, borrowernumber => $reserving_borrowernumber })->next->reserve_id;
458 my $reserving_borrower = Koha::Patrons->find( $reserving_borrowernumber )->unblessed;
459 AddIssue($reserving_borrower, $item_3->barcode);
460 my $reserve = $dbh->selectrow_hashref(
461 'SELECT * FROM old_reserves WHERE reserve_id = ?',
462 { Slice => {} },
463 $reserveid
465 is($reserve->{found}, 'F', 'hold marked completed when checking out item that fills it');
467 # Item-level hold, renewal test
468 AddReserve(
470 branchcode => $branch,
471 borrowernumber => $reserving_borrowernumber,
472 biblionumber => $biblio->biblionumber,
473 priority => $priority,
474 reservation_date => $resdate,
475 expiration_date => $expdate,
476 notes => $notes,
477 itemnumber => $item_1->itemnumber,
478 found => $found,
482 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
483 is( $renewokay, 0, '(Bug 10663) Cannot renew, item reserved');
484 is( $error, 'on_reserve', '(Bug 10663) Cannot renew, item reserved (returned error is on_reserve)');
486 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber, 1);
487 is( $renewokay, 1, 'Can renew item 2, item-level hold is on item 1');
489 # Items can't fill hold for reasons
490 $item_1->notforloan(1)->store;
491 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
492 is( $renewokay, 1, 'Can renew, item is marked not for loan, hold does not block');
493 $item_1->set({notforloan => 0, itype => $itemtype })->store;
495 # FIXME: Add more for itemtype not for loan etc.
497 # Restricted users cannot renew when RestrictionBlockRenewing is enabled
498 my $item_5 = $builder->build_sample_item(
500 biblionumber => $biblio->biblionumber,
501 library => $branch,
502 replacementprice => 23.00,
503 itype => $itemtype,
506 my $datedue5 = AddIssue($restricted_borrower, $item_5->barcode);
507 is (defined $datedue5, 1, "Item with date due checked out, due date: $datedue5");
509 t::lib::Mocks::mock_preference('RestrictionBlockRenewing','1');
510 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
511 is( $renewokay, 1, '(Bug 8236), Can renew, user is not restricted');
512 ( $renewokay, $error ) = CanBookBeRenewed($restricted_borrowernumber, $item_5->itemnumber);
513 is( $renewokay, 0, '(Bug 8236), Cannot renew, user is restricted');
515 # Users cannot renew an overdue item
516 my $item_6 = $builder->build_sample_item(
518 biblionumber => $biblio->biblionumber,
519 library => $branch,
520 replacementprice => 23.00,
521 itype => $itemtype,
525 my $item_7 = $builder->build_sample_item(
527 biblionumber => $biblio->biblionumber,
528 library => $branch,
529 replacementprice => 23.00,
530 itype => $itemtype,
534 my $datedue6 = AddIssue( $renewing_borrower, $item_6->barcode);
535 is (defined $datedue6, 1, "Item 2 checked out, due date: ".$datedue6->date_due);
537 my $now = dt_from_string();
538 my $five_weeks = DateTime::Duration->new(weeks => 5);
539 my $five_weeks_ago = $now - $five_weeks;
540 t::lib::Mocks::mock_preference('finesMode', 'production');
542 my $passeddatedue1 = AddIssue($renewing_borrower, $item_7->barcode, $five_weeks_ago);
543 is (defined $passeddatedue1, 1, "Item with passed date due checked out, due date: " . $passeddatedue1->date_due);
545 my ( $fine ) = CalcFine( $item_7->unblessed, $renewing_borrower->{categorycode}, $branch, $five_weeks_ago, $now );
546 C4::Overdues::UpdateFine(
548 issue_id => $passeddatedue1->id(),
549 itemnumber => $item_7->itemnumber,
550 borrowernumber => $renewing_borrower->{borrowernumber},
551 amount => $fine,
552 due => Koha::DateUtils::output_pref($five_weeks_ago)
556 t::lib::Mocks::mock_preference('RenewalLog', 0);
557 my $date = output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } );
558 my %params_renewal = (
559 timestamp => { -like => $date . "%" },
560 module => "CIRCULATION",
561 action => "RENEWAL",
563 my %params_issue = (
564 timestamp => { -like => $date . "%" },
565 module => "CIRCULATION",
566 action => "ISSUE"
568 my $old_log_size = Koha::ActionLogs->count( \%params_renewal );
569 my $dt = dt_from_string();
570 Time::Fake->offset( $dt->epoch );
571 my $datedue1 = AddRenewal( $renewing_borrower->{borrowernumber}, $item_7->itemnumber, $branch );
572 my $new_log_size = Koha::ActionLogs->count( \%params_renewal );
573 is ($new_log_size, $old_log_size, 'renew log not added because of the syspref RenewalLog');
574 isnt (DateTime->compare($datedue1, $dt), 0, "AddRenewal returned a good duedate");
575 Time::Fake->reset;
577 t::lib::Mocks::mock_preference('RenewalLog', 1);
578 $date = output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } );
579 $old_log_size = Koha::ActionLogs->count( \%params_renewal );
580 AddRenewal( $renewing_borrower->{borrowernumber}, $item_7->itemnumber, $branch );
581 $new_log_size = Koha::ActionLogs->count( \%params_renewal );
582 is ($new_log_size, $old_log_size + 1, 'renew log successfully added');
584 my $fines = Koha::Account::Lines->search( { borrowernumber => $renewing_borrower->{borrowernumber}, itemnumber => $item_7->itemnumber } );
585 is( $fines->count, 2, 'AddRenewal left both fines' );
586 isnt( $fines->next->status, 'UNRETURNED', 'Fine on renewed item is closed out properly' );
587 isnt( $fines->next->status, 'UNRETURNED', 'Fine on renewed item is closed out properly' );
588 $fines->delete();
591 my $old_issue_log_size = Koha::ActionLogs->count( \%params_issue );
592 my $old_renew_log_size = Koha::ActionLogs->count( \%params_renewal );
593 AddIssue( $renewing_borrower,$item_7->barcode,Koha::DateUtils::output_pref({str=>$datedue6->date_due, dateformat =>'iso'}),0,$date, 0, undef );
594 $new_log_size = Koha::ActionLogs->count( \%params_renewal );
595 is ($new_log_size, $old_renew_log_size + 1, 'renew log successfully added when renewed via issuing');
596 $new_log_size = Koha::ActionLogs->count( \%params_issue );
597 is ($new_log_size, $old_issue_log_size, 'renew not logged as issue when renewed via issuing');
599 $fines = Koha::Account::Lines->search( { borrowernumber => $renewing_borrower->{borrowernumber}, itemnumber => $item_7->itemnumber } );
600 $fines->delete();
602 t::lib::Mocks::mock_preference('OverduesBlockRenewing','blockitem');
603 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_6->itemnumber);
604 is( $renewokay, 1, '(Bug 8236), Can renew, this item is not overdue');
605 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_7->itemnumber);
606 is( $renewokay, 0, '(Bug 8236), Cannot renew, this item is overdue');
609 $hold = Koha::Holds->search({ biblionumber => $biblio->biblionumber, borrowernumber => $reserving_borrowernumber })->next;
610 $hold->cancel;
612 # Bug 14101
613 # Test automatic renewal before value for "norenewalbefore" in policy is set
614 # In this case automatic renewal is not permitted prior to due date
615 my $item_4 = $builder->build_sample_item(
617 biblionumber => $biblio->biblionumber,
618 library => $branch,
619 replacementprice => 16.00,
620 itype => $itemtype,
624 $issue = AddIssue( $renewing_borrower, $item_4->barcode, undef, undef, undef, undef, { auto_renew => 1 } );
625 ( $renewokay, $error ) =
626 CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
627 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
628 is( $error, 'auto_too_soon',
629 'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = undef (returned code is auto_too_soon)' );
630 AddReserve(
632 branchcode => $branch,
633 borrowernumber => $reserving_borrowernumber,
634 biblionumber => $biblio->biblionumber,
635 itemnumber => $bibitems,
636 priority => $priority,
637 reservation_date => $resdate,
638 expiration_date => $expdate,
639 notes => $notes,
640 title => 'a title',
641 itemnumber => $item_4->itemnumber,
642 found => $found
645 ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
646 is( $renewokay, 0, 'Still should not be able to renew' );
647 is( $error, 'auto_too_soon', 'returned code is auto_too_soon, reserve not checked' );
648 ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber, 1 );
649 is( $renewokay, 0, 'Still should not be able to renew' );
650 is( $error, 'on_reserve', 'returned code is on_reserve, auto_too_soon limit is overridden' );
651 $dbh->do('UPDATE circulation_rules SET rule_value = 0 where rule_name = "norenewalbefore"');
652 ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber, 1 );
653 is( $renewokay, 0, 'Still should not be able to renew' );
654 is( $error, 'on_reserve', 'returned code is on_reserve, auto_renew only happens if not on reserve' );
655 ModReserveCancelAll($item_4->itemnumber, $reserving_borrowernumber);
659 $renewing_borrower_obj->autorenew_checkouts(0)->store;
660 ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
661 is( $renewokay, 1, 'No renewal before is undef, but patron opted out of auto_renewal' );
662 $renewing_borrower_obj->autorenew_checkouts(1)->store;
665 # Bug 7413
666 # Test premature manual renewal
667 Koha::CirculationRules->set_rule(
669 categorycode => undef,
670 branchcode => undef,
671 itemtype => undef,
672 rule_name => 'norenewalbefore',
673 rule_value => '7',
677 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
678 is( $renewokay, 0, 'Bug 7413: Cannot renew, renewal is premature');
679 is( $error, 'too_soon', 'Bug 7413: Cannot renew, renewal is premature (returned code is too_soon)');
681 # Bug 14395
682 # Test 'exact time' setting for syspref NoRenewalBeforePrecision
683 t::lib::Mocks::mock_preference( 'NoRenewalBeforePrecision', 'exact_time' );
685 GetSoonestRenewDate( $renewing_borrowernumber, $item_1->itemnumber ),
686 $datedue->clone->add( days => -7 ),
687 'Bug 14395: Renewals permitted 7 days before due date, as expected'
690 # Bug 14395
691 # Test 'date' setting for syspref NoRenewalBeforePrecision
692 t::lib::Mocks::mock_preference( 'NoRenewalBeforePrecision', 'date' );
694 GetSoonestRenewDate( $renewing_borrowernumber, $item_1->itemnumber ),
695 $datedue->clone->add( days => -7 )->truncate( to => 'day' ),
696 'Bug 14395: Renewals permitted 7 days before due date, as expected'
699 # Bug 14101
700 # Test premature automatic renewal
701 ( $renewokay, $error ) =
702 CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
703 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
704 is( $error, 'auto_too_soon',
705 'Bug 14101: Cannot renew, renewal is automatic and premature (returned code is auto_too_soon)'
708 $renewing_borrower_obj->autorenew_checkouts(0)->store;
709 ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
710 is( $renewokay, 0, 'No renewal before is 7, patron opted out of auto_renewal still cannot renew early' );
711 is( $error, 'too_soon', 'Error is too_soon, no auto' );
712 $renewing_borrower_obj->autorenew_checkouts(1)->store;
714 # Change policy so that loans can only be renewed exactly on due date (0 days prior to due date)
715 # and test automatic renewal again
716 $dbh->do(q{UPDATE circulation_rules SET rule_value = '0' WHERE rule_name = 'norenewalbefore'});
717 ( $renewokay, $error ) =
718 CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
719 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
720 is( $error, 'auto_too_soon',
721 'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = 0 (returned code is auto_too_soon)'
724 $renewing_borrower_obj->autorenew_checkouts(0)->store;
725 ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
726 is( $renewokay, 0, 'No renewal before is 0, patron opted out of auto_renewal still cannot renew early' );
727 is( $error, 'too_soon', 'Error is too_soon, no auto' );
728 $renewing_borrower_obj->autorenew_checkouts(1)->store;
730 # Change policy so that loans can be renewed 99 days prior to the due date
731 # and test automatic renewal again
732 $dbh->do(q{UPDATE circulation_rules SET rule_value = '99' WHERE rule_name = 'norenewalbefore'});
733 ( $renewokay, $error ) =
734 CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
735 is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic' );
736 is( $error, 'auto_renew',
737 'Bug 14101: Cannot renew, renewal is automatic (returned code is auto_renew)'
740 $renewing_borrower_obj->autorenew_checkouts(0)->store;
741 ( $renewokay, $error ) = CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
742 is( $renewokay, 1, 'No renewal before is 99, patron opted out of auto_renewal so can renew' );
743 $renewing_borrower_obj->autorenew_checkouts(1)->store;
745 subtest "too_late_renewal / no_auto_renewal_after" => sub {
746 plan tests => 14;
747 my $item_to_auto_renew = $builder->build(
748 { source => 'Item',
749 value => {
750 biblionumber => $biblio->biblionumber,
751 homebranch => $branch,
752 holdingbranch => $branch,
757 my $ten_days_before = dt_from_string->add( days => -10 );
758 my $ten_days_ahead = dt_from_string->add( days => 10 );
759 AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
761 Koha::CirculationRules->set_rules(
763 categorycode => undef,
764 branchcode => undef,
765 itemtype => undef,
766 rules => {
767 norenewalbefore => '7',
768 no_auto_renewal_after => '9',
772 ( $renewokay, $error ) =
773 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
774 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
775 is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
777 Koha::CirculationRules->set_rules(
779 categorycode => undef,
780 branchcode => undef,
781 itemtype => undef,
782 rules => {
783 norenewalbefore => '7',
784 no_auto_renewal_after => '10',
788 ( $renewokay, $error ) =
789 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
790 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
791 is( $error, 'auto_too_late', 'Cannot auto renew, too late - no_auto_renewal_after is inclusive(returned code is auto_too_late)' );
793 Koha::CirculationRules->set_rules(
795 categorycode => undef,
796 branchcode => undef,
797 itemtype => undef,
798 rules => {
799 norenewalbefore => '7',
800 no_auto_renewal_after => '11',
804 ( $renewokay, $error ) =
805 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
806 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
807 is( $error, 'auto_too_soon', 'Cannot auto renew, too soon - no_auto_renewal_after is defined(returned code is auto_too_soon)' );
809 Koha::CirculationRules->set_rules(
811 categorycode => undef,
812 branchcode => undef,
813 itemtype => undef,
814 rules => {
815 norenewalbefore => '10',
816 no_auto_renewal_after => '11',
820 ( $renewokay, $error ) =
821 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
822 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
823 is( $error, 'auto_renew', 'Cannot renew, renew is automatic' );
825 Koha::CirculationRules->set_rules(
827 categorycode => undef,
828 branchcode => undef,
829 itemtype => undef,
830 rules => {
831 norenewalbefore => '10',
832 no_auto_renewal_after => undef,
833 no_auto_renewal_after_hard_limit => dt_from_string->add( days => -1 ),
837 ( $renewokay, $error ) =
838 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
839 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
840 is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
842 Koha::CirculationRules->set_rules(
844 categorycode => undef,
845 branchcode => undef,
846 itemtype => undef,
847 rules => {
848 norenewalbefore => '7',
849 no_auto_renewal_after => '15',
850 no_auto_renewal_after_hard_limit => dt_from_string->add( days => -1 ),
854 ( $renewokay, $error ) =
855 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
856 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
857 is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
859 Koha::CirculationRules->set_rules(
861 categorycode => undef,
862 branchcode => undef,
863 itemtype => undef,
864 rules => {
865 norenewalbefore => '10',
866 no_auto_renewal_after => undef,
867 no_auto_renewal_after_hard_limit => dt_from_string->add( days => 1 ),
871 ( $renewokay, $error ) =
872 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
873 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
874 is( $error, 'auto_renew', 'Cannot renew, renew is automatic' );
877 subtest "auto_too_much_oweing | OPACFineNoRenewalsBlockAutoRenew & OPACFineNoRenewalsIncludeCredit" => sub {
878 plan tests => 10;
879 my $item_to_auto_renew = $builder->build({
880 source => 'Item',
881 value => {
882 biblionumber => $biblio->biblionumber,
883 homebranch => $branch,
884 holdingbranch => $branch,
888 my $ten_days_before = dt_from_string->add( days => -10 );
889 my $ten_days_ahead = dt_from_string->add( days => 10 );
890 AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
892 Koha::CirculationRules->set_rules(
894 categorycode => undef,
895 branchcode => undef,
896 itemtype => undef,
897 rules => {
898 norenewalbefore => '10',
899 no_auto_renewal_after => '11',
903 C4::Context->set_preference('OPACFineNoRenewalsBlockAutoRenew','1');
904 C4::Context->set_preference('OPACFineNoRenewals','10');
905 C4::Context->set_preference('OPACFineNoRenewalsIncludeCredit','1');
906 my $fines_amount = 5;
907 my $account = Koha::Account->new({patron_id => $renewing_borrowernumber});
908 $account->add_debit(
910 amount => $fines_amount,
911 interface => 'test',
912 type => 'OVERDUE',
913 item_id => $item_to_auto_renew->{itemnumber},
914 description => "Some fines"
916 )->status('RETURNED')->store;
917 ( $renewokay, $error ) =
918 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
919 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
920 is( $error, 'auto_renew', 'Can auto renew, OPACFineNoRenewals=10, patron has 5' );
922 $account->add_debit(
924 amount => $fines_amount,
925 interface => 'test',
926 type => 'OVERDUE',
927 item_id => $item_to_auto_renew->{itemnumber},
928 description => "Some fines"
930 )->status('RETURNED')->store;
931 ( $renewokay, $error ) =
932 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
933 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
934 is( $error, 'auto_renew', 'Can auto renew, OPACFineNoRenewals=10, patron has 10' );
936 $account->add_debit(
938 amount => $fines_amount,
939 interface => 'test',
940 type => 'OVERDUE',
941 item_id => $item_to_auto_renew->{itemnumber},
942 description => "Some fines"
944 )->status('RETURNED')->store;
945 ( $renewokay, $error ) =
946 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
947 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
948 is( $error, 'auto_too_much_oweing', 'Cannot auto renew, OPACFineNoRenewals=10, patron has 15' );
950 $account->add_credit(
952 amount => $fines_amount,
953 interface => 'test',
954 type => 'PAYMENT',
955 description => "Some payment"
957 )->store;
958 ( $renewokay, $error ) =
959 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
960 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
961 is( $error, 'auto_renew', 'Can auto renew, OPACFineNoRenewals=10, OPACFineNoRenewalsIncludeCredit=1, patron has 15 debt, 5 credit' );
963 C4::Context->set_preference('OPACFineNoRenewalsIncludeCredit','0');
964 ( $renewokay, $error ) =
965 CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
966 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
967 is( $error, 'auto_too_much_oweing', 'Cannot auto renew, OPACFineNoRenewals=10, OPACFineNoRenewalsIncludeCredit=1, patron has 15 debt, 5 credit' );
969 $dbh->do('DELETE FROM accountlines WHERE borrowernumber=?', undef, $renewing_borrowernumber);
970 C4::Context->set_preference('OPACFineNoRenewalsIncludeCredit','1');
973 subtest "auto_account_expired | BlockExpiredPatronOpacActions" => sub {
974 plan tests => 6;
975 my $item_to_auto_renew = $builder->build({
976 source => 'Item',
977 value => {
978 biblionumber => $biblio->biblionumber,
979 homebranch => $branch,
980 holdingbranch => $branch,
984 Koha::CirculationRules->set_rules(
986 categorycode => undef,
987 branchcode => undef,
988 itemtype => undef,
989 rules => {
990 norenewalbefore => 10,
991 no_auto_renewal_after => 11,
996 my $ten_days_before = dt_from_string->add( days => -10 );
997 my $ten_days_ahead = dt_from_string->add( days => 10 );
999 # Patron is expired and BlockExpiredPatronOpacActions=0
1000 # => auto renew is allowed
1001 t::lib::Mocks::mock_preference('BlockExpiredPatronOpacActions', 0);
1002 my $patron = $expired_borrower;
1003 my $checkout = AddIssue( $patron, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
1004 ( $renewokay, $error ) =
1005 CanBookBeRenewed( $patron->{borrowernumber}, $item_to_auto_renew->{itemnumber} );
1006 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
1007 is( $error, 'auto_renew', 'Can auto renew, patron is expired but BlockExpiredPatronOpacActions=0' );
1008 Koha::Checkouts->find( $checkout->issue_id )->delete;
1011 # Patron is expired and BlockExpiredPatronOpacActions=1
1012 # => auto renew is not allowed
1013 t::lib::Mocks::mock_preference('BlockExpiredPatronOpacActions', 1);
1014 $patron = $expired_borrower;
1015 $checkout = AddIssue( $patron, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
1016 ( $renewokay, $error ) =
1017 CanBookBeRenewed( $patron->{borrowernumber}, $item_to_auto_renew->{itemnumber} );
1018 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
1019 is( $error, 'auto_account_expired', 'Can not auto renew, lockExpiredPatronOpacActions=1 and patron is expired' );
1020 Koha::Checkouts->find( $checkout->issue_id )->delete;
1023 # Patron is not expired and BlockExpiredPatronOpacActions=1
1024 # => auto renew is allowed
1025 t::lib::Mocks::mock_preference('BlockExpiredPatronOpacActions', 1);
1026 $patron = $renewing_borrower;
1027 $checkout = AddIssue( $patron, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
1028 ( $renewokay, $error ) =
1029 CanBookBeRenewed( $patron->{borrowernumber}, $item_to_auto_renew->{itemnumber} );
1030 is( $renewokay, 0, 'Do not renew, renewal is automatic' );
1031 is( $error, 'auto_renew', 'Can auto renew, BlockExpiredPatronOpacActions=1 but patron is not expired' );
1032 Koha::Checkouts->find( $checkout->issue_id )->delete;
1035 subtest "GetLatestAutoRenewDate" => sub {
1036 plan tests => 5;
1037 my $item_to_auto_renew = $builder->build(
1038 { source => 'Item',
1039 value => {
1040 biblionumber => $biblio->biblionumber,
1041 homebranch => $branch,
1042 holdingbranch => $branch,
1047 my $ten_days_before = dt_from_string->add( days => -10 );
1048 my $ten_days_ahead = dt_from_string->add( days => 10 );
1049 AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
1050 Koha::CirculationRules->set_rules(
1052 categorycode => undef,
1053 branchcode => undef,
1054 itemtype => undef,
1055 rules => {
1056 norenewalbefore => '7',
1057 no_auto_renewal_after => '',
1058 no_auto_renewal_after_hard_limit => undef,
1062 my $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
1063 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' );
1064 my $five_days_before = dt_from_string->add( days => -5 );
1065 Koha::CirculationRules->set_rules(
1067 categorycode => undef,
1068 branchcode => undef,
1069 itemtype => undef,
1070 rules => {
1071 norenewalbefore => '10',
1072 no_auto_renewal_after => '5',
1073 no_auto_renewal_after_hard_limit => undef,
1077 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
1078 is( $latest_auto_renew_date->truncate( to => 'minute' ),
1079 $five_days_before->truncate( to => 'minute' ),
1080 'GetLatestAutoRenewDate should return -5 days if no_auto_renewal_after = 5 and date_due is 10 days before'
1082 my $five_days_ahead = dt_from_string->add( days => 5 );
1083 $dbh->do(q{UPDATE circulation_rules SET rule_value = '10' WHERE rule_name = 'norenewalbefore'});
1084 $dbh->do(q{UPDATE circulation_rules SET rule_value = '15' WHERE rule_name = 'no_auto_renewal_after'});
1085 $dbh->do(q{UPDATE circulation_rules SET rule_value = NULL WHERE rule_name = 'no_auto_renewal_after_hard_limit'});
1086 Koha::CirculationRules->set_rules(
1088 categorycode => undef,
1089 branchcode => undef,
1090 itemtype => undef,
1091 rules => {
1092 norenewalbefore => '10',
1093 no_auto_renewal_after => '15',
1094 no_auto_renewal_after_hard_limit => undef,
1098 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
1099 is( $latest_auto_renew_date->truncate( to => 'minute' ),
1100 $five_days_ahead->truncate( to => 'minute' ),
1101 'GetLatestAutoRenewDate should return +5 days if no_auto_renewal_after = 15 and date_due is 10 days before'
1103 my $two_days_ahead = dt_from_string->add( days => 2 );
1104 Koha::CirculationRules->set_rules(
1106 categorycode => undef,
1107 branchcode => undef,
1108 itemtype => undef,
1109 rules => {
1110 norenewalbefore => '10',
1111 no_auto_renewal_after => '',
1112 no_auto_renewal_after_hard_limit => dt_from_string->add( days => 2 ),
1116 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
1117 is( $latest_auto_renew_date->truncate( to => 'day' ),
1118 $two_days_ahead->truncate( to => 'day' ),
1119 'GetLatestAutoRenewDate should return +2 days if no_auto_renewal_after_hard_limit is defined and not no_auto_renewal_after'
1121 Koha::CirculationRules->set_rules(
1123 categorycode => undef,
1124 branchcode => undef,
1125 itemtype => undef,
1126 rules => {
1127 norenewalbefore => '10',
1128 no_auto_renewal_after => '15',
1129 no_auto_renewal_after_hard_limit => dt_from_string->add( days => 2 ),
1133 $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
1134 is( $latest_auto_renew_date->truncate( to => 'day' ),
1135 $two_days_ahead->truncate( to => 'day' ),
1136 'GetLatestAutoRenewDate should return +2 days if no_auto_renewal_after_hard_limit is < no_auto_renewal_after'
1140 # Too many renewals
1142 # set policy to forbid renewals
1143 Koha::CirculationRules->set_rules(
1145 categorycode => undef,
1146 branchcode => undef,
1147 itemtype => undef,
1148 rules => {
1149 norenewalbefore => undef,
1150 renewalsallowed => 0,
1155 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
1156 is( $renewokay, 0, 'Cannot renew, 0 renewals allowed');
1157 is( $error, 'too_many', 'Cannot renew, 0 renewals allowed (returned code is too_many)');
1159 # Test WhenLostForgiveFine and WhenLostChargeReplacementFee
1160 t::lib::Mocks::mock_preference('WhenLostForgiveFine','1');
1161 t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','1');
1163 C4::Overdues::UpdateFine(
1165 issue_id => $issue->id(),
1166 itemnumber => $item_1->itemnumber,
1167 borrowernumber => $renewing_borrower->{borrowernumber},
1168 amount => 15.00,
1169 type => q{},
1170 due => Koha::DateUtils::output_pref($datedue)
1174 my $line = Koha::Account::Lines->search({ borrowernumber => $renewing_borrower->{borrowernumber} })->next();
1175 is( $line->debit_type_code, 'OVERDUE', 'Account line type is OVERDUE' );
1176 is( $line->status, 'UNRETURNED', 'Account line status is UNRETURNED' );
1177 is( $line->amountoutstanding+0, 15, 'Account line amount outstanding is 15.00' );
1178 is( $line->amount+0, 15, 'Account line amount is 15.00' );
1179 is( $line->issue_id, $issue->id, 'Account line issue id matches' );
1181 my $offset = Koha::Account::Offsets->search({ debit_id => $line->id })->next();
1182 is( $offset->type, 'OVERDUE', 'Account offset type is Fine' );
1183 is( $offset->amount+0, 15, 'Account offset amount is 15.00' );
1185 t::lib::Mocks::mock_preference('WhenLostForgiveFine','0');
1186 t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','0');
1188 LostItem( $item_1->itemnumber, 'test', 1 );
1190 $line = Koha::Account::Lines->find($line->id);
1191 is( $line->debit_type_code, 'OVERDUE', 'Account type remains as OVERDUE' );
1192 isnt( $line->status, 'UNRETURNED', 'Account status correctly changed from UNRETURNED to RETURNED' );
1194 my $item = Koha::Items->find($item_1->itemnumber);
1195 ok( !$item->onloan(), "Lost item marked as returned has false onloan value" );
1196 my $checkout = Koha::Checkouts->find({ itemnumber => $item_1->itemnumber });
1197 is( $checkout, undef, 'LostItem called with forced return has checked in the item' );
1199 my $total_due = $dbh->selectrow_array(
1200 'SELECT SUM( amountoutstanding ) FROM accountlines WHERE borrowernumber = ?',
1201 undef, $renewing_borrower->{borrowernumber}
1204 is( $total_due+0, 15, 'Borrower only charged replacement fee with both WhenLostForgiveFine and WhenLostChargeReplacementFee enabled' );
1206 C4::Context->dbh->do("DELETE FROM accountlines");
1208 C4::Overdues::UpdateFine(
1210 issue_id => $issue2->id(),
1211 itemnumber => $item_2->itemnumber,
1212 borrowernumber => $renewing_borrower->{borrowernumber},
1213 amount => 15.00,
1214 type => q{},
1215 due => Koha::DateUtils::output_pref($datedue)
1219 LostItem( $item_2->itemnumber, 'test', 0 );
1221 my $item2 = Koha::Items->find($item_2->itemnumber);
1222 ok( $item2->onloan(), "Lost item *not* marked as returned has true onloan value" );
1223 ok( Koha::Checkouts->find({ itemnumber => $item_2->itemnumber }), 'LostItem called without forced return has checked in the item' );
1225 $total_due = $dbh->selectrow_array(
1226 'SELECT SUM( amountoutstanding ) FROM accountlines WHERE borrowernumber = ?',
1227 undef, $renewing_borrower->{borrowernumber}
1230 ok( $total_due == 15, 'Borrower only charged fine with both WhenLostForgiveFine and WhenLostChargeReplacementFee disabled' );
1232 my $future = dt_from_string();
1233 $future->add( days => 7 );
1234 my $units = C4::Overdues::get_chargeable_units('days', $future, $now, $library2->{branchcode});
1235 ok( $units == 0, '_get_chargeable_units returns 0 for items not past due date (Bug 12596)' );
1237 # Users cannot renew any item if there is an overdue item
1238 t::lib::Mocks::mock_preference('OverduesBlockRenewing','block');
1239 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_6->itemnumber);
1240 is( $renewokay, 0, '(Bug 8236), Cannot renew, one of the items is overdue');
1241 ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_7->itemnumber);
1242 is( $renewokay, 0, '(Bug 8236), Cannot renew, one of the items is overdue');
1244 my $manager = $builder->build_object({ class => "Koha::Patrons" });
1245 t::lib::Mocks::mock_userenv({ patron => $manager,branchcode => $manager->branchcode });
1246 t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','1');
1247 $checkout = Koha::Checkouts->find( { itemnumber => $item_3->itemnumber } );
1248 LostItem( $item_3->itemnumber, 'test', 0 );
1249 my $accountline = Koha::Account::Lines->find( { itemnumber => $item_3->itemnumber } );
1250 is( $accountline->issue_id, $checkout->id, "Issue id added for lost replacement fee charge" );
1252 $accountline->description,
1253 sprintf( "%s %s %s",
1254 $item_3->biblio->title || '',
1255 $item_3->barcode || '',
1256 $item_3->itemcallnumber || '' ),
1257 "Account line description must not contain 'Lost Items ', but be title, barcode, itemcallnumber"
1261 subtest "GetUpcomingDueIssues" => sub {
1262 plan tests => 12;
1264 my $branch = $library2->{branchcode};
1266 #Create another record
1267 my $biblio2 = $builder->build_sample_biblio();
1269 #Create third item
1270 my $item_1 = Koha::Items->find($reused_itemnumber_1);
1271 my $item_2 = Koha::Items->find($reused_itemnumber_2);
1272 my $item_3 = $builder->build_sample_item(
1274 biblionumber => $biblio2->biblionumber,
1275 library => $branch,
1276 itype => $itemtype,
1281 # Create a borrower
1282 my %a_borrower_data = (
1283 firstname => 'Fridolyn',
1284 surname => 'SOMERS',
1285 categorycode => $patron_category->{categorycode},
1286 branchcode => $branch,
1289 my $a_borrower_borrowernumber = Koha::Patron->new(\%a_borrower_data)->store->borrowernumber;
1290 my $a_borrower = Koha::Patrons->find( $a_borrower_borrowernumber )->unblessed;
1292 my $yesterday = DateTime->today(time_zone => C4::Context->tz())->add( days => -1 );
1293 my $two_days_ahead = DateTime->today(time_zone => C4::Context->tz())->add( days => 2 );
1294 my $today = DateTime->today(time_zone => C4::Context->tz());
1296 my $issue = AddIssue( $a_borrower, $item_1->barcode, $yesterday );
1297 my $datedue = dt_from_string( $issue->date_due() );
1298 my $issue2 = AddIssue( $a_borrower, $item_2->barcode, $two_days_ahead );
1299 my $datedue2 = dt_from_string( $issue->date_due() );
1301 my $upcoming_dues;
1303 # GetUpcomingDueIssues tests
1304 for my $i(0..1) {
1305 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => $i } );
1306 is ( scalar( @$upcoming_dues ), 0, "No items due in less than one day ($i days in advance)" );
1309 #days_in_advance needs to be inclusive, so 1 matches items due tomorrow, 0 items due today etc.
1310 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 2 } );
1311 is ( scalar ( @$upcoming_dues), 1, "Only one item due in 2 days or less" );
1313 for my $i(3..5) {
1314 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => $i } );
1315 is ( scalar( @$upcoming_dues ), 1,
1316 "Bug 9362: Only one item due in more than 2 days ($i days in advance)" );
1319 # Bug 11218 - Due notices not generated - GetUpcomingDueIssues needs to select due today items as well
1321 my $issue3 = AddIssue( $a_borrower, $item_3->barcode, $today );
1323 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => -1 } );
1324 is ( scalar ( @$upcoming_dues), 0, "Overdues can not be selected" );
1326 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 0 } );
1327 is ( scalar ( @$upcoming_dues), 1, "1 item is due today" );
1329 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 1 } );
1330 is ( scalar ( @$upcoming_dues), 1, "1 item is due today, none tomorrow" );
1332 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 2 } );
1333 is ( scalar ( @$upcoming_dues), 2, "2 items are due withing 2 days" );
1335 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 3 } );
1336 is ( scalar ( @$upcoming_dues), 2, "2 items are due withing 2 days" );
1338 $upcoming_dues = C4::Circulation::GetUpcomingDueIssues();
1339 is ( scalar ( @$upcoming_dues), 2, "days_in_advance is 7 in GetUpcomingDueIssues if not provided" );
1343 subtest "Bug 13841 - Do not create new 0 amount fines" => sub {
1344 my $branch = $library2->{branchcode};
1346 my $biblio = $builder->build_sample_biblio();
1348 #Create third item
1349 my $item = $builder->build_sample_item(
1351 biblionumber => $biblio->biblionumber,
1352 library => $branch,
1353 itype => $itemtype,
1357 # Create a borrower
1358 my %a_borrower_data = (
1359 firstname => 'Kyle',
1360 surname => 'Hall',
1361 categorycode => $patron_category->{categorycode},
1362 branchcode => $branch,
1365 my $borrowernumber = Koha::Patron->new(\%a_borrower_data)->store->borrowernumber;
1367 my $borrower = Koha::Patrons->find( $borrowernumber )->unblessed;
1368 my $issue = AddIssue( $borrower, $item->barcode );
1369 UpdateFine(
1371 issue_id => $issue->id(),
1372 itemnumber => $item->itemnumber,
1373 borrowernumber => $borrowernumber,
1374 amount => 0,
1375 type => q{}
1379 my $hr = $dbh->selectrow_hashref(q{SELECT COUNT(*) AS count FROM accountlines WHERE borrowernumber = ? AND itemnumber = ?}, undef, $borrowernumber, $item->itemnumber );
1380 my $count = $hr->{count};
1382 is ( $count, 0, "Calling UpdateFine on non-existant fine with an amount of 0 does not result in an empty fine" );
1385 subtest "AllowRenewalIfOtherItemsAvailable tests" => sub {
1386 $dbh->do('DELETE FROM issues');
1387 $dbh->do('DELETE FROM items');
1388 $dbh->do('DELETE FROM circulation_rules');
1389 Koha::CirculationRules->set_rules(
1391 categorycode => undef,
1392 itemtype => undef,
1393 branchcode => undef,
1394 rules => {
1395 reservesallowed => 25,
1396 issuelength => 14,
1397 lengthunit => 'days',
1398 renewalsallowed => 1,
1399 renewalperiod => 7,
1400 norenewalbefore => undef,
1401 auto_renew => 0,
1402 fine => .10,
1403 chargeperiod => 1,
1404 maxissueqty => 20
1408 my $biblio = $builder->build_sample_biblio();
1410 my $item_1 = $builder->build_sample_item(
1412 biblionumber => $biblio->biblionumber,
1413 library => $library2->{branchcode},
1414 itype => $itemtype,
1418 my $item_2= $builder->build_sample_item(
1420 biblionumber => $biblio->biblionumber,
1421 library => $library2->{branchcode},
1422 itype => $itemtype,
1426 my $borrowernumber1 = Koha::Patron->new({
1427 firstname => 'Kyle',
1428 surname => 'Hall',
1429 categorycode => $patron_category->{categorycode},
1430 branchcode => $library2->{branchcode},
1431 })->store->borrowernumber;
1432 my $borrowernumber2 = Koha::Patron->new({
1433 firstname => 'Chelsea',
1434 surname => 'Hall',
1435 categorycode => $patron_category->{categorycode},
1436 branchcode => $library2->{branchcode},
1437 })->store->borrowernumber;
1439 my $borrower1 = Koha::Patrons->find( $borrowernumber1 )->unblessed;
1440 my $borrower2 = Koha::Patrons->find( $borrowernumber2 )->unblessed;
1442 my $issue = AddIssue( $borrower1, $item_1->barcode );
1444 my ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1445 is( $renewokay, 1, 'Bug 14337 - Verify the borrower can renew with no hold on the record' );
1447 AddReserve(
1449 branchcode => $library2->{branchcode},
1450 borrowernumber => $borrowernumber2,
1451 biblionumber => $biblio->biblionumber,
1452 priority => 1,
1456 Koha::CirculationRules->set_rules(
1458 categorycode => undef,
1459 itemtype => undef,
1460 branchcode => undef,
1461 rules => {
1462 onshelfholds => 0,
1466 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 0 );
1467 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1468 is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable and onshelfholds are disabled' );
1470 Koha::CirculationRules->set_rules(
1472 categorycode => undef,
1473 itemtype => undef,
1474 branchcode => undef,
1475 rules => {
1476 onshelfholds => 0,
1480 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 1 );
1481 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1482 is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable is enabled and onshelfholds is disabled' );
1484 Koha::CirculationRules->set_rules(
1486 categorycode => undef,
1487 itemtype => undef,
1488 branchcode => undef,
1489 rules => {
1490 onshelfholds => 1,
1494 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 0 );
1495 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1496 is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable is disabled and onshelfhold is enabled' );
1498 Koha::CirculationRules->set_rules(
1500 categorycode => undef,
1501 itemtype => undef,
1502 branchcode => undef,
1503 rules => {
1504 onshelfholds => 1,
1508 t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 1 );
1509 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1510 is( $renewokay, 1, 'Bug 14337 - Verify the borrower can renew with a hold on the record if AllowRenewalIfOtherItemsAvailable and onshelfhold are enabled' );
1512 # Setting item not checked out to be not for loan but holdable
1513 $item_2->notforloan(-1)->store;
1515 ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1516 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' );
1520 # Don't allow renewing onsite checkout
1521 my $branch = $library->{branchcode};
1523 #Create another record
1524 my $biblio = $builder->build_sample_biblio();
1526 my $item = $builder->build_sample_item(
1528 biblionumber => $biblio->biblionumber,
1529 library => $branch,
1530 itype => $itemtype,
1534 my $borrowernumber = Koha::Patron->new({
1535 firstname => 'fn',
1536 surname => 'dn',
1537 categorycode => $patron_category->{categorycode},
1538 branchcode => $branch,
1539 })->store->borrowernumber;
1541 my $borrower = Koha::Patrons->find( $borrowernumber )->unblessed;
1543 my $issue = AddIssue( $borrower, $item->barcode, undef, undef, undef, undef, { onsite_checkout => 1 } );
1544 my ( $renewed, $error ) = CanBookBeRenewed( $borrowernumber, $item->itemnumber );
1545 is( $renewed, 0, 'CanBookBeRenewed should not allow to renew on-site checkout' );
1546 is( $error, 'onsite_checkout', 'A correct error code should be returned by CanBookBeRenewed for on-site checkout' );
1550 my $library = $builder->build({ source => 'Branch' });
1552 my $biblio = $builder->build_sample_biblio();
1554 my $item = $builder->build_sample_item(
1556 biblionumber => $biblio->biblionumber,
1557 library => $library->{branchcode},
1558 itype => $itemtype,
1562 my $patron = $builder->build({ source => 'Borrower', value => { branchcode => $library->{branchcode}, categorycode => $patron_category->{categorycode} } } );
1564 my $issue = AddIssue( $patron, $item->barcode );
1565 UpdateFine(
1567 issue_id => $issue->id(),
1568 itemnumber => $item->itemnumber,
1569 borrowernumber => $patron->{borrowernumber},
1570 amount => 1,
1571 type => q{}
1574 UpdateFine(
1576 issue_id => $issue->id(),
1577 itemnumber => $item->itemnumber,
1578 borrowernumber => $patron->{borrowernumber},
1579 amount => 2,
1580 type => q{}
1583 is( Koha::Account::Lines->search({ issue_id => $issue->id })->count, 1, 'UpdateFine should not create a new accountline when updating an existing fine');
1586 subtest 'CanBookBeIssued & AllowReturnToBranch' => sub {
1587 plan tests => 24;
1589 my $homebranch = $builder->build( { source => 'Branch' } );
1590 my $holdingbranch = $builder->build( { source => 'Branch' } );
1591 my $otherbranch = $builder->build( { source => 'Branch' } );
1592 my $patron_1 = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1593 my $patron_2 = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1595 my $item = $builder->build_sample_item(
1597 homebranch => $homebranch->{branchcode},
1598 holdingbranch => $holdingbranch->{branchcode},
1600 )->unblessed;
1602 set_userenv($holdingbranch);
1604 my $issue = AddIssue( $patron_1->unblessed, $item->{barcode} );
1605 is( ref($issue), 'Koha::Checkout', 'AddIssue should return a Koha::Checkout object' );
1607 my ( $error, $question, $alerts );
1609 # AllowReturnToBranch == anywhere
1610 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'anywhere' );
1611 ## Test that unknown barcodes don't generate internal server errors
1612 set_userenv($homebranch);
1613 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, 'KohaIsAwesome' );
1614 ok( $error->{UNKNOWN_BARCODE}, '"KohaIsAwesome" is not a valid barcode as expected.' );
1615 ## Can be issued from homebranch
1616 set_userenv($homebranch);
1617 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1618 is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1619 is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1620 ## Can be issued from holdingbranch
1621 set_userenv($holdingbranch);
1622 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1623 is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1624 is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1625 ## Can be issued from another branch
1626 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1627 is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1628 is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1630 # AllowReturnToBranch == holdingbranch
1631 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'holdingbranch' );
1632 ## Cannot be issued from homebranch
1633 set_userenv($homebranch);
1634 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1635 is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1636 is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1637 is( $error->{branch_to_return}, $holdingbranch->{branchcode}, 'branch_to_return matched holdingbranch' );
1638 ## Can be issued from holdinbranch
1639 set_userenv($holdingbranch);
1640 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1641 is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1642 is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1643 ## Cannot be issued from another branch
1644 set_userenv($otherbranch);
1645 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1646 is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1647 is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1648 is( $error->{branch_to_return}, $holdingbranch->{branchcode}, 'branch_to_return matches holdingbranch' );
1650 # AllowReturnToBranch == homebranch
1651 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'homebranch' );
1652 ## Can be issued from holdinbranch
1653 set_userenv($homebranch);
1654 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1655 is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1656 is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1657 ## Cannot be issued from holdinbranch
1658 set_userenv($holdingbranch);
1659 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1660 is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1661 is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1662 is( $error->{branch_to_return}, $homebranch->{branchcode}, 'branch_to_return matches homebranch' );
1663 ## Cannot be issued from holdinbranch
1664 set_userenv($otherbranch);
1665 ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1666 is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1667 is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1668 is( $error->{branch_to_return}, $homebranch->{branchcode}, 'branch_to_return matches homebranch' );
1670 # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
1673 subtest 'AddIssue & AllowReturnToBranch' => sub {
1674 plan tests => 9;
1676 my $homebranch = $builder->build( { source => 'Branch' } );
1677 my $holdingbranch = $builder->build( { source => 'Branch' } );
1678 my $otherbranch = $builder->build( { source => 'Branch' } );
1679 my $patron_1 = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1680 my $patron_2 = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1682 my $item = $builder->build_sample_item(
1684 homebranch => $homebranch->{branchcode},
1685 holdingbranch => $holdingbranch->{branchcode},
1687 )->unblessed;
1689 set_userenv($holdingbranch);
1691 my $ref_issue = 'Koha::Checkout';
1692 my $issue = AddIssue( $patron_1, $item->{barcode} );
1694 my ( $error, $question, $alerts );
1696 # AllowReturnToBranch == homebranch
1697 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'anywhere' );
1698 ## Can be issued from homebranch
1699 set_userenv($homebranch);
1700 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue, 'AllowReturnToBranch - anywhere | Can be issued from homebranch');
1701 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1702 ## Can be issued from holdinbranch
1703 set_userenv($holdingbranch);
1704 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue, 'AllowReturnToBranch - anywhere | Can be issued from holdingbranch');
1705 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1706 ## Can be issued from another branch
1707 set_userenv($otherbranch);
1708 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue, 'AllowReturnToBranch - anywhere | Can be issued from otherbranch');
1709 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1711 # AllowReturnToBranch == holdinbranch
1712 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'holdingbranch' );
1713 ## Cannot be issued from homebranch
1714 set_userenv($homebranch);
1715 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '', 'AllowReturnToBranch - holdingbranch | Cannot be issued from homebranch');
1716 ## Can be issued from holdingbranch
1717 set_userenv($holdingbranch);
1718 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue, 'AllowReturnToBranch - holdingbranch | Can be issued from holdingbranch');
1719 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1720 ## Cannot be issued from another branch
1721 set_userenv($otherbranch);
1722 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '', 'AllowReturnToBranch - holdingbranch | Cannot be issued from otherbranch');
1724 # AllowReturnToBranch == homebranch
1725 t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'homebranch' );
1726 ## Can be issued from homebranch
1727 set_userenv($homebranch);
1728 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue, 'AllowReturnToBranch - homebranch | Can be issued from homebranch' );
1729 set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1730 ## Cannot be issued from holdinbranch
1731 set_userenv($holdingbranch);
1732 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '', 'AllowReturnToBranch - homebranch | Cannot be issued from holdingbranch' );
1733 ## Cannot be issued from another branch
1734 set_userenv($otherbranch);
1735 is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '', 'AllowReturnToBranch - homebranch | Cannot be issued from otherbranch' );
1736 # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
1739 subtest 'CanBookBeIssued + Koha::Patron->is_debarred|has_overdues' => sub {
1740 plan tests => 8;
1742 my $library = $builder->build( { source => 'Branch' } );
1743 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1744 my $item_1 = $builder->build_sample_item(
1746 library => $library->{branchcode},
1748 )->unblessed;
1749 my $item_2 = $builder->build_sample_item(
1751 library => $library->{branchcode},
1753 )->unblessed;
1755 my ( $error, $question, $alerts );
1757 # Patron cannot issue item_1, they have overdues
1758 my $yesterday = DateTime->today( time_zone => C4::Context->tz() )->add( days => -1 );
1759 my $issue = AddIssue( $patron->unblessed, $item_1->{barcode}, $yesterday ); # Add an overdue
1761 t::lib::Mocks::mock_preference( 'OverduesBlockCirc', 'confirmation' );
1762 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1763 is( keys(%$error) + keys(%$alerts), 0, 'No key for error and alert' . str($error, $question, $alerts) );
1764 is( $question->{USERBLOCKEDOVERDUE}, 1, 'OverduesBlockCirc=confirmation, USERBLOCKEDOVERDUE should be set for question' );
1766 t::lib::Mocks::mock_preference( 'OverduesBlockCirc', 'block' );
1767 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1768 is( keys(%$question) + keys(%$alerts), 0, 'No key for question and alert ' . str($error, $question, $alerts) );
1769 is( $error->{USERBLOCKEDOVERDUE}, 1, 'OverduesBlockCirc=block, USERBLOCKEDOVERDUE should be set for error' );
1771 # Patron cannot issue item_1, they are debarred
1772 my $tomorrow = DateTime->today( time_zone => C4::Context->tz() )->add( days => 1 );
1773 Koha::Patron::Debarments::AddDebarment( { borrowernumber => $patron->borrowernumber, expiration => $tomorrow } );
1774 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1775 is( keys(%$question) + keys(%$alerts), 0, 'No key for question and alert ' . str($error, $question, $alerts) );
1776 is( $error->{USERBLOCKEDWITHENDDATE}, output_pref( { dt => $tomorrow, dateformat => 'sql', dateonly => 1 } ), 'USERBLOCKEDWITHENDDATE should be tomorrow' );
1778 Koha::Patron::Debarments::AddDebarment( { borrowernumber => $patron->borrowernumber } );
1779 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1780 is( keys(%$question) + keys(%$alerts), 0, 'No key for question and alert ' . str($error, $question, $alerts) );
1781 is( $error->{USERBLOCKEDNOENDDATE}, '9999-12-31', 'USERBLOCKEDNOENDDATE should be 9999-12-31 for unlimited debarments' );
1784 subtest 'CanBookBeIssued + Statistic patrons "X"' => sub {
1785 plan tests => 1;
1787 my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1788 my $patron_category_x = $builder->build_object(
1790 class => 'Koha::Patron::Categories',
1791 value => { category_type => 'X' }
1794 my $patron = $builder->build_object(
1796 class => 'Koha::Patrons',
1797 value => {
1798 categorycode => $patron_category_x->categorycode,
1799 gonenoaddress => undef,
1800 lost => undef,
1801 debarred => undef,
1802 borrowernotes => ""
1806 my $item_1 = $builder->build_sample_item(
1808 library => $library->{branchcode},
1810 )->unblessed;
1812 my ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_1->{barcode} );
1813 is( $error->{STATS}, 1, '"Error" flag "STATS" must be set if CanBookBeIssued is called with a statistic patron (category_type=X)' );
1815 # TODO There are other tests to provide here
1818 subtest 'MultipleReserves' => sub {
1819 plan tests => 3;
1821 my $biblio = $builder->build_sample_biblio();
1823 my $branch = $library2->{branchcode};
1825 my $item_1 = $builder->build_sample_item(
1827 biblionumber => $biblio->biblionumber,
1828 library => $branch,
1829 replacementprice => 12.00,
1830 itype => $itemtype,
1834 my $item_2 = $builder->build_sample_item(
1836 biblionumber => $biblio->biblionumber,
1837 library => $branch,
1838 replacementprice => 12.00,
1839 itype => $itemtype,
1843 my $bibitems = '';
1844 my $priority = '1';
1845 my $resdate = undef;
1846 my $expdate = undef;
1847 my $notes = '';
1848 my $checkitem = undef;
1849 my $found = undef;
1851 my %renewing_borrower_data = (
1852 firstname => 'John',
1853 surname => 'Renewal',
1854 categorycode => $patron_category->{categorycode},
1855 branchcode => $branch,
1857 my $renewing_borrowernumber = Koha::Patron->new(\%renewing_borrower_data)->store->borrowernumber;
1858 my $renewing_borrower = Koha::Patrons->find( $renewing_borrowernumber )->unblessed;
1859 my $issue = AddIssue( $renewing_borrower, $item_1->barcode);
1860 my $datedue = dt_from_string( $issue->date_due() );
1861 is (defined $issue->date_due(), 1, "item 1 checked out");
1862 my $borrowing_borrowernumber = Koha::Checkouts->find({ itemnumber => $item_1->itemnumber })->borrowernumber;
1864 my %reserving_borrower_data1 = (
1865 firstname => 'Katrin',
1866 surname => 'Reservation',
1867 categorycode => $patron_category->{categorycode},
1868 branchcode => $branch,
1870 my $reserving_borrowernumber1 = Koha::Patron->new(\%reserving_borrower_data1)->store->borrowernumber;
1871 AddReserve(
1873 branchcode => $branch,
1874 borrowernumber => $reserving_borrowernumber1,
1875 biblionumber => $biblio->biblionumber,
1876 priority => $priority,
1877 reservation_date => $resdate,
1878 expiration_date => $expdate,
1879 notes => $notes,
1880 itemnumber => $checkitem,
1881 found => $found,
1885 my %reserving_borrower_data2 = (
1886 firstname => 'Kirk',
1887 surname => 'Reservation',
1888 categorycode => $patron_category->{categorycode},
1889 branchcode => $branch,
1891 my $reserving_borrowernumber2 = Koha::Patron->new(\%reserving_borrower_data2)->store->borrowernumber;
1892 AddReserve(
1894 branchcode => $branch,
1895 borrowernumber => $reserving_borrowernumber2,
1896 biblionumber => $biblio->biblionumber,
1897 priority => $priority,
1898 reservation_date => $resdate,
1899 expiration_date => $expdate,
1900 notes => $notes,
1901 itemnumber => $checkitem,
1902 found => $found,
1907 my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
1908 is($renewokay, 0, 'Bug 17941 - should cover the case where 2 books are both reserved, so failing');
1911 my $item_3 = $builder->build_sample_item(
1913 biblionumber => $biblio->biblionumber,
1914 library => $branch,
1915 replacementprice => 12.00,
1916 itype => $itemtype,
1921 my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
1922 is($renewokay, 1, 'Bug 17941 - should cover the case where 2 books are reserved, but a third one is available');
1926 subtest 'CanBookBeIssued + AllowMultipleIssuesOnABiblio' => sub {
1927 plan tests => 5;
1929 my $library = $builder->build( { source => 'Branch' } );
1930 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1932 my $biblionumber = $builder->build_sample_biblio(
1934 branchcode => $library->{branchcode},
1936 )->biblionumber;
1937 my $item_1 = $builder->build_sample_item(
1939 biblionumber => $biblionumber,
1940 library => $library->{branchcode},
1942 )->unblessed;
1944 my $item_2 = $builder->build_sample_item(
1946 biblionumber => $biblionumber,
1947 library => $library->{branchcode},
1949 )->unblessed;
1951 my ( $error, $question, $alerts );
1952 my $issue = AddIssue( $patron->unblessed, $item_1->{barcode}, dt_from_string->add( days => 1 ) );
1954 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 0);
1955 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1956 cmp_deeply(
1957 { error => $error, alerts => $alerts },
1958 { error => {}, alerts => {} },
1959 'No error or alert should be raised'
1961 is( $question->{BIBLIO_ALREADY_ISSUED}, 1, 'BIBLIO_ALREADY_ISSUED question flag should be set if AllowMultipleIssuesOnABiblio=0 and issue already exists' );
1963 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 1);
1964 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1965 cmp_deeply(
1966 { error => $error, question => $question, alerts => $alerts },
1967 { error => {}, question => {}, alerts => {} },
1968 'No BIBLIO_ALREADY_ISSUED flag should be set if AllowMultipleIssuesOnABiblio=1'
1971 # Add a subscription
1972 Koha::Subscription->new({ biblionumber => $biblionumber })->store;
1974 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 0);
1975 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1976 cmp_deeply(
1977 { error => $error, question => $question, alerts => $alerts },
1978 { error => {}, question => {}, alerts => {} },
1979 'No BIBLIO_ALREADY_ISSUED flag should be set if it is a subscription'
1982 t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 1);
1983 ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1984 cmp_deeply(
1985 { error => $error, question => $question, alerts => $alerts },
1986 { error => {}, question => {}, alerts => {} },
1987 'No BIBLIO_ALREADY_ISSUED flag should be set if it is a subscription'
1991 subtest 'AddReturn + CumulativeRestrictionPeriods' => sub {
1992 plan tests => 8;
1994 my $library = $builder->build( { source => 'Branch' } );
1995 my $patron = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1997 # Add 2 items
1998 my $biblionumber = $builder->build_sample_biblio(
2000 branchcode => $library->{branchcode},
2002 )->biblionumber;
2003 my $item_1 = $builder->build_sample_item(
2005 biblionumber => $biblionumber,
2006 library => $library->{branchcode},
2008 )->unblessed;
2009 my $item_2 = $builder->build_sample_item(
2011 biblionumber => $biblionumber,
2012 library => $library->{branchcode},
2014 )->unblessed;
2016 # And the circulation rule
2017 Koha::CirculationRules->search->delete;
2018 Koha::CirculationRules->set_rules(
2020 categorycode => undef,
2021 itemtype => undef,
2022 branchcode => undef,
2023 rules => {
2024 issuelength => 1,
2025 firstremind => 1, # 1 day of grace
2026 finedays => 2, # 2 days of fine per day of overdue
2027 lengthunit => 'days',
2032 # Patron cannot issue item_1, they have overdues
2033 my $now = dt_from_string;
2034 my $five_days_ago = $now->clone->subtract( days => 5 );
2035 my $ten_days_ago = $now->clone->subtract( days => 10 );
2036 AddIssue( $patron, $item_1->{barcode}, $five_days_ago ); # Add an overdue
2037 AddIssue( $patron, $item_2->{barcode}, $ten_days_ago )
2038 ; # Add another overdue
2040 t::lib::Mocks::mock_preference( 'CumulativeRestrictionPeriods', '0' );
2041 AddReturn( $item_1->{barcode}, $library->{branchcode}, undef, $now );
2042 my $debarments = Koha::Patron::Debarments::GetDebarments(
2043 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
2044 is( scalar(@$debarments), 1 );
2046 # FIXME Is it right? I'd have expected 5 * 2 - 1 instead
2047 # Same for the others
2048 my $expected_expiration = output_pref(
2050 dt => $now->clone->add( days => ( 5 - 1 ) * 2 ),
2051 dateformat => 'sql',
2052 dateonly => 1
2055 is( $debarments->[0]->{expiration}, $expected_expiration );
2057 AddReturn( $item_2->{barcode}, $library->{branchcode}, undef, $now );
2058 $debarments = Koha::Patron::Debarments::GetDebarments(
2059 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
2060 is( scalar(@$debarments), 1 );
2061 $expected_expiration = output_pref(
2063 dt => $now->clone->add( days => ( 10 - 1 ) * 2 ),
2064 dateformat => 'sql',
2065 dateonly => 1
2068 is( $debarments->[0]->{expiration}, $expected_expiration );
2070 Koha::Patron::Debarments::DelUniqueDebarment(
2071 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
2073 t::lib::Mocks::mock_preference( 'CumulativeRestrictionPeriods', '1' );
2074 AddIssue( $patron, $item_1->{barcode}, $five_days_ago ); # Add an overdue
2075 AddIssue( $patron, $item_2->{barcode}, $ten_days_ago )
2076 ; # Add another overdue
2077 AddReturn( $item_1->{barcode}, $library->{branchcode}, undef, $now );
2078 $debarments = Koha::Patron::Debarments::GetDebarments(
2079 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
2080 is( scalar(@$debarments), 1 );
2081 $expected_expiration = output_pref(
2083 dt => $now->clone->add( days => ( 5 - 1 ) * 2 ),
2084 dateformat => 'sql',
2085 dateonly => 1
2088 is( $debarments->[0]->{expiration}, $expected_expiration );
2090 AddReturn( $item_2->{barcode}, $library->{branchcode}, undef, $now );
2091 $debarments = Koha::Patron::Debarments::GetDebarments(
2092 { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
2093 is( scalar(@$debarments), 1 );
2094 $expected_expiration = output_pref(
2096 dt => $now->clone->add( days => ( 5 - 1 ) * 2 + ( 10 - 1 ) * 2 ),
2097 dateformat => 'sql',
2098 dateonly => 1
2101 is( $debarments->[0]->{expiration}, $expected_expiration );
2104 subtest 'AddReturn + suspension_chargeperiod' => sub {
2105 plan tests => 24;
2107 my $library = $builder->build( { source => 'Branch' } );
2108 my $patron = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
2110 my $biblionumber = $builder->build_sample_biblio(
2112 branchcode => $library->{branchcode},
2114 )->biblionumber;
2115 my $item_1 = $builder->build_sample_item(
2117 biblionumber => $biblionumber,
2118 library => $library->{branchcode},
2120 )->unblessed;
2122 # And the issuing rule
2123 Koha::CirculationRules->search->delete;
2124 Koha::CirculationRules->set_rules(
2126 categorycode => '*',
2127 itemtype => '*',
2128 branchcode => '*',
2129 rules => {
2130 issuelength => 1,
2131 firstremind => 0, # 0 day of grace
2132 finedays => 2, # 2 days of fine per day of overdue
2133 suspension_chargeperiod => 1,
2134 lengthunit => 'days',
2139 my $now = dt_from_string;
2140 my $five_days_ago = $now->clone->subtract( days => 5 );
2141 # We want to charge 2 days every day, without grace
2142 # With 5 days of overdue: 5 * Z
2143 my $expected_expiration = $now->clone->add( days => ( 5 * 2 ) / 1 );
2144 test_debarment_on_checkout(
2146 item => $item_1,
2147 library => $library,
2148 patron => $patron,
2149 due_date => $five_days_ago,
2150 expiration_date => $expected_expiration,
2154 # We want to charge 2 days every 2 days, without grace
2155 # With 5 days of overdue: (5 * 2) / 2
2156 Koha::CirculationRules->set_rule(
2158 categorycode => undef,
2159 branchcode => undef,
2160 itemtype => undef,
2161 rule_name => 'suspension_chargeperiod',
2162 rule_value => '2',
2166 $expected_expiration = $now->clone->add( days => floor( 5 * 2 ) / 2 );
2167 test_debarment_on_checkout(
2169 item => $item_1,
2170 library => $library,
2171 patron => $patron,
2172 due_date => $five_days_ago,
2173 expiration_date => $expected_expiration,
2177 # We want to charge 2 days every 3 days, with 1 day of grace
2178 # With 5 days of overdue: ((5-1) / 3 ) * 2
2179 Koha::CirculationRules->set_rules(
2181 categorycode => undef,
2182 branchcode => undef,
2183 itemtype => undef,
2184 rules => {
2185 suspension_chargeperiod => 3,
2186 firstremind => 1,
2190 $expected_expiration = $now->clone->add( days => floor( ( ( 5 - 1 ) / 3 ) * 2 ) );
2191 test_debarment_on_checkout(
2193 item => $item_1,
2194 library => $library,
2195 patron => $patron,
2196 due_date => $five_days_ago,
2197 expiration_date => $expected_expiration,
2201 # Use finesCalendar to know if holiday must be skipped to calculate the due date
2202 # We want to charge 2 days every days, with 0 day of grace (to not burn brains)
2203 Koha::CirculationRules->set_rules(
2205 categorycode => undef,
2206 branchcode => undef,
2207 itemtype => undef,
2208 rules => {
2209 finedays => 2,
2210 suspension_chargeperiod => 1,
2211 firstremind => 0,
2215 t::lib::Mocks::mock_preference('finesCalendar', 'noFinesWhenClosed');
2216 t::lib::Mocks::mock_preference('SuspensionsCalendar', 'noSuspensionsWhenClosed');
2218 # Adding a holiday 2 days ago
2219 my $calendar = C4::Calendar->new(branchcode => $library->{branchcode});
2220 my $two_days_ago = $now->clone->subtract( days => 2 );
2221 $calendar->insert_single_holiday(
2222 day => $two_days_ago->day,
2223 month => $two_days_ago->month,
2224 year => $two_days_ago->year,
2225 title => 'holidayTest-2d',
2226 description => 'holidayDesc 2 days ago'
2228 # With 5 days of overdue, only 4 (x finedays=2) days must charged (one was an holiday)
2229 $expected_expiration = $now->clone->add( days => floor( ( ( 5 - 0 - 1 ) / 1 ) * 2 ) );
2230 test_debarment_on_checkout(
2232 item => $item_1,
2233 library => $library,
2234 patron => $patron,
2235 due_date => $five_days_ago,
2236 expiration_date => $expected_expiration,
2240 # Adding a holiday 2 days ahead, with finesCalendar=noFinesWhenClosed it should be skipped
2241 my $two_days_ahead = $now->clone->add( days => 2 );
2242 $calendar->insert_single_holiday(
2243 day => $two_days_ahead->day,
2244 month => $two_days_ahead->month,
2245 year => $two_days_ahead->year,
2246 title => 'holidayTest+2d',
2247 description => 'holidayDesc 2 days ahead'
2250 # Same as above, but we should skip D+2
2251 $expected_expiration = $now->clone->add( days => floor( ( ( 5 - 0 - 1 ) / 1 ) * 2 ) + 1 );
2252 test_debarment_on_checkout(
2254 item => $item_1,
2255 library => $library,
2256 patron => $patron,
2257 due_date => $five_days_ago,
2258 expiration_date => $expected_expiration,
2262 # Adding another holiday, day of expiration date
2263 my $expected_expiration_dt = dt_from_string($expected_expiration);
2264 $calendar->insert_single_holiday(
2265 day => $expected_expiration_dt->day,
2266 month => $expected_expiration_dt->month,
2267 year => $expected_expiration_dt->year,
2268 title => 'holidayTest_exp',
2269 description => 'holidayDesc on expiration date'
2271 # Expiration date will be the day after
2272 test_debarment_on_checkout(
2274 item => $item_1,
2275 library => $library,
2276 patron => $patron,
2277 due_date => $five_days_ago,
2278 expiration_date => $expected_expiration_dt->clone->add( days => 1 ),
2282 test_debarment_on_checkout(
2284 item => $item_1,
2285 library => $library,
2286 patron => $patron,
2287 return_date => $now->clone->add(days => 5),
2288 expiration_date => $now->clone->add(days => 5 + (5 * 2 - 1) ),
2292 test_debarment_on_checkout(
2294 item => $item_1,
2295 library => $library,
2296 patron => $patron,
2297 due_date => $now->clone->add(days => 1),
2298 return_date => $now->clone->add(days => 5),
2299 expiration_date => $now->clone->add(days => 5 + (4 * 2 - 1) ),
2305 subtest 'CanBookBeIssued + AutoReturnCheckedOutItems' => sub {
2306 plan tests => 2;
2308 my $library = $builder->build_object( { class => 'Koha::Libraries' } );
2309 my $patron1 = $builder->build_object(
2311 class => 'Koha::Patrons',
2312 value => {
2313 library => $library->branchcode,
2314 categorycode => $patron_category->{categorycode}
2318 my $patron2 = $builder->build_object(
2320 class => 'Koha::Patrons',
2321 value => {
2322 library => $library->branchcode,
2323 categorycode => $patron_category->{categorycode}
2328 t::lib::Mocks::mock_userenv({ branchcode => $library->branchcode });
2330 my $item = $builder->build_sample_item(
2332 library => $library->branchcode,
2334 )->unblessed;
2336 my ( $error, $question, $alerts );
2337 my $issue = AddIssue( $patron1->unblessed, $item->{barcode} );
2339 t::lib::Mocks::mock_preference('AutoReturnCheckedOutItems', 0);
2340 ( $error, $question, $alerts ) = CanBookBeIssued( $patron2, $item->{barcode} );
2341 is( $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER question flag should be set if AutoReturnCheckedOutItems is disabled and item is checked out to another' );
2343 t::lib::Mocks::mock_preference('AutoReturnCheckedOutItems', 1);
2344 ( $error, $question, $alerts ) = CanBookBeIssued( $patron2, $item->{barcode} );
2345 is( $alerts->{RETURNED_FROM_ANOTHER}->{patron}->borrowernumber, $patron1->borrowernumber, 'RETURNED_FROM_ANOTHER alert flag should be set if AutoReturnCheckedOutItems is enabled and item is checked out to another' );
2347 t::lib::Mocks::mock_preference('AutoReturnCheckedOutItems', 0);
2351 subtest 'AddReturn | is_overdue' => sub {
2352 plan tests => 6;
2354 t::lib::Mocks::mock_preference('MarkLostItemsAsReturned', 'batchmod|moredetail|cronjob|additem|pendingreserves|onpayment');
2355 t::lib::Mocks::mock_preference('CalculateFinesOnReturn', 1);
2356 t::lib::Mocks::mock_preference('finesMode', 'production');
2357 t::lib::Mocks::mock_preference('MaxFine', '100');
2359 my $library = $builder->build( { source => 'Branch' } );
2360 my $patron = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
2361 my $manager = $builder->build_object({ class => "Koha::Patrons" });
2362 t::lib::Mocks::mock_userenv({ patron => $manager, branchcode => $manager->branchcode });
2364 my $item = $builder->build_sample_item(
2366 library => $library->{branchcode},
2367 replacementprice => 7
2369 )->unblessed;
2371 Koha::CirculationRules->search->delete;
2372 Koha::CirculationRules->set_rules(
2374 categorycode => undef,
2375 itemtype => undef,
2376 branchcode => undef,
2377 rules => {
2378 issuelength => 6,
2379 lengthunit => 'days',
2380 fine => 1, # Charge 1 every day of overdue
2381 chargeperiod => 1,
2386 my $now = dt_from_string;
2387 my $one_day_ago = $now->clone->subtract( days => 1 );
2388 my $five_days_ago = $now->clone->subtract( days => 5 );
2389 my $ten_days_ago = $now->clone->subtract( days => 10 );
2390 $patron = Koha::Patrons->find( $patron->{borrowernumber} );
2392 # No return date specified, today will be used => 10 days overdue charged
2393 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2394 AddReturn( $item->{barcode}, $library->{branchcode} );
2395 is( int($patron->account->balance()), 10, 'Patron should have a charge of 10 (10 days x 1)' );
2396 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2398 # specify return date 5 days before => no overdue charged
2399 AddIssue( $patron->unblessed, $item->{barcode}, $five_days_ago ); # date due was 5d ago
2400 AddReturn( $item->{barcode}, $library->{branchcode}, undef, $ten_days_ago );
2401 is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
2402 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2404 # specify return date 5 days later => 5 days overdue charged
2405 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2406 AddReturn( $item->{barcode}, $library->{branchcode}, undef, $five_days_ago );
2407 is( int($patron->account->balance()), 5, 'AddReturn: pass return_date => overdue' );
2408 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2410 # specify return date 5 days later, specify exemptfine => no overdue charge
2411 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2412 AddReturn( $item->{barcode}, $library->{branchcode}, 1, $five_days_ago );
2413 is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
2414 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2416 subtest 'bug 22877' => sub {
2418 plan tests => 3;
2420 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2422 # Fake fines cronjob on this checkout
2423 my ($fine) =
2424 CalcFine( $item, $patron->categorycode, $library->{branchcode},
2425 $ten_days_ago, $now );
2426 UpdateFine(
2428 issue_id => $issue->issue_id,
2429 itemnumber => $item->{itemnumber},
2430 borrowernumber => $patron->borrowernumber,
2431 amount => $fine,
2432 due => output_pref($ten_days_ago)
2435 is( int( $patron->account->balance() ),
2436 10, "Overdue fine of 10 days overdue" );
2438 # Fake longoverdue with charge and not marking returned
2439 LostItem( $item->{itemnumber}, 'cronjob', 0 );
2440 is( int( $patron->account->balance() ),
2441 17, "Lost fine of 7 plus 10 days overdue" );
2443 # Now we return it today
2444 AddReturn( $item->{barcode}, $library->{branchcode} );
2445 is( int( $patron->account->balance() ),
2446 17, "Should have a single 10 days overdue fine and lost charge" );
2448 # Cleanup
2449 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2452 subtest 'bug 25417 | backdated return + exemptfine' => sub {
2454 plan tests => 6;
2456 t::lib::Mocks::mock_preference('CalculateFinesOnBackdate', 1);
2458 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $one_day_ago ); # date due was 1d ago
2460 # Fake fines cronjob on this checkout
2461 my ($fine) =
2462 CalcFine( $item, $patron->categorycode, $library->{branchcode},
2463 $one_day_ago, $now );
2464 UpdateFine(
2466 issue_id => $issue->issue_id,
2467 itemnumber => $item->{itemnumber},
2468 borrowernumber => $patron->borrowernumber,
2469 amount => $fine,
2470 due => output_pref($one_day_ago)
2473 is( int( $patron->account->balance() ),
2474 1, "Overdue fine of 1 day overdue" );
2476 # Backdated return (dropbox mode example - charge should exist but be zero)
2477 AddReturn( $item->{barcode}, $library->{branchcode}, 1, $one_day_ago );
2478 is( int( $patron->account->balance() ),
2479 0, "Overdue fine should be annulled" );
2480 my $lines = Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber });
2481 is( $lines->count, 1, "Overdue fine accountlines still exists");
2482 my $line = $lines->next;
2483 is($line->amount+0,0, "Overdue fine amount has been reduced to 0");
2484 is($line->amountoutstanding+0,0, "Overdue fine amount outstanding has been reduced to 0");
2485 is($line->status,'RETURNED', "Overdue fine was fixed");
2487 # Cleanup
2488 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2492 subtest '_FixAccountForLostAndFound' => sub {
2494 plan tests => 5;
2496 t::lib::Mocks::mock_preference( 'WhenLostChargeReplacementFee', 1 );
2497 t::lib::Mocks::mock_preference( 'WhenLostForgiveFine', 0 );
2499 my $processfee_amount = 20;
2500 my $replacement_amount = 99.00;
2501 my $item_type = $builder->build_object(
2502 { class => 'Koha::ItemTypes',
2503 value => {
2504 notforloan => undef,
2505 rentalcharge => 0,
2506 defaultreplacecost => undef,
2507 processfee => $processfee_amount,
2508 rentalcharge_daily => 0,
2512 my $library = $builder->build_object( { class => 'Koha::Libraries' } );
2514 my $biblio = $builder->build_sample_biblio({ author => 'Hall, Daria' });
2516 subtest 'Full write-off tests' => sub {
2518 plan tests => 12;
2520 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2521 my $manager = $builder->build_object({ class => "Koha::Patrons" });
2522 t::lib::Mocks::mock_userenv({ patron => $manager,branchcode => $manager->branchcode });
2524 my $item = $builder->build_sample_item(
2526 biblionumber => $biblio->biblionumber,
2527 library => $library->branchcode,
2528 replacementprice => $replacement_amount,
2529 itype => $item_type->itemtype,
2533 AddIssue( $patron->unblessed, $item->barcode );
2535 # Simulate item marked as lost
2536 $item->itemlost(3)->store;
2537 LostItem( $item->itemnumber, 1 );
2539 my $processing_fee_lines = Koha::Account::Lines->search(
2540 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2541 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2542 my $processing_fee_line = $processing_fee_lines->next;
2543 is( $processing_fee_line->amount + 0,
2544 $processfee_amount, 'The right PROCESSING amount is generated' );
2545 is( $processing_fee_line->amountoutstanding + 0,
2546 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2548 my $lost_fee_lines = Koha::Account::Lines->search(
2549 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2550 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2551 my $lost_fee_line = $lost_fee_lines->next;
2552 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2553 is( $lost_fee_line->amountoutstanding + 0,
2554 $replacement_amount, 'The right LOST amountoutstanding is generated' );
2555 is( $lost_fee_line->status,
2556 undef, 'The LOST status was not set' );
2558 my $account = $patron->account;
2559 my $debts = $account->outstanding_debits;
2561 # Write off the debt
2562 my $credit = $account->add_credit(
2563 { amount => $account->balance,
2564 type => 'WRITEOFF',
2565 interface => 'test',
2568 $credit->apply( { debits => [ $debts->as_list ], offset_type => 'Writeoff' } );
2570 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2571 is( $credit_return_id, undef, 'No LOST_FOUND account line added' );
2573 $lost_fee_line->discard_changes; # reload from DB
2574 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2575 is( $lost_fee_line->debit_type_code,
2576 'LOST', 'Lost fee now still has account type of LOST' );
2577 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2579 is( $patron->account->balance, -0, 'The patron balance is 0, everything was written off' );
2582 subtest 'Full payment tests' => sub {
2584 plan tests => 13;
2586 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2588 my $item = $builder->build_sample_item(
2590 biblionumber => $biblio->biblionumber,
2591 library => $library->branchcode,
2592 replacementprice => $replacement_amount,
2593 itype => $item_type->itemtype
2597 AddIssue( $patron->unblessed, $item->barcode );
2599 # Simulate item marked as lost
2600 $item->itemlost(1)->store;
2601 LostItem( $item->itemnumber, 1 );
2603 my $processing_fee_lines = Koha::Account::Lines->search(
2604 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2605 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2606 my $processing_fee_line = $processing_fee_lines->next;
2607 is( $processing_fee_line->amount + 0,
2608 $processfee_amount, 'The right PROCESSING amount is generated' );
2609 is( $processing_fee_line->amountoutstanding + 0,
2610 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2612 my $lost_fee_lines = Koha::Account::Lines->search(
2613 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2614 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2615 my $lost_fee_line = $lost_fee_lines->next;
2616 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2617 is( $lost_fee_line->amountoutstanding + 0,
2618 $replacement_amount, 'The right LOST amountountstanding is generated' );
2620 my $account = $patron->account;
2621 my $debts = $account->outstanding_debits;
2623 # Write off the debt
2624 my $credit = $account->add_credit(
2625 { amount => $account->balance,
2626 type => 'PAYMENT',
2627 interface => 'test',
2630 $credit->apply( { debits => [ $debts->as_list ], offset_type => 'Payment' } );
2632 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2633 my $credit_return = Koha::Account::Lines->find($credit_return_id);
2635 is( $credit_return->credit_type_code, 'LOST_FOUND', 'An account line of type LOST_FOUND is added' );
2636 is( $credit_return->amount + 0,
2637 -99.00, 'The account line of type LOST_FOUND has an amount of -99' );
2638 is( $credit_return->amountoutstanding + 0,
2639 -99.00, 'The account line of type LOST_FOUND has an amountoutstanding of -99' );
2641 $lost_fee_line->discard_changes;
2642 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2643 is( $lost_fee_line->debit_type_code,
2644 'LOST', 'Lost fee now still has account type of LOST' );
2645 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2647 is( $patron->account->balance,
2648 -99, 'The patron balance is -99, a credit that equals the lost fee payment' );
2651 subtest 'Test without payment or write off' => sub {
2653 plan tests => 13;
2655 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2657 my $item = $builder->build_sample_item(
2659 biblionumber => $biblio->biblionumber,
2660 library => $library->branchcode,
2661 replacementprice => 23.00,
2662 replacementprice => $replacement_amount,
2663 itype => $item_type->itemtype
2667 AddIssue( $patron->unblessed, $item->barcode );
2669 # Simulate item marked as lost
2670 $item->itemlost(3)->store;
2671 LostItem( $item->itemnumber, 1 );
2673 my $processing_fee_lines = Koha::Account::Lines->search(
2674 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2675 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2676 my $processing_fee_line = $processing_fee_lines->next;
2677 is( $processing_fee_line->amount + 0,
2678 $processfee_amount, 'The right PROCESSING amount is generated' );
2679 is( $processing_fee_line->amountoutstanding + 0,
2680 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2682 my $lost_fee_lines = Koha::Account::Lines->search(
2683 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2684 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2685 my $lost_fee_line = $lost_fee_lines->next;
2686 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2687 is( $lost_fee_line->amountoutstanding + 0,
2688 $replacement_amount, 'The right LOST amountountstanding is generated' );
2690 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2691 my $credit_return = Koha::Account::Lines->find($credit_return_id);
2693 is( $credit_return->credit_type_code, 'LOST_FOUND', 'An account line of type LOST_FOUND is added' );
2694 is( $credit_return->amount + 0, -99.00, 'The account line of type LOST_FOUND has an amount of -99' );
2695 is( $credit_return->amountoutstanding + 0, 0, 'The account line of type LOST_FOUND has an amountoutstanding of 0' );
2697 $lost_fee_line->discard_changes;
2698 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2699 is( $lost_fee_line->debit_type_code,
2700 'LOST', 'Lost fee now still has account type of LOST' );
2701 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2703 is( $patron->account->balance, 20, 'The patron balance is 20, still owes the processing fee' );
2706 subtest 'Test with partial payement and write off, and remaining debt' => sub {
2708 plan tests => 16;
2710 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2711 my $item = $builder->build_sample_item(
2713 biblionumber => $biblio->biblionumber,
2714 library => $library->branchcode,
2715 replacementprice => $replacement_amount,
2716 itype => $item_type->itemtype
2720 AddIssue( $patron->unblessed, $item->barcode );
2722 # Simulate item marked as lost
2723 $item->itemlost(1)->store;
2724 LostItem( $item->itemnumber, 1 );
2726 my $processing_fee_lines = Koha::Account::Lines->search(
2727 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2728 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2729 my $processing_fee_line = $processing_fee_lines->next;
2730 is( $processing_fee_line->amount + 0,
2731 $processfee_amount, 'The right PROCESSING amount is generated' );
2732 is( $processing_fee_line->amountoutstanding + 0,
2733 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2735 my $lost_fee_lines = Koha::Account::Lines->search(
2736 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2737 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2738 my $lost_fee_line = $lost_fee_lines->next;
2739 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2740 is( $lost_fee_line->amountoutstanding + 0,
2741 $replacement_amount, 'The right LOST amountountstanding is generated' );
2743 my $account = $patron->account;
2744 is( $account->balance, $processfee_amount + $replacement_amount, 'Balance is PROCESSING + L' );
2746 # Partially pay fee
2747 my $payment_amount = 27;
2748 my $payment = $account->add_credit(
2749 { amount => $payment_amount,
2750 type => 'PAYMENT',
2751 interface => 'test',
2755 $payment->apply( { debits => [ $lost_fee_line ], offset_type => 'Payment' } );
2757 # Partially write off fee
2758 my $write_off_amount = 25;
2759 my $write_off = $account->add_credit(
2760 { amount => $write_off_amount,
2761 type => 'WRITEOFF',
2762 interface => 'test',
2765 $write_off->apply( { debits => [ $lost_fee_line ], offset_type => 'Writeoff' } );
2767 is( $account->balance,
2768 $processfee_amount + $replacement_amount - $payment_amount - $write_off_amount,
2769 'Payment and write off applied'
2772 # Store the amountoutstanding value
2773 $lost_fee_line->discard_changes;
2774 my $outstanding = $lost_fee_line->amountoutstanding;
2776 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2777 my $credit_return = Koha::Account::Lines->find($credit_return_id);
2779 is( $account->balance, $processfee_amount - $payment_amount, 'Balance is PROCESSING - PAYMENT (LOST_FOUND)' );
2781 $lost_fee_line->discard_changes;
2782 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2783 is( $lost_fee_line->debit_type_code,
2784 'LOST', 'Lost fee now still has account type of LOST' );
2785 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2787 is( $credit_return->credit_type_code, 'LOST_FOUND', 'An account line of type LOST_FOUND is added' );
2788 is( $credit_return->amount + 0,
2789 ($payment_amount + $outstanding ) * -1,
2790 'The account line of type LOST_FOUND has an amount equal to the payment + outstanding'
2792 is( $credit_return->amountoutstanding + 0,
2793 $payment_amount * -1,
2794 'The account line of type LOST_FOUND has an amountoutstanding equal to the payment'
2797 is( $account->balance,
2798 $processfee_amount - $payment_amount,
2799 'The patron balance is the difference between the PROCESSING and the credit'
2803 subtest 'Partial payement, existing debits and AccountAutoReconcile' => sub {
2805 plan tests => 8;
2807 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2808 my $barcode = 'KD123456793';
2809 my $replacement_amount = 100;
2810 my $processfee_amount = 20;
2812 my $item_type = $builder->build_object(
2813 { class => 'Koha::ItemTypes',
2814 value => {
2815 notforloan => undef,
2816 rentalcharge => 0,
2817 defaultreplacecost => undef,
2818 processfee => 0,
2819 rentalcharge_daily => 0,
2823 my $item = Koha::Item->new(
2825 biblionumber => $biblio->biblionumber,
2826 homebranch => $library->branchcode,
2827 holdingbranch => $library->branchcode,
2828 barcode => $barcode,
2829 replacementprice => $replacement_amount,
2830 itype => $item_type->itemtype
2832 )->store;
2834 AddIssue( $patron->unblessed, $barcode );
2836 # Simulate item marked as lost
2837 $item->itemlost(1)->store;
2838 LostItem( $item->itemnumber, 1 );
2840 my $lost_fee_lines = Koha::Account::Lines->search(
2841 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2842 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2843 my $lost_fee_line = $lost_fee_lines->next;
2844 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2845 is( $lost_fee_line->amountoutstanding + 0,
2846 $replacement_amount, 'The right LOST amountountstanding is generated' );
2848 my $account = $patron->account;
2849 is( $account->balance, $replacement_amount, 'Balance is L' );
2851 # Partially pay fee
2852 my $payment_amount = 27;
2853 my $payment = $account->add_credit(
2854 { amount => $payment_amount,
2855 type => 'PAYMENT',
2856 interface => 'test',
2859 $payment->apply({ debits => [ $lost_fee_line ], offset_type => 'Payment' });
2861 is( $account->balance,
2862 $replacement_amount - $payment_amount,
2863 'Payment applied'
2866 my $manual_debit_amount = 80;
2867 $account->add_debit( { amount => $manual_debit_amount, type => 'OVERDUE', interface =>'test' } );
2869 is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2871 t::lib::Mocks::mock_preference( 'AccountAutoReconcile', 1 );
2873 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2874 my $credit_return = Koha::Account::Lines->find($credit_return_id);
2876 is( $account->balance, $manual_debit_amount - $payment_amount, 'Balance is PROCESSING - payment (LOST_FOUND)' );
2878 my $manual_debit = Koha::Account::Lines->search({ borrowernumber => $patron->id, debit_type_code => 'OVERDUE', status => 'UNRETURNED' })->next;
2879 is( $manual_debit->amountoutstanding + 0, $manual_debit_amount - $payment_amount, 'reconcile_balance was called' );
2883 subtest '_FixOverduesOnReturn' => sub {
2884 plan tests => 14;
2886 my $manager = $builder->build_object({ class => "Koha::Patrons" });
2887 t::lib::Mocks::mock_userenv({ patron => $manager, branchcode => $manager->branchcode });
2889 my $biblio = $builder->build_sample_biblio({ author => 'Hall, Kylie' });
2891 my $branchcode = $library2->{branchcode};
2893 my $item = $builder->build_sample_item(
2895 biblionumber => $biblio->biblionumber,
2896 library => $branchcode,
2897 replacementprice => 99.00,
2898 itype => $itemtype,
2902 my $patron = $builder->build( { source => 'Borrower' } );
2904 ## Start with basic call, should just close out the open fine
2905 my $accountline = Koha::Account::Line->new(
2907 borrowernumber => $patron->{borrowernumber},
2908 debit_type_code => 'OVERDUE',
2909 status => 'UNRETURNED',
2910 itemnumber => $item->itemnumber,
2911 amount => 99.00,
2912 amountoutstanding => 99.00,
2913 interface => 'test',
2915 )->store();
2917 C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber, undef, 'RETURNED' );
2919 $accountline->_result()->discard_changes();
2921 is( $accountline->amountoutstanding+0, 99, 'Fine has the same amount outstanding as previously' );
2922 isnt( $accountline->status, 'UNRETURNED', 'Open fine ( account type OVERDUE ) has been closed out ( status not UNRETURNED )');
2923 is( $accountline->status, 'RETURNED', 'Passed status has been used to set as RETURNED )');
2925 ## Run again, with exemptfine enabled
2926 $accountline->set(
2928 debit_type_code => 'OVERDUE',
2929 status => 'UNRETURNED',
2930 amountoutstanding => 99.00,
2932 )->store();
2934 C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber, 1, 'RETURNED' );
2936 $accountline->_result()->discard_changes();
2937 my $offset = Koha::Account::Offsets->search({ debit_id => $accountline->id, type => 'Forgiven' })->next();
2939 is( $accountline->amountoutstanding + 0, 0, 'Fine amountoutstanding has been reduced to 0' );
2940 isnt( $accountline->status, 'UNRETURNED', 'Open fine ( account type OVERDUE ) has been closed out ( status not UNRETURNED )');
2941 is( $accountline->status, 'FORGIVEN', 'Open fine ( account type OVERDUE ) has been set to fine forgiven ( status FORGIVEN )');
2942 is( ref $offset, "Koha::Account::Offset", "Found matching offset for fine reduction via forgiveness" );
2943 is( $offset->amount + 0, -99, "Amount of offset is correct" );
2944 my $credit = $offset->credit;
2945 is( ref $credit, "Koha::Account::Line", "Found matching credit for fine forgiveness" );
2946 is( $credit->amount + 0, -99, "Credit amount is set correctly" );
2947 is( $credit->amountoutstanding + 0, 0, "Credit amountoutstanding is correctly set to 0" );
2949 # Bug 25417 - Only forgive fines where there is an amount outstanding to forgive
2950 $accountline->set(
2952 debit_type_code => 'OVERDUE',
2953 status => 'UNRETURNED',
2954 amountoutstanding => 0.00,
2956 )->store();
2957 $offset->delete;
2959 C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber, 1, 'RETURNED' );
2961 $accountline->_result()->discard_changes();
2962 $offset = Koha::Account::Offsets->search({ debit_id => $accountline->id, type => 'Forgiven' })->next();
2963 is( $offset, undef, "No offset created when trying to forgive fine with no outstanding balance" );
2964 isnt( $accountline->status, 'UNRETURNED', 'Open fine ( account type OVERDUE ) has been closed out ( status not UNRETURNED )');
2965 is( $accountline->status, 'RETURNED', 'Passed status has been used to set as RETURNED )');
2968 subtest '_FixAccountForLostAndFound returns undef if patron is deleted' => sub {
2969 plan tests => 1;
2971 my $manager = $builder->build_object({ class => "Koha::Patrons" });
2972 t::lib::Mocks::mock_userenv({ patron => $manager, branchcode => $manager->branchcode });
2974 my $biblio = $builder->build_sample_biblio({ author => 'Hall, Kylie' });
2976 my $branchcode = $library2->{branchcode};
2978 my $item = $builder->build_sample_item(
2980 biblionumber => $biblio->biblionumber,
2981 library => $branchcode,
2982 replacementprice => 99.00,
2983 itype => $itemtype,
2987 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2989 ## Start with basic call, should just close out the open fine
2990 my $accountline = Koha::Account::Line->new(
2992 borrowernumber => $patron->id,
2993 debit_type_code => 'LOST',
2994 status => undef,
2995 itemnumber => $item->itemnumber,
2996 amount => 99.00,
2997 amountoutstanding => 99.00,
2998 interface => 'test',
3000 )->store();
3002 $patron->delete();
3004 my $return_value = C4::Circulation::_FixAccountForLostAndFound( $patron->id, $item->itemnumber );
3006 is( $return_value, undef, "_FixAccountForLostAndFound returns undef if patron is deleted" );
3010 subtest 'Set waiting flag' => sub {
3011 plan tests => 11;
3013 my $library_1 = $builder->build( { source => 'Branch' } );
3014 my $patron_1 = $builder->build( { source => 'Borrower', value => { branchcode => $library_1->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3015 my $library_2 = $builder->build( { source => 'Branch' } );
3016 my $patron_2 = $builder->build( { source => 'Borrower', value => { branchcode => $library_2->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3018 my $item = $builder->build_sample_item(
3020 library => $library_1->{branchcode},
3022 )->unblessed;
3024 set_userenv( $library_2 );
3025 my $reserve_id = AddReserve(
3027 branchcode => $library_2->{branchcode},
3028 borrowernumber => $patron_2->{borrowernumber},
3029 biblionumber => $item->{biblionumber},
3030 priority => 1,
3031 itemnumber => $item->{itemnumber},
3035 set_userenv( $library_1 );
3036 my $do_transfer = 1;
3037 my ( $res, $rr ) = AddReturn( $item->{barcode}, $library_1->{branchcode} );
3038 ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
3039 my $hold = Koha::Holds->find( $reserve_id );
3040 is( $hold->found, 'T', 'Hold is in transit' );
3042 my ( $status ) = CheckReserves($item->{itemnumber});
3043 is( $status, 'Reserved', 'Hold is not waiting yet');
3045 set_userenv( $library_2 );
3046 $do_transfer = 0;
3047 AddReturn( $item->{barcode}, $library_2->{branchcode} );
3048 ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
3049 $hold = Koha::Holds->find( $reserve_id );
3050 is( $hold->found, 'W', 'Hold is waiting' );
3051 ( $status ) = CheckReserves($item->{itemnumber});
3052 is( $status, 'Waiting', 'Now the hold is waiting');
3054 #Bug 21944 - Waiting transfer checked in at branch other than pickup location
3055 set_userenv( $library_1 );
3056 (undef, my $messages, undef, undef ) = AddReturn ( $item->{barcode}, $library_1->{branchcode} );
3057 $hold = Koha::Holds->find( $reserve_id );
3058 is( $hold->found, undef, 'Hold is no longer marked waiting' );
3059 is( $hold->priority, 1, "Hold is now priority one again");
3060 is( $hold->waitingdate, undef, "Hold no longer has a waiting date");
3061 is( $hold->itemnumber, $item->{itemnumber}, "Hold has retained its' itemnumber");
3062 is( $messages->{ResFound}->{ResFound}, "Reserved", "Hold is still returned");
3063 is( $messages->{ResFound}->{found}, undef, "Hold is no longer marked found in return message");
3064 is( $messages->{ResFound}->{priority}, 1, "Hold is priority 1 in return message");
3067 subtest 'Cancel transfers on lost items' => sub {
3068 plan tests => 5;
3069 my $library_1 = $builder->build( { source => 'Branch' } );
3070 my $patron_1 = $builder->build( { source => 'Borrower', value => { branchcode => $library_1->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3071 my $library_2 = $builder->build( { source => 'Branch' } );
3072 my $patron_2 = $builder->build( { source => 'Borrower', value => { branchcode => $library_2->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3073 my $biblio = $builder->build_sample_biblio({branchcode => $library->{branchcode}});
3074 my $item = $builder->build_sample_item({
3075 biblionumber => $biblio->biblionumber,
3076 library => $library_1->{branchcode},
3079 set_userenv( $library_2 );
3080 my $reserve_id = AddReserve(
3082 branchcode => $library_2->{branchcode},
3083 borrowernumber => $patron_2->{borrowernumber},
3084 biblionumber => $item->biblionumber,
3085 priority => 1,
3086 itemnumber => $item->itemnumber,
3090 #Return book and add transfer
3091 set_userenv( $library_1 );
3092 my $do_transfer = 1;
3093 my ( $res, $rr ) = AddReturn( $item->barcode, $library_1->{branchcode} );
3094 ModReserveAffect( $item->itemnumber, undef, $do_transfer, $reserve_id );
3095 C4::Circulation::transferbook( $library_2->{branchcode}, $item->barcode );
3096 my $hold = Koha::Holds->find( $reserve_id );
3097 is( $hold->found, 'T', 'Hold is in transit' );
3099 #Check transfer exists and the items holding branch is the transfer destination branch before marking it as lost
3100 my ($datesent,$frombranch,$tobranch) = GetTransfers($item->itemnumber);
3101 is( $tobranch, $library_2->{branchcode}, 'The transfer record exists in the branchtransfers table');
3102 my $itemcheck = Koha::Items->find($item->itemnumber);
3103 is( $itemcheck->holdingbranch, $library_1->{branchcode}, 'Items holding branch is the transfers origin branch before it is marked as lost' );
3105 #Simulate item being marked as lost and confirm the transfer is deleted and the items holding branch is the transfers source branch
3106 $item->itemlost(1)->store;
3107 LostItem( $item->itemnumber, 'test', 1 );
3108 ($datesent,$frombranch,$tobranch) = GetTransfers($item->itemnumber);
3109 is( $tobranch, undef, 'The transfer on the lost item has been deleted as the LostItemCancelOutstandingTransfer is enabled');
3110 $itemcheck = Koha::Items->find($item->itemnumber);
3111 is( $itemcheck->holdingbranch, $library_1->{branchcode}, 'Lost item with cancelled hold has holding branch equallying the transfers source branch' );
3114 subtest 'CanBookBeIssued | is_overdue' => sub {
3115 plan tests => 3;
3117 # Set a simple circ policy
3118 Koha::CirculationRules->set_rules(
3120 categorycode => undef,
3121 branchcode => undef,
3122 itemtype => undef,
3123 rules => {
3124 maxissueqty => 1,
3125 reservesallowed => 25,
3126 issuelength => 14,
3127 lengthunit => 'days',
3128 renewalsallowed => 1,
3129 renewalperiod => 7,
3130 norenewalbefore => undef,
3131 auto_renew => 0,
3132 fine => .10,
3133 chargeperiod => 1,
3138 my $now = dt_from_string;
3139 my $five_days_go = output_pref({ dt => $now->clone->add( days => 5 ), dateonly => 1});
3140 my $ten_days_go = output_pref({ dt => $now->clone->add( days => 10), dateonly => 1 });
3141 my $library = $builder->build( { source => 'Branch' } );
3142 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
3144 my $item = $builder->build_sample_item(
3146 library => $library->{branchcode},
3148 )->unblessed;
3150 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $five_days_go ); # date due was 10d ago
3151 my $actualissue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
3152 is( output_pref({ str => $actualissue->date_due, dateonly => 1}), $five_days_go, "First issue works");
3153 my ($issuingimpossible, $needsconfirmation) = CanBookBeIssued($patron,$item->{barcode},$ten_days_go, undef, undef, undef);
3154 is( $needsconfirmation->{RENEW_ISSUE}, 1, "This is a renewal");
3155 is( $needsconfirmation->{TOO_MANY}, undef, "Not too many, is a renewal");
3158 subtest 'ItemsDeniedRenewal preference' => sub {
3159 plan tests => 18;
3161 C4::Context->set_preference('ItemsDeniedRenewal','');
3163 my $idr_lib = $builder->build_object({ class => 'Koha::Libraries'});
3164 Koha::CirculationRules->set_rules(
3166 categorycode => '*',
3167 itemtype => '*',
3168 branchcode => $idr_lib->branchcode,
3169 rules => {
3170 reservesallowed => 25,
3171 issuelength => 14,
3172 lengthunit => 'days',
3173 renewalsallowed => 10,
3174 renewalperiod => 7,
3175 norenewalbefore => undef,
3176 auto_renew => 0,
3177 fine => .10,
3178 chargeperiod => 1,
3183 my $deny_book = $builder->build_object({ class => 'Koha::Items', value => {
3184 homebranch => $idr_lib->branchcode,
3185 withdrawn => 1,
3186 itype => 'HIDE',
3187 location => 'PROC',
3188 itemcallnumber => undef,
3189 itemnotes => "",
3192 my $allow_book = $builder->build_object({ class => 'Koha::Items', value => {
3193 homebranch => $idr_lib->branchcode,
3194 withdrawn => 0,
3195 itype => 'NOHIDE',
3196 location => 'NOPROC'
3200 my $idr_borrower = $builder->build_object({ class => 'Koha::Patrons', value=> {
3201 branchcode => $idr_lib->branchcode,
3204 my $future = dt_from_string->add( days => 1 );
3205 my $deny_issue = $builder->build_object({ class => 'Koha::Checkouts', value => {
3206 returndate => undef,
3207 renewals => 0,
3208 auto_renew => 0,
3209 borrowernumber => $idr_borrower->borrowernumber,
3210 itemnumber => $deny_book->itemnumber,
3211 onsite_checkout => 0,
3212 date_due => $future,
3215 my $allow_issue = $builder->build_object({ class => 'Koha::Checkouts', value => {
3216 returndate => undef,
3217 renewals => 0,
3218 auto_renew => 0,
3219 borrowernumber => $idr_borrower->borrowernumber,
3220 itemnumber => $allow_book->itemnumber,
3221 onsite_checkout => 0,
3222 date_due => $future,
3226 my $idr_rules;
3228 my ( $idr_mayrenew, $idr_error ) =
3229 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3230 is( $idr_mayrenew, 1, 'Renewal allowed when no rules' );
3231 is( $idr_error, undef, 'Renewal allowed when no rules' );
3233 $idr_rules="withdrawn: [1]";
3235 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3236 ( $idr_mayrenew, $idr_error ) =
3237 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3238 is( $idr_mayrenew, 0, 'Renewal blocked when 1 rules (withdrawn)' );
3239 is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 1 rule (withdrawn)' );
3240 ( $idr_mayrenew, $idr_error ) =
3241 CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
3242 is( $idr_mayrenew, 1, 'Renewal allowed when 1 rules not matched (withdrawn)' );
3243 is( $idr_error, undef, 'Renewal allowed when 1 rules not matched (withdrawn)' );
3245 $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]";
3247 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3248 ( $idr_mayrenew, $idr_error ) =
3249 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3250 is( $idr_mayrenew, 0, 'Renewal blocked when 2 rules matched (withdrawn, itype)' );
3251 is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 2 rules matched (withdrawn,itype)' );
3252 ( $idr_mayrenew, $idr_error ) =
3253 CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
3254 is( $idr_mayrenew, 1, 'Renewal allowed when 2 rules not matched (withdrawn, itype)' );
3255 is( $idr_error, undef, 'Renewal allowed when 2 rules not matched (withdrawn, itype)' );
3257 $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]\nlocation: [PROC]";
3259 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3260 ( $idr_mayrenew, $idr_error ) =
3261 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3262 is( $idr_mayrenew, 0, 'Renewal blocked when 3 rules matched (withdrawn, itype, location)' );
3263 is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 3 rules matched (withdrawn,itype, location)' );
3264 ( $idr_mayrenew, $idr_error ) =
3265 CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
3266 is( $idr_mayrenew, 1, 'Renewal allowed when 3 rules not matched (withdrawn, itype, location)' );
3267 is( $idr_error, undef, 'Renewal allowed when 3 rules not matched (withdrawn, itype, location)' );
3269 $idr_rules="itemcallnumber: [NULL]";
3270 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3271 ( $idr_mayrenew, $idr_error ) =
3272 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3273 is( $idr_mayrenew, 0, 'Renewal blocked for undef when NULL in pref' );
3274 $idr_rules="itemcallnumber: ['']";
3275 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3276 ( $idr_mayrenew, $idr_error ) =
3277 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3278 is( $idr_mayrenew, 1, 'Renewal not blocked for undef when "" in pref' );
3280 $idr_rules="itemnotes: [NULL]";
3281 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3282 ( $idr_mayrenew, $idr_error ) =
3283 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3284 is( $idr_mayrenew, 1, 'Renewal not blocked for "" when NULL in pref' );
3285 $idr_rules="itemnotes: ['']";
3286 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3287 ( $idr_mayrenew, $idr_error ) =
3288 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3289 is( $idr_mayrenew, 0, 'Renewal blocked for empty string when "" in pref' );
3292 subtest 'CanBookBeIssued | item-level_itypes=biblio' => sub {
3293 plan tests => 2;
3295 t::lib::Mocks::mock_preference('item-level_itypes', 0); # biblio
3296 my $library = $builder->build( { source => 'Branch' } );
3297 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } )->store;
3299 my $item = $builder->build_sample_item(
3301 library => $library->{branchcode},
3305 my ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3306 is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
3307 is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
3310 subtest 'CanBookBeIssued | notforloan' => sub {
3311 plan tests => 2;
3313 t::lib::Mocks::mock_preference('AllowNotForLoanOverride', 0);
3315 my $library = $builder->build( { source => 'Branch' } );
3316 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } )->store;
3318 my $itemtype = $builder->build(
3320 source => 'Itemtype',
3321 value => { notforloan => undef, }
3324 my $item = $builder->build_sample_item(
3326 library => $library->{branchcode},
3327 itype => $itemtype->{itemtype},
3330 $item->biblioitem->itemtype($itemtype->{itemtype})->store;
3332 my ( $issuingimpossible, $needsconfirmation );
3335 subtest 'item-level_itypes = 1' => sub {
3336 plan tests => 6;
3338 t::lib::Mocks::mock_preference('item-level_itypes', 1); # item
3339 # Is for loan at item type and item level
3340 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3341 is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
3342 is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
3344 # not for loan at item type level
3345 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(1)->store;
3346 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3347 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3348 is_deeply(
3349 $issuingimpossible,
3350 { NOT_FOR_LOAN => 1, itemtype_notforloan => $itemtype->{itemtype} },
3351 'Item can not be issued, not for loan at item type level'
3354 # not for loan at item level
3355 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(undef)->store;
3356 $item->notforloan( 1 )->store;
3357 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3358 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3359 is_deeply(
3360 $issuingimpossible,
3361 { NOT_FOR_LOAN => 1, item_notforloan => 1 },
3362 'Item can not be issued, not for loan at item type level'
3366 subtest 'item-level_itypes = 0' => sub {
3367 plan tests => 6;
3369 t::lib::Mocks::mock_preference('item-level_itypes', 0); # biblio
3371 # We set another itemtype for biblioitem
3372 my $itemtype = $builder->build(
3374 source => 'Itemtype',
3375 value => { notforloan => undef, }
3379 # for loan at item type and item level
3380 $item->notforloan(0)->store;
3381 $item->biblioitem->itemtype($itemtype->{itemtype})->store;
3382 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3383 is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
3384 is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
3386 # not for loan at item type level
3387 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(1)->store;
3388 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3389 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3390 is_deeply(
3391 $issuingimpossible,
3392 { NOT_FOR_LOAN => 1, itemtype_notforloan => $itemtype->{itemtype} },
3393 'Item can not be issued, not for loan at item type level'
3396 # not for loan at item level
3397 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(undef)->store;
3398 $item->notforloan( 1 )->store;
3399 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3400 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3401 is_deeply(
3402 $issuingimpossible,
3403 { NOT_FOR_LOAN => 1, item_notforloan => 1 },
3404 'Item can not be issued, not for loan at item type level'
3408 # TODO test with AllowNotForLoanOverride = 1
3411 subtest 'AddReturn should clear items.onloan for unissued items' => sub {
3412 plan tests => 1;
3414 t::lib::Mocks::mock_preference( "AllowReturnToBranch", 'anywhere' );
3415 my $item = $builder->build_sample_item(
3417 onloan => '2018-01-01',
3421 AddReturn( $item->barcode, $item->homebranch );
3422 $item->discard_changes; # refresh
3423 is( $item->onloan, undef, 'AddReturn did clear items.onloan' );
3427 subtest 'AddRenewal and AddIssuingCharge tests' => sub {
3429 plan tests => 12;
3432 t::lib::Mocks::mock_preference('item-level_itypes', 1);
3434 my $issuing_charges = 15;
3435 my $title = 'A title';
3436 my $author = 'Author, An';
3437 my $barcode = 'WHATARETHEODDS';
3439 my $circ = Test::MockModule->new('C4::Circulation');
3440 $circ->mock(
3441 'GetIssuingCharges',
3442 sub {
3443 return $issuing_charges;
3447 my $library = $builder->build_object({ class => 'Koha::Libraries' });
3448 my $itemtype = $builder->build_object({ class => 'Koha::ItemTypes', value => { rentalcharge_daily => 0.00 }});
3449 my $patron = $builder->build_object({
3450 class => 'Koha::Patrons',
3451 value => { branchcode => $library->id }
3454 my $biblio = $builder->build_sample_biblio({ title=> $title, author => $author });
3455 my $item_id = Koha::Item->new(
3457 biblionumber => $biblio->biblionumber,
3458 homebranch => $library->id,
3459 holdingbranch => $library->id,
3460 barcode => $barcode,
3461 replacementprice => 23.00,
3462 itype => $itemtype->id
3464 )->store->itemnumber;
3465 my $item = Koha::Items->find( $item_id );
3467 my $context = Test::MockModule->new('C4::Context');
3468 $context->mock( userenv => { branch => $library->id } );
3470 # Check the item out
3471 AddIssue( $patron->unblessed, $item->barcode );
3472 t::lib::Mocks::mock_preference( 'RenewalLog', 0 );
3473 my $date = output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } );
3474 my %params_renewal = (
3475 timestamp => { -like => $date . "%" },
3476 module => "CIRCULATION",
3477 action => "RENEWAL",
3479 my $old_log_size = Koha::ActionLogs->count( \%params_renewal );;
3480 AddRenewal( $patron->id, $item->id, $library->id );
3481 my $new_log_size = Koha::ActionLogs->count( \%params_renewal );
3482 is( $new_log_size, $old_log_size, 'renew log not added because of the syspref RenewalLog' );
3484 my $checkouts = $patron->checkouts;
3485 # The following will fail if run on 00:00:00
3486 unlike ( $checkouts->next->lastreneweddate, qr/00:00:00/, 'AddRenewal should set the renewal date with the time part');
3488 my $lines = Koha::Account::Lines->search({
3489 borrowernumber => $patron->id,
3490 itemnumber => $item->id
3493 is( $lines->count, 2 );
3495 my $line = $lines->next;
3496 is( $line->debit_type_code, 'RENT', 'The issue of item with issuing charge generates an accountline of the correct type' );
3497 is( $line->branchcode, $library->id, 'AddIssuingCharge correctly sets branchcode' );
3498 is( $line->description, '', 'AddIssue does not set a hardcoded description for the accountline' );
3500 $line = $lines->next;
3501 is( $line->debit_type_code, 'RENT_RENEW', 'The renewal of item with issuing charge generates an accountline of the correct type' );
3502 is( $line->branchcode, $library->id, 'AddRenewal correctly sets branchcode' );
3503 is( $line->description, '', 'AddRenewal does not set a hardcoded description for the accountline' );
3505 t::lib::Mocks::mock_preference( 'RenewalLog', 1 );
3507 $context = Test::MockModule->new('C4::Context');
3508 $context->mock( userenv => { branch => undef, interface => 'CRON'} ); #Test statistical logging of renewal via cron (atuo_renew)
3510 my $now = dt_from_string;
3511 $date = output_pref( { dt => $now, dateonly => 1, dateformat => 'iso' } );
3512 $old_log_size = Koha::ActionLogs->count( \%params_renewal );
3513 my $sth = $dbh->prepare("SELECT COUNT(*) FROM statistics WHERE itemnumber = ? AND branch = ?");
3514 $sth->execute($item->id, $library->id);
3515 my ($old_stats_size) = $sth->fetchrow_array;
3516 AddRenewal( $patron->id, $item->id, $library->id );
3517 $new_log_size = Koha::ActionLogs->count( \%params_renewal );
3518 $sth->execute($item->id, $library->id);
3519 my ($new_stats_size) = $sth->fetchrow_array;
3520 is( $new_log_size, $old_log_size + 1, 'renew log successfully added' );
3521 is( $new_stats_size, $old_stats_size + 1, 'renew statistic successfully added with passed branch' );
3523 AddReturn( $item->id, $library->id, undef, $date );
3524 AddIssue( $patron->unblessed, $item->barcode, $now );
3525 AddRenewal( $patron->id, $item->id, $library->id, undef, undef, 1 );
3526 my $lines_skipped = Koha::Account::Lines->search({
3527 borrowernumber => $patron->id,
3528 itemnumber => $item->id
3530 is( $lines_skipped->count, 5, 'Passing skipfinecalc causes fine calculation on renewal to be skipped' );
3534 subtest 'ProcessOfflinePayment() tests' => sub {
3536 plan tests => 4;
3539 my $amount = 123;
3541 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
3542 my $library = $builder->build_object({ class => 'Koha::Libraries' });
3543 my $result = C4::Circulation::ProcessOfflinePayment({ cardnumber => $patron->cardnumber, amount => $amount, branchcode => $library->id });
3545 is( $result, 'Success.', 'The right string is returned' );
3547 my $lines = $patron->account->lines;
3548 is( $lines->count, 1, 'line created correctly');
3550 my $line = $lines->next;
3551 is( $line->amount+0, $amount * -1, 'amount picked from params' );
3552 is( $line->branchcode, $library->id, 'branchcode set correctly' );
3556 subtest 'Incremented fee tests' => sub {
3557 plan tests => 19;
3559 my $dt = dt_from_string();
3560 Time::Fake->offset( $dt->epoch );
3562 t::lib::Mocks::mock_preference( 'item-level_itypes', 1 );
3564 my $library =
3565 $builder->build_object( { class => 'Koha::Libraries' } )->store;
3567 my $module = new Test::MockModule('C4::Context');
3568 $module->mock( 'userenv', sub { { branch => $library->id } } );
3570 my $patron = $builder->build_object(
3572 class => 'Koha::Patrons',
3573 value => { categorycode => $patron_category->{categorycode} }
3575 )->store;
3577 my $itemtype = $builder->build_object(
3579 class => 'Koha::ItemTypes',
3580 value => {
3581 notforloan => undef,
3582 rentalcharge => 0,
3583 rentalcharge_daily => 1,
3584 rentalcharge_daily_calendar => 0
3587 )->store;
3589 my $item = $builder->build_sample_item(
3591 library => $library->{branchcode},
3592 itype => $itemtype->id,
3596 is( $itemtype->rentalcharge_daily+0,
3597 1, 'Daily rental charge stored and retreived correctly' );
3598 is( $item->effective_itemtype, $itemtype->id,
3599 "Itemtype set correctly for item" );
3601 my $now = dt_from_string;
3602 my $dt_from = $now->clone;
3603 my $dt_to = $now->clone->add( days => 7 );
3604 my $dt_to_renew = $now->clone->add( days => 13 );
3606 # Daily Tests
3607 my $issue =
3608 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3609 my $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3610 is( $accountline->amount+0, 7,
3611 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 0"
3613 $accountline->delete();
3614 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3615 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3616 is( $accountline->amount+0, 6,
3617 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 0, for renewal"
3619 $accountline->delete();
3620 $issue->delete();
3622 t::lib::Mocks::mock_preference( 'finesCalendar', 'noFinesWhenClosed' );
3623 $itemtype->rentalcharge_daily_calendar(1)->store();
3624 $issue =
3625 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3626 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3627 is( $accountline->amount+0, 7,
3628 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1"
3630 $accountline->delete();
3631 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3632 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3633 is( $accountline->amount+0, 6,
3634 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1, for renewal"
3636 $accountline->delete();
3637 $issue->delete();
3639 my $calendar = C4::Calendar->new( branchcode => $library->id );
3640 # DateTime 1..7 (Mon..Sun), C4::Calender 0..6 (Sun..Sat)
3641 my $closed_day =
3642 ( $dt_from->day_of_week == 6 ) ? 0
3643 : ( $dt_from->day_of_week == 7 ) ? 1
3644 : $dt_from->day_of_week + 1;
3645 my $closed_day_name = $dt_from->clone->add(days => 1)->day_name;
3646 $calendar->insert_week_day_holiday(
3647 weekday => $closed_day,
3648 title => 'Test holiday',
3649 description => 'Test holiday'
3651 $issue =
3652 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3653 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3654 is( $accountline->amount+0, 6,
3655 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1 and closed $closed_day_name"
3657 $accountline->delete();
3658 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3659 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3660 is( $accountline->amount+0, 5,
3661 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1 and closed $closed_day_name, for renewal"
3663 $accountline->delete();
3664 $issue->delete();
3666 $itemtype->rentalcharge(2)->store;
3667 is( $itemtype->rentalcharge+0, 2,
3668 'Rental charge updated and retreived correctly' );
3669 $issue =
3670 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3671 my $accountlines =
3672 Koha::Account::Lines->search( { itemnumber => $item->id } );
3673 is( $accountlines->count, '2',
3674 "Fixed charge and accrued charge recorded distinctly" );
3675 $accountlines->delete();
3676 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3677 $accountlines = Koha::Account::Lines->search( { itemnumber => $item->id } );
3678 is( $accountlines->count, '2',
3679 "Fixed charge and accrued charge recorded distinctly, for renewal" );
3680 $accountlines->delete();
3681 $issue->delete();
3682 $itemtype->rentalcharge(0)->store;
3683 is( $itemtype->rentalcharge+0, 0,
3684 'Rental charge reset and retreived correctly' );
3686 # Hourly
3687 Koha::CirculationRules->set_rule(
3689 categorycode => $patron->categorycode,
3690 itemtype => $itemtype->id,
3691 branchcode => $library->id,
3692 rule_name => 'lengthunit',
3693 rule_value => 'hours',
3697 $itemtype->rentalcharge_hourly('0.25')->store();
3698 is( $itemtype->rentalcharge_hourly,
3699 '0.25', 'Hourly rental charge stored and retreived correctly' );
3701 $dt_to = $now->clone->add( hours => 168 );
3702 $dt_to_renew = $now->clone->add( hours => 312 );
3704 $itemtype->rentalcharge_hourly_calendar(0)->store();
3705 $issue =
3706 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3707 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3708 is( $accountline->amount + 0, 42,
3709 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 0 (168h * 0.25u)" );
3710 $accountline->delete();
3711 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3712 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3713 is( $accountline->amount + 0, 36,
3714 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 0, for renewal (312h - 168h * 0.25u)" );
3715 $accountline->delete();
3716 $issue->delete();
3718 $itemtype->rentalcharge_hourly_calendar(1)->store();
3719 $issue =
3720 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3721 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3722 is( $accountline->amount + 0, 36,
3723 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1 and closed $closed_day_name (168h - 24h * 0.25u)" );
3724 $accountline->delete();
3725 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3726 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3727 is( $accountline->amount + 0, 30,
3728 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1 and closed $closed_day_name, for renewal (312h - 168h - 24h * 0.25u" );
3729 $accountline->delete();
3730 $issue->delete();
3732 $calendar->delete_holiday( weekday => $closed_day );
3733 $issue =
3734 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3735 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3736 is( $accountline->amount + 0, 42,
3737 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1 (168h - 0h * 0.25u" );
3738 $accountline->delete();
3739 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3740 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3741 is( $accountline->amount + 0, 36,
3742 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1, for renewal (312h - 168h - 0h * 0.25u)" );
3743 $accountline->delete();
3744 $issue->delete();
3745 Time::Fake->reset;
3748 subtest 'CanBookBeIssued & RentalFeesCheckoutConfirmation' => sub {
3749 plan tests => 2;
3751 t::lib::Mocks::mock_preference('RentalFeesCheckoutConfirmation', 1);
3752 t::lib::Mocks::mock_preference('item-level_itypes', 1);
3754 my $library =
3755 $builder->build_object( { class => 'Koha::Libraries' } )->store;
3756 my $patron = $builder->build_object(
3758 class => 'Koha::Patrons',
3759 value => { categorycode => $patron_category->{categorycode} }
3761 )->store;
3763 my $itemtype = $builder->build_object(
3765 class => 'Koha::ItemTypes',
3766 value => {
3767 notforloan => 0,
3768 rentalcharge => 0,
3769 rentalcharge_daily => 0
3774 my $biblioitem = $builder->build( { source => 'Biblioitem' } );
3775 my $item = $builder->build_object(
3777 class => 'Koha::Items',
3778 value => {
3779 homebranch => $library->id,
3780 holdingbranch => $library->id,
3781 notforloan => 0,
3782 itemlost => 0,
3783 withdrawn => 0,
3784 itype => $itemtype->id,
3785 biblionumber => $biblioitem->{biblionumber},
3786 biblioitemnumber => $biblioitem->{biblioitemnumber},
3789 )->store;
3791 my ( $issuingimpossible, $needsconfirmation );
3792 my $dt_from = dt_from_string();
3793 my $dt_due = $dt_from->clone->add( days => 3 );
3795 $itemtype->rentalcharge(1)->store;
3796 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
3797 is_deeply( $needsconfirmation, { RENTALCHARGE => '1.00' }, 'Item needs rentalcharge confirmation to be issued' );
3798 $itemtype->rentalcharge('0')->store;
3799 $itemtype->rentalcharge_daily(1)->store;
3800 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
3801 is_deeply( $needsconfirmation, { RENTALCHARGE => '3' }, 'Item needs rentalcharge confirmation to be issued, increment' );
3802 $itemtype->rentalcharge_daily('0')->store;
3805 subtest "Test Backdating of Returns" => sub {
3806 plan tests => 2;
3808 my $branch = $library2->{branchcode};
3809 my $biblio = $builder->build_sample_biblio();
3810 my $item = $builder->build_sample_item(
3812 biblionumber => $biblio->biblionumber,
3813 library => $branch,
3814 itype => $itemtype,
3818 my %a_borrower_data = (
3819 firstname => 'Kyle',
3820 surname => 'Hall',
3821 categorycode => $patron_category->{categorycode},
3822 branchcode => $branch,
3824 my $borrowernumber = Koha::Patron->new(\%a_borrower_data)->store->borrowernumber;
3825 my $borrower = Koha::Patrons->find( $borrowernumber )->unblessed;
3827 my $due_date = dt_from_string;
3828 my $issue = AddIssue( $borrower, $item->barcode, $due_date );
3829 UpdateFine(
3831 issue_id => $issue->id(),
3832 itemnumber => $item->itemnumber,
3833 borrowernumber => $borrowernumber,
3834 amount => .25,
3835 amountoutstanding => .25,
3836 type => q{}
3841 my ( undef, $message ) = AddReturn( $item->barcode, $branch, undef, $due_date );
3843 my $accountline = Koha::Account::Lines->find( { issue_id => $issue->id } );
3844 is( $accountline->amountoutstanding+0, 0, 'Fee amount outstanding was reduced to 0' );
3845 is( $accountline->amount+0, 0, 'Fee amount was reduced to 0' );
3848 subtest 'Do not return on renewal (LOST charge)' => sub {
3849 plan tests => 1;
3851 t::lib::Mocks::mock_preference('MarkLostItemsAsReturned', 'onpayment');
3852 my $library = $builder->build_object( { class => "Koha::Libraries" } );
3853 my $manager = $builder->build_object( { class => "Koha::Patrons" } );
3854 t::lib::Mocks::mock_userenv({ patron => $manager,branchcode => $manager->branchcode });
3856 my $biblio = $builder->build_sample_biblio;
3858 my $item = $builder->build_sample_item(
3860 biblionumber => $biblio->biblionumber,
3861 library => $library->branchcode,
3862 replacementprice => 99.00,
3863 itype => $itemtype,
3867 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
3868 AddIssue( $patron->unblessed, $item->barcode );
3870 my $accountline = Koha::Account::Line->new(
3872 borrowernumber => $patron->borrowernumber,
3873 debit_type_code => 'LOST',
3874 status => undef,
3875 itemnumber => $item->itemnumber,
3876 amount => 12,
3877 amountoutstanding => 12,
3878 interface => 'something',
3880 )->store();
3882 # AddRenewal doesn't call _FixAccountForLostAndFound
3883 AddIssue( $patron->unblessed, $item->barcode );
3885 is( $patron->checkouts->count, 1,
3886 'Renewal should not return the item even if a LOST payment has been made earlier'
3890 subtest 'Filling a hold should cancel existing transfer' => sub {
3891 plan tests => 4;
3893 t::lib::Mocks::mock_preference('AutomaticItemReturn', 1);
3895 my $libraryA = $builder->build_object( { class => 'Koha::Libraries' } );
3896 my $libraryB = $builder->build_object( { class => 'Koha::Libraries' } );
3897 my $patron = $builder->build_object(
3899 class => 'Koha::Patrons',
3900 value => {
3901 categorycode => $patron_category->{categorycode},
3902 branchcode => $libraryA->branchcode,
3905 )->store;
3907 my $item = $builder->build_sample_item({
3908 homebranch => $libraryB->branchcode,
3911 my ( undef, $message ) = AddReturn( $item->barcode, $libraryA->branchcode, undef, undef );
3912 is( Koha::Item::Transfers->search({ itemnumber => $item->itemnumber, datearrived => undef })->count, 1, "We generate a transfer on checkin");
3913 AddReserve({
3914 branchcode => $libraryA->branchcode,
3915 borrowernumber => $patron->borrowernumber,
3916 biblionumber => $item->biblionumber,
3917 itemnumber => $item->itemnumber
3919 my $reserves = Koha::Holds->search({ itemnumber => $item->itemnumber });
3920 is( $reserves->count, 1, "Reserve is placed");
3921 ( undef, $message ) = AddReturn( $item->barcode, $libraryA->branchcode, undef, undef );
3922 my $reserve = $reserves->next;
3923 ModReserveAffect( $item->itemnumber, $patron->borrowernumber, 0, $reserve->reserve_id );
3924 $reserve->discard_changes;
3925 ok( $reserve->found eq 'W', "Reserve is marked waiting" );
3926 is( Koha::Item::Transfers->search({ itemnumber => $item->itemnumber, datearrived => undef })->count, 0, "No outstanding transfers when hold is waiting");
3929 $schema->storage->txn_rollback;
3930 C4::Context->clear_syspref_cache();
3931 $cache->clear_from_cache('single_holidays');