Bug 8338: (QA follow-up) Fix perlcritic error
[koha.git] / t / db_dependent / Circulation.t
blob0c351d3ef2bd363e9b164cbba28e19be42862feb
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 => 47;
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 => 8;
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 $two_days_ago = $now->clone->subtract( days => 2 );
2389 my $five_days_ago = $now->clone->subtract( days => 5 );
2390 my $ten_days_ago = $now->clone->subtract( days => 10 );
2391 $patron = Koha::Patrons->find( $patron->{borrowernumber} );
2393 # No return date specified, today will be used => 10 days overdue charged
2394 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2395 AddReturn( $item->{barcode}, $library->{branchcode} );
2396 is( int($patron->account->balance()), 10, 'Patron should have a charge of 10 (10 days x 1)' );
2397 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2399 # specify return date 5 days before => no overdue charged
2400 AddIssue( $patron->unblessed, $item->{barcode}, $five_days_ago ); # date due was 5d ago
2401 AddReturn( $item->{barcode}, $library->{branchcode}, undef, $ten_days_ago );
2402 is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
2403 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2405 # specify return date 5 days later => 5 days overdue charged
2406 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2407 AddReturn( $item->{barcode}, $library->{branchcode}, undef, $five_days_ago );
2408 is( int($patron->account->balance()), 5, 'AddReturn: pass return_date => overdue' );
2409 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2411 # specify return date 5 days later, specify exemptfine => no overdue charge
2412 AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2413 AddReturn( $item->{barcode}, $library->{branchcode}, 1, $five_days_ago );
2414 is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
2415 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2417 subtest 'bug 22877' => sub {
2419 plan tests => 3;
2421 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
2423 # Fake fines cronjob on this checkout
2424 my ($fine) =
2425 CalcFine( $item, $patron->categorycode, $library->{branchcode},
2426 $ten_days_ago, $now );
2427 UpdateFine(
2429 issue_id => $issue->issue_id,
2430 itemnumber => $item->{itemnumber},
2431 borrowernumber => $patron->borrowernumber,
2432 amount => $fine,
2433 due => output_pref($ten_days_ago)
2436 is( int( $patron->account->balance() ),
2437 10, "Overdue fine of 10 days overdue" );
2439 # Fake longoverdue with charge and not marking returned
2440 LostItem( $item->{itemnumber}, 'cronjob', 0 );
2441 is( int( $patron->account->balance() ),
2442 17, "Lost fine of 7 plus 10 days overdue" );
2444 # Now we return it today
2445 AddReturn( $item->{barcode}, $library->{branchcode} );
2446 is( int( $patron->account->balance() ),
2447 17, "Should have a single 10 days overdue fine and lost charge" );
2449 # Cleanup
2450 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2453 subtest 'bug 8338 | backdated return resulting in zero amount fine' => sub {
2455 plan tests => 17;
2457 t::lib::Mocks::mock_preference('CalculateFinesOnBackdate', 1);
2459 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $one_day_ago ); # date due was 1d ago
2461 # Fake fines cronjob on this checkout
2462 my ($fine) =
2463 CalcFine( $item, $patron->categorycode, $library->{branchcode},
2464 $one_day_ago, $now );
2465 UpdateFine(
2467 issue_id => $issue->issue_id,
2468 itemnumber => $item->{itemnumber},
2469 borrowernumber => $patron->borrowernumber,
2470 amount => $fine,
2471 due => output_pref($one_day_ago)
2474 is( int( $patron->account->balance() ),
2475 1, "Overdue fine of 1 day overdue" );
2477 # Backdated return (dropbox mode example - charge should be removed)
2478 AddReturn( $item->{barcode}, $library->{branchcode}, 1, $one_day_ago );
2479 is( int( $patron->account->balance() ),
2480 0, "Overdue fine should be annulled" );
2481 my $lines = Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber });
2482 is( $lines->count, 0, "Overdue fine accountline has been removed");
2484 $issue = AddIssue( $patron->unblessed, $item->{barcode}, $two_days_ago ); # date due was 2d ago
2486 # Fake fines cronjob on this checkout
2487 ($fine) =
2488 CalcFine( $item, $patron->categorycode, $library->{branchcode},
2489 $two_days_ago, $now );
2490 UpdateFine(
2492 issue_id => $issue->issue_id,
2493 itemnumber => $item->{itemnumber},
2494 borrowernumber => $patron->borrowernumber,
2495 amount => $fine,
2496 due => output_pref($one_day_ago)
2499 is( int( $patron->account->balance() ),
2500 2, "Overdue fine of 2 days overdue" );
2502 # Payment made against fine
2503 $lines = Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber });
2504 my $debit = $lines->next;
2505 my $credit = $patron->account->add_credit(
2507 amount => 2,
2508 type => 'PAYMENT',
2509 interface => 'test',
2512 $credit->apply(
2513 { debits => [ $debit ], offset_type => 'Payment' } );
2515 is( int( $patron->account->balance() ),
2516 0, "Overdue fine should be paid off" );
2517 $lines = Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber });
2518 is ( $lines->count, 2, "Overdue (debit) and Payment (credit) present");
2519 my $line = $lines->next;
2520 is( $line->amount+0, 2, "Overdue fine amount remains as 2 days");
2521 is( $line->amountoutstanding+0, 0, "Overdue fine amountoutstanding reduced to 0");
2523 # Backdated return (dropbox mode example - charge should be removed)
2524 AddReturn( $item->{barcode}, $library->{branchcode}, undef, $one_day_ago );
2525 is( int( $patron->account->balance() ),
2526 -1, "Refund credit has been applied" );
2527 $lines = Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber }, { order_by => { '-asc' => 'accountlines_id' }});
2528 is( $lines->count, 3, "Overdue (debit), Payment (credit) and Refund (credit) are all present");
2530 $line = $lines->next;
2531 is($line->amount+0,1, "Overdue fine amount has been reduced to 1");
2532 is($line->amountoutstanding+0,0, "Overdue fine amount outstanding remains at 0");
2533 is($line->status,'RETURNED', "Overdue fine is fixed");
2534 $line = $lines->next;
2535 is($line->amount+0,-2, "Original payment amount remains as 2");
2536 is($line->amountoutstanding+0,0, "Original payment remains applied");
2537 $line = $lines->next;
2538 is($line->amount+0,-1, "Refund amount correctly set to 1");
2539 is($line->amountoutstanding+0,-1, "Refund amount outstanding unspent");
2541 # Cleanup
2542 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2545 subtest 'bug 25417 | backdated return + exemptfine' => sub {
2547 plan tests => 2;
2549 t::lib::Mocks::mock_preference('CalculateFinesOnBackdate', 1);
2551 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $one_day_ago ); # date due was 1d ago
2553 # Fake fines cronjob on this checkout
2554 my ($fine) =
2555 CalcFine( $item, $patron->categorycode, $library->{branchcode},
2556 $one_day_ago, $now );
2557 UpdateFine(
2559 issue_id => $issue->issue_id,
2560 itemnumber => $item->{itemnumber},
2561 borrowernumber => $patron->borrowernumber,
2562 amount => $fine,
2563 due => output_pref($one_day_ago)
2566 is( int( $patron->account->balance() ),
2567 1, "Overdue fine of 1 day overdue" );
2569 # Backdated return (dropbox mode example - charge should no longer exist)
2570 AddReturn( $item->{barcode}, $library->{branchcode}, 1, $one_day_ago );
2571 is( int( $patron->account->balance() ),
2572 0, "Overdue fine should be annulled" );
2574 # Cleanup
2575 Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
2578 subtest 'bug 24075 | backdated return with return datetime matching due datetime' => sub {
2579 plan tests => 7;
2581 t::lib::Mocks::mock_preference( 'CalculateFinesOnBackdate', 1 );
2583 my $due_date = dt_from_string;
2584 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $due_date );
2586 # Add fine
2587 UpdateFine(
2589 issue_id => $issue->issue_id,
2590 itemnumber => $item->{itemnumber},
2591 borrowernumber => $patron->borrowernumber,
2592 amount => 0.25,
2593 due => output_pref($due_date)
2596 is( $patron->account->balance(),
2597 0.25, 'Overdue fine of $0.25 recorded' );
2599 # Backdate return to exact due date and time
2600 my ( undef, $message ) =
2601 AddReturn( $item->{barcode}, $library->{branchcode},
2602 undef, $due_date );
2604 my $accountline =
2605 Koha::Account::Lines->find( { issue_id => $issue->id } );
2606 ok( !$accountline, 'accountline removed as expected' );
2608 # Re-issue
2609 $issue = AddIssue( $patron->unblessed, $item->{barcode}, $due_date );
2611 # Add fine
2612 UpdateFine(
2614 issue_id => $issue->issue_id,
2615 itemnumber => $item->{itemnumber},
2616 borrowernumber => $patron->borrowernumber,
2617 amount => .25,
2618 due => output_pref($due_date)
2621 is( $patron->account->balance(),
2622 0.25, 'Overdue fine of $0.25 recorded' );
2624 # Partial pay accruing fine
2625 my $lines = Koha::Account::Lines->search(
2627 borrowernumber => $patron->borrowernumber,
2628 issue_id => $issue->id
2631 my $debit = $lines->next;
2632 my $credit = $patron->account->add_credit(
2634 amount => .20,
2635 type => 'PAYMENT',
2636 interface => 'test',
2639 $credit->apply( { debits => [$debit], offset_type => 'Payment' } );
2641 is( $patron->account->balance(), .05, 'Overdue fine reduced to $0.05' );
2643 # Backdate return to exact due date and time
2644 ( undef, $message ) =
2645 AddReturn( $item->{barcode}, $library->{branchcode},
2646 undef, $due_date );
2648 $lines = Koha::Account::Lines->search(
2650 borrowernumber => $patron->borrowernumber,
2651 issue_id => $issue->id
2654 $accountline = $lines->next;
2655 is( $accountline->amountoutstanding + 0,
2656 0, 'Partially paid fee amount outstanding was reduced to 0' );
2657 is( $accountline->amount + 0,
2658 0, 'Partially paid fee amount was reduced to 0' );
2659 is( $patron->account->balance(), -0.20, 'Patron refund recorded' );
2661 # Cleanup
2662 Koha::Account::Lines->search(
2663 { borrowernumber => $patron->borrowernumber } )->delete;
2667 subtest '_FixAccountForLostAndFound' => sub {
2669 plan tests => 5;
2671 t::lib::Mocks::mock_preference( 'WhenLostChargeReplacementFee', 1 );
2672 t::lib::Mocks::mock_preference( 'WhenLostForgiveFine', 0 );
2674 my $processfee_amount = 20;
2675 my $replacement_amount = 99.00;
2676 my $item_type = $builder->build_object(
2677 { class => 'Koha::ItemTypes',
2678 value => {
2679 notforloan => undef,
2680 rentalcharge => 0,
2681 defaultreplacecost => undef,
2682 processfee => $processfee_amount,
2683 rentalcharge_daily => 0,
2687 my $library = $builder->build_object( { class => 'Koha::Libraries' } );
2689 my $biblio = $builder->build_sample_biblio({ author => 'Hall, Daria' });
2691 subtest 'Full write-off tests' => sub {
2693 plan tests => 12;
2695 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2696 my $manager = $builder->build_object({ class => "Koha::Patrons" });
2697 t::lib::Mocks::mock_userenv({ patron => $manager,branchcode => $manager->branchcode });
2699 my $item = $builder->build_sample_item(
2701 biblionumber => $biblio->biblionumber,
2702 library => $library->branchcode,
2703 replacementprice => $replacement_amount,
2704 itype => $item_type->itemtype,
2708 AddIssue( $patron->unblessed, $item->barcode );
2710 # Simulate item marked as lost
2711 $item->itemlost(3)->store;
2712 LostItem( $item->itemnumber, 1 );
2714 my $processing_fee_lines = Koha::Account::Lines->search(
2715 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2716 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2717 my $processing_fee_line = $processing_fee_lines->next;
2718 is( $processing_fee_line->amount + 0,
2719 $processfee_amount, 'The right PROCESSING amount is generated' );
2720 is( $processing_fee_line->amountoutstanding + 0,
2721 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2723 my $lost_fee_lines = Koha::Account::Lines->search(
2724 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2725 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2726 my $lost_fee_line = $lost_fee_lines->next;
2727 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2728 is( $lost_fee_line->amountoutstanding + 0,
2729 $replacement_amount, 'The right LOST amountoutstanding is generated' );
2730 is( $lost_fee_line->status,
2731 undef, 'The LOST status was not set' );
2733 my $account = $patron->account;
2734 my $debts = $account->outstanding_debits;
2736 # Write off the debt
2737 my $credit = $account->add_credit(
2738 { amount => $account->balance,
2739 type => 'WRITEOFF',
2740 interface => 'test',
2743 $credit->apply( { debits => [ $debts->as_list ], offset_type => 'Writeoff' } );
2745 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2746 is( $credit_return_id, undef, 'No LOST_FOUND account line added' );
2748 $lost_fee_line->discard_changes; # reload from DB
2749 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2750 is( $lost_fee_line->debit_type_code,
2751 'LOST', 'Lost fee now still has account type of LOST' );
2752 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2754 is( $patron->account->balance, -0, 'The patron balance is 0, everything was written off' );
2757 subtest 'Full payment tests' => sub {
2759 plan tests => 13;
2761 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2763 my $item = $builder->build_sample_item(
2765 biblionumber => $biblio->biblionumber,
2766 library => $library->branchcode,
2767 replacementprice => $replacement_amount,
2768 itype => $item_type->itemtype
2772 AddIssue( $patron->unblessed, $item->barcode );
2774 # Simulate item marked as lost
2775 $item->itemlost(1)->store;
2776 LostItem( $item->itemnumber, 1 );
2778 my $processing_fee_lines = Koha::Account::Lines->search(
2779 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2780 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2781 my $processing_fee_line = $processing_fee_lines->next;
2782 is( $processing_fee_line->amount + 0,
2783 $processfee_amount, 'The right PROCESSING amount is generated' );
2784 is( $processing_fee_line->amountoutstanding + 0,
2785 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2787 my $lost_fee_lines = Koha::Account::Lines->search(
2788 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2789 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2790 my $lost_fee_line = $lost_fee_lines->next;
2791 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2792 is( $lost_fee_line->amountoutstanding + 0,
2793 $replacement_amount, 'The right LOST amountountstanding is generated' );
2795 my $account = $patron->account;
2796 my $debts = $account->outstanding_debits;
2798 # Write off the debt
2799 my $credit = $account->add_credit(
2800 { amount => $account->balance,
2801 type => 'PAYMENT',
2802 interface => 'test',
2805 $credit->apply( { debits => [ $debts->as_list ], offset_type => 'Payment' } );
2807 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2808 my $credit_return = Koha::Account::Lines->find($credit_return_id);
2810 is( $credit_return->credit_type_code, 'LOST_FOUND', 'An account line of type LOST_FOUND is added' );
2811 is( $credit_return->amount + 0,
2812 -99.00, 'The account line of type LOST_FOUND has an amount of -99' );
2813 is( $credit_return->amountoutstanding + 0,
2814 -99.00, 'The account line of type LOST_FOUND has an amountoutstanding of -99' );
2816 $lost_fee_line->discard_changes;
2817 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2818 is( $lost_fee_line->debit_type_code,
2819 'LOST', 'Lost fee now still has account type of LOST' );
2820 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2822 is( $patron->account->balance,
2823 -99, 'The patron balance is -99, a credit that equals the lost fee payment' );
2826 subtest 'Test without payment or write off' => sub {
2828 plan tests => 13;
2830 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2832 my $item = $builder->build_sample_item(
2834 biblionumber => $biblio->biblionumber,
2835 library => $library->branchcode,
2836 replacementprice => 23.00,
2837 replacementprice => $replacement_amount,
2838 itype => $item_type->itemtype
2842 AddIssue( $patron->unblessed, $item->barcode );
2844 # Simulate item marked as lost
2845 $item->itemlost(3)->store;
2846 LostItem( $item->itemnumber, 1 );
2848 my $processing_fee_lines = Koha::Account::Lines->search(
2849 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2850 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2851 my $processing_fee_line = $processing_fee_lines->next;
2852 is( $processing_fee_line->amount + 0,
2853 $processfee_amount, 'The right PROCESSING amount is generated' );
2854 is( $processing_fee_line->amountoutstanding + 0,
2855 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2857 my $lost_fee_lines = Koha::Account::Lines->search(
2858 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2859 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2860 my $lost_fee_line = $lost_fee_lines->next;
2861 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2862 is( $lost_fee_line->amountoutstanding + 0,
2863 $replacement_amount, 'The right LOST amountountstanding is generated' );
2865 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2866 my $credit_return = Koha::Account::Lines->find($credit_return_id);
2868 is( $credit_return->credit_type_code, 'LOST_FOUND', 'An account line of type LOST_FOUND is added' );
2869 is( $credit_return->amount + 0, -99.00, 'The account line of type LOST_FOUND has an amount of -99' );
2870 is( $credit_return->amountoutstanding + 0, 0, 'The account line of type LOST_FOUND has an amountoutstanding of 0' );
2872 $lost_fee_line->discard_changes;
2873 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2874 is( $lost_fee_line->debit_type_code,
2875 'LOST', 'Lost fee now still has account type of LOST' );
2876 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2878 is( $patron->account->balance, 20, 'The patron balance is 20, still owes the processing fee' );
2881 subtest 'Test with partial payement and write off, and remaining debt' => sub {
2883 plan tests => 16;
2885 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2886 my $item = $builder->build_sample_item(
2888 biblionumber => $biblio->biblionumber,
2889 library => $library->branchcode,
2890 replacementprice => $replacement_amount,
2891 itype => $item_type->itemtype
2895 AddIssue( $patron->unblessed, $item->barcode );
2897 # Simulate item marked as lost
2898 $item->itemlost(1)->store;
2899 LostItem( $item->itemnumber, 1 );
2901 my $processing_fee_lines = Koha::Account::Lines->search(
2902 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'PROCESSING' } );
2903 is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2904 my $processing_fee_line = $processing_fee_lines->next;
2905 is( $processing_fee_line->amount + 0,
2906 $processfee_amount, 'The right PROCESSING amount is generated' );
2907 is( $processing_fee_line->amountoutstanding + 0,
2908 $processfee_amount, 'The right PROCESSING amountoutstanding is generated' );
2910 my $lost_fee_lines = Koha::Account::Lines->search(
2911 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
2912 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2913 my $lost_fee_line = $lost_fee_lines->next;
2914 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
2915 is( $lost_fee_line->amountoutstanding + 0,
2916 $replacement_amount, 'The right LOST amountountstanding is generated' );
2918 my $account = $patron->account;
2919 is( $account->balance, $processfee_amount + $replacement_amount, 'Balance is PROCESSING + L' );
2921 # Partially pay fee
2922 my $payment_amount = 27;
2923 my $payment = $account->add_credit(
2924 { amount => $payment_amount,
2925 type => 'PAYMENT',
2926 interface => 'test',
2930 $payment->apply( { debits => [ $lost_fee_line ], offset_type => 'Payment' } );
2932 # Partially write off fee
2933 my $write_off_amount = 25;
2934 my $write_off = $account->add_credit(
2935 { amount => $write_off_amount,
2936 type => 'WRITEOFF',
2937 interface => 'test',
2940 $write_off->apply( { debits => [ $lost_fee_line ], offset_type => 'Writeoff' } );
2942 is( $account->balance,
2943 $processfee_amount + $replacement_amount - $payment_amount - $write_off_amount,
2944 'Payment and write off applied'
2947 # Store the amountoutstanding value
2948 $lost_fee_line->discard_changes;
2949 my $outstanding = $lost_fee_line->amountoutstanding;
2951 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
2952 my $credit_return = Koha::Account::Lines->find($credit_return_id);
2954 is( $account->balance, $processfee_amount - $payment_amount, 'Balance is PROCESSING - PAYMENT (LOST_FOUND)' );
2956 $lost_fee_line->discard_changes;
2957 is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2958 is( $lost_fee_line->debit_type_code,
2959 'LOST', 'Lost fee now still has account type of LOST' );
2960 is( $lost_fee_line->status, 'FOUND', "Lost fee now has account status of FOUND");
2962 is( $credit_return->credit_type_code, 'LOST_FOUND', 'An account line of type LOST_FOUND is added' );
2963 is( $credit_return->amount + 0,
2964 ($payment_amount + $outstanding ) * -1,
2965 'The account line of type LOST_FOUND has an amount equal to the payment + outstanding'
2967 is( $credit_return->amountoutstanding + 0,
2968 $payment_amount * -1,
2969 'The account line of type LOST_FOUND has an amountoutstanding equal to the payment'
2972 is( $account->balance,
2973 $processfee_amount - $payment_amount,
2974 'The patron balance is the difference between the PROCESSING and the credit'
2978 subtest 'Partial payement, existing debits and AccountAutoReconcile' => sub {
2980 plan tests => 8;
2982 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2983 my $barcode = 'KD123456793';
2984 my $replacement_amount = 100;
2985 my $processfee_amount = 20;
2987 my $item_type = $builder->build_object(
2988 { class => 'Koha::ItemTypes',
2989 value => {
2990 notforloan => undef,
2991 rentalcharge => 0,
2992 defaultreplacecost => undef,
2993 processfee => 0,
2994 rentalcharge_daily => 0,
2998 my $item = Koha::Item->new(
3000 biblionumber => $biblio->biblionumber,
3001 homebranch => $library->branchcode,
3002 holdingbranch => $library->branchcode,
3003 barcode => $barcode,
3004 replacementprice => $replacement_amount,
3005 itype => $item_type->itemtype
3007 )->store;
3009 AddIssue( $patron->unblessed, $barcode );
3011 # Simulate item marked as lost
3012 $item->itemlost(1)->store;
3013 LostItem( $item->itemnumber, 1 );
3015 my $lost_fee_lines = Koha::Account::Lines->search(
3016 { borrowernumber => $patron->id, itemnumber => $item->itemnumber, debit_type_code => 'LOST' } );
3017 is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
3018 my $lost_fee_line = $lost_fee_lines->next;
3019 is( $lost_fee_line->amount + 0, $replacement_amount, 'The right LOST amount is generated' );
3020 is( $lost_fee_line->amountoutstanding + 0,
3021 $replacement_amount, 'The right LOST amountountstanding is generated' );
3023 my $account = $patron->account;
3024 is( $account->balance, $replacement_amount, 'Balance is L' );
3026 # Partially pay fee
3027 my $payment_amount = 27;
3028 my $payment = $account->add_credit(
3029 { amount => $payment_amount,
3030 type => 'PAYMENT',
3031 interface => 'test',
3034 $payment->apply({ debits => [ $lost_fee_line ], offset_type => 'Payment' });
3036 is( $account->balance,
3037 $replacement_amount - $payment_amount,
3038 'Payment applied'
3041 my $manual_debit_amount = 80;
3042 $account->add_debit( { amount => $manual_debit_amount, type => 'OVERDUE', interface =>'test' } );
3044 is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
3046 t::lib::Mocks::mock_preference( 'AccountAutoReconcile', 1 );
3048 my $credit_return_id = C4::Circulation::_FixAccountForLostAndFound( $item->itemnumber, $patron->id );
3049 my $credit_return = Koha::Account::Lines->find($credit_return_id);
3051 is( $account->balance, $manual_debit_amount - $payment_amount, 'Balance is PROCESSING - payment (LOST_FOUND)' );
3053 my $manual_debit = Koha::Account::Lines->search({ borrowernumber => $patron->id, debit_type_code => 'OVERDUE', status => 'UNRETURNED' })->next;
3054 is( $manual_debit->amountoutstanding + 0, $manual_debit_amount - $payment_amount, 'reconcile_balance was called' );
3058 subtest '_FixOverduesOnReturn' => sub {
3059 plan tests => 14;
3061 my $manager = $builder->build_object({ class => "Koha::Patrons" });
3062 t::lib::Mocks::mock_userenv({ patron => $manager, branchcode => $manager->branchcode });
3064 my $biblio = $builder->build_sample_biblio({ author => 'Hall, Kylie' });
3066 my $branchcode = $library2->{branchcode};
3068 my $item = $builder->build_sample_item(
3070 biblionumber => $biblio->biblionumber,
3071 library => $branchcode,
3072 replacementprice => 99.00,
3073 itype => $itemtype,
3077 my $patron = $builder->build( { source => 'Borrower' } );
3079 ## Start with basic call, should just close out the open fine
3080 my $accountline = Koha::Account::Line->new(
3082 borrowernumber => $patron->{borrowernumber},
3083 debit_type_code => 'OVERDUE',
3084 status => 'UNRETURNED',
3085 itemnumber => $item->itemnumber,
3086 amount => 99.00,
3087 amountoutstanding => 99.00,
3088 interface => 'test',
3090 )->store();
3092 C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber, undef, 'RETURNED' );
3094 $accountline->_result()->discard_changes();
3096 is( $accountline->amountoutstanding+0, 99, 'Fine has the same amount outstanding as previously' );
3097 isnt( $accountline->status, 'UNRETURNED', 'Open fine ( account type OVERDUE ) has been closed out ( status not UNRETURNED )');
3098 is( $accountline->status, 'RETURNED', 'Passed status has been used to set as RETURNED )');
3100 ## Run again, with exemptfine enabled
3101 $accountline->set(
3103 debit_type_code => 'OVERDUE',
3104 status => 'UNRETURNED',
3105 amountoutstanding => 99.00,
3107 )->store();
3109 C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber, 1, 'RETURNED' );
3111 $accountline->_result()->discard_changes();
3112 my $offset = Koha::Account::Offsets->search({ debit_id => $accountline->id, type => 'Forgiven' })->next();
3114 is( $accountline->amountoutstanding + 0, 0, 'Fine amountoutstanding has been reduced to 0' );
3115 isnt( $accountline->status, 'UNRETURNED', 'Open fine ( account type OVERDUE ) has been closed out ( status not UNRETURNED )');
3116 is( $accountline->status, 'FORGIVEN', 'Open fine ( account type OVERDUE ) has been set to fine forgiven ( status FORGIVEN )');
3117 is( ref $offset, "Koha::Account::Offset", "Found matching offset for fine reduction via forgiveness" );
3118 is( $offset->amount + 0, -99, "Amount of offset is correct" );
3119 my $credit = $offset->credit;
3120 is( ref $credit, "Koha::Account::Line", "Found matching credit for fine forgiveness" );
3121 is( $credit->amount + 0, -99, "Credit amount is set correctly" );
3122 is( $credit->amountoutstanding + 0, 0, "Credit amountoutstanding is correctly set to 0" );
3124 # Bug 25417 - Only forgive fines where there is an amount outstanding to forgive
3125 $accountline->set(
3127 debit_type_code => 'OVERDUE',
3128 status => 'UNRETURNED',
3129 amountoutstanding => 0.00,
3131 )->store();
3132 $offset->delete;
3134 C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber, 1, 'RETURNED' );
3136 $accountline->_result()->discard_changes();
3137 $offset = Koha::Account::Offsets->search({ debit_id => $accountline->id, type => 'Forgiven' })->next();
3138 is( $offset, undef, "No offset created when trying to forgive fine with no outstanding balance" );
3139 isnt( $accountline->status, 'UNRETURNED', 'Open fine ( account type OVERDUE ) has been closed out ( status not UNRETURNED )');
3140 is( $accountline->status, 'RETURNED', 'Passed status has been used to set as RETURNED )');
3143 subtest '_FixAccountForLostAndFound returns undef if patron is deleted' => sub {
3144 plan tests => 1;
3146 my $manager = $builder->build_object({ class => "Koha::Patrons" });
3147 t::lib::Mocks::mock_userenv({ patron => $manager, branchcode => $manager->branchcode });
3149 my $biblio = $builder->build_sample_biblio({ author => 'Hall, Kylie' });
3151 my $branchcode = $library2->{branchcode};
3153 my $item = $builder->build_sample_item(
3155 biblionumber => $biblio->biblionumber,
3156 library => $branchcode,
3157 replacementprice => 99.00,
3158 itype => $itemtype,
3162 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
3164 ## Start with basic call, should just close out the open fine
3165 my $accountline = Koha::Account::Line->new(
3167 borrowernumber => $patron->id,
3168 debit_type_code => 'LOST',
3169 status => undef,
3170 itemnumber => $item->itemnumber,
3171 amount => 99.00,
3172 amountoutstanding => 99.00,
3173 interface => 'test',
3175 )->store();
3177 $patron->delete();
3179 my $return_value = C4::Circulation::_FixAccountForLostAndFound( $patron->id, $item->itemnumber );
3181 is( $return_value, undef, "_FixAccountForLostAndFound returns undef if patron is deleted" );
3185 subtest 'Set waiting flag' => sub {
3186 plan tests => 11;
3188 my $library_1 = $builder->build( { source => 'Branch' } );
3189 my $patron_1 = $builder->build( { source => 'Borrower', value => { branchcode => $library_1->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3190 my $library_2 = $builder->build( { source => 'Branch' } );
3191 my $patron_2 = $builder->build( { source => 'Borrower', value => { branchcode => $library_2->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3193 my $item = $builder->build_sample_item(
3195 library => $library_1->{branchcode},
3197 )->unblessed;
3199 set_userenv( $library_2 );
3200 my $reserve_id = AddReserve(
3202 branchcode => $library_2->{branchcode},
3203 borrowernumber => $patron_2->{borrowernumber},
3204 biblionumber => $item->{biblionumber},
3205 priority => 1,
3206 itemnumber => $item->{itemnumber},
3210 set_userenv( $library_1 );
3211 my $do_transfer = 1;
3212 my ( $res, $rr ) = AddReturn( $item->{barcode}, $library_1->{branchcode} );
3213 ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
3214 my $hold = Koha::Holds->find( $reserve_id );
3215 is( $hold->found, 'T', 'Hold is in transit' );
3217 my ( $status ) = CheckReserves($item->{itemnumber});
3218 is( $status, 'Reserved', 'Hold is not waiting yet');
3220 set_userenv( $library_2 );
3221 $do_transfer = 0;
3222 AddReturn( $item->{barcode}, $library_2->{branchcode} );
3223 ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
3224 $hold = Koha::Holds->find( $reserve_id );
3225 is( $hold->found, 'W', 'Hold is waiting' );
3226 ( $status ) = CheckReserves($item->{itemnumber});
3227 is( $status, 'Waiting', 'Now the hold is waiting');
3229 #Bug 21944 - Waiting transfer checked in at branch other than pickup location
3230 set_userenv( $library_1 );
3231 (undef, my $messages, undef, undef ) = AddReturn ( $item->{barcode}, $library_1->{branchcode} );
3232 $hold = Koha::Holds->find( $reserve_id );
3233 is( $hold->found, undef, 'Hold is no longer marked waiting' );
3234 is( $hold->priority, 1, "Hold is now priority one again");
3235 is( $hold->waitingdate, undef, "Hold no longer has a waiting date");
3236 is( $hold->itemnumber, $item->{itemnumber}, "Hold has retained its' itemnumber");
3237 is( $messages->{ResFound}->{ResFound}, "Reserved", "Hold is still returned");
3238 is( $messages->{ResFound}->{found}, undef, "Hold is no longer marked found in return message");
3239 is( $messages->{ResFound}->{priority}, 1, "Hold is priority 1 in return message");
3242 subtest 'Cancel transfers on lost items' => sub {
3243 plan tests => 5;
3244 my $library_1 = $builder->build( { source => 'Branch' } );
3245 my $patron_1 = $builder->build( { source => 'Borrower', value => { branchcode => $library_1->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3246 my $library_2 = $builder->build( { source => 'Branch' } );
3247 my $patron_2 = $builder->build( { source => 'Borrower', value => { branchcode => $library_2->{branchcode}, categorycode => $patron_category->{categorycode} } } );
3248 my $biblio = $builder->build_sample_biblio({branchcode => $library->{branchcode}});
3249 my $item = $builder->build_sample_item({
3250 biblionumber => $biblio->biblionumber,
3251 library => $library_1->{branchcode},
3254 set_userenv( $library_2 );
3255 my $reserve_id = AddReserve(
3257 branchcode => $library_2->{branchcode},
3258 borrowernumber => $patron_2->{borrowernumber},
3259 biblionumber => $item->biblionumber,
3260 priority => 1,
3261 itemnumber => $item->itemnumber,
3265 #Return book and add transfer
3266 set_userenv( $library_1 );
3267 my $do_transfer = 1;
3268 my ( $res, $rr ) = AddReturn( $item->barcode, $library_1->{branchcode} );
3269 ModReserveAffect( $item->itemnumber, undef, $do_transfer, $reserve_id );
3270 C4::Circulation::transferbook( $library_2->{branchcode}, $item->barcode );
3271 my $hold = Koha::Holds->find( $reserve_id );
3272 is( $hold->found, 'T', 'Hold is in transit' );
3274 #Check transfer exists and the items holding branch is the transfer destination branch before marking it as lost
3275 my ($datesent,$frombranch,$tobranch) = GetTransfers($item->itemnumber);
3276 is( $tobranch, $library_2->{branchcode}, 'The transfer record exists in the branchtransfers table');
3277 my $itemcheck = Koha::Items->find($item->itemnumber);
3278 is( $itemcheck->holdingbranch, $library_1->{branchcode}, 'Items holding branch is the transfers origin branch before it is marked as lost' );
3280 #Simulate item being marked as lost and confirm the transfer is deleted and the items holding branch is the transfers source branch
3281 $item->itemlost(1)->store;
3282 LostItem( $item->itemnumber, 'test', 1 );
3283 ($datesent,$frombranch,$tobranch) = GetTransfers($item->itemnumber);
3284 is( $tobranch, undef, 'The transfer on the lost item has been deleted as the LostItemCancelOutstandingTransfer is enabled');
3285 $itemcheck = Koha::Items->find($item->itemnumber);
3286 is( $itemcheck->holdingbranch, $library_1->{branchcode}, 'Lost item with cancelled hold has holding branch equallying the transfers source branch' );
3289 subtest 'CanBookBeIssued | is_overdue' => sub {
3290 plan tests => 3;
3292 # Set a simple circ policy
3293 Koha::CirculationRules->set_rules(
3295 categorycode => undef,
3296 branchcode => undef,
3297 itemtype => undef,
3298 rules => {
3299 maxissueqty => 1,
3300 reservesallowed => 25,
3301 issuelength => 14,
3302 lengthunit => 'days',
3303 renewalsallowed => 1,
3304 renewalperiod => 7,
3305 norenewalbefore => undef,
3306 auto_renew => 0,
3307 fine => .10,
3308 chargeperiod => 1,
3313 my $now = dt_from_string;
3314 my $five_days_go = output_pref({ dt => $now->clone->add( days => 5 ), dateonly => 1});
3315 my $ten_days_go = output_pref({ dt => $now->clone->add( days => 10), dateonly => 1 });
3316 my $library = $builder->build( { source => 'Branch' } );
3317 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
3319 my $item = $builder->build_sample_item(
3321 library => $library->{branchcode},
3323 )->unblessed;
3325 my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $five_days_go ); # date due was 10d ago
3326 my $actualissue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
3327 is( output_pref({ str => $actualissue->date_due, dateonly => 1}), $five_days_go, "First issue works");
3328 my ($issuingimpossible, $needsconfirmation) = CanBookBeIssued($patron,$item->{barcode},$ten_days_go, undef, undef, undef);
3329 is( $needsconfirmation->{RENEW_ISSUE}, 1, "This is a renewal");
3330 is( $needsconfirmation->{TOO_MANY}, undef, "Not too many, is a renewal");
3333 subtest 'ItemsDeniedRenewal preference' => sub {
3334 plan tests => 18;
3336 C4::Context->set_preference('ItemsDeniedRenewal','');
3338 my $idr_lib = $builder->build_object({ class => 'Koha::Libraries'});
3339 Koha::CirculationRules->set_rules(
3341 categorycode => '*',
3342 itemtype => '*',
3343 branchcode => $idr_lib->branchcode,
3344 rules => {
3345 reservesallowed => 25,
3346 issuelength => 14,
3347 lengthunit => 'days',
3348 renewalsallowed => 10,
3349 renewalperiod => 7,
3350 norenewalbefore => undef,
3351 auto_renew => 0,
3352 fine => .10,
3353 chargeperiod => 1,
3358 my $deny_book = $builder->build_object({ class => 'Koha::Items', value => {
3359 homebranch => $idr_lib->branchcode,
3360 withdrawn => 1,
3361 itype => 'HIDE',
3362 location => 'PROC',
3363 itemcallnumber => undef,
3364 itemnotes => "",
3367 my $allow_book = $builder->build_object({ class => 'Koha::Items', value => {
3368 homebranch => $idr_lib->branchcode,
3369 withdrawn => 0,
3370 itype => 'NOHIDE',
3371 location => 'NOPROC'
3375 my $idr_borrower = $builder->build_object({ class => 'Koha::Patrons', value=> {
3376 branchcode => $idr_lib->branchcode,
3379 my $future = dt_from_string->add( days => 1 );
3380 my $deny_issue = $builder->build_object({ class => 'Koha::Checkouts', value => {
3381 returndate => undef,
3382 renewals => 0,
3383 auto_renew => 0,
3384 borrowernumber => $idr_borrower->borrowernumber,
3385 itemnumber => $deny_book->itemnumber,
3386 onsite_checkout => 0,
3387 date_due => $future,
3390 my $allow_issue = $builder->build_object({ class => 'Koha::Checkouts', value => {
3391 returndate => undef,
3392 renewals => 0,
3393 auto_renew => 0,
3394 borrowernumber => $idr_borrower->borrowernumber,
3395 itemnumber => $allow_book->itemnumber,
3396 onsite_checkout => 0,
3397 date_due => $future,
3401 my $idr_rules;
3403 my ( $idr_mayrenew, $idr_error ) =
3404 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3405 is( $idr_mayrenew, 1, 'Renewal allowed when no rules' );
3406 is( $idr_error, undef, 'Renewal allowed when no rules' );
3408 $idr_rules="withdrawn: [1]";
3410 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3411 ( $idr_mayrenew, $idr_error ) =
3412 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3413 is( $idr_mayrenew, 0, 'Renewal blocked when 1 rules (withdrawn)' );
3414 is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 1 rule (withdrawn)' );
3415 ( $idr_mayrenew, $idr_error ) =
3416 CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
3417 is( $idr_mayrenew, 1, 'Renewal allowed when 1 rules not matched (withdrawn)' );
3418 is( $idr_error, undef, 'Renewal allowed when 1 rules not matched (withdrawn)' );
3420 $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]";
3422 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3423 ( $idr_mayrenew, $idr_error ) =
3424 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3425 is( $idr_mayrenew, 0, 'Renewal blocked when 2 rules matched (withdrawn, itype)' );
3426 is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 2 rules matched (withdrawn,itype)' );
3427 ( $idr_mayrenew, $idr_error ) =
3428 CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
3429 is( $idr_mayrenew, 1, 'Renewal allowed when 2 rules not matched (withdrawn, itype)' );
3430 is( $idr_error, undef, 'Renewal allowed when 2 rules not matched (withdrawn, itype)' );
3432 $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]\nlocation: [PROC]";
3434 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3435 ( $idr_mayrenew, $idr_error ) =
3436 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3437 is( $idr_mayrenew, 0, 'Renewal blocked when 3 rules matched (withdrawn, itype, location)' );
3438 is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 3 rules matched (withdrawn,itype, location)' );
3439 ( $idr_mayrenew, $idr_error ) =
3440 CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
3441 is( $idr_mayrenew, 1, 'Renewal allowed when 3 rules not matched (withdrawn, itype, location)' );
3442 is( $idr_error, undef, 'Renewal allowed when 3 rules not matched (withdrawn, itype, location)' );
3444 $idr_rules="itemcallnumber: [NULL]";
3445 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3446 ( $idr_mayrenew, $idr_error ) =
3447 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3448 is( $idr_mayrenew, 0, 'Renewal blocked for undef when NULL in pref' );
3449 $idr_rules="itemcallnumber: ['']";
3450 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3451 ( $idr_mayrenew, $idr_error ) =
3452 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3453 is( $idr_mayrenew, 1, 'Renewal not blocked for undef when "" in pref' );
3455 $idr_rules="itemnotes: [NULL]";
3456 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3457 ( $idr_mayrenew, $idr_error ) =
3458 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3459 is( $idr_mayrenew, 1, 'Renewal not blocked for "" when NULL in pref' );
3460 $idr_rules="itemnotes: ['']";
3461 C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
3462 ( $idr_mayrenew, $idr_error ) =
3463 CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
3464 is( $idr_mayrenew, 0, 'Renewal blocked for empty string when "" in pref' );
3467 subtest 'CanBookBeIssued | item-level_itypes=biblio' => sub {
3468 plan tests => 2;
3470 t::lib::Mocks::mock_preference('item-level_itypes', 0); # biblio
3471 my $library = $builder->build( { source => 'Branch' } );
3472 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } )->store;
3474 my $item = $builder->build_sample_item(
3476 library => $library->{branchcode},
3480 my ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3481 is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
3482 is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
3485 subtest 'CanBookBeIssued | notforloan' => sub {
3486 plan tests => 2;
3488 t::lib::Mocks::mock_preference('AllowNotForLoanOverride', 0);
3490 my $library = $builder->build( { source => 'Branch' } );
3491 my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } )->store;
3493 my $itemtype = $builder->build(
3495 source => 'Itemtype',
3496 value => { notforloan => undef, }
3499 my $item = $builder->build_sample_item(
3501 library => $library->{branchcode},
3502 itype => $itemtype->{itemtype},
3505 $item->biblioitem->itemtype($itemtype->{itemtype})->store;
3507 my ( $issuingimpossible, $needsconfirmation );
3510 subtest 'item-level_itypes = 1' => sub {
3511 plan tests => 6;
3513 t::lib::Mocks::mock_preference('item-level_itypes', 1); # item
3514 # Is for loan at item type and item level
3515 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3516 is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
3517 is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
3519 # not for loan at item type level
3520 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(1)->store;
3521 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3522 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3523 is_deeply(
3524 $issuingimpossible,
3525 { NOT_FOR_LOAN => 1, itemtype_notforloan => $itemtype->{itemtype} },
3526 'Item can not be issued, not for loan at item type level'
3529 # not for loan at item level
3530 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(undef)->store;
3531 $item->notforloan( 1 )->store;
3532 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3533 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3534 is_deeply(
3535 $issuingimpossible,
3536 { NOT_FOR_LOAN => 1, item_notforloan => 1 },
3537 'Item can not be issued, not for loan at item type level'
3541 subtest 'item-level_itypes = 0' => sub {
3542 plan tests => 6;
3544 t::lib::Mocks::mock_preference('item-level_itypes', 0); # biblio
3546 # We set another itemtype for biblioitem
3547 my $itemtype = $builder->build(
3549 source => 'Itemtype',
3550 value => { notforloan => undef, }
3554 # for loan at item type and item level
3555 $item->notforloan(0)->store;
3556 $item->biblioitem->itemtype($itemtype->{itemtype})->store;
3557 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3558 is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
3559 is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
3561 # not for loan at item type level
3562 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(1)->store;
3563 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3564 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3565 is_deeply(
3566 $issuingimpossible,
3567 { NOT_FOR_LOAN => 1, itemtype_notforloan => $itemtype->{itemtype} },
3568 'Item can not be issued, not for loan at item type level'
3571 # not for loan at item level
3572 Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(undef)->store;
3573 $item->notforloan( 1 )->store;
3574 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
3575 is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
3576 is_deeply(
3577 $issuingimpossible,
3578 { NOT_FOR_LOAN => 1, item_notforloan => 1 },
3579 'Item can not be issued, not for loan at item type level'
3583 # TODO test with AllowNotForLoanOverride = 1
3586 subtest 'AddReturn should clear items.onloan for unissued items' => sub {
3587 plan tests => 1;
3589 t::lib::Mocks::mock_preference( "AllowReturnToBranch", 'anywhere' );
3590 my $item = $builder->build_sample_item(
3592 onloan => '2018-01-01',
3596 AddReturn( $item->barcode, $item->homebranch );
3597 $item->discard_changes; # refresh
3598 is( $item->onloan, undef, 'AddReturn did clear items.onloan' );
3602 subtest 'AddRenewal and AddIssuingCharge tests' => sub {
3604 plan tests => 12;
3607 t::lib::Mocks::mock_preference('item-level_itypes', 1);
3609 my $issuing_charges = 15;
3610 my $title = 'A title';
3611 my $author = 'Author, An';
3612 my $barcode = 'WHATARETHEODDS';
3614 my $circ = Test::MockModule->new('C4::Circulation');
3615 $circ->mock(
3616 'GetIssuingCharges',
3617 sub {
3618 return $issuing_charges;
3622 my $library = $builder->build_object({ class => 'Koha::Libraries' });
3623 my $itemtype = $builder->build_object({ class => 'Koha::ItemTypes', value => { rentalcharge_daily => 0.00 }});
3624 my $patron = $builder->build_object({
3625 class => 'Koha::Patrons',
3626 value => { branchcode => $library->id }
3629 my $biblio = $builder->build_sample_biblio({ title=> $title, author => $author });
3630 my $item_id = Koha::Item->new(
3632 biblionumber => $biblio->biblionumber,
3633 homebranch => $library->id,
3634 holdingbranch => $library->id,
3635 barcode => $barcode,
3636 replacementprice => 23.00,
3637 itype => $itemtype->id
3639 )->store->itemnumber;
3640 my $item = Koha::Items->find( $item_id );
3642 my $context = Test::MockModule->new('C4::Context');
3643 $context->mock( userenv => { branch => $library->id } );
3645 # Check the item out
3646 AddIssue( $patron->unblessed, $item->barcode );
3647 t::lib::Mocks::mock_preference( 'RenewalLog', 0 );
3648 my $date = output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } );
3649 my %params_renewal = (
3650 timestamp => { -like => $date . "%" },
3651 module => "CIRCULATION",
3652 action => "RENEWAL",
3654 my $old_log_size = Koha::ActionLogs->count( \%params_renewal );;
3655 AddRenewal( $patron->id, $item->id, $library->id );
3656 my $new_log_size = Koha::ActionLogs->count( \%params_renewal );
3657 is( $new_log_size, $old_log_size, 'renew log not added because of the syspref RenewalLog' );
3659 my $checkouts = $patron->checkouts;
3660 # The following will fail if run on 00:00:00
3661 unlike ( $checkouts->next->lastreneweddate, qr/00:00:00/, 'AddRenewal should set the renewal date with the time part');
3663 my $lines = Koha::Account::Lines->search({
3664 borrowernumber => $patron->id,
3665 itemnumber => $item->id
3668 is( $lines->count, 2 );
3670 my $line = $lines->next;
3671 is( $line->debit_type_code, 'RENT', 'The issue of item with issuing charge generates an accountline of the correct type' );
3672 is( $line->branchcode, $library->id, 'AddIssuingCharge correctly sets branchcode' );
3673 is( $line->description, '', 'AddIssue does not set a hardcoded description for the accountline' );
3675 $line = $lines->next;
3676 is( $line->debit_type_code, 'RENT_RENEW', 'The renewal of item with issuing charge generates an accountline of the correct type' );
3677 is( $line->branchcode, $library->id, 'AddRenewal correctly sets branchcode' );
3678 is( $line->description, '', 'AddRenewal does not set a hardcoded description for the accountline' );
3680 t::lib::Mocks::mock_preference( 'RenewalLog', 1 );
3682 $context = Test::MockModule->new('C4::Context');
3683 $context->mock( userenv => { branch => undef, interface => 'CRON'} ); #Test statistical logging of renewal via cron (atuo_renew)
3685 my $now = dt_from_string;
3686 $date = output_pref( { dt => $now, dateonly => 1, dateformat => 'iso' } );
3687 $old_log_size = Koha::ActionLogs->count( \%params_renewal );
3688 my $sth = $dbh->prepare("SELECT COUNT(*) FROM statistics WHERE itemnumber = ? AND branch = ?");
3689 $sth->execute($item->id, $library->id);
3690 my ($old_stats_size) = $sth->fetchrow_array;
3691 AddRenewal( $patron->id, $item->id, $library->id );
3692 $new_log_size = Koha::ActionLogs->count( \%params_renewal );
3693 $sth->execute($item->id, $library->id);
3694 my ($new_stats_size) = $sth->fetchrow_array;
3695 is( $new_log_size, $old_log_size + 1, 'renew log successfully added' );
3696 is( $new_stats_size, $old_stats_size + 1, 'renew statistic successfully added with passed branch' );
3698 AddReturn( $item->id, $library->id, undef, $date );
3699 AddIssue( $patron->unblessed, $item->barcode, $now );
3700 AddRenewal( $patron->id, $item->id, $library->id, undef, undef, 1 );
3701 my $lines_skipped = Koha::Account::Lines->search({
3702 borrowernumber => $patron->id,
3703 itemnumber => $item->id
3705 is( $lines_skipped->count, 5, 'Passing skipfinecalc causes fine calculation on renewal to be skipped' );
3709 subtest 'ProcessOfflinePayment() tests' => sub {
3711 plan tests => 4;
3714 my $amount = 123;
3716 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
3717 my $library = $builder->build_object({ class => 'Koha::Libraries' });
3718 my $result = C4::Circulation::ProcessOfflinePayment({ cardnumber => $patron->cardnumber, amount => $amount, branchcode => $library->id });
3720 is( $result, 'Success.', 'The right string is returned' );
3722 my $lines = $patron->account->lines;
3723 is( $lines->count, 1, 'line created correctly');
3725 my $line = $lines->next;
3726 is( $line->amount+0, $amount * -1, 'amount picked from params' );
3727 is( $line->branchcode, $library->id, 'branchcode set correctly' );
3731 subtest 'Incremented fee tests' => sub {
3732 plan tests => 19;
3734 my $dt = dt_from_string();
3735 Time::Fake->offset( $dt->epoch );
3737 t::lib::Mocks::mock_preference( 'item-level_itypes', 1 );
3739 my $library =
3740 $builder->build_object( { class => 'Koha::Libraries' } )->store;
3742 my $module = new Test::MockModule('C4::Context');
3743 $module->mock( 'userenv', sub { { branch => $library->id } } );
3745 my $patron = $builder->build_object(
3747 class => 'Koha::Patrons',
3748 value => { categorycode => $patron_category->{categorycode} }
3750 )->store;
3752 my $itemtype = $builder->build_object(
3754 class => 'Koha::ItemTypes',
3755 value => {
3756 notforloan => undef,
3757 rentalcharge => 0,
3758 rentalcharge_daily => 1,
3759 rentalcharge_daily_calendar => 0
3762 )->store;
3764 my $item = $builder->build_sample_item(
3766 library => $library->{branchcode},
3767 itype => $itemtype->id,
3771 is( $itemtype->rentalcharge_daily+0,
3772 1, 'Daily rental charge stored and retreived correctly' );
3773 is( $item->effective_itemtype, $itemtype->id,
3774 "Itemtype set correctly for item" );
3776 my $now = dt_from_string;
3777 my $dt_from = $now->clone;
3778 my $dt_to = $now->clone->add( days => 7 );
3779 my $dt_to_renew = $now->clone->add( days => 13 );
3781 # Daily Tests
3782 my $issue =
3783 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3784 my $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3785 is( $accountline->amount+0, 7,
3786 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 0"
3788 $accountline->delete();
3789 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3790 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3791 is( $accountline->amount+0, 6,
3792 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 0, for renewal"
3794 $accountline->delete();
3795 $issue->delete();
3797 t::lib::Mocks::mock_preference( 'finesCalendar', 'noFinesWhenClosed' );
3798 $itemtype->rentalcharge_daily_calendar(1)->store();
3799 $issue =
3800 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3801 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3802 is( $accountline->amount+0, 7,
3803 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1"
3805 $accountline->delete();
3806 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3807 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3808 is( $accountline->amount+0, 6,
3809 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1, for renewal"
3811 $accountline->delete();
3812 $issue->delete();
3814 my $calendar = C4::Calendar->new( branchcode => $library->id );
3815 # DateTime 1..7 (Mon..Sun), C4::Calender 0..6 (Sun..Sat)
3816 my $closed_day =
3817 ( $dt_from->day_of_week == 6 ) ? 0
3818 : ( $dt_from->day_of_week == 7 ) ? 1
3819 : $dt_from->day_of_week + 1;
3820 my $closed_day_name = $dt_from->clone->add(days => 1)->day_name;
3821 $calendar->insert_week_day_holiday(
3822 weekday => $closed_day,
3823 title => 'Test holiday',
3824 description => 'Test holiday'
3826 $issue =
3827 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3828 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3829 is( $accountline->amount+0, 6,
3830 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1 and closed $closed_day_name"
3832 $accountline->delete();
3833 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3834 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3835 is( $accountline->amount+0, 5,
3836 "Daily rental charge calculated correctly with rentalcharge_daily_calendar = 1 and closed $closed_day_name, for renewal"
3838 $accountline->delete();
3839 $issue->delete();
3841 $itemtype->rentalcharge(2)->store;
3842 is( $itemtype->rentalcharge+0, 2,
3843 'Rental charge updated and retreived correctly' );
3844 $issue =
3845 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3846 my $accountlines =
3847 Koha::Account::Lines->search( { itemnumber => $item->id } );
3848 is( $accountlines->count, '2',
3849 "Fixed charge and accrued charge recorded distinctly" );
3850 $accountlines->delete();
3851 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3852 $accountlines = Koha::Account::Lines->search( { itemnumber => $item->id } );
3853 is( $accountlines->count, '2',
3854 "Fixed charge and accrued charge recorded distinctly, for renewal" );
3855 $accountlines->delete();
3856 $issue->delete();
3857 $itemtype->rentalcharge(0)->store;
3858 is( $itemtype->rentalcharge+0, 0,
3859 'Rental charge reset and retreived correctly' );
3861 # Hourly
3862 Koha::CirculationRules->set_rule(
3864 categorycode => $patron->categorycode,
3865 itemtype => $itemtype->id,
3866 branchcode => $library->id,
3867 rule_name => 'lengthunit',
3868 rule_value => 'hours',
3872 $itemtype->rentalcharge_hourly('0.25')->store();
3873 is( $itemtype->rentalcharge_hourly,
3874 '0.25', 'Hourly rental charge stored and retreived correctly' );
3876 $dt_to = $now->clone->add( hours => 168 );
3877 $dt_to_renew = $now->clone->add( hours => 312 );
3879 $itemtype->rentalcharge_hourly_calendar(0)->store();
3880 $issue =
3881 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3882 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3883 is( $accountline->amount + 0, 42,
3884 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 0 (168h * 0.25u)" );
3885 $accountline->delete();
3886 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3887 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3888 is( $accountline->amount + 0, 36,
3889 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 0, for renewal (312h - 168h * 0.25u)" );
3890 $accountline->delete();
3891 $issue->delete();
3893 $itemtype->rentalcharge_hourly_calendar(1)->store();
3894 $issue =
3895 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3896 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3897 is( $accountline->amount + 0, 36,
3898 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1 and closed $closed_day_name (168h - 24h * 0.25u)" );
3899 $accountline->delete();
3900 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3901 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3902 is( $accountline->amount + 0, 30,
3903 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1 and closed $closed_day_name, for renewal (312h - 168h - 24h * 0.25u" );
3904 $accountline->delete();
3905 $issue->delete();
3907 $calendar->delete_holiday( weekday => $closed_day );
3908 $issue =
3909 AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3910 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3911 is( $accountline->amount + 0, 42,
3912 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1 (168h - 0h * 0.25u" );
3913 $accountline->delete();
3914 AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3915 $accountline = Koha::Account::Lines->find( { itemnumber => $item->id } );
3916 is( $accountline->amount + 0, 36,
3917 "Hourly rental charge calculated correctly with rentalcharge_hourly_calendar = 1, for renewal (312h - 168h - 0h * 0.25u)" );
3918 $accountline->delete();
3919 $issue->delete();
3920 Time::Fake->reset;
3923 subtest 'CanBookBeIssued & RentalFeesCheckoutConfirmation' => sub {
3924 plan tests => 2;
3926 t::lib::Mocks::mock_preference('RentalFeesCheckoutConfirmation', 1);
3927 t::lib::Mocks::mock_preference('item-level_itypes', 1);
3929 my $library =
3930 $builder->build_object( { class => 'Koha::Libraries' } )->store;
3931 my $patron = $builder->build_object(
3933 class => 'Koha::Patrons',
3934 value => { categorycode => $patron_category->{categorycode} }
3936 )->store;
3938 my $itemtype = $builder->build_object(
3940 class => 'Koha::ItemTypes',
3941 value => {
3942 notforloan => 0,
3943 rentalcharge => 0,
3944 rentalcharge_daily => 0
3949 my $biblioitem = $builder->build( { source => 'Biblioitem' } );
3950 my $item = $builder->build_object(
3952 class => 'Koha::Items',
3953 value => {
3954 homebranch => $library->id,
3955 holdingbranch => $library->id,
3956 notforloan => 0,
3957 itemlost => 0,
3958 withdrawn => 0,
3959 itype => $itemtype->id,
3960 biblionumber => $biblioitem->{biblionumber},
3961 biblioitemnumber => $biblioitem->{biblioitemnumber},
3964 )->store;
3966 my ( $issuingimpossible, $needsconfirmation );
3967 my $dt_from = dt_from_string();
3968 my $dt_due = $dt_from->clone->add( days => 3 );
3970 $itemtype->rentalcharge(1)->store;
3971 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
3972 is_deeply( $needsconfirmation, { RENTALCHARGE => '1.00' }, 'Item needs rentalcharge confirmation to be issued' );
3973 $itemtype->rentalcharge('0')->store;
3974 $itemtype->rentalcharge_daily(1)->store;
3975 ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
3976 is_deeply( $needsconfirmation, { RENTALCHARGE => '3' }, 'Item needs rentalcharge confirmation to be issued, increment' );
3977 $itemtype->rentalcharge_daily('0')->store;
3980 subtest 'Do not return on renewal (LOST charge)' => sub {
3981 plan tests => 1;
3983 t::lib::Mocks::mock_preference('MarkLostItemsAsReturned', 'onpayment');
3984 my $library = $builder->build_object( { class => "Koha::Libraries" } );
3985 my $manager = $builder->build_object( { class => "Koha::Patrons" } );
3986 t::lib::Mocks::mock_userenv({ patron => $manager,branchcode => $manager->branchcode });
3988 my $biblio = $builder->build_sample_biblio;
3990 my $item = $builder->build_sample_item(
3992 biblionumber => $biblio->biblionumber,
3993 library => $library->branchcode,
3994 replacementprice => 99.00,
3995 itype => $itemtype,
3999 my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
4000 AddIssue( $patron->unblessed, $item->barcode );
4002 my $accountline = Koha::Account::Line->new(
4004 borrowernumber => $patron->borrowernumber,
4005 debit_type_code => 'LOST',
4006 status => undef,
4007 itemnumber => $item->itemnumber,
4008 amount => 12,
4009 amountoutstanding => 12,
4010 interface => 'something',
4012 )->store();
4014 # AddRenewal doesn't call _FixAccountForLostAndFound
4015 AddIssue( $patron->unblessed, $item->barcode );
4017 is( $patron->checkouts->count, 1,
4018 'Renewal should not return the item even if a LOST payment has been made earlier'
4022 subtest 'Filling a hold should cancel existing transfer' => sub {
4023 plan tests => 4;
4025 t::lib::Mocks::mock_preference('AutomaticItemReturn', 1);
4027 my $libraryA = $builder->build_object( { class => 'Koha::Libraries' } );
4028 my $libraryB = $builder->build_object( { class => 'Koha::Libraries' } );
4029 my $patron = $builder->build_object(
4031 class => 'Koha::Patrons',
4032 value => {
4033 categorycode => $patron_category->{categorycode},
4034 branchcode => $libraryA->branchcode,
4037 )->store;
4039 my $item = $builder->build_sample_item({
4040 homebranch => $libraryB->branchcode,
4043 my ( undef, $message ) = AddReturn( $item->barcode, $libraryA->branchcode, undef, undef );
4044 is( Koha::Item::Transfers->search({ itemnumber => $item->itemnumber, datearrived => undef })->count, 1, "We generate a transfer on checkin");
4045 AddReserve({
4046 branchcode => $libraryA->branchcode,
4047 borrowernumber => $patron->borrowernumber,
4048 biblionumber => $item->biblionumber,
4049 itemnumber => $item->itemnumber
4051 my $reserves = Koha::Holds->search({ itemnumber => $item->itemnumber });
4052 is( $reserves->count, 1, "Reserve is placed");
4053 ( undef, $message ) = AddReturn( $item->barcode, $libraryA->branchcode, undef, undef );
4054 my $reserve = $reserves->next;
4055 ModReserveAffect( $item->itemnumber, $patron->borrowernumber, 0, $reserve->reserve_id );
4056 $reserve->discard_changes;
4057 ok( $reserve->found eq 'W', "Reserve is marked waiting" );
4058 is( Koha::Item::Transfers->search({ itemnumber => $item->itemnumber, datearrived => undef })->count, 0, "No outstanding transfers when hold is waiting");
4061 $schema->storage->txn_rollback;
4062 C4::Context->clear_syspref_cache();
4063 $cache->clear_from_cache('single_holidays');