Bug 21756: (QA follow-up) Fix Circulation.t
[koha-equinox.git] / t / db_dependent / Circulation.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19 use utf8;
20
21 use Test::More tests => 126;
22 use Test::MockModule;
23
24 use Data::Dumper;
25 use DateTime;
26 use POSIX qw( floor );
27 use t::lib::Mocks;
28 use t::lib::TestBuilder;
29
30 use C4::Accounts;
31 use C4::Calendar;
32 use C4::Circulation;
33 use C4::Biblio;
34 use C4::Items;
35 use C4::Log;
36 use C4::Reserves;
37 use C4::Overdues qw(UpdateFine CalcFine);
38 use Koha::DateUtils;
39 use Koha::Database;
40 use Koha::IssuingRules;
41 use Koha::Items;
42 use Koha::Checkouts;
43 use Koha::Patrons;
44 use Koha::CirculationRules;
45 use Koha::Subscriptions;
46 use Koha::Account::Lines;
47 use Koha::Account::Offsets;
48 use Koha::ActionLogs;
49
50 my $schema = Koha::Database->schema;
51 $schema->storage->txn_begin;
52 my $builder = t::lib::TestBuilder->new;
53 my $dbh = C4::Context->dbh;
54
55 # Start transaction
56 $dbh->{RaiseError} = 1;
57
58 my $cache = Koha::Caches->get_instance();
59 $dbh->do(q|DELETE FROM special_holidays|);
60 $dbh->do(q|DELETE FROM repeatable_holidays|);
61 $cache->clear_from_cache('single_holidays');
62
63 # Start with a clean slate
64 $dbh->do('DELETE FROM issues');
65 $dbh->do('DELETE FROM borrowers');
66
67 my $library = $builder->build({
68     source => 'Branch',
69 });
70 my $library2 = $builder->build({
71     source => 'Branch',
72 });
73 my $itemtype = $builder->build(
74     {
75         source => 'Itemtype',
76         value  => {
77             notforloan          => undef,
78             rentalcharge        => 0,
79             rentalcharge_daily => 0,
80             defaultreplacecost  => undef,
81             processfee          => undef
82         }
83     }
84 )->{itemtype};
85 my $patron_category = $builder->build(
86     {
87         source => 'Category',
88         value  => {
89             category_type                 => 'P',
90             enrolmentfee                  => 0,
91             BlockExpiredPatronOpacActions => -1, # Pick the pref value
92         }
93     }
94 );
95
96 my $CircControl = C4::Context->preference('CircControl');
97 my $HomeOrHoldingBranch = C4::Context->preference('HomeOrHoldingBranch');
98
99 my $item = {
100     homebranch => $library2->{branchcode},
101     holdingbranch => $library2->{branchcode}
102 };
103
104 my $borrower = {
105     branchcode => $library2->{branchcode}
106 };
107
108 # No userenv, PickupLibrary
109 t::lib::Mocks::mock_preference('IndependentBranches', '0');
110 t::lib::Mocks::mock_preference('CircControl', 'PickupLibrary');
111 is(
112     C4::Context->preference('CircControl'),
113     'PickupLibrary',
114     'CircControl changed to PickupLibrary'
115 );
116 is(
117     C4::Circulation::_GetCircControlBranch($item, $borrower),
118     $item->{$HomeOrHoldingBranch},
119     '_GetCircControlBranch returned item branch (no userenv defined)'
120 );
121
122 # No userenv, PatronLibrary
123 t::lib::Mocks::mock_preference('CircControl', 'PatronLibrary');
124 is(
125     C4::Context->preference('CircControl'),
126     'PatronLibrary',
127     'CircControl changed to PatronLibrary'
128 );
129 is(
130     C4::Circulation::_GetCircControlBranch($item, $borrower),
131     $borrower->{branchcode},
132     '_GetCircControlBranch returned borrower branch'
133 );
134
135 # No userenv, ItemHomeLibrary
136 t::lib::Mocks::mock_preference('CircControl', 'ItemHomeLibrary');
137 is(
138     C4::Context->preference('CircControl'),
139     'ItemHomeLibrary',
140     'CircControl changed to ItemHomeLibrary'
141 );
142 is(
143     $item->{$HomeOrHoldingBranch},
144     C4::Circulation::_GetCircControlBranch($item, $borrower),
145     '_GetCircControlBranch returned item branch'
146 );
147
148 # Now, set a userenv
149 t::lib::Mocks::mock_userenv({ branchcode => $library2->{branchcode} });
150 is(C4::Context->userenv->{branch}, $library2->{branchcode}, 'userenv set');
151
152 # Userenv set, PickupLibrary
153 t::lib::Mocks::mock_preference('CircControl', 'PickupLibrary');
154 is(
155     C4::Context->preference('CircControl'),
156     'PickupLibrary',
157     'CircControl changed to PickupLibrary'
158 );
159 is(
160     C4::Circulation::_GetCircControlBranch($item, $borrower),
161     $library2->{branchcode},
162     '_GetCircControlBranch returned current branch'
163 );
164
165 # Userenv set, PatronLibrary
166 t::lib::Mocks::mock_preference('CircControl', 'PatronLibrary');
167 is(
168     C4::Context->preference('CircControl'),
169     'PatronLibrary',
170     'CircControl changed to PatronLibrary'
171 );
172 is(
173     C4::Circulation::_GetCircControlBranch($item, $borrower),
174     $borrower->{branchcode},
175     '_GetCircControlBranch returned borrower branch'
176 );
177
178 # Userenv set, ItemHomeLibrary
179 t::lib::Mocks::mock_preference('CircControl', 'ItemHomeLibrary');
180 is(
181     C4::Context->preference('CircControl'),
182     'ItemHomeLibrary',
183     'CircControl changed to ItemHomeLibrary'
184 );
185 is(
186     C4::Circulation::_GetCircControlBranch($item, $borrower),
187     $item->{$HomeOrHoldingBranch},
188     '_GetCircControlBranch returned item branch'
189 );
190
191 # Reset initial configuration
192 t::lib::Mocks::mock_preference('CircControl', $CircControl);
193 is(
194     C4::Context->preference('CircControl'),
195     $CircControl,
196     'CircControl reset to its initial value'
197 );
198
199 # Set a simple circ policy
200 $dbh->do('DELETE FROM issuingrules');
201 Koha::CirculationRules->search()->delete();
202 $dbh->do(
203     q{INSERT INTO issuingrules (categorycode, branchcode, itemtype, reservesallowed,
204                                 issuelength, lengthunit,
205                                 renewalsallowed, renewalperiod,
206                                 norenewalbefore, auto_renew,
207                                 fine, chargeperiod)
208       VALUES (?, ?, ?, ?,
209               ?, ?,
210               ?, ?,
211               ?, ?,
212               ?, ?
213              )
214     },
215     {},
216     '*', '*', '*', 25,
217     14, 'days',
218     1, 7,
219     undef, 0,
220     .10, 1
221 );
222
223 my ( $reused_itemnumber_1, $reused_itemnumber_2 );
224 {
225 # CanBookBeRenewed tests
226     C4::Context->set_preference('ItemsDeniedRenewal','');
227     # Generate test biblio
228     my $biblio = $builder->build_sample_biblio();
229
230     my $branch = $library2->{branchcode};
231
232     my $item_1 = $builder->build_sample_item(
233         {
234             biblionumber     => $biblio->biblionumber,
235             library          => $branch,
236             replacementprice => 12.00,
237             itype            => $itemtype
238         }
239     );
240     $reused_itemnumber_1 = $item_1->itemnumber;
241
242     my $item_2 = $builder->build_sample_item(
243         {
244             biblionumber     => $biblio->biblionumber,
245             library          => $branch,
246             replacementprice => 23.00,
247             itype            => $itemtype
248         }
249     );
250     $reused_itemnumber_2 = $item_2->itemnumber;
251
252     my $item_3 = $builder->build_sample_item(
253         {
254             biblionumber     => $biblio->biblionumber,
255             library          => $branch,
256             replacementprice => 23.00,
257             itype            => $itemtype
258         }
259     );
260
261     # Create borrowers
262     my %renewing_borrower_data = (
263         firstname =>  'John',
264         surname => 'Renewal',
265         categorycode => $patron_category->{categorycode},
266         branchcode => $branch,
267     );
268
269     my %reserving_borrower_data = (
270         firstname =>  'Katrin',
271         surname => 'Reservation',
272         categorycode => $patron_category->{categorycode},
273         branchcode => $branch,
274     );
275
276     my %hold_waiting_borrower_data = (
277         firstname =>  'Kyle',
278         surname => 'Reservation',
279         categorycode => $patron_category->{categorycode},
280         branchcode => $branch,
281     );
282
283     my %restricted_borrower_data = (
284         firstname =>  'Alice',
285         surname => 'Reservation',
286         categorycode => $patron_category->{categorycode},
287         debarred => '3228-01-01',
288         branchcode => $branch,
289     );
290
291     my %expired_borrower_data = (
292         firstname =>  'Ça',
293         surname => 'Glisse',
294         categorycode => $patron_category->{categorycode},
295         branchcode => $branch,
296         dateexpiry => dt_from_string->subtract( months => 1 ),
297     );
298
299     my $renewing_borrowernumber = Koha::Patron->new(\%renewing_borrower_data)->store->borrowernumber;
300     my $reserving_borrowernumber = Koha::Patron->new(\%reserving_borrower_data)->store->borrowernumber;
301     my $hold_waiting_borrowernumber = Koha::Patron->new(\%hold_waiting_borrower_data)->store->borrowernumber;
302     my $restricted_borrowernumber = Koha::Patron->new(\%restricted_borrower_data)->store->borrowernumber;
303     my $expired_borrowernumber = Koha::Patron->new(\%expired_borrower_data)->store->borrowernumber;
304
305     my $renewing_borrower = Koha::Patrons->find( $renewing_borrowernumber )->unblessed;
306     my $restricted_borrower = Koha::Patrons->find( $restricted_borrowernumber )->unblessed;
307     my $expired_borrower = Koha::Patrons->find( $expired_borrowernumber )->unblessed;
308
309     my $bibitems       = '';
310     my $priority       = '1';
311     my $resdate        = undef;
312     my $expdate        = undef;
313     my $notes          = '';
314     my $checkitem      = undef;
315     my $found          = undef;
316
317     my $issue = AddIssue( $renewing_borrower, $item_1->barcode);
318     my $datedue = dt_from_string( $issue->date_due() );
319     is (defined $issue->date_due(), 1, "Item 1 checked out, due date: " . $issue->date_due() );
320
321     my $issue2 = AddIssue( $renewing_borrower, $item_2->barcode);
322     $datedue = dt_from_string( $issue->date_due() );
323     is (defined $issue2, 1, "Item 2 checked out, due date: " . $issue2->date_due());
324
325
326     my $borrowing_borrowernumber = Koha::Checkouts->find( { itemnumber => $item_1->itemnumber } )->borrowernumber;
327     is ($borrowing_borrowernumber, $renewing_borrowernumber, "Item checked out to $renewing_borrower->{firstname} $renewing_borrower->{surname}");
328
329     my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
330     is( $renewokay, 1, 'Can renew, no holds for this title or item');
331
332
333     # Biblio-level hold, renewal test
334     AddReserve(
335         $branch, $reserving_borrowernumber, $biblio->biblionumber,
336         $bibitems,  $priority, $resdate, $expdate, $notes,
337         'a title', $checkitem, $found
338     );
339
340     # Testing of feature to allow the renewal of reserved items if other items on the record can fill all needed holds
341     C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 1");
342     t::lib::Mocks::mock_preference('AllowRenewalIfOtherItemsAvailable', 1 );
343     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
344     is( $renewokay, 1, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
345     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
346     is( $renewokay, 1, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
347
348     # Now let's add an item level hold, we should no longer be able to renew the item
349     my $hold = Koha::Database->new()->schema()->resultset('Reserve')->create(
350         {
351             borrowernumber => $hold_waiting_borrowernumber,
352             biblionumber   => $biblio->biblionumber,
353             itemnumber     => $item_1->itemnumber,
354             branchcode     => $branch,
355             priority       => 3,
356         }
357     );
358     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
359     is( $renewokay, 0, 'Bug 13919 - Renewal possible with item level hold on item');
360     $hold->delete();
361
362     # 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
363     # be able to renew these items
364     $hold = Koha::Database->new()->schema()->resultset('Reserve')->create(
365         {
366             borrowernumber => $hold_waiting_borrowernumber,
367             biblionumber   => $biblio->biblionumber,
368             itemnumber     => $item_3->itemnumber,
369             branchcode     => $branch,
370             priority       => 0,
371             found          => 'W'
372         }
373     );
374     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
375     is( $renewokay, 0, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
376     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
377     is( $renewokay, 0, 'Bug 11634 - Allow renewal of item with unfilled holds if other available items can fill those holds');
378     t::lib::Mocks::mock_preference('AllowRenewalIfOtherItemsAvailable', 0 );
379
380     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
381     is( $renewokay, 0, '(Bug 10663) Cannot renew, reserved');
382     is( $error, 'on_reserve', '(Bug 10663) Cannot renew, reserved (returned error is on_reserve)');
383
384     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
385     is( $renewokay, 0, '(Bug 10663) Cannot renew, reserved');
386     is( $error, 'on_reserve', '(Bug 10663) Cannot renew, reserved (returned error is on_reserve)');
387
388     my $reserveid = Koha::Holds->search({ biblionumber => $biblio->biblionumber, borrowernumber => $reserving_borrowernumber })->next->reserve_id;
389     my $reserving_borrower = Koha::Patrons->find( $reserving_borrowernumber )->unblessed;
390     AddIssue($reserving_borrower, $item_3->barcode);
391     my $reserve = $dbh->selectrow_hashref(
392         'SELECT * FROM old_reserves WHERE reserve_id = ?',
393         { Slice => {} },
394         $reserveid
395     );
396     is($reserve->{found}, 'F', 'hold marked completed when checking out item that fills it');
397
398     # Item-level hold, renewal test
399     AddReserve(
400         $branch, $reserving_borrowernumber, $biblio->biblionumber,
401         $bibitems,  $priority, $resdate, $expdate, $notes,
402         'a title', $item_1->itemnumber, $found
403     );
404
405     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
406     is( $renewokay, 0, '(Bug 10663) Cannot renew, item reserved');
407     is( $error, 'on_reserve', '(Bug 10663) Cannot renew, item reserved (returned error is on_reserve)');
408
409     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber, 1);
410     is( $renewokay, 1, 'Can renew item 2, item-level hold is on item 1');
411
412     # Items can't fill hold for reasons
413     ModItem({ notforloan => 1 }, $biblio->biblionumber, $item_1->itemnumber);
414     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
415     is( $renewokay, 1, 'Can renew, item is marked not for loan, hold does not block');
416     ModItem({ notforloan => 0, itype => $itemtype }, $biblio->biblionumber, $item_1->itemnumber);
417
418     # FIXME: Add more for itemtype not for loan etc.
419
420     # Restricted users cannot renew when RestrictionBlockRenewing is enabled
421     my $item_5 = $builder->build_sample_item(
422         {
423             biblionumber     => $biblio->biblionumber,
424             library          => $branch,
425             replacementprice => 23.00,
426             itype            => $itemtype,
427         }
428     );
429     my $datedue5 = AddIssue($restricted_borrower, $item_5->barcode);
430     is (defined $datedue5, 1, "Item with date due checked out, due date: $datedue5");
431
432     t::lib::Mocks::mock_preference('RestrictionBlockRenewing','1');
433     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_2->itemnumber);
434     is( $renewokay, 1, '(Bug 8236), Can renew, user is not restricted');
435     ( $renewokay, $error ) = CanBookBeRenewed($restricted_borrowernumber, $item_5->itemnumber);
436     is( $renewokay, 0, '(Bug 8236), Cannot renew, user is restricted');
437
438     # Users cannot renew an overdue item
439     my $item_6 = $builder->build_sample_item(
440         {
441             biblionumber     => $biblio->biblionumber,
442             library          => $branch,
443             replacementprice => 23.00,
444             itype            => $itemtype,
445         }
446     );
447
448     my $item_7 = $builder->build_sample_item(
449         {
450             biblionumber     => $biblio->biblionumber,
451             library          => $branch,
452             replacementprice => 23.00,
453             itype            => $itemtype,
454         }
455     );
456
457     my $datedue6 = AddIssue( $renewing_borrower, $item_6->barcode);
458     is (defined $datedue6, 1, "Item 2 checked out, due date: ".$datedue6->date_due);
459
460     my $now = dt_from_string();
461     my $five_weeks = DateTime::Duration->new(weeks => 5);
462     my $five_weeks_ago = $now - $five_weeks;
463     t::lib::Mocks::mock_preference('finesMode', 'production');
464
465     my $passeddatedue1 = AddIssue($renewing_borrower, $item_7->barcode, $five_weeks_ago);
466     is (defined $passeddatedue1, 1, "Item with passed date due checked out, due date: " . $passeddatedue1->date_due);
467
468     my ( $fine ) = CalcFine( $item_7->unblessed, $renewing_borrower->{categorycode}, $branch, $five_weeks_ago, $now );
469     C4::Overdues::UpdateFine(
470         {
471             issue_id       => $passeddatedue1->id(),
472             itemnumber     => $item_7->itemnumber,
473             borrowernumber => $renewing_borrower->{borrowernumber},
474             amount         => $fine,
475             due            => Koha::DateUtils::output_pref($five_weeks_ago)
476         }
477     );
478
479     t::lib::Mocks::mock_preference('RenewalLog', 0);
480     my $date = output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } );
481     my %params_renewal = (
482         timestamp => { -like => $date . "%" },
483         module => "CIRCULATION",
484         action => "RENEWAL",
485     );
486     my %params_issue = (
487         timestamp => { -like => $date . "%" },
488         module => "CIRCULATION",
489         action => "ISSUE"
490     );
491     my $old_log_size = Koha::ActionLogs->count( \%params_renewal );
492     AddRenewal( $renewing_borrower->{borrowernumber}, $item_7->itemnumber, $branch );
493     my $new_log_size = Koha::ActionLogs->count( \%params_renewal );
494     is ($new_log_size, $old_log_size, 'renew log not added because of the syspref RenewalLog');
495
496     t::lib::Mocks::mock_preference('RenewalLog', 1);
497     $date = output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } );
498     $old_log_size = Koha::ActionLogs->count( \%params_renewal );
499     AddRenewal( $renewing_borrower->{borrowernumber}, $item_7->itemnumber, $branch );
500     $new_log_size = Koha::ActionLogs->count( \%params_renewal );
501     is ($new_log_size, $old_log_size + 1, 'renew log successfully added');
502
503     my $fines = Koha::Account::Lines->search( { borrowernumber => $renewing_borrower->{borrowernumber}, itemnumber => $item_7->itemnumber } );
504     is( $fines->count, 2 );
505     is( $fines->next->accounttype, 'F', 'Fine on renewed item is closed out properly' );
506     is( $fines->next->accounttype, 'F', 'Fine on renewed item is closed out properly' );
507     $fines->delete();
508
509
510     my $old_issue_log_size = Koha::ActionLogs->count( \%params_issue );
511     my $old_renew_log_size = Koha::ActionLogs->count( \%params_renewal );
512     AddIssue( $renewing_borrower,$item_7->barcode,Koha::DateUtils::output_pref({str=>$datedue6->date_due, dateformat =>'iso'}),0,$date, 0, undef );
513     $new_log_size = Koha::ActionLogs->count( \%params_renewal );
514     is ($new_log_size, $old_renew_log_size + 1, 'renew log successfully added when renewed via issuing');
515     $new_log_size = Koha::ActionLogs->count( \%params_issue );
516     is ($new_log_size, $old_issue_log_size, 'renew not logged as issue when renewed via issuing');
517
518     $fines = Koha::Account::Lines->search( { borrowernumber => $renewing_borrower->{borrowernumber}, itemnumber => $item_7->itemnumber } );
519     $fines->delete();
520
521     t::lib::Mocks::mock_preference('OverduesBlockRenewing','blockitem');
522     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_6->itemnumber);
523     is( $renewokay, 1, '(Bug 8236), Can renew, this item is not overdue');
524     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_7->itemnumber);
525     is( $renewokay, 0, '(Bug 8236), Cannot renew, this item is overdue');
526
527
528     $hold = Koha::Holds->search({ biblionumber => $biblio->biblionumber, borrowernumber => $reserving_borrowernumber })->next;
529     $hold->cancel;
530
531     # Bug 14101
532     # Test automatic renewal before value for "norenewalbefore" in policy is set
533     # In this case automatic renewal is not permitted prior to due date
534     my $item_4 = $builder->build_sample_item(
535         {
536             biblionumber     => $biblio->biblionumber,
537             library          => $branch,
538             replacementprice => 16.00,
539             itype            => $itemtype,
540         }
541     );
542
543     $issue = AddIssue( $renewing_borrower, $item_4->barcode, undef, undef, undef, undef, { auto_renew => 1 } );
544     ( $renewokay, $error ) =
545       CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
546     is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
547     is( $error, 'auto_too_soon',
548         'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = undef (returned code is auto_too_soon)' );
549
550     # Bug 7413
551     # Test premature manual renewal
552     $dbh->do('UPDATE issuingrules SET norenewalbefore = 7');
553
554     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
555     is( $renewokay, 0, 'Bug 7413: Cannot renew, renewal is premature');
556     is( $error, 'too_soon', 'Bug 7413: Cannot renew, renewal is premature (returned code is too_soon)');
557
558     # Bug 14395
559     # Test 'exact time' setting for syspref NoRenewalBeforePrecision
560     t::lib::Mocks::mock_preference( 'NoRenewalBeforePrecision', 'exact_time' );
561     is(
562         GetSoonestRenewDate( $renewing_borrowernumber, $item_1->itemnumber ),
563         $datedue->clone->add( days => -7 ),
564         'Bug 14395: Renewals permitted 7 days before due date, as expected'
565     );
566
567     # Bug 14395
568     # Test 'date' setting for syspref NoRenewalBeforePrecision
569     t::lib::Mocks::mock_preference( 'NoRenewalBeforePrecision', 'date' );
570     is(
571         GetSoonestRenewDate( $renewing_borrowernumber, $item_1->itemnumber ),
572         $datedue->clone->add( days => -7 )->truncate( to => 'day' ),
573         'Bug 14395: Renewals permitted 7 days before due date, as expected'
574     );
575
576     # Bug 14101
577     # Test premature automatic renewal
578     ( $renewokay, $error ) =
579       CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
580     is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
581     is( $error, 'auto_too_soon',
582         'Bug 14101: Cannot renew, renewal is automatic and premature (returned code is auto_too_soon)'
583     );
584
585     # Change policy so that loans can only be renewed exactly on due date (0 days prior to due date)
586     # and test automatic renewal again
587     $dbh->do('UPDATE issuingrules SET norenewalbefore = 0');
588     ( $renewokay, $error ) =
589       CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
590     is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic and premature' );
591     is( $error, 'auto_too_soon',
592         'Bug 14101: Cannot renew, renewal is automatic and premature, "No renewal before" = 0 (returned code is auto_too_soon)'
593     );
594
595     # Change policy so that loans can be renewed 99 days prior to the due date
596     # and test automatic renewal again
597     $dbh->do('UPDATE issuingrules SET norenewalbefore = 99');
598     ( $renewokay, $error ) =
599       CanBookBeRenewed( $renewing_borrowernumber, $item_4->itemnumber );
600     is( $renewokay, 0, 'Bug 14101: Cannot renew, renewal is automatic' );
601     is( $error, 'auto_renew',
602         'Bug 14101: Cannot renew, renewal is automatic (returned code is auto_renew)'
603     );
604
605     subtest "too_late_renewal / no_auto_renewal_after" => sub {
606         plan tests => 14;
607         my $item_to_auto_renew = $builder->build(
608             {   source => 'Item',
609                 value  => {
610                     biblionumber  => $biblio->biblionumber,
611                     homebranch    => $branch,
612                     holdingbranch => $branch,
613                 }
614             }
615         );
616
617         my $ten_days_before = dt_from_string->add( days => -10 );
618         my $ten_days_ahead  = dt_from_string->add( days => 10 );
619         AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
620
621         $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 9');
622         ( $renewokay, $error ) =
623           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
624         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
625         is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
626
627         $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 10');
628         ( $renewokay, $error ) =
629           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
630         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
631         is( $error, 'auto_too_late', 'Cannot auto renew, too late - no_auto_renewal_after is inclusive(returned code is auto_too_late)' );
632
633         $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 11');
634         ( $renewokay, $error ) =
635           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
636         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
637         is( $error, 'auto_too_soon', 'Cannot auto renew, too soon - no_auto_renewal_after is defined(returned code is auto_too_soon)' );
638
639         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 11');
640         ( $renewokay, $error ) =
641           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
642         is( $renewokay, 0,            'Do not renew, renewal is automatic' );
643         is( $error,     'auto_renew', 'Cannot renew, renew is automatic' );
644
645         $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = NULL, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => -1 ) );
646         ( $renewokay, $error ) =
647           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
648         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
649         is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
650
651         $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = 15, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => -1 ) );
652         ( $renewokay, $error ) =
653           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
654         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
655         is( $error, 'auto_too_late', 'Cannot renew, too late(returned code is auto_too_late)' );
656
657         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = NULL, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => 1 ) );
658         ( $renewokay, $error ) =
659           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
660         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
661         is( $error, 'auto_renew', 'Cannot renew, renew is automatic' );
662     };
663
664     subtest "auto_too_much_oweing | OPACFineNoRenewalsBlockAutoRenew" => sub {
665         plan tests => 6;
666         my $item_to_auto_renew = $builder->build({
667             source => 'Item',
668             value => {
669                 biblionumber => $biblio->biblionumber,
670                 homebranch       => $branch,
671                 holdingbranch    => $branch,
672             }
673         });
674
675         my $ten_days_before = dt_from_string->add( days => -10 );
676         my $ten_days_ahead = dt_from_string->add( days => 10 );
677         AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
678
679         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 11');
680         C4::Context->set_preference('OPACFineNoRenewalsBlockAutoRenew','1');
681         C4::Context->set_preference('OPACFineNoRenewals','10');
682         my $fines_amount = 5;
683         my $account = Koha::Account->new({patron_id => $renewing_borrowernumber});
684         $account->add_debit(
685             {
686                 amount      => $fines_amount,
687                 type        => 'fine',
688                 item_id     => $item_to_auto_renew->{itemnumber},
689                 description => "Some fines"
690             }
691         )->accounttype('F')->store;
692         ( $renewokay, $error ) =
693           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
694         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
695         is( $error, 'auto_renew', 'Can auto renew, OPACFineNoRenewals=10, patron has 5' );
696
697         $account->add_debit(
698             {
699                 amount      => $fines_amount,
700                 type        => 'fine',
701                 item_id     => $item_to_auto_renew->{itemnumber},
702                 description => "Some fines"
703             }
704         )->accounttype('F')->store;
705         ( $renewokay, $error ) =
706           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
707         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
708         is( $error, 'auto_renew', 'Can auto renew, OPACFineNoRenewals=10, patron has 10' );
709
710         $account->add_debit(
711             {
712                 amount      => $fines_amount,
713                 type        => 'fine',
714                 item_id     => $item_to_auto_renew->{itemnumber},
715                 description => "Some fines"
716             }
717         )->accounttype('F')->store;
718         ( $renewokay, $error ) =
719           CanBookBeRenewed( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
720         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
721         is( $error, 'auto_too_much_oweing', 'Cannot auto renew, OPACFineNoRenewals=10, patron has 15' );
722
723         $dbh->do('DELETE FROM accountlines WHERE borrowernumber=?', undef, $renewing_borrowernumber);
724     };
725
726     subtest "auto_account_expired | BlockExpiredPatronOpacActions" => sub {
727         plan tests => 6;
728         my $item_to_auto_renew = $builder->build({
729             source => 'Item',
730             value => {
731                 biblionumber => $biblio->biblionumber,
732                 homebranch       => $branch,
733                 holdingbranch    => $branch,
734             }
735         });
736
737         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 11');
738
739         my $ten_days_before = dt_from_string->add( days => -10 );
740         my $ten_days_ahead = dt_from_string->add( days => 10 );
741
742         # Patron is expired and BlockExpiredPatronOpacActions=0
743         # => auto renew is allowed
744         t::lib::Mocks::mock_preference('BlockExpiredPatronOpacActions', 0);
745         my $patron = $expired_borrower;
746         my $checkout = AddIssue( $patron, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
747         ( $renewokay, $error ) =
748           CanBookBeRenewed( $patron->{borrowernumber}, $item_to_auto_renew->{itemnumber} );
749         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
750         is( $error, 'auto_renew', 'Can auto renew, patron is expired but BlockExpiredPatronOpacActions=0' );
751         Koha::Checkouts->find( $checkout->issue_id )->delete;
752
753
754         # Patron is expired and BlockExpiredPatronOpacActions=1
755         # => auto renew is not allowed
756         t::lib::Mocks::mock_preference('BlockExpiredPatronOpacActions', 1);
757         $patron = $expired_borrower;
758         $checkout = AddIssue( $patron, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
759         ( $renewokay, $error ) =
760           CanBookBeRenewed( $patron->{borrowernumber}, $item_to_auto_renew->{itemnumber} );
761         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
762         is( $error, 'auto_account_expired', 'Can not auto renew, lockExpiredPatronOpacActions=1 and patron is expired' );
763         Koha::Checkouts->find( $checkout->issue_id )->delete;
764
765
766         # Patron is not expired and BlockExpiredPatronOpacActions=1
767         # => auto renew is allowed
768         t::lib::Mocks::mock_preference('BlockExpiredPatronOpacActions', 1);
769         $patron = $renewing_borrower;
770         $checkout = AddIssue( $patron, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
771         ( $renewokay, $error ) =
772           CanBookBeRenewed( $patron->{borrowernumber}, $item_to_auto_renew->{itemnumber} );
773         is( $renewokay, 0, 'Do not renew, renewal is automatic' );
774         is( $error, 'auto_renew', 'Can auto renew, BlockExpiredPatronOpacActions=1 but patron is not expired' );
775         Koha::Checkouts->find( $checkout->issue_id )->delete;
776     };
777
778     subtest "GetLatestAutoRenewDate" => sub {
779         plan tests => 5;
780         my $item_to_auto_renew = $builder->build(
781             {   source => 'Item',
782                 value  => {
783                     biblionumber  => $biblio->biblionumber,
784                     homebranch    => $branch,
785                     holdingbranch => $branch,
786                 }
787             }
788         );
789
790         my $ten_days_before = dt_from_string->add( days => -10 );
791         my $ten_days_ahead  = dt_from_string->add( days => 10 );
792         AddIssue( $renewing_borrower, $item_to_auto_renew->{barcode}, $ten_days_ahead, undef, $ten_days_before, undef, { auto_renew => 1 } );
793         $dbh->do('UPDATE issuingrules SET norenewalbefore = 7, no_auto_renewal_after = NULL, no_auto_renewal_after_hard_limit = NULL');
794         my $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
795         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' );
796         my $five_days_before = dt_from_string->add( days => -5 );
797         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 5, no_auto_renewal_after_hard_limit = NULL');
798         $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
799         is( $latest_auto_renew_date->truncate( to => 'minute' ),
800             $five_days_before->truncate( to => 'minute' ),
801             'GetLatestAutoRenewDate should return -5 days if no_auto_renewal_after = 5 and date_due is 10 days before'
802         );
803         my $five_days_ahead = dt_from_string->add( days => 5 );
804         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 15, no_auto_renewal_after_hard_limit = NULL');
805         $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
806         is( $latest_auto_renew_date->truncate( to => 'minute' ),
807             $five_days_ahead->truncate( to => 'minute' ),
808             'GetLatestAutoRenewDate should return +5 days if no_auto_renewal_after = 15 and date_due is 10 days before'
809         );
810         my $two_days_ahead = dt_from_string->add( days => 2 );
811         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = NULL, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => 2 ) );
812         $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
813         is( $latest_auto_renew_date->truncate( to => 'day' ),
814             $two_days_ahead->truncate( to => 'day' ),
815             'GetLatestAutoRenewDate should return +2 days if no_auto_renewal_after_hard_limit is defined and not no_auto_renewal_after'
816         );
817         $dbh->do('UPDATE issuingrules SET norenewalbefore = 10, no_auto_renewal_after = 15, no_auto_renewal_after_hard_limit = ?', undef, dt_from_string->add( days => 2 ) );
818         $latest_auto_renew_date = GetLatestAutoRenewDate( $renewing_borrowernumber, $item_to_auto_renew->{itemnumber} );
819         is( $latest_auto_renew_date->truncate( to => 'day' ),
820             $two_days_ahead->truncate( to => 'day' ),
821             'GetLatestAutoRenewDate should return +2 days if no_auto_renewal_after_hard_limit is < no_auto_renewal_after'
822         );
823
824     };
825
826     # Too many renewals
827
828     # set policy to forbid renewals
829     $dbh->do('UPDATE issuingrules SET norenewalbefore = NULL, renewalsallowed = 0');
830
831     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber);
832     is( $renewokay, 0, 'Cannot renew, 0 renewals allowed');
833     is( $error, 'too_many', 'Cannot renew, 0 renewals allowed (returned code is too_many)');
834
835     # Test WhenLostForgiveFine and WhenLostChargeReplacementFee
836     t::lib::Mocks::mock_preference('WhenLostForgiveFine','1');
837     t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','1');
838
839     C4::Overdues::UpdateFine(
840         {
841             issue_id       => $issue->id(),
842             itemnumber     => $item_1->itemnumber,
843             borrowernumber => $renewing_borrower->{borrowernumber},
844             amount         => 15.00,
845             type           => q{},
846             due            => Koha::DateUtils::output_pref($datedue)
847         }
848     );
849
850     my $line = Koha::Account::Lines->search({ borrowernumber => $renewing_borrower->{borrowernumber} })->next();
851     is( $line->accounttype, 'FU', 'Account line type is FU' );
852     is( $line->lastincrement, '15.000000', 'Account line last increment is 15.00' );
853     is( $line->amountoutstanding, '15.000000', 'Account line amount outstanding is 15.00' );
854     is( $line->amount, '15.000000', 'Account line amount is 15.00' );
855     is( $line->issue_id, $issue->id, 'Account line issue id matches' );
856
857     my $offset = Koha::Account::Offsets->search({ debit_id => $line->id })->next();
858     is( $offset->type, 'Fine', 'Account offset type is Fine' );
859     is( $offset->amount, '15.000000', 'Account offset amount is 15.00' );
860
861     t::lib::Mocks::mock_preference('WhenLostForgiveFine','0');
862     t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','0');
863
864     LostItem( $item_1->itemnumber, 'test', 1 );
865
866     $line = Koha::Account::Lines->find($line->id);
867     is( $line->accounttype, 'F', 'Account type correctly changed from FU to F' );
868
869     my $item = Koha::Items->find($item_1->itemnumber);
870     ok( !$item->onloan(), "Lost item marked as returned has false onloan value" );
871     my $checkout = Koha::Checkouts->find({ itemnumber => $item_1->itemnumber });
872     is( $checkout, undef, 'LostItem called with forced return has checked in the item' );
873
874     my $total_due = $dbh->selectrow_array(
875         'SELECT SUM( amountoutstanding ) FROM accountlines WHERE borrowernumber = ?',
876         undef, $renewing_borrower->{borrowernumber}
877     );
878
879     is( $total_due, '15.000000', 'Borrower only charged replacement fee with both WhenLostForgiveFine and WhenLostChargeReplacementFee enabled' );
880
881     C4::Context->dbh->do("DELETE FROM accountlines");
882
883     C4::Overdues::UpdateFine(
884         {
885             issue_id       => $issue2->id(),
886             itemnumber     => $item_2->itemnumber,
887             borrowernumber => $renewing_borrower->{borrowernumber},
888             amount         => 15.00,
889             type           => q{},
890             due            => Koha::DateUtils::output_pref($datedue)
891         }
892     );
893
894     LostItem( $item_2->itemnumber, 'test', 0 );
895
896     my $item2 = Koha::Items->find($item_2->itemnumber);
897     ok( $item2->onloan(), "Lost item *not* marked as returned has true onloan value" );
898     ok( Koha::Checkouts->find({ itemnumber => $item_2->itemnumber }), 'LostItem called without forced return has checked in the item' );
899
900     $total_due = $dbh->selectrow_array(
901         'SELECT SUM( amountoutstanding ) FROM accountlines WHERE borrowernumber = ?',
902         undef, $renewing_borrower->{borrowernumber}
903     );
904
905     ok( $total_due == 15, 'Borrower only charged fine with both WhenLostForgiveFine and WhenLostChargeReplacementFee disabled' );
906
907     my $future = dt_from_string();
908     $future->add( days => 7 );
909     my $units = C4::Overdues::get_chargeable_units('days', $future, $now, $library2->{branchcode});
910     ok( $units == 0, '_get_chargeable_units returns 0 for items not past due date (Bug 12596)' );
911
912     # Users cannot renew any item if there is an overdue item
913     t::lib::Mocks::mock_preference('OverduesBlockRenewing','block');
914     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_6->itemnumber);
915     is( $renewokay, 0, '(Bug 8236), Cannot renew, one of the items is overdue');
916     ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_7->itemnumber);
917     is( $renewokay, 0, '(Bug 8236), Cannot renew, one of the items is overdue');
918
919     t::lib::Mocks::mock_preference('WhenLostChargeReplacementFee','1');
920     $checkout = Koha::Checkouts->find( { itemnumber => $item_3->itemnumber } );
921     LostItem( $item_3->itemnumber, 'test', 0 );
922     my $accountline = Koha::Account::Lines->find( { itemnumber => $item_3->itemnumber } );
923     is( $accountline->issue_id, $checkout->id, "Issue id added for lost replacement fee charge" );
924   }
925
926 {
927     # GetUpcomingDueIssues tests
928     my $branch   = $library2->{branchcode};
929
930     #Create another record
931     my $biblio2 = $builder->build_sample_biblio();
932
933     #Create third item
934     my $item_1 = Koha::Items->find($reused_itemnumber_1);
935     my $item_2 = Koha::Items->find($reused_itemnumber_2);
936     my $item_3 = $builder->build_sample_item(
937         {
938             biblionumber     => $biblio2->biblionumber,
939             library          => $branch,
940             itype            => $itemtype,
941         }
942     );
943
944
945     # Create a borrower
946     my %a_borrower_data = (
947         firstname =>  'Fridolyn',
948         surname => 'SOMERS',
949         categorycode => $patron_category->{categorycode},
950         branchcode => $branch,
951     );
952
953     my $a_borrower_borrowernumber = Koha::Patron->new(\%a_borrower_data)->store->borrowernumber;
954     my $a_borrower = Koha::Patrons->find( $a_borrower_borrowernumber )->unblessed;
955
956     my $yesterday = DateTime->today(time_zone => C4::Context->tz())->add( days => -1 );
957     my $two_days_ahead = DateTime->today(time_zone => C4::Context->tz())->add( days => 2 );
958     my $today = DateTime->today(time_zone => C4::Context->tz());
959
960     my $issue = AddIssue( $a_borrower, $item_1->barcode, $yesterday );
961     my $datedue = dt_from_string( $issue->date_due() );
962     my $issue2 = AddIssue( $a_borrower, $item_2->barcode, $two_days_ahead );
963     my $datedue2 = dt_from_string( $issue->date_due() );
964
965     my $upcoming_dues;
966
967     # GetUpcomingDueIssues tests
968     for my $i(0..1) {
969         $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => $i } );
970         is ( scalar( @$upcoming_dues ), 0, "No items due in less than one day ($i days in advance)" );
971     }
972
973     #days_in_advance needs to be inclusive, so 1 matches items due tomorrow, 0 items due today etc.
974     $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 2 } );
975     is ( scalar ( @$upcoming_dues), 1, "Only one item due in 2 days or less" );
976
977     for my $i(3..5) {
978         $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => $i } );
979         is ( scalar( @$upcoming_dues ), 1,
980             "Bug 9362: Only one item due in more than 2 days ($i days in advance)" );
981     }
982
983     # Bug 11218 - Due notices not generated - GetUpcomingDueIssues needs to select due today items as well
984
985     my $issue3 = AddIssue( $a_borrower, $item_3->barcode, $today );
986
987     $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => -1 } );
988     is ( scalar ( @$upcoming_dues), 0, "Overdues can not be selected" );
989
990     $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 0 } );
991     is ( scalar ( @$upcoming_dues), 1, "1 item is due today" );
992
993     $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 1 } );
994     is ( scalar ( @$upcoming_dues), 1, "1 item is due today, none tomorrow" );
995
996     $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 2 }  );
997     is ( scalar ( @$upcoming_dues), 2, "2 items are due withing 2 days" );
998
999     $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => 3 } );
1000     is ( scalar ( @$upcoming_dues), 2, "2 items are due withing 2 days" );
1001
1002     $upcoming_dues = C4::Circulation::GetUpcomingDueIssues();
1003     is ( scalar ( @$upcoming_dues), 2, "days_in_advance is 7 in GetUpcomingDueIssues if not provided" );
1004
1005 }
1006
1007 {
1008     my $branch   = $library2->{branchcode};
1009
1010     my $biblio = $builder->build_sample_biblio();
1011
1012     #Create third item
1013     my $item = $builder->build_sample_item(
1014         {
1015             biblionumber     => $biblio->biblionumber,
1016             library          => $branch,
1017             itype            => $itemtype,
1018         }
1019     );
1020
1021     # Create a borrower
1022     my %a_borrower_data = (
1023         firstname =>  'Kyle',
1024         surname => 'Hall',
1025         categorycode => $patron_category->{categorycode},
1026         branchcode => $branch,
1027     );
1028
1029     my $borrowernumber = Koha::Patron->new(\%a_borrower_data)->store->borrowernumber;
1030
1031     my $borrower = Koha::Patrons->find( $borrowernumber )->unblessed;
1032     my $issue = AddIssue( $borrower, $item->barcode );
1033     UpdateFine(
1034         {
1035             issue_id       => $issue->id(),
1036             itemnumber     => $item->itemnumber,
1037             borrowernumber => $borrowernumber,
1038             amount         => 0,
1039             type           => q{}
1040         }
1041     );
1042
1043     my $hr = $dbh->selectrow_hashref(q{SELECT COUNT(*) AS count FROM accountlines WHERE borrowernumber = ? AND itemnumber = ?}, undef, $borrowernumber, $item->itemnumber );
1044     my $count = $hr->{count};
1045
1046     is ( $count, 0, "Calling UpdateFine on non-existant fine with an amount of 0 does not result in an empty fine" );
1047 }
1048
1049 {
1050     $dbh->do('DELETE FROM issues');
1051     $dbh->do('DELETE FROM items');
1052     $dbh->do('DELETE FROM issuingrules');
1053     Koha::CirculationRules->search()->delete();
1054     $dbh->do(
1055         q{
1056         INSERT INTO issuingrules ( categorycode, branchcode, itemtype, reservesallowed, issuelength, lengthunit, renewalsallowed, renewalperiod,
1057                     norenewalbefore, auto_renew, fine, chargeperiod ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
1058         },
1059         {},
1060         '*', '*', '*', 25,
1061         14,  'days',
1062         1,   7,
1063         undef,  0,
1064         .10, 1
1065     );
1066     Koha::CirculationRules->set_rules(
1067         {
1068             categorycode => '*',
1069             itemtype     => '*',
1070             branchcode   => '*',
1071             rules        => {
1072                 maxissueqty => 20
1073             }
1074         }
1075     );
1076     my $biblio = $builder->build_sample_biblio();
1077
1078     my $item_1 = $builder->build_sample_item(
1079         {
1080             biblionumber     => $biblio->biblionumber,
1081             library          => $library2->{branchcode},
1082             itype            => $itemtype,
1083         }
1084     );
1085
1086     my $item_2= $builder->build_sample_item(
1087         {
1088             biblionumber     => $biblio->biblionumber,
1089             library          => $library2->{branchcode},
1090             itype            => $itemtype,
1091         }
1092     );
1093
1094     my $borrowernumber1 = Koha::Patron->new({
1095         firstname    => 'Kyle',
1096         surname      => 'Hall',
1097         categorycode => $patron_category->{categorycode},
1098         branchcode   => $library2->{branchcode},
1099     })->store->borrowernumber;
1100     my $borrowernumber2 = Koha::Patron->new({
1101         firstname    => 'Chelsea',
1102         surname      => 'Hall',
1103         categorycode => $patron_category->{categorycode},
1104         branchcode   => $library2->{branchcode},
1105     })->store->borrowernumber;
1106
1107     my $borrower1 = Koha::Patrons->find( $borrowernumber1 )->unblessed;
1108     my $borrower2 = Koha::Patrons->find( $borrowernumber2 )->unblessed;
1109
1110     my $issue = AddIssue( $borrower1, $item_1->barcode );
1111
1112     my ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1113     is( $renewokay, 1, 'Bug 14337 - Verify the borrower can renew with no hold on the record' );
1114
1115     AddReserve(
1116         $library2->{branchcode}, $borrowernumber2, $biblio->biblionumber,
1117         '',  1, undef, undef, '',
1118         undef, undef, undef
1119     );
1120
1121     C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 0");
1122     t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 0 );
1123     ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1124     is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable and onshelfholds are disabled' );
1125
1126     C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 0");
1127     t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 1 );
1128     ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1129     is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable is enabled and onshelfholds is disabled' );
1130
1131     C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 1");
1132     t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 0 );
1133     ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1134     is( $renewokay, 0, 'Bug 14337 - Verify the borrower cannot renew with a hold on the record if AllowRenewalIfOtherItemsAvailable is disabled and onshelfhold is enabled' );
1135
1136     C4::Context->dbh->do("UPDATE issuingrules SET onshelfholds = 1");
1137     t::lib::Mocks::mock_preference( 'AllowRenewalIfOtherItemsAvailable', 1 );
1138     ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1139     is( $renewokay, 1, 'Bug 14337 - Verify the borrower can renew with a hold on the record if AllowRenewalIfOtherItemsAvailable and onshelfhold are enabled' );
1140
1141     # Setting item not checked out to be not for loan but holdable
1142     ModItem({ notforloan => -1 }, $biblio->biblionumber, $item_2->itemnumber);
1143
1144     ( $renewokay, $error ) = CanBookBeRenewed( $borrowernumber1, $item_1->itemnumber );
1145     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' );
1146 }
1147
1148 {
1149     # Don't allow renewing onsite checkout
1150     my $branch   = $library->{branchcode};
1151
1152     #Create another record
1153     my $biblio = $builder->build_sample_biblio();
1154
1155     my $item = $builder->build_sample_item(
1156         {
1157             biblionumber     => $biblio->biblionumber,
1158             library          => $branch,
1159             itype            => $itemtype,
1160         }
1161     );
1162
1163     my $borrowernumber = Koha::Patron->new({
1164         firstname =>  'fn',
1165         surname => 'dn',
1166         categorycode => $patron_category->{categorycode},
1167         branchcode => $branch,
1168     })->store->borrowernumber;
1169
1170     my $borrower = Koha::Patrons->find( $borrowernumber )->unblessed;
1171
1172     my $issue = AddIssue( $borrower, $item->barcode, undef, undef, undef, undef, { onsite_checkout => 1 } );
1173     my ( $renewed, $error ) = CanBookBeRenewed( $borrowernumber, $item->itemnumber );
1174     is( $renewed, 0, 'CanBookBeRenewed should not allow to renew on-site checkout' );
1175     is( $error, 'onsite_checkout', 'A correct error code should be returned by CanBookBeRenewed for on-site checkout' );
1176 }
1177
1178 {
1179     my $library = $builder->build({ source => 'Branch' });
1180
1181     my $biblio = $builder->build_sample_biblio();
1182
1183     my $item = $builder->build_sample_item(
1184         {
1185             biblionumber     => $biblio->biblionumber,
1186             library          => $library->{branchcode},
1187             itype            => $itemtype,
1188         }
1189     );
1190
1191     my $patron = $builder->build({ source => 'Borrower', value => { branchcode => $library->{branchcode}, categorycode => $patron_category->{categorycode} } } );
1192
1193     my $issue = AddIssue( $patron, $item->barcode );
1194     UpdateFine(
1195         {
1196             issue_id       => $issue->id(),
1197             itemnumber     => $item->itemnumber,
1198             borrowernumber => $patron->{borrowernumber},
1199             amount         => 1,
1200             type           => q{}
1201         }
1202     );
1203     UpdateFine(
1204         {
1205             issue_id       => $issue->id(),
1206             itemnumber     => $item->itemnumber,
1207             borrowernumber => $patron->{borrowernumber},
1208             amount         => 2,
1209             type           => q{}
1210         }
1211     );
1212     is( Koha::Account::Lines->search({ issue_id => $issue->id })->count, 1, 'UpdateFine should not create a new accountline when updating an existing fine');
1213 }
1214
1215 subtest 'CanBookBeIssued & AllowReturnToBranch' => sub {
1216     plan tests => 24;
1217
1218     my $homebranch    = $builder->build( { source => 'Branch' } );
1219     my $holdingbranch = $builder->build( { source => 'Branch' } );
1220     my $otherbranch   = $builder->build( { source => 'Branch' } );
1221     my $patron_1      = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1222     my $patron_2      = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1223
1224     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1225     my $item = $builder->build(
1226         {   source => 'Item',
1227             value  => {
1228                 homebranch    => $homebranch->{branchcode},
1229                 holdingbranch => $holdingbranch->{branchcode},
1230                 biblionumber  => $biblioitem->{biblionumber}
1231             }
1232         }
1233     );
1234
1235     set_userenv($holdingbranch);
1236
1237     my $issue = AddIssue( $patron_1->unblessed, $item->{barcode} );
1238     is( ref($issue), 'Koha::Checkout', 'AddIssue should return a Koha::Checkout object' );
1239
1240     my ( $error, $question, $alerts );
1241
1242     # AllowReturnToBranch == anywhere
1243     t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'anywhere' );
1244     ## Test that unknown barcodes don't generate internal server errors
1245     set_userenv($homebranch);
1246     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, 'KohaIsAwesome' );
1247     ok( $error->{UNKNOWN_BARCODE}, '"KohaIsAwesome" is not a valid barcode as expected.' );
1248     ## Can be issued from homebranch
1249     set_userenv($homebranch);
1250     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1251     is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1252     is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1253     ## Can be issued from holdingbranch
1254     set_userenv($holdingbranch);
1255     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1256     is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1257     is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1258     ## Can be issued from another branch
1259     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1260     is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1261     is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1262
1263     # AllowReturnToBranch == holdingbranch
1264     t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'holdingbranch' );
1265     ## Cannot be issued from homebranch
1266     set_userenv($homebranch);
1267     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1268     is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1269     is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1270     is( $error->{branch_to_return},         $holdingbranch->{branchcode} );
1271     ## Can be issued from holdinbranch
1272     set_userenv($holdingbranch);
1273     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1274     is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1275     is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1276     ## Cannot be issued from another branch
1277     set_userenv($otherbranch);
1278     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1279     is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1280     is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1281     is( $error->{branch_to_return},         $holdingbranch->{branchcode} );
1282
1283     # AllowReturnToBranch == homebranch
1284     t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'homebranch' );
1285     ## Can be issued from holdinbranch
1286     set_userenv($homebranch);
1287     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1288     is( keys(%$error) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1289     is( exists $question->{ISSUED_TO_ANOTHER}, 1, 'ISSUED_TO_ANOTHER must be set' );
1290     ## Cannot be issued from holdinbranch
1291     set_userenv($holdingbranch);
1292     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1293     is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1294     is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1295     is( $error->{branch_to_return},         $homebranch->{branchcode} );
1296     ## Cannot be issued from holdinbranch
1297     set_userenv($otherbranch);
1298     ( $error, $question, $alerts ) = CanBookBeIssued( $patron_2, $item->{barcode} );
1299     is( keys(%$question) + keys(%$alerts), 0, 'There should not be any errors or alerts (impossible)' . str($error, $question, $alerts) );
1300     is( exists $error->{RETURN_IMPOSSIBLE}, 1, 'RETURN_IMPOSSIBLE must be set' );
1301     is( $error->{branch_to_return},         $homebranch->{branchcode} );
1302
1303     # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
1304 };
1305
1306 subtest 'AddIssue & AllowReturnToBranch' => sub {
1307     plan tests => 9;
1308
1309     my $homebranch    = $builder->build( { source => 'Branch' } );
1310     my $holdingbranch = $builder->build( { source => 'Branch' } );
1311     my $otherbranch   = $builder->build( { source => 'Branch' } );
1312     my $patron_1      = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1313     my $patron_2      = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1314
1315     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1316     my $item = $builder->build(
1317         {   source => 'Item',
1318             value  => {
1319                 homebranch    => $homebranch->{branchcode},
1320                 holdingbranch => $holdingbranch->{branchcode},
1321                 notforloan    => 0,
1322                 itemlost      => 0,
1323                 withdrawn     => 0,
1324                 biblionumber  => $biblioitem->{biblionumber}
1325             }
1326         }
1327     );
1328
1329     set_userenv($holdingbranch);
1330
1331     my $ref_issue = 'Koha::Checkout';
1332     my $issue = AddIssue( $patron_1, $item->{barcode} );
1333
1334     my ( $error, $question, $alerts );
1335
1336     # AllowReturnToBranch == homebranch
1337     t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'anywhere' );
1338     ## Can be issued from homebranch
1339     set_userenv($homebranch);
1340     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1341     set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1342     ## Can be issued from holdinbranch
1343     set_userenv($holdingbranch);
1344     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1345     set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1346     ## Can be issued from another branch
1347     set_userenv($otherbranch);
1348     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1349     set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1350
1351     # AllowReturnToBranch == holdinbranch
1352     t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'holdingbranch' );
1353     ## Cannot be issued from homebranch
1354     set_userenv($homebranch);
1355     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1356     ## Can be issued from holdingbranch
1357     set_userenv($holdingbranch);
1358     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1359     set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1360     ## Cannot be issued from another branch
1361     set_userenv($otherbranch);
1362     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1363
1364     # AllowReturnToBranch == homebranch
1365     t::lib::Mocks::mock_preference( 'AllowReturnToBranch', 'homebranch' );
1366     ## Can be issued from homebranch
1367     set_userenv($homebranch);
1368     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), $ref_issue );
1369     set_userenv($holdingbranch); AddIssue( $patron_1, $item->{barcode} ); # Reinsert the original issue
1370     ## Cannot be issued from holdinbranch
1371     set_userenv($holdingbranch);
1372     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1373     ## Cannot be issued from another branch
1374     set_userenv($otherbranch);
1375     is ( ref( AddIssue( $patron_2, $item->{barcode} ) ), '' );
1376     # TODO t::lib::Mocks::mock_preference('AllowReturnToBranch', 'homeorholdingbranch');
1377 };
1378
1379 subtest 'CanBookBeIssued + Koha::Patron->is_debarred|has_overdues' => sub {
1380     plan tests => 8;
1381
1382     my $library = $builder->build( { source => 'Branch' } );
1383     my $patron  = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1384
1385     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
1386     my $item_1 = $builder->build(
1387         {   source => 'Item',
1388             value  => {
1389                 homebranch    => $library->{branchcode},
1390                 holdingbranch => $library->{branchcode},
1391                 biblionumber  => $biblioitem_1->{biblionumber}
1392             }
1393         }
1394     );
1395     my $biblioitem_2 = $builder->build( { source => 'Biblioitem' } );
1396     my $item_2 = $builder->build(
1397         {   source => 'Item',
1398             value  => {
1399                 homebranch    => $library->{branchcode},
1400                 holdingbranch => $library->{branchcode},
1401                 biblionumber  => $biblioitem_2->{biblionumber}
1402             }
1403         }
1404     );
1405
1406     my ( $error, $question, $alerts );
1407
1408     # Patron cannot issue item_1, they have overdues
1409     my $yesterday = DateTime->today( time_zone => C4::Context->tz() )->add( days => -1 );
1410     my $issue = AddIssue( $patron->unblessed, $item_1->{barcode}, $yesterday );    # Add an overdue
1411
1412     t::lib::Mocks::mock_preference( 'OverduesBlockCirc', 'confirmation' );
1413     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1414     is( keys(%$error) + keys(%$alerts),  0, 'No key for error and alert' . str($error, $question, $alerts) );
1415     is( $question->{USERBLOCKEDOVERDUE}, 1, 'OverduesBlockCirc=confirmation, USERBLOCKEDOVERDUE should be set for question' );
1416
1417     t::lib::Mocks::mock_preference( 'OverduesBlockCirc', 'block' );
1418     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1419     is( keys(%$question) + keys(%$alerts),  0, 'No key for question and alert ' . str($error, $question, $alerts) );
1420     is( $error->{USERBLOCKEDOVERDUE},      1, 'OverduesBlockCirc=block, USERBLOCKEDOVERDUE should be set for error' );
1421
1422     # Patron cannot issue item_1, they are debarred
1423     my $tomorrow = DateTime->today( time_zone => C4::Context->tz() )->add( days => 1 );
1424     Koha::Patron::Debarments::AddDebarment( { borrowernumber => $patron->borrowernumber, expiration => $tomorrow } );
1425     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1426     is( keys(%$question) + keys(%$alerts),  0, 'No key for question and alert ' . str($error, $question, $alerts) );
1427     is( $error->{USERBLOCKEDWITHENDDATE}, output_pref( { dt => $tomorrow, dateformat => 'sql', dateonly => 1 } ), 'USERBLOCKEDWITHENDDATE should be tomorrow' );
1428
1429     Koha::Patron::Debarments::AddDebarment( { borrowernumber => $patron->borrowernumber } );
1430     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1431     is( keys(%$question) + keys(%$alerts),  0, 'No key for question and alert ' . str($error, $question, $alerts) );
1432     is( $error->{USERBLOCKEDNOENDDATE},    '9999-12-31', 'USERBLOCKEDNOENDDATE should be 9999-12-31 for unlimited debarments' );
1433 };
1434
1435 subtest 'CanBookBeIssued + Statistic patrons "X"' => sub {
1436     plan tests => 1;
1437
1438     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1439     my $patron_category_x = $builder->build_object(
1440         {
1441             class => 'Koha::Patron::Categories',
1442             value => { category_type => 'X' }
1443         }
1444     );
1445     my $patron = $builder->build_object(
1446         {
1447             class => 'Koha::Patrons',
1448             value => {
1449                 categorycode  => $patron_category_x->categorycode,
1450                 gonenoaddress => undef,
1451                 lost          => undef,
1452                 debarred      => undef,
1453                 borrowernotes => ""
1454             }
1455         }
1456     );
1457     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
1458     my $item_1 = $builder->build(
1459         {
1460             source => 'Item',
1461             value  => {
1462                 homebranch    => $library->branchcode,
1463                 holdingbranch => $library->branchcode,
1464                 biblionumber  => $biblioitem_1->{biblionumber}
1465             }
1466         }
1467     );
1468
1469     my ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_1->{barcode} );
1470     is( $error->{STATS}, 1, '"Error" flag "STATS" must be set if CanBookBeIssued is called with a statistic patron (category_type=X)' );
1471
1472     # TODO There are other tests to provide here
1473 };
1474
1475 subtest 'MultipleReserves' => sub {
1476     plan tests => 3;
1477
1478     my $biblio = $builder->build_sample_biblio();
1479
1480     my $branch = $library2->{branchcode};
1481
1482     my $item_1 = $builder->build_sample_item(
1483         {
1484             biblionumber     => $biblio->biblionumber,
1485             library          => $branch,
1486             replacementprice => 12.00,
1487             itype            => $itemtype,
1488         }
1489     );
1490
1491     my $item_2 = $builder->build_sample_item(
1492         {
1493             biblionumber     => $biblio->biblionumber,
1494             library          => $branch,
1495             replacementprice => 12.00,
1496             itype            => $itemtype,
1497         }
1498     );
1499
1500     my $bibitems       = '';
1501     my $priority       = '1';
1502     my $resdate        = undef;
1503     my $expdate        = undef;
1504     my $notes          = '';
1505     my $checkitem      = undef;
1506     my $found          = undef;
1507
1508     my %renewing_borrower_data = (
1509         firstname =>  'John',
1510         surname => 'Renewal',
1511         categorycode => $patron_category->{categorycode},
1512         branchcode => $branch,
1513     );
1514     my $renewing_borrowernumber = Koha::Patron->new(\%renewing_borrower_data)->store->borrowernumber;
1515     my $renewing_borrower = Koha::Patrons->find( $renewing_borrowernumber )->unblessed;
1516     my $issue = AddIssue( $renewing_borrower, $item_1->barcode);
1517     my $datedue = dt_from_string( $issue->date_due() );
1518     is (defined $issue->date_due(), 1, "item 1 checked out");
1519     my $borrowing_borrowernumber = Koha::Checkouts->find({ itemnumber => $item_1->itemnumber })->borrowernumber;
1520
1521     my %reserving_borrower_data1 = (
1522         firstname =>  'Katrin',
1523         surname => 'Reservation',
1524         categorycode => $patron_category->{categorycode},
1525         branchcode => $branch,
1526     );
1527     my $reserving_borrowernumber1 = Koha::Patron->new(\%reserving_borrower_data1)->store->borrowernumber;
1528     AddReserve(
1529         $branch, $reserving_borrowernumber1, $biblio->biblionumber,
1530         $bibitems,  $priority, $resdate, $expdate, $notes,
1531         'a title', $checkitem, $found
1532     );
1533
1534     my %reserving_borrower_data2 = (
1535         firstname =>  'Kirk',
1536         surname => 'Reservation',
1537         categorycode => $patron_category->{categorycode},
1538         branchcode => $branch,
1539     );
1540     my $reserving_borrowernumber2 = Koha::Patron->new(\%reserving_borrower_data2)->store->borrowernumber;
1541     AddReserve(
1542         $branch, $reserving_borrowernumber2, $biblio->biblionumber,
1543         $bibitems,  $priority, $resdate, $expdate, $notes,
1544         'a title', $checkitem, $found
1545     );
1546
1547     {
1548         my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
1549         is($renewokay, 0, 'Bug 17941 - should cover the case where 2 books are both reserved, so failing');
1550     }
1551
1552     my $item_3 = $builder->build_sample_item(
1553         {
1554             biblionumber     => $biblio->biblionumber,
1555             library          => $branch,
1556             replacementprice => 12.00,
1557             itype            => $itemtype,
1558         }
1559     );
1560
1561     {
1562         my ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $item_1->itemnumber, 1);
1563         is($renewokay, 1, 'Bug 17941 - should cover the case where 2 books are reserved, but a third one is available');
1564     }
1565 };
1566
1567 subtest 'CanBookBeIssued + AllowMultipleIssuesOnABiblio' => sub {
1568     plan tests => 5;
1569
1570     my $library = $builder->build( { source => 'Branch' } );
1571     my $patron  = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
1572
1573     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1574     my $biblionumber = $biblioitem->{biblionumber};
1575     my $item_1 = $builder->build(
1576         {   source => 'Item',
1577             value  => {
1578                 homebranch    => $library->{branchcode},
1579                 holdingbranch => $library->{branchcode},
1580                 biblionumber  => $biblionumber,
1581             }
1582         }
1583     );
1584     my $item_2 = $builder->build(
1585         {   source => 'Item',
1586             value  => {
1587                 homebranch    => $library->{branchcode},
1588                 holdingbranch => $library->{branchcode},
1589                 biblionumber  => $biblionumber,
1590             }
1591         }
1592     );
1593
1594     my ( $error, $question, $alerts );
1595     my $issue = AddIssue( $patron->unblessed, $item_1->{barcode}, dt_from_string->add( days => 1 ) );
1596
1597     t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 0);
1598     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1599     is( keys(%$error) + keys(%$alerts),  0, 'No error or alert should be raised' . str($error, $question, $alerts) );
1600     is( $question->{BIBLIO_ALREADY_ISSUED}, 1, 'BIBLIO_ALREADY_ISSUED question flag should be set if AllowMultipleIssuesOnABiblio=0 and issue already exists' . str($error, $question, $alerts) );
1601
1602     t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 1);
1603     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1604     is( keys(%$error) + keys(%$question) + keys(%$alerts),  0, 'No BIBLIO_ALREADY_ISSUED flag should be set if AllowMultipleIssuesOnABiblio=1' . str($error, $question, $alerts) );
1605
1606     # Add a subscription
1607     Koha::Subscription->new({ biblionumber => $biblionumber })->store;
1608
1609     t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 0);
1610     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1611     is( keys(%$error) + keys(%$question) + keys(%$alerts),  0, 'No BIBLIO_ALREADY_ISSUED flag should be set if it is a subscription' . str($error, $question, $alerts) );
1612
1613     t::lib::Mocks::mock_preference('AllowMultipleIssuesOnABiblio', 1);
1614     ( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->{barcode} );
1615     is( keys(%$error) + keys(%$question) + keys(%$alerts),  0, 'No BIBLIO_ALREADY_ISSUED flag should be set if it is a subscription' . str($error, $question, $alerts) );
1616 };
1617
1618 subtest 'AddReturn + CumulativeRestrictionPeriods' => sub {
1619     plan tests => 8;
1620
1621     my $library = $builder->build( { source => 'Branch' } );
1622     my $patron  = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1623
1624     # Add 2 items
1625     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
1626     my $item_1 = $builder->build(
1627         {
1628             source => 'Item',
1629             value  => {
1630                 homebranch    => $library->{branchcode},
1631                 holdingbranch => $library->{branchcode},
1632                 notforloan    => 0,
1633                 itemlost      => 0,
1634                 withdrawn     => 0,
1635                 biblionumber  => $biblioitem_1->{biblionumber}
1636             }
1637         }
1638     );
1639     my $biblioitem_2 = $builder->build( { source => 'Biblioitem' } );
1640     my $item_2 = $builder->build(
1641         {
1642             source => 'Item',
1643             value  => {
1644                 homebranch    => $library->{branchcode},
1645                 holdingbranch => $library->{branchcode},
1646                 notforloan    => 0,
1647                 itemlost      => 0,
1648                 withdrawn     => 0,
1649                 biblionumber  => $biblioitem_2->{biblionumber}
1650             }
1651         }
1652     );
1653
1654     # And the issuing rule
1655     Koha::IssuingRules->search->delete;
1656     my $rule = Koha::IssuingRule->new(
1657         {
1658             categorycode => '*',
1659             itemtype     => '*',
1660             branchcode   => '*',
1661             issuelength  => 1,
1662             firstremind  => 1,        # 1 day of grace
1663             finedays     => 2,        # 2 days of fine per day of overdue
1664             lengthunit   => 'days',
1665         }
1666     );
1667     $rule->store();
1668
1669     # Patron cannot issue item_1, they have overdues
1670     my $five_days_ago = dt_from_string->subtract( days => 5 );
1671     my $ten_days_ago  = dt_from_string->subtract( days => 10 );
1672     AddIssue( $patron, $item_1->{barcode}, $five_days_ago );    # Add an overdue
1673     AddIssue( $patron, $item_2->{barcode}, $ten_days_ago )
1674       ;    # Add another overdue
1675
1676     t::lib::Mocks::mock_preference( 'CumulativeRestrictionPeriods', '0' );
1677     AddReturn( $item_1->{barcode}, $library->{branchcode}, undef, dt_from_string );
1678     my $debarments = Koha::Patron::Debarments::GetDebarments(
1679         { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1680     is( scalar(@$debarments), 1 );
1681
1682     # FIXME Is it right? I'd have expected 5 * 2 - 1 instead
1683     # Same for the others
1684     my $expected_expiration = output_pref(
1685         {
1686             dt         => dt_from_string->add( days => ( 5 - 1 ) * 2 ),
1687             dateformat => 'sql',
1688             dateonly   => 1
1689         }
1690     );
1691     is( $debarments->[0]->{expiration}, $expected_expiration );
1692
1693     AddReturn( $item_2->{barcode}, $library->{branchcode}, undef, dt_from_string );
1694     $debarments = Koha::Patron::Debarments::GetDebarments(
1695         { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1696     is( scalar(@$debarments), 1 );
1697     $expected_expiration = output_pref(
1698         {
1699             dt         => dt_from_string->add( days => ( 10 - 1 ) * 2 ),
1700             dateformat => 'sql',
1701             dateonly   => 1
1702         }
1703     );
1704     is( $debarments->[0]->{expiration}, $expected_expiration );
1705
1706     Koha::Patron::Debarments::DelUniqueDebarment(
1707         { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1708
1709     t::lib::Mocks::mock_preference( 'CumulativeRestrictionPeriods', '1' );
1710     AddIssue( $patron, $item_1->{barcode}, $five_days_ago );    # Add an overdue
1711     AddIssue( $patron, $item_2->{barcode}, $ten_days_ago )
1712       ;    # Add another overdue
1713     AddReturn( $item_1->{barcode}, $library->{branchcode}, undef, dt_from_string );
1714     $debarments = Koha::Patron::Debarments::GetDebarments(
1715         { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1716     is( scalar(@$debarments), 1 );
1717     $expected_expiration = output_pref(
1718         {
1719             dt         => dt_from_string->add( days => ( 5 - 1 ) * 2 ),
1720             dateformat => 'sql',
1721             dateonly   => 1
1722         }
1723     );
1724     is( $debarments->[0]->{expiration}, $expected_expiration );
1725
1726     AddReturn( $item_2->{barcode}, $library->{branchcode}, undef, dt_from_string );
1727     $debarments = Koha::Patron::Debarments::GetDebarments(
1728         { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
1729     is( scalar(@$debarments), 1 );
1730     $expected_expiration = output_pref(
1731         {
1732             dt => dt_from_string->add( days => ( 5 - 1 ) * 2 + ( 10 - 1 ) * 2 ),
1733             dateformat => 'sql',
1734             dateonly   => 1
1735         }
1736     );
1737     is( $debarments->[0]->{expiration}, $expected_expiration );
1738 };
1739
1740 subtest 'AddReturn + suspension_chargeperiod' => sub {
1741     plan tests => 21;
1742
1743     my $library = $builder->build( { source => 'Branch' } );
1744     my $patron  = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1745
1746     # Add 2 items
1747     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
1748     my $item_1 = $builder->build(
1749         {
1750             source => 'Item',
1751             value  => {
1752                 homebranch    => $library->{branchcode},
1753                 holdingbranch => $library->{branchcode},
1754                 notforloan    => 0,
1755                 itemlost      => 0,
1756                 withdrawn     => 0,
1757                 biblionumber  => $biblioitem_1->{biblionumber}
1758             }
1759         }
1760     );
1761
1762     # And the issuing rule
1763     Koha::IssuingRules->search->delete;
1764     my $rule = Koha::IssuingRule->new(
1765         {
1766             categorycode => '*',
1767             itemtype     => '*',
1768             branchcode   => '*',
1769             issuelength  => 1,
1770             firstremind  => 0,        # 0 day of grace
1771             finedays     => 2,        # 2 days of fine per day of overdue
1772             suspension_chargeperiod => 1,
1773             lengthunit   => 'days',
1774         }
1775     );
1776     $rule->store();
1777
1778     my $five_days_ago = dt_from_string->subtract( days => 5 );
1779     # We want to charge 2 days every day, without grace
1780     # With 5 days of overdue: 5 * Z
1781     my $expected_expiration = dt_from_string->add( days => ( 5 * 2 ) / 1 );
1782     test_debarment_on_checkout(
1783         {
1784             item            => $item_1,
1785             library         => $library,
1786             patron          => $patron,
1787             due_date        => $five_days_ago,
1788             expiration_date => $expected_expiration,
1789         }
1790     );
1791
1792     # We want to charge 2 days every 2 days, without grace
1793     # With 5 days of overdue: (5 * 2) / 2
1794     $rule->suspension_chargeperiod(2)->store;
1795     $expected_expiration = dt_from_string->add( days => floor( 5 * 2 ) / 2 );
1796     test_debarment_on_checkout(
1797         {
1798             item            => $item_1,
1799             library         => $library,
1800             patron          => $patron,
1801             due_date        => $five_days_ago,
1802             expiration_date => $expected_expiration,
1803         }
1804     );
1805
1806     # We want to charge 2 days every 3 days, with 1 day of grace
1807     # With 5 days of overdue: ((5-1) / 3 ) * 2
1808     $rule->suspension_chargeperiod(3)->store;
1809     $rule->firstremind(1)->store;
1810     $expected_expiration = dt_from_string->add( days => floor( ( ( 5 - 1 ) / 3 ) * 2 ) );
1811     test_debarment_on_checkout(
1812         {
1813             item            => $item_1,
1814             library         => $library,
1815             patron          => $patron,
1816             due_date        => $five_days_ago,
1817             expiration_date => $expected_expiration,
1818         }
1819     );
1820
1821     # Use finesCalendar to know if holiday must be skipped to calculate the due date
1822     # We want to charge 2 days every days, with 0 day of grace (to not burn brains)
1823     $rule->finedays(2)->store;
1824     $rule->suspension_chargeperiod(1)->store;
1825     $rule->firstremind(0)->store;
1826     t::lib::Mocks::mock_preference('finesCalendar', 'noFinesWhenClosed');
1827
1828     # Adding a holiday 2 days ago
1829     my $calendar = C4::Calendar->new(branchcode => $library->{branchcode});
1830     my $two_days_ago = dt_from_string->subtract( days => 2 );
1831     $calendar->insert_single_holiday(
1832         day             => $two_days_ago->day,
1833         month           => $two_days_ago->month,
1834         year            => $two_days_ago->year,
1835         title           => 'holidayTest-2d',
1836         description     => 'holidayDesc 2 days ago'
1837     );
1838     # With 5 days of overdue, only 4 (x finedays=2) days must charged (one was an holiday)
1839     $expected_expiration = dt_from_string->add( days => floor( ( ( 5 - 0 - 1 ) / 1 ) * 2 ) );
1840     test_debarment_on_checkout(
1841         {
1842             item            => $item_1,
1843             library         => $library,
1844             patron          => $patron,
1845             due_date        => $five_days_ago,
1846             expiration_date => $expected_expiration,
1847         }
1848     );
1849
1850     # Adding a holiday 2 days ahead, with finesCalendar=noFinesWhenClosed it should be skipped
1851     my $two_days_ahead = dt_from_string->add( days => 2 );
1852     $calendar->insert_single_holiday(
1853         day             => $two_days_ahead->day,
1854         month           => $two_days_ahead->month,
1855         year            => $two_days_ahead->year,
1856         title           => 'holidayTest+2d',
1857         description     => 'holidayDesc 2 days ahead'
1858     );
1859
1860     # Same as above, but we should skip D+2
1861     $expected_expiration = dt_from_string->add( days => floor( ( ( 5 - 0 - 1 ) / 1 ) * 2 ) + 1 );
1862     test_debarment_on_checkout(
1863         {
1864             item            => $item_1,
1865             library         => $library,
1866             patron          => $patron,
1867             due_date        => $five_days_ago,
1868             expiration_date => $expected_expiration,
1869         }
1870     );
1871
1872     # Adding another holiday, day of expiration date
1873     my $expected_expiration_dt = dt_from_string($expected_expiration);
1874     $calendar->insert_single_holiday(
1875         day             => $expected_expiration_dt->day,
1876         month           => $expected_expiration_dt->month,
1877         year            => $expected_expiration_dt->year,
1878         title           => 'holidayTest_exp',
1879         description     => 'holidayDesc on expiration date'
1880     );
1881     # Expiration date will be the day after
1882     test_debarment_on_checkout(
1883         {
1884             item            => $item_1,
1885             library         => $library,
1886             patron          => $patron,
1887             due_date        => $five_days_ago,
1888             expiration_date => $expected_expiration_dt->clone->add( days => 1 ),
1889         }
1890     );
1891
1892     test_debarment_on_checkout(
1893         {
1894             item            => $item_1,
1895             library         => $library,
1896             patron          => $patron,
1897             return_date     => dt_from_string->add(days => 5),
1898             expiration_date => dt_from_string->add(days => 5 + (5 * 2 - 1) ),
1899         }
1900     );
1901 };
1902
1903 subtest 'AddReturn | is_overdue' => sub {
1904     plan tests => 5;
1905
1906     t::lib::Mocks::mock_preference('CalculateFinesOnReturn', 1);
1907     t::lib::Mocks::mock_preference('finesMode', 'production');
1908     t::lib::Mocks::mock_preference('MaxFine', '100');
1909
1910     my $library = $builder->build( { source => 'Branch' } );
1911     my $patron  = $builder->build( { source => 'Borrower', value => { categorycode => $patron_category->{categorycode} } } );
1912
1913     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
1914     my $item = $builder->build(
1915         {
1916             source => 'Item',
1917             value  => {
1918                 homebranch    => $library->{branchcode},
1919                 holdingbranch => $library->{branchcode},
1920                 notforloan    => 0,
1921                 itemlost      => 0,
1922                 withdrawn     => 0,
1923                 biblionumber  => $biblioitem->{biblionumber},
1924             }
1925         }
1926     );
1927
1928     Koha::IssuingRules->search->delete;
1929     my $rule = Koha::IssuingRule->new(
1930         {
1931             categorycode => '*',
1932             itemtype     => '*',
1933             branchcode   => '*',
1934             issuelength  => 6,
1935             lengthunit   => 'days',
1936             fine         => 1, # Charge 1 every day of overdue
1937             chargeperiod => 1,
1938         }
1939     );
1940     $rule->store();
1941
1942     my $one_day_ago   = dt_from_string->subtract( days => 1 );
1943     my $five_days_ago = dt_from_string->subtract( days => 5 );
1944     my $ten_days_ago  = dt_from_string->subtract( days => 10 );
1945     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1946
1947     # No date specify, today will be used
1948     AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
1949     AddReturn( $item->{barcode}, $library->{branchcode} );
1950     is( int($patron->account->balance()), 10, 'Patron should have a charge of 10 (10 days x 1)' );
1951     Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1952
1953     # specify return date 5 days before => no overdue
1954     AddIssue( $patron->unblessed, $item->{barcode}, $five_days_ago ); # date due was 5d ago
1955     AddReturn( $item->{barcode}, $library->{branchcode}, undef, $ten_days_ago );
1956     is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
1957     Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1958
1959     # specify return date 5 days later => overdue
1960     AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
1961     AddReturn( $item->{barcode}, $library->{branchcode}, undef, $five_days_ago );
1962     is( int($patron->account->balance()), 5, 'AddReturn: pass return_date => overdue' );
1963     Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1964
1965     # specify dropbox date 5 days before => no overdue
1966     AddIssue( $patron->unblessed, $item->{barcode}, $five_days_ago ); # date due was 5d ago
1967     AddReturn( $item->{barcode}, $library->{branchcode}, $ten_days_ago );
1968     is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue' );
1969     Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1970
1971     # specify dropbox date 5 days later => overdue, or... not
1972     AddIssue( $patron->unblessed, $item->{barcode}, $ten_days_ago ); # date due was 10d ago
1973     AddReturn( $item->{barcode}, $library->{branchcode}, $five_days_ago );
1974     is( int($patron->account->balance()), 0, 'AddReturn: pass return_date => no overdue in dropbox mode' ); # FIXME? This is weird, the FU fine is created ( _CalculateAndUpdateFine > C4::Overdues::UpdateFine ) then remove later (in _FixOverduesOnReturn). Looks like it is a feature
1975     Koha::Account::Lines->search({ borrowernumber => $patron->borrowernumber })->delete;
1976 };
1977
1978 subtest '_FixAccountForLostAndReturned' => sub {
1979
1980     plan tests => 5;
1981
1982     t::lib::Mocks::mock_preference( 'WhenLostChargeReplacementFee', 1 );
1983     t::lib::Mocks::mock_preference( 'WhenLostForgiveFine',          0 );
1984
1985     my $processfee_amount  = 20;
1986     my $replacement_amount = 99.00;
1987     my $item_type          = $builder->build_object(
1988         {   class => 'Koha::ItemTypes',
1989             value => {
1990                 notforloan         => undef,
1991                 rentalcharge       => 0,
1992                 defaultreplacecost => undef,
1993                 processfee         => $processfee_amount,
1994                 rentalcharge_daily => 0,
1995             }
1996         }
1997     );
1998     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1999
2000     my $biblio = $builder->build_sample_biblio({ author => 'Hall, Daria' });
2001
2002     subtest 'Full write-off tests' => sub {
2003
2004         plan tests => 10;
2005
2006         my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2007
2008         my $item = $builder->build_sample_item(
2009             {
2010                 biblionumber     => $biblio->biblionumber,
2011                 library          => $library->branchcode,
2012                 replacementprice => $replacement_amount,
2013                 itype            => $item_type->itemtype,
2014             }
2015         );
2016
2017         AddIssue( $patron->unblessed, $item->barcode );
2018
2019         # Simulate item marked as lost
2020         ModItem( { itemlost => 3 }, $biblio->biblionumber, $item->itemnumber );
2021         LostItem( $item->itemnumber, 1 );
2022
2023         my $processing_fee_lines = Koha::Account::Lines->search(
2024             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'PF' } );
2025         is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2026         my $processing_fee_line = $processing_fee_lines->next;
2027         is( $processing_fee_line->amount + 0,
2028             $processfee_amount, 'The right PF amount is generated' );
2029         is( $processing_fee_line->amountoutstanding + 0,
2030             $processfee_amount, 'The right PF amountoutstanding is generated' );
2031
2032         my $lost_fee_lines = Koha::Account::Lines->search(
2033             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'L' } );
2034         is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2035         my $lost_fee_line = $lost_fee_lines->next;
2036         is( $lost_fee_line->amount + 0, $replacement_amount, 'The right L amount is generated' );
2037         is( $lost_fee_line->amountoutstanding + 0,
2038             $replacement_amount, 'The right L amountoutstanding is generated' );
2039
2040         my $account = $patron->account;
2041         my $debts   = $account->outstanding_debits;
2042
2043         # Write off the debt
2044         my $credit = $account->add_credit(
2045             {   amount => $account->balance,
2046                 type   => 'writeoff'
2047             }
2048         );
2049         $credit->apply( { debits => $debts, offset_type => 'Writeoff' } );
2050
2051         my $credit_return_id = C4::Circulation::_FixAccountForLostAndReturned( $item->itemnumber, $patron->id );
2052         is( $credit_return_id, undef, 'No CR account line added' );
2053
2054         $lost_fee_line->discard_changes; # reload from DB
2055         is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2056         is( $lost_fee_line->accounttype,
2057             'LR', 'Lost fee now has account type of LR ( Lost Returned )' );
2058
2059         is( $patron->account->balance, -0, 'The patron balance is 0, everything was written off' );
2060     };
2061
2062     subtest 'Full payment tests' => sub {
2063
2064         plan tests => 12;
2065
2066         my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2067
2068         my $item = $builder->build_sample_item(
2069             {
2070                 biblionumber     => $biblio->biblionumber,
2071                 library          => $library->branchcode,
2072                 replacementprice => $replacement_amount,
2073                 itype            => $item_type->itemtype
2074             }
2075         );
2076
2077         AddIssue( $patron->unblessed, $item->barcode );
2078
2079         # Simulate item marked as lost
2080         ModItem( { itemlost => 1 }, $biblio->biblionumber, $item->itemnumber );
2081         LostItem( $item->itemnumber, 1 );
2082
2083         my $processing_fee_lines = Koha::Account::Lines->search(
2084             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'PF' } );
2085         is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2086         my $processing_fee_line = $processing_fee_lines->next;
2087         is( $processing_fee_line->amount + 0,
2088             $processfee_amount, 'The right PF amount is generated' );
2089         is( $processing_fee_line->amountoutstanding + 0,
2090             $processfee_amount, 'The right PF amountoutstanding is generated' );
2091
2092         my $lost_fee_lines = Koha::Account::Lines->search(
2093             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'L' } );
2094         is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2095         my $lost_fee_line = $lost_fee_lines->next;
2096         is( $lost_fee_line->amount + 0, $replacement_amount, 'The right L amount is generated' );
2097         is( $lost_fee_line->amountoutstanding + 0,
2098             $replacement_amount, 'The right L amountountstanding is generated' );
2099
2100         my $account = $patron->account;
2101         my $debts   = $account->outstanding_debits;
2102
2103         # Write off the debt
2104         my $credit = $account->add_credit(
2105             {   amount => $account->balance,
2106                 type   => 'payment'
2107             }
2108         );
2109         $credit->apply( { debits => $debts, offset_type => 'Payment' } );
2110
2111         my $credit_return_id = C4::Circulation::_FixAccountForLostAndReturned( $item->itemnumber, $patron->id );
2112         my $credit_return = Koha::Account::Lines->find($credit_return_id);
2113
2114         is( $credit_return->accounttype, 'CR', 'An account line of type CR is added' );
2115         is( $credit_return->amount + 0,
2116             -99.00, 'The account line of type CR has an amount of -99' );
2117         is( $credit_return->amountoutstanding + 0,
2118             -99.00, 'The account line of type CR has an amountoutstanding of -99' );
2119
2120         $lost_fee_line->discard_changes;
2121         is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2122         is( $lost_fee_line->accounttype,
2123             'LR', 'Lost fee now has account type of LR ( Lost Returned )' );
2124
2125         is( $patron->account->balance,
2126             -99, 'The patron balance is -99, a credit that equals the lost fee payment' );
2127     };
2128
2129     subtest 'Test without payment or write off' => sub {
2130
2131         plan tests => 12;
2132
2133         my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2134
2135         my $item = $builder->build_sample_item(
2136             {
2137                 biblionumber     => $biblio->biblionumber,
2138                 library          => $library->branchcode,
2139                 replacementprice => 23.00,
2140                 replacementprice => $replacement_amount,
2141                 itype            => $item_type->itemtype
2142             }
2143         );
2144
2145         AddIssue( $patron->unblessed, $item->barcode );
2146
2147         # Simulate item marked as lost
2148         ModItem( { itemlost => 3 }, $biblio->biblionumber, $item->itemnumber );
2149         LostItem( $item->itemnumber, 1 );
2150
2151         my $processing_fee_lines = Koha::Account::Lines->search(
2152             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'PF' } );
2153         is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2154         my $processing_fee_line = $processing_fee_lines->next;
2155         is( $processing_fee_line->amount + 0,
2156             $processfee_amount, 'The right PF amount is generated' );
2157         is( $processing_fee_line->amountoutstanding + 0,
2158             $processfee_amount, 'The right PF amountoutstanding is generated' );
2159
2160         my $lost_fee_lines = Koha::Account::Lines->search(
2161             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'L' } );
2162         is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2163         my $lost_fee_line = $lost_fee_lines->next;
2164         is( $lost_fee_line->amount + 0, $replacement_amount, 'The right L amount is generated' );
2165         is( $lost_fee_line->amountoutstanding + 0,
2166             $replacement_amount, 'The right L amountountstanding is generated' );
2167
2168         my $credit_return_id = C4::Circulation::_FixAccountForLostAndReturned( $item->itemnumber, $patron->id );
2169         my $credit_return = Koha::Account::Lines->find($credit_return_id);
2170
2171         is( $credit_return->accounttype, 'CR', 'An account line of type CR is added' );
2172         is( $credit_return->amount + 0, -99.00, 'The account line of type CR has an amount of -99' );
2173         is( $credit_return->amountoutstanding + 0, 0, 'The account line of type CR has an amountoutstanding of 0' );
2174
2175         $lost_fee_line->discard_changes;
2176         is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2177         is( $lost_fee_line->accounttype, 'LR', 'Lost fee now has account type of LR ( Lost Returned )' );
2178
2179         is( $patron->account->balance, 20, 'The patron balance is 20, still owes the processing fee' );
2180     };
2181
2182     subtest 'Test with partial payement and write off, and remaining debt' => sub {
2183
2184         plan tests => 15;
2185
2186         my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2187         my $item = $builder->build_sample_item(
2188             {
2189                 biblionumber     => $biblio->biblionumber,
2190                 library          => $library->branchcode,
2191                 replacementprice => $replacement_amount,
2192                 itype            => $item_type->itemtype
2193             }
2194         );
2195
2196         AddIssue( $patron->unblessed, $item->barcode );
2197
2198         # Simulate item marked as lost
2199         ModItem( { itemlost => 1 }, $biblio->biblionumber, $item->itemnumber );
2200         LostItem( $item->itemnumber, 1 );
2201
2202         my $processing_fee_lines = Koha::Account::Lines->search(
2203             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'PF' } );
2204         is( $processing_fee_lines->count, 1, 'Only one processing fee produced' );
2205         my $processing_fee_line = $processing_fee_lines->next;
2206         is( $processing_fee_line->amount + 0,
2207             $processfee_amount, 'The right PF amount is generated' );
2208         is( $processing_fee_line->amountoutstanding + 0,
2209             $processfee_amount, 'The right PF amountoutstanding is generated' );
2210
2211         my $lost_fee_lines = Koha::Account::Lines->search(
2212             { borrowernumber => $patron->id, itemnumber => $item->itemnumber, accounttype => 'L' } );
2213         is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2214         my $lost_fee_line = $lost_fee_lines->next;
2215         is( $lost_fee_line->amount + 0, $replacement_amount, 'The right L amount is generated' );
2216         is( $lost_fee_line->amountoutstanding + 0,
2217             $replacement_amount, 'The right L amountountstanding is generated' );
2218
2219         my $account = $patron->account;
2220         is( $account->balance, $processfee_amount + $replacement_amount, 'Balance is PF + L' );
2221
2222         # Partially pay fee
2223         my $payment_amount = 27;
2224         my $payment        = $account->add_credit(
2225             {   amount => $payment_amount,
2226                 type   => 'payment'
2227             }
2228         );
2229
2230         $payment->apply( { debits => $lost_fee_lines->reset, offset_type => 'Payment' } );
2231
2232         # Partially write off fee
2233         my $write_off_amount = 25;
2234         my $write_off        = $account->add_credit(
2235             {   amount => $write_off_amount,
2236                 type   => 'writeoff'
2237             }
2238         );
2239         $write_off->apply( { debits => $lost_fee_lines->reset, offset_type => 'Writeoff' } );
2240
2241         is( $account->balance,
2242             $processfee_amount + $replacement_amount - $payment_amount - $write_off_amount,
2243             'Payment and write off applied'
2244         );
2245
2246         # Store the amountoutstanding value
2247         $lost_fee_line->discard_changes;
2248         my $outstanding = $lost_fee_line->amountoutstanding;
2249
2250         my $credit_return_id = C4::Circulation::_FixAccountForLostAndReturned( $item->itemnumber, $patron->id );
2251         my $credit_return = Koha::Account::Lines->find($credit_return_id);
2252
2253         is( $account->balance, $processfee_amount - $payment_amount, 'Balance is PF - payment (CR)' );
2254
2255         $lost_fee_line->discard_changes;
2256         is( $lost_fee_line->amountoutstanding + 0, 0, 'Lost fee has no outstanding amount' );
2257         is( $lost_fee_line->accounttype,
2258             'LR', 'Lost fee now has account type of LR ( Lost Returned )' );
2259
2260         is( $credit_return->accounttype, 'CR', 'An account line of type CR is added' );
2261         is( $credit_return->amount + 0,
2262             ($payment_amount + $outstanding ) * -1,
2263             'The account line of type CR has an amount equal to the payment + outstanding'
2264         );
2265         is( $credit_return->amountoutstanding + 0,
2266             $payment_amount * -1,
2267             'The account line of type CR has an amountoutstanding equal to the payment'
2268         );
2269
2270         is( $account->balance,
2271             $processfee_amount - $payment_amount,
2272             'The patron balance is the difference between the PF and the credit'
2273         );
2274     };
2275
2276     subtest 'Partial payement, existing debits and AccountAutoReconcile' => sub {
2277
2278         plan tests => 8;
2279
2280         my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
2281         my $barcode = 'KD123456793';
2282         my $replacement_amount = 100;
2283         my $processfee_amount  = 20;
2284
2285         my $item_type          = $builder->build_object(
2286             {   class => 'Koha::ItemTypes',
2287                 value => {
2288                     notforloan         => undef,
2289                     rentalcharge       => 0,
2290                     defaultreplacecost => undef,
2291                     processfee         => 0,
2292                     rentalcharge_daily => 0,
2293                 }
2294             }
2295         );
2296         my ( undef, undef, $item_id ) = AddItem(
2297             {   homebranch       => $library->branchcode,
2298                 holdingbranch    => $library->branchcode,
2299                 barcode          => $barcode,
2300                 replacementprice => $replacement_amount,
2301                 itype            => $item_type->itemtype
2302             },
2303             $biblio->biblionumber
2304         );
2305
2306         AddIssue( $patron->unblessed, $barcode );
2307
2308         # Simulate item marked as lost
2309         ModItem( { itemlost => 1 }, $biblio->biblionumber, $item_id );
2310         LostItem( $item_id, 1 );
2311
2312         my $lost_fee_lines = Koha::Account::Lines->search(
2313             { borrowernumber => $patron->id, itemnumber => $item_id, accounttype => 'L' } );
2314         is( $lost_fee_lines->count, 1, 'Only one lost item fee produced' );
2315         my $lost_fee_line = $lost_fee_lines->next;
2316         is( $lost_fee_line->amount + 0, $replacement_amount, 'The right L amount is generated' );
2317         is( $lost_fee_line->amountoutstanding + 0,
2318             $replacement_amount, 'The right L amountountstanding is generated' );
2319
2320         my $account = $patron->account;
2321         is( $account->balance, $replacement_amount, 'Balance is L' );
2322
2323         # Partially pay fee
2324         my $payment_amount = 27;
2325         my $payment        = $account->add_credit(
2326             {   amount => $payment_amount,
2327                 type   => 'payment'
2328             }
2329         );
2330         $payment->apply({ debits => $lost_fee_lines->reset, offset_type => 'Payment' });
2331
2332         is( $account->balance,
2333             $replacement_amount - $payment_amount,
2334             'Payment applied'
2335         );
2336
2337         # TODO use add_debit when time comes
2338         my $manual_debit_amount = 80;
2339         C4::Accounts::manualinvoice( $patron->id, undef, undef, 'FU', $manual_debit_amount );
2340
2341         is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2342
2343         t::lib::Mocks::mock_preference( 'AccountAutoReconcile', 1 );
2344
2345         my $credit_return_id = C4::Circulation::_FixAccountForLostAndReturned( $item_id, $patron->id );
2346         my $credit_return = Koha::Account::Lines->find($credit_return_id);
2347
2348         is( $account->balance, $manual_debit_amount - $payment_amount, 'Balance is PF - payment (CR)' );
2349
2350         my $manual_debit = Koha::Account::Lines->search({ borrowernumber => $patron->id, accounttype => 'FU' })->next;
2351         is( $manual_debit->amountoutstanding + 0, $manual_debit_amount - $payment_amount, 'reconcile_balance was called' );
2352     };
2353 };
2354
2355 subtest '_FixOverduesOnReturn' => sub {
2356     plan tests => 6;
2357
2358     my $biblio = $builder->build_sample_biblio({ author => 'Hall, Kylie' });
2359
2360     my $branchcode  = $library2->{branchcode};
2361
2362     my $item = $builder->build_sample_item(
2363         {
2364             biblionumber     => $biblio->biblionumber,
2365             library          => $branchcode,
2366             replacementprice => 99.00,
2367             itype            => $itemtype,
2368         }
2369     );
2370
2371     my $patron = $builder->build( { source => 'Borrower' } );
2372
2373     ## Start with basic call, should just close out the open fine
2374     my $accountline = Koha::Account::Line->new(
2375         {
2376             borrowernumber => $patron->{borrowernumber},
2377             accounttype    => 'FU',
2378             itemnumber     => $item->itemnumber,
2379             amount => 99.00,
2380             amountoutstanding => 99.00,
2381             lastincrement => 9.00,
2382         }
2383     )->store();
2384
2385     C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber );
2386
2387     $accountline->_result()->discard_changes();
2388
2389     is( $accountline->amountoutstanding, '99.000000', 'Fine has the same amount outstanding as previously' );
2390     is( $accountline->accounttype, 'F', 'Open fine ( account type FU ) has been closed out ( account type F )');
2391
2392
2393     ## Run again, with exemptfine enabled
2394     $accountline->set(
2395         {
2396             accounttype    => 'FU',
2397             amountoutstanding => 99.00,
2398         }
2399     )->store();
2400
2401     C4::Circulation::_FixOverduesOnReturn( $patron->{borrowernumber}, $item->itemnumber, 1 );
2402
2403     $accountline->_result()->discard_changes();
2404     my $offset = Koha::Account::Offsets->search({ debit_id => $accountline->id, type => 'Forgiven' })->next();
2405
2406     is( $accountline->amountoutstanding + 0, 0, 'Fine has been reduced to 0' );
2407     is( $accountline->accounttype, 'FFOR', 'Open fine ( account type FU ) has been set to fine forgiven ( account type FFOR )');
2408     is( ref $offset, "Koha::Account::Offset", "Found matching offset for fine reduction via forgiveness" );
2409     is( $offset->amount, '-99.000000', "Amount of offset is correct" );
2410 };
2411
2412 subtest 'Set waiting flag' => sub {
2413     plan tests => 4;
2414
2415     my $library_1 = $builder->build( { source => 'Branch' } );
2416     my $patron_1  = $builder->build( { source => 'Borrower', value => { branchcode => $library_1->{branchcode}, categorycode => $patron_category->{categorycode} } } );
2417     my $library_2 = $builder->build( { source => 'Branch' } );
2418     my $patron_2  = $builder->build( { source => 'Borrower', value => { branchcode => $library_2->{branchcode}, categorycode => $patron_category->{categorycode} } } );
2419
2420     my $biblio = $builder->build( { source => 'Biblio' } );
2421     my $biblioitem = $builder->build( { source => 'Biblioitem', value => { biblionumber => $biblio->{biblionumber} } } );
2422
2423     my $item = $builder->build(
2424         {
2425             source => 'Item',
2426             value  => {
2427                 homebranch    => $library_1->{branchcode},
2428                 holdingbranch => $library_1->{branchcode},
2429                 notforloan    => 0,
2430                 itemlost      => 0,
2431                 withdrawn     => 0,
2432                 biblionumber  => $biblioitem->{biblionumber},
2433             }
2434         }
2435     );
2436
2437     set_userenv( $library_2 );
2438     my $reserve_id = AddReserve(
2439         $library_2->{branchcode}, $patron_2->{borrowernumber}, $biblioitem->{biblionumber},
2440         '', 1, undef, undef, '', undef, $item->{itemnumber},
2441     );
2442
2443     set_userenv( $library_1 );
2444     my $do_transfer = 1;
2445     my ( $res, $rr ) = AddReturn( $item->{barcode}, $library_1->{branchcode} );
2446     ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
2447     my $hold = Koha::Holds->find( $reserve_id );
2448     is( $hold->found, 'T', 'Hold is in transit' );
2449
2450     my ( $status ) = CheckReserves($item->{itemnumber});
2451     is( $status, 'Reserved', 'Hold is not waiting yet');
2452
2453     set_userenv( $library_2 );
2454     $do_transfer = 0;
2455     AddReturn( $item->{barcode}, $library_2->{branchcode} );
2456     ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
2457     $hold = Koha::Holds->find( $reserve_id );
2458     is( $hold->found, 'W', 'Hold is waiting' );
2459     ( $status ) = CheckReserves($item->{itemnumber});
2460     is( $status, 'Waiting', 'Now the hold is waiting');
2461 };
2462
2463 subtest 'Cancel transfers on lost items' => sub {
2464     plan tests => 5;
2465     my $library_1 = $builder->build( { source => 'Branch' } );
2466     my $patron_1 = $builder->build( { source => 'Borrower', value => { branchcode => $library_1->{branchcode}, categorycode => $patron_category->{categorycode} } } );
2467     my $library_2 = $builder->build( { source => 'Branch' } );
2468     my $patron_2  = $builder->build( { source => 'Borrower', value => { branchcode => $library_2->{branchcode}, categorycode => $patron_category->{categorycode} } } );
2469     my $biblio = $builder->build( { source => 'Biblio' } );
2470     my $biblioitem = $builder->build( { source => 'Biblioitem', value => { biblionumber => $biblio->{biblionumber} } } );
2471     my $item = $builder->build(
2472         {
2473             source => 'Item',
2474             value => {
2475                 homebranch => $library_1->{branchcode},
2476                 holdingbranch => $library_1->{branchcode},
2477                 notforloan => 0,
2478                 itemlost => 0,
2479                 withdrawn => 0,
2480                 biblionumber => $biblioitem->{biblionumber},
2481             }
2482         }
2483     );
2484
2485     set_userenv( $library_2 );
2486     my $reserve_id = AddReserve(
2487         $library_2->{branchcode}, $patron_2->{borrowernumber}, $biblioitem->{biblionumber}, '', 1, undef, undef, '', undef, $item->{itemnumber},
2488     );
2489
2490     #Return book and add transfer
2491     set_userenv( $library_1 );
2492     my $do_transfer = 1;
2493     my ( $res, $rr ) = AddReturn( $item->{barcode}, $library_1->{branchcode} );
2494     ModReserveAffect( $item->{itemnumber}, undef, $do_transfer, $reserve_id );
2495     C4::Circulation::transferbook( $library_2->{branchcode}, $item->{barcode} );
2496     my $hold = Koha::Holds->find( $reserve_id );
2497     is( $hold->found, 'T', 'Hold is in transit' );
2498
2499     #Check transfer exists and the items holding branch is the transfer destination branch before marking it as lost
2500     my ($datesent,$frombranch,$tobranch) = GetTransfers($item->{itemnumber});
2501     is( $tobranch, $library_2->{branchcode}, 'The transfer record exists in the branchtransfers table');
2502     my $itemcheck = Koha::Items->find($item->{itemnumber});
2503     is( $itemcheck->holdingbranch, $library_2->{branchcode}, 'Items holding branch is the transfers destination branch before it is marked as lost' );
2504
2505     #Simulate item being marked as lost and confirm the transfer is deleted and the items holding branch is the transfers source branch
2506     ModItem( { itemlost => 1 }, $biblio->{biblionumber}, $item->{itemnumber} );
2507     LostItem( $item->{itemnumber}, 'test', 1 );
2508     ($datesent,$frombranch,$tobranch) = GetTransfers($item->{itemnumber});
2509     is( $tobranch, undef, 'The transfer on the lost item has been deleted as the LostItemCancelOutstandingTransfer is enabled');
2510     $itemcheck = Koha::Items->find($item->{itemnumber});
2511     is( $itemcheck->holdingbranch, $library_1->{branchcode}, 'Lost item with cancelled hold has holding branch equallying the transfers source branch' );
2512 };
2513
2514 subtest 'CanBookBeIssued | is_overdue' => sub {
2515     plan tests => 3;
2516
2517     # Set a simple circ policy
2518     $dbh->do('DELETE FROM issuingrules');
2519     $dbh->do(
2520     q{INSERT INTO issuingrules (categorycode, branchcode, itemtype, reservesallowed,
2521                                     issuelength, lengthunit,
2522                                     renewalsallowed, renewalperiod,
2523                                     norenewalbefore, auto_renew,
2524                                     fine, chargeperiod)
2525           VALUES (?, ?, ?, ?,
2526                   ?, ?,
2527                   ?, ?,
2528                   ?, ?,
2529                   ?, ?
2530                  )
2531         },
2532         {},
2533         '*',   '*', '*', 25,
2534         14,  'days',
2535         1,     7,
2536         undef, 0,
2537         .10,   1
2538     );
2539
2540     my $five_days_go = output_pref({ dt => dt_from_string->add( days => 5 ), dateonly => 1});
2541     my $ten_days_go  = output_pref({ dt => dt_from_string->add( days => 10), dateonly => 1 });
2542     my $library = $builder->build( { source => 'Branch' } );
2543     my $patron  = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
2544
2545     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
2546     my $item = $builder->build(
2547         {
2548             source => 'Item',
2549             value  => {
2550                 homebranch    => $library->{branchcode},
2551                 holdingbranch => $library->{branchcode},
2552                 notforloan    => 0,
2553                 itemlost      => 0,
2554                 withdrawn     => 0,
2555                 biblionumber  => $biblioitem->{biblionumber},
2556             }
2557         }
2558     );
2559
2560     my $issue = AddIssue( $patron->unblessed, $item->{barcode}, $five_days_go ); # date due was 10d ago
2561     my $actualissue = Koha::Checkouts->find( { itemnumber => $item->{itemnumber} } );
2562     is( output_pref({ str => $actualissue->date_due, dateonly => 1}), $five_days_go, "First issue works");
2563     my ($issuingimpossible, $needsconfirmation) = CanBookBeIssued($patron,$item->{barcode},$ten_days_go, undef, undef, undef);
2564     is( $needsconfirmation->{RENEW_ISSUE}, 1, "This is a renewal");
2565     is( $needsconfirmation->{TOO_MANY}, undef, "Not too many, is a renewal");
2566 };
2567
2568 subtest 'ItemsDeniedRenewal preference' => sub {
2569     plan tests => 18;
2570
2571     C4::Context->set_preference('ItemsDeniedRenewal','');
2572
2573     my $idr_lib = $builder->build_object({ class => 'Koha::Libraries'});
2574     $dbh->do(
2575         q{
2576         INSERT INTO issuingrules ( categorycode, branchcode, itemtype, reservesallowed, issuelength, lengthunit, renewalsallowed, renewalperiod,
2577                     norenewalbefore, auto_renew, fine, chargeperiod ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
2578         },
2579         {},
2580         '*', $idr_lib->branchcode, '*', 25,
2581         14,  'days',
2582         10,   7,
2583         undef,  0,
2584         .10, 1
2585     );
2586
2587     my $deny_book = $builder->build_object({ class => 'Koha::Items', value => {
2588         homebranch => $idr_lib->branchcode,
2589         withdrawn => 1,
2590         itype => 'HIDE',
2591         location => 'PROC',
2592         itemcallnumber => undef,
2593         itemnotes => "",
2594         }
2595     });
2596     my $allow_book = $builder->build_object({ class => 'Koha::Items', value => {
2597         homebranch => $idr_lib->branchcode,
2598         withdrawn => 0,
2599         itype => 'NOHIDE',
2600         location => 'NOPROC'
2601         }
2602     });
2603
2604     my $idr_borrower = $builder->build_object({ class => 'Koha::Patrons', value=> {
2605         branchcode => $idr_lib->branchcode,
2606         }
2607     });
2608     my $future = dt_from_string->add( days => 1 );
2609     my $deny_issue = $builder->build_object({ class => 'Koha::Checkouts', value => {
2610         returndate => undef,
2611         renewals => 0,
2612         auto_renew => 0,
2613         borrowernumber => $idr_borrower->borrowernumber,
2614         itemnumber => $deny_book->itemnumber,
2615         onsite_checkout => 0,
2616         date_due => $future,
2617         }
2618     });
2619     my $allow_issue = $builder->build_object({ class => 'Koha::Checkouts', value => {
2620         returndate => undef,
2621         renewals => 0,
2622         auto_renew => 0,
2623         borrowernumber => $idr_borrower->borrowernumber,
2624         itemnumber => $allow_book->itemnumber,
2625         onsite_checkout => 0,
2626         date_due => $future,
2627         }
2628     });
2629
2630     my $idr_rules;
2631
2632     my ( $idr_mayrenew, $idr_error ) =
2633     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2634     is( $idr_mayrenew, 1, 'Renewal allowed when no rules' );
2635     is( $idr_error, undef, 'Renewal allowed when no rules' );
2636
2637     $idr_rules="withdrawn: [1]";
2638
2639     C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
2640     ( $idr_mayrenew, $idr_error ) =
2641     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2642     is( $idr_mayrenew, 0, 'Renewal blocked when 1 rules (withdrawn)' );
2643     is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 1 rule (withdrawn)' );
2644     ( $idr_mayrenew, $idr_error ) =
2645     CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
2646     is( $idr_mayrenew, 1, 'Renewal allowed when 1 rules not matched (withdrawn)' );
2647     is( $idr_error, undef, 'Renewal allowed when 1 rules not matched (withdrawn)' );
2648
2649     $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]";
2650
2651     C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
2652     ( $idr_mayrenew, $idr_error ) =
2653     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2654     is( $idr_mayrenew, 0, 'Renewal blocked when 2 rules matched (withdrawn, itype)' );
2655     is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 2 rules matched (withdrawn,itype)' );
2656     ( $idr_mayrenew, $idr_error ) =
2657     CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
2658     is( $idr_mayrenew, 1, 'Renewal allowed when 2 rules not matched (withdrawn, itype)' );
2659     is( $idr_error, undef, 'Renewal allowed when 2 rules not matched (withdrawn, itype)' );
2660
2661     $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]\nlocation: [PROC]";
2662
2663     C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
2664     ( $idr_mayrenew, $idr_error ) =
2665     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2666     is( $idr_mayrenew, 0, 'Renewal blocked when 3 rules matched (withdrawn, itype, location)' );
2667     is( $idr_error, 'item_denied_renewal', 'Renewal blocked when 3 rules matched (withdrawn,itype, location)' );
2668     ( $idr_mayrenew, $idr_error ) =
2669     CanBookBeRenewed( $idr_borrower->borrowernumber, $allow_issue->itemnumber );
2670     is( $idr_mayrenew, 1, 'Renewal allowed when 3 rules not matched (withdrawn, itype, location)' );
2671     is( $idr_error, undef, 'Renewal allowed when 3 rules not matched (withdrawn, itype, location)' );
2672
2673     $idr_rules="itemcallnumber: [NULL]";
2674     C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
2675     ( $idr_mayrenew, $idr_error ) =
2676     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2677     is( $idr_mayrenew, 0, 'Renewal blocked for undef when NULL in pref' );
2678     $idr_rules="itemcallnumber: ['']";
2679     C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
2680     ( $idr_mayrenew, $idr_error ) =
2681     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2682     is( $idr_mayrenew, 1, 'Renewal not blocked for undef when "" in pref' );
2683
2684     $idr_rules="itemnotes: [NULL]";
2685     C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
2686     ( $idr_mayrenew, $idr_error ) =
2687     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2688     is( $idr_mayrenew, 1, 'Renewal not blocked for "" when NULL in pref' );
2689     $idr_rules="itemnotes: ['']";
2690     C4::Context->set_preference('ItemsDeniedRenewal',$idr_rules);
2691     ( $idr_mayrenew, $idr_error ) =
2692     CanBookBeRenewed( $idr_borrower->borrowernumber, $deny_issue->itemnumber );
2693     is( $idr_mayrenew, 0, 'Renewal blocked for empty string when "" in pref' );
2694 };
2695
2696 subtest 'CanBookBeIssued | item-level_itypes=biblio' => sub {
2697     plan tests => 2;
2698
2699     t::lib::Mocks::mock_preference('item-level_itypes', 0); # biblio
2700     my $library = $builder->build( { source => 'Branch' } );
2701     my $patron  = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } )->store;
2702
2703     my $itemtype = $builder->build(
2704         {
2705             source => 'Itemtype',
2706             value  => { notforloan => undef, }
2707         }
2708     );
2709
2710     my $biblioitem = $builder->build( { source => 'Biblioitem', value => { itemtype => $itemtype->{itemtype} } } );
2711     my $item = $builder->build_object(
2712         {
2713             class => 'Koha::Items',
2714             value  => {
2715                 homebranch    => $library->{branchcode},
2716                 holdingbranch => $library->{branchcode},
2717                 notforloan    => 0,
2718                 itemlost      => 0,
2719                 withdrawn     => 0,
2720                 biblionumber  => $biblioitem->{biblionumber},
2721                 biblioitemnumber => $biblioitem->{biblioitemnumber},
2722             }
2723         }
2724     )->store;
2725
2726     my ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2727     is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
2728     is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
2729 };
2730
2731 subtest 'CanBookBeIssued | notforloan' => sub {
2732     plan tests => 2;
2733
2734     t::lib::Mocks::mock_preference('AllowNotForLoanOverride', 0);
2735
2736     my $library = $builder->build( { source => 'Branch' } );
2737     my $patron  = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } )->store;
2738
2739     my $itemtype = $builder->build(
2740         {
2741             source => 'Itemtype',
2742             value  => { notforloan => undef, }
2743         }
2744     );
2745
2746     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
2747     my $item = $builder->build_object(
2748         {
2749             class => 'Koha::Items',
2750             value  => {
2751                 homebranch    => $library->{branchcode},
2752                 holdingbranch => $library->{branchcode},
2753                 notforloan    => 0,
2754                 itemlost      => 0,
2755                 withdrawn     => 0,
2756                 itype         => $itemtype->{itemtype},
2757                 biblionumber  => $biblioitem->{biblionumber},
2758                 biblioitemnumber => $biblioitem->{biblioitemnumber},
2759             }
2760         }
2761     )->store;
2762
2763     my ( $issuingimpossible, $needsconfirmation );
2764
2765
2766     subtest 'item-level_itypes = 1' => sub {
2767         plan tests => 6;
2768
2769         t::lib::Mocks::mock_preference('item-level_itypes', 1); # item
2770         # Is for loan at item type and item level
2771         ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2772         is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
2773         is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
2774
2775         # not for loan at item type level
2776         Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(1)->store;
2777         ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2778         is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
2779         is_deeply(
2780             $issuingimpossible,
2781             { NOT_FOR_LOAN => 1, itemtype_notforloan => $itemtype->{itemtype} },
2782             'Item can not be issued, not for loan at item type level'
2783         );
2784
2785         # not for loan at item level
2786         Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(undef)->store;
2787         $item->notforloan( 1 )->store;
2788         ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2789         is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
2790         is_deeply(
2791             $issuingimpossible,
2792             { NOT_FOR_LOAN => 1, item_notforloan => 1 },
2793             'Item can not be issued, not for loan at item type level'
2794         );
2795     };
2796
2797     subtest 'item-level_itypes = 0' => sub {
2798         plan tests => 6;
2799
2800         t::lib::Mocks::mock_preference('item-level_itypes', 0); # biblio
2801
2802         # We set another itemtype for biblioitem
2803         my $itemtype = $builder->build(
2804             {
2805                 source => 'Itemtype',
2806                 value  => { notforloan => undef, }
2807             }
2808         );
2809
2810         # for loan at item type and item level
2811         $item->notforloan(0)->store;
2812         $item->biblioitem->itemtype($itemtype->{itemtype})->store;
2813         ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2814         is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
2815         is_deeply( $issuingimpossible, {}, 'Item can be issued to this patron' );
2816
2817         # not for loan at item type level
2818         Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(1)->store;
2819         ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2820         is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
2821         is_deeply(
2822             $issuingimpossible,
2823             { NOT_FOR_LOAN => 1, itemtype_notforloan => $itemtype->{itemtype} },
2824             'Item can not be issued, not for loan at item type level'
2825         );
2826
2827         # not for loan at item level
2828         Koha::ItemTypes->find( $itemtype->{itemtype} )->notforloan(undef)->store;
2829         $item->notforloan( 1 )->store;
2830         ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2831         is_deeply( $needsconfirmation, {}, 'No confirmation needed, AllowNotForLoanOverride=0' );
2832         is_deeply(
2833             $issuingimpossible,
2834             { NOT_FOR_LOAN => 1, item_notforloan => 1 },
2835             'Item can not be issued, not for loan at item type level'
2836         );
2837     };
2838
2839     # TODO test with AllowNotForLoanOverride = 1
2840 };
2841
2842 subtest 'AddReturn should clear items.onloan for unissued items' => sub {
2843     plan tests => 1;
2844
2845     t::lib::Mocks::mock_preference( "AllowReturnToBranch", 'anywhere' );
2846     my $item = $builder->build_object({ class => 'Koha::Items', value  => { onloan => '2018-01-01' }});
2847     AddReturn( $item->barcode, $item->homebranch );
2848     $item->discard_changes; # refresh
2849     is( $item->onloan, undef, 'AddReturn did clear items.onloan' );
2850 };
2851
2852 $schema->storage->txn_rollback;
2853 C4::Context->clear_syspref_cache();
2854 $cache->clear_from_cache('single_holidays');
2855
2856 subtest 'AddRenewal and AddIssuingCharge tests' => sub {
2857
2858     plan tests => 13;
2859
2860     $schema->storage->txn_begin;
2861
2862     t::lib::Mocks::mock_preference('item-level_itypes', 1);
2863
2864     my $issuing_charges = 15;
2865     my $title   = 'A title';
2866     my $author  = 'Author, An';
2867     my $barcode = 'WHATARETHEODDS';
2868
2869     my $circ = Test::MockModule->new('C4::Circulation');
2870     $circ->mock(
2871         'GetIssuingCharges',
2872         sub {
2873             return $issuing_charges;
2874         }
2875     );
2876
2877     my $library  = $builder->build_object({ class => 'Koha::Libraries' });
2878     my $itemtype = $builder->build_object({ class => 'Koha::ItemTypes', value => { rentalcharge_daily => 0.00 }});
2879     my $patron   = $builder->build_object({
2880         class => 'Koha::Patrons',
2881         value => { branchcode => $library->id }
2882     });
2883
2884     my $biblio = $builder->build_sample_biblio({ title=> $title, author => $author });
2885     my ( undef, undef, $item_id ) = AddItem(
2886         {
2887             homebranch       => $library->id,
2888             holdingbranch    => $library->id,
2889             barcode          => $barcode,
2890             replacementprice => 23.00,
2891             itype            => $itemtype->id
2892         },
2893         $biblio->biblionumber
2894     );
2895     my $item = Koha::Items->find( $item_id );
2896
2897     my $context = Test::MockModule->new('C4::Context');
2898     $context->mock( userenv => { branch => $library->id } );
2899
2900     # Check the item out
2901     AddIssue( $patron->unblessed, $item->barcode );
2902     t::lib::Mocks::mock_preference( 'RenewalLog', 0 );
2903     my $date = output_pref( { dt => dt_from_string(), datenonly => 1, dateformat => 'iso' } );
2904     my %params_renewal = (
2905         timestamp => { -like => $date . "%" },
2906         module => "CIRCULATION",
2907         action => "RENEWAL",
2908     );
2909     my $old_log_size = Koha::ActionLogs->count( \%params_renewal );;
2910     AddRenewal( $patron->id, $item->id, $library->id );
2911     my $new_log_size = Koha::ActionLogs->count( \%params_renewal );
2912     is( $new_log_size, $old_log_size, 'renew log not added because of the syspref RenewalLog' );
2913
2914     my $checkouts = $patron->checkouts;
2915     # The following will fail if run on 00:00:00
2916     unlike ( $checkouts->next->lastreneweddate, qr/00:00:00/, 'AddRenewal should set the renewal date with the time part');
2917
2918     t::lib::Mocks::mock_preference( 'RenewalLog', 1 );
2919     $date = output_pref( { dt => dt_from_string(), datenonly => 1, dateformat => 'iso' } );
2920     $old_log_size = Koha::ActionLogs->count( \%params_renewal );
2921     AddRenewal( $patron->id, $item->id, $library->id );
2922     $new_log_size = Koha::ActionLogs->count( \%params_renewal );
2923     is( $new_log_size, $old_log_size + 1, 'renew log successfully added' );
2924
2925     my $lines = Koha::Account::Lines->search({
2926         borrowernumber => $patron->id,
2927         itemnumber     => $item->id
2928     });
2929
2930     is( $lines->count, 3 );
2931
2932     my $line = $lines->next;
2933     is( $line->accounttype, 'Rent',       'The issuing charge generates an accountline' );
2934     is( $line->branchcode,  $library->id, 'AddIssuingCharge correctly sets branchcode' );
2935     is( $line->description, 'Rental',     'AddIssuingCharge set a hardcoded description for the accountline' );
2936
2937     $line = $lines->next;
2938     is( $line->accounttype, 'Rent', 'Fine on renewed item is closed out properly' );
2939     is( $line->branchcode,  $library->id, 'AddRenewal correctly sets branchcode' );
2940     is( $line->description, "Renewal of Rental Item $title $barcode", 'AddRenewal set a hardcoded description for the accountline' );
2941
2942     $line = $lines->next;
2943     is( $line->accounttype, 'Rent', 'Fine on renewed item is closed out properly' );
2944     is( $line->branchcode,  $library->id, 'AddRenewal correctly sets branchcode' );
2945     is( $line->description, "Renewal of Rental Item $title $barcode", 'AddRenewal set a hardcoded description for the accountline' );
2946
2947     $schema->storage->txn_rollback;
2948 };
2949
2950 subtest 'ProcessOfflinePayment() tests' => sub {
2951
2952     plan tests => 4;
2953
2954     $schema->storage->txn_begin;
2955
2956     my $amount = 123;
2957
2958     my $patron  = $builder->build_object({ class => 'Koha::Patrons' });
2959     my $library = $builder->build_object({ class => 'Koha::Libraries' });
2960     my $result  = C4::Circulation::ProcessOfflinePayment({ cardnumber => $patron->cardnumber, amount => $amount, branchcode => $library->id });
2961
2962     is( $result, 'Success.', 'The right string is returned' );
2963
2964     my $lines = $patron->account->lines;
2965     is( $lines->count, 1, 'line created correctly');
2966
2967     my $line = $lines->next;
2968     is( $line->amount+0, $amount * -1, 'amount picked from params' );
2969     is( $line->branchcode, $library->id, 'branchcode set correctly' );
2970
2971     $schema->storage->txn_rollback;
2972 };
2973
2974
2975
2976 sub set_userenv {
2977     my ( $library ) = @_;
2978     t::lib::Mocks::mock_userenv({ branchcode => $library->{branchcode} });
2979 }
2980
2981 sub str {
2982     my ( $error, $question, $alert ) = @_;
2983     my $s;
2984     $s  = %$error    ? ' (error: '    . join( ' ', keys %$error    ) . ')' : '';
2985     $s .= %$question ? ' (question: ' . join( ' ', keys %$question ) . ')' : '';
2986     $s .= %$alert    ? ' (alert: '    . join( ' ', keys %$alert    ) . ')' : '';
2987     return $s;
2988 }
2989
2990 sub test_debarment_on_checkout {
2991     my ($params) = @_;
2992     my $item     = $params->{item};
2993     my $library  = $params->{library};
2994     my $patron   = $params->{patron};
2995     my $due_date = $params->{due_date} || dt_from_string;
2996     my $return_date = $params->{return_date} || dt_from_string;
2997     my $expected_expiration_date = $params->{expiration_date};
2998
2999     $expected_expiration_date = output_pref(
3000         {
3001             dt         => $expected_expiration_date,
3002             dateformat => 'sql',
3003             dateonly   => 1,
3004         }
3005     );
3006     my @caller      = caller;
3007     my $line_number = $caller[2];
3008     AddIssue( $patron, $item->{barcode}, $due_date );
3009
3010     my ( undef, $message ) = AddReturn( $item->{barcode}, $library->{branchcode}, undef, $return_date );
3011     is( $message->{WasReturned} && exists $message->{Debarred}, 1, 'AddReturn must have debarred the patron' )
3012         or diag('AddReturn returned message ' . Dumper $message );
3013     my $debarments = Koha::Patron::Debarments::GetDebarments(
3014         { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
3015     is( scalar(@$debarments), 1, 'Test at line ' . $line_number );
3016
3017     is( $debarments->[0]->{expiration},
3018         $expected_expiration_date, 'Test at line ' . $line_number );
3019     Koha::Patron::Debarments::DelUniqueDebarment(
3020         { borrowernumber => $patron->{borrowernumber}, type => 'SUSPENSION' } );
3021 };
3022
3023 subtest 'Incremented fee tests' => sub {
3024     plan tests => 11;
3025
3026     t::lib::Mocks::mock_preference('item-level_itypes', 1);
3027
3028     my $library = $builder->build_object( { class => 'Koha::Libraries' } )->store;
3029
3030     my $module = new Test::MockModule('C4::Context');
3031     $module->mock('userenv', sub { { branch => $library->id } });
3032
3033     my $patron = $builder->build_object(
3034         {
3035             class => 'Koha::Patrons',
3036             value => { categorycode => $patron_category->{categorycode} }
3037         }
3038     )->store;
3039
3040     my $itemtype = $builder->build_object(
3041         {
3042             class => 'Koha::ItemTypes',
3043             value  => {
3044                 notforloan          => undef,
3045                 rentalcharge        => 0,
3046                 rentalcharge_daily => 1.000000
3047             }
3048         }
3049     )->store;
3050
3051     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
3052     my $item = $builder->build_object(
3053         {
3054             class => 'Koha::Items',
3055             value => {
3056                 homebranch       => $library->id,
3057                 holdingbranch    => $library->id,
3058                 notforloan       => 0,
3059                 itemlost         => 0,
3060                 withdrawn        => 0,
3061                 itype            => $itemtype->id,
3062                 biblionumber     => $biblioitem->{biblionumber},
3063                 biblioitemnumber => $biblioitem->{biblioitemnumber},
3064             }
3065         }
3066     )->store;
3067
3068     is( $itemtype->rentalcharge_daily, '1.000000', 'Daily rental charge stored and retreived correctly' );
3069     is( $item->effective_itemtype, $itemtype->id, "Itemtype set correctly for item");
3070
3071     my $dt_from = dt_from_string();
3072     my $dt_to = dt_from_string()->add( days => 7 );
3073     my $dt_to_renew = dt_from_string()->add( days => 13 );
3074
3075     t::lib::Mocks::mock_preference('finesCalendar', 'ignoreCalendar');
3076     my $issue = AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3077     my $accountline = Koha::Account::Lines->find({ itemnumber => $item->id });
3078     is( $accountline->amount, '7.000000', "Daily rental charge calculated correctly with finesCalendar = ignoreCalendar" );
3079     $accountline->delete();
3080     AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3081     $accountline = Koha::Account::Lines->find({ itemnumber => $item->id });
3082     is( $accountline->amount, '6.000000', "Daily rental charge calculated correctly with finesCalendar = ignoreCalendar, for renewal" );
3083     $accountline->delete();
3084     $issue->delete();
3085
3086     t::lib::Mocks::mock_preference('finesCalendar', 'noFinesWhenClosed');
3087     $issue = AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3088     $accountline = Koha::Account::Lines->find({ itemnumber => $item->id });
3089     is( $accountline->amount, '7.000000', "Daily rental charge calculated correctly with finesCalendar = noFinesWhenClosed" );
3090     $accountline->delete();
3091     AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3092     $accountline = Koha::Account::Lines->find({ itemnumber => $item->id });
3093     is( $accountline->amount, '6.000000', "Daily rental charge calculated correctly with finesCalendar = noFinesWhenClosed, for renewal" );
3094     $accountline->delete();
3095     $issue->delete();
3096
3097     my $calendar = C4::Calendar->new( branchcode => $library->id );
3098     $calendar->insert_week_day_holiday(
3099         weekday     => 3,
3100         title       => 'Test holiday',
3101         description => 'Test holiday'
3102     );
3103     $issue = AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from );
3104     $accountline = Koha::Account::Lines->find({ itemnumber => $item->id });
3105     is( $accountline->amount, '6.000000', "Daily rental charge calculated correctly with finesCalendar = noFinesWhenClosed and closed Wednesdays" );
3106     $accountline->delete();
3107     AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3108     $accountline = Koha::Account::Lines->find({ itemnumber => $item->id });
3109     is( $accountline->amount, '5.000000', "Daily rental charge calculated correctly with finesCalendar = noFinesWhenClosed and closed Wednesdays, for renewal" );
3110     $accountline->delete();
3111     $issue->delete();
3112
3113     $itemtype->rentalcharge('2.000000')->store;
3114     is( $itemtype->rentalcharge, '2.000000', 'Rental charge updated and retreived correctly' );
3115     $issue = AddIssue( $patron->unblessed, $item->barcode, $dt_to, undef, $dt_from);
3116     my $accountlines = Koha::Account::Lines->search({ itemnumber => $item->id });
3117     is( $accountlines->count, '2', "Fixed charge and accrued charge recorded distinctly");
3118     $accountlines->delete();
3119     AddRenewal( $patron->id, $item->id, $library->id, $dt_to_renew, $dt_to );
3120     $accountlines = Koha::Account::Lines->search({ itemnumber => $item->id });
3121     is( $accountlines->count, '2', "Fixed charge and accrued charge recorded distinctly, for renewal");
3122     $accountlines->delete();
3123     $issue->delete();
3124 };
3125
3126 subtest 'CanBookBeIssued & RentalFeesCheckoutConfirmation' => sub {
3127     plan tests => 2;
3128
3129     t::lib::Mocks::mock_preference('RentalFeesCheckoutConfirmation', 1);
3130     t::lib::Mocks::mock_preference('item-level_itypes', 1);
3131
3132     my $library =
3133       $builder->build_object( { class => 'Koha::Libraries' } )->store;
3134     my $patron = $builder->build_object(
3135         {
3136             class => 'Koha::Patrons',
3137             value => { categorycode => $patron_category->{categorycode} }
3138         }
3139     )->store;
3140
3141     my $itemtype = $builder->build_object(
3142         {
3143             class => 'Koha::ItemTypes',
3144             value => {
3145                 notforloan             => 0,
3146                 rentalcharge           => 0,
3147                 rentalcharge_daily => 0
3148             }
3149         }
3150     );
3151
3152     my $biblioitem = $builder->build( { source => 'Biblioitem' } );
3153     my $item = $builder->build_object(
3154         {
3155             class => 'Koha::Items',
3156             value  => {
3157                 homebranch    => $library->id,
3158                 holdingbranch => $library->id,
3159                 notforloan    => 0,
3160                 itemlost      => 0,
3161                 withdrawn     => 0,
3162                 itype         => $itemtype->id,
3163                 biblionumber  => $biblioitem->{biblionumber},
3164                 biblioitemnumber => $biblioitem->{biblioitemnumber},
3165             }
3166         }
3167     )->store;
3168
3169     my ( $issuingimpossible, $needsconfirmation );
3170     my $dt_from = dt_from_string();
3171     my $dt_due = dt_from_string()->add( days => 3 );
3172
3173     $itemtype->rentalcharge('1.000000')->store;
3174     ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
3175     is_deeply( $needsconfirmation, { RENTALCHARGE => '1' }, 'Item needs rentalcharge confirmation to be issued' );
3176     $itemtype->rentalcharge('0')->store;
3177     $itemtype->rentalcharge_daily('1.000000')->store;
3178     ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, $dt_due, undef, undef, undef );
3179     is_deeply( $needsconfirmation, { RENTALCHARGE => '3' }, 'Item needs rentalcharge confirmation to be issued, increment' );
3180     $itemtype->rentalcharge_daily('0')->store;
3181 };