Bug 29553: (QA follow-up) Check defined instead of evaluating as boolean
[koha.git] / C4 / Reserves.pm
1 package C4::Reserves;
2
3 # Copyright 2000-2002 Katipo Communications
4 #           2006 SAN Ouest Provence
5 #           2007-2010 BibLibre Paul POULAIN
6 #           2011 Catalyst IT
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23
24 use Modern::Perl;
25
26 use C4::Accounts;
27 use C4::Circulation qw( CheckIfIssuedToPatron GetAgeRestriction GetBranchItemRule );
28 use C4::Context;
29 use C4::Items qw( CartToShelf get_hostitemnumbers_of );
30 use C4::Letters;
31 use C4::Log qw( logaction );
32 use C4::Members::Messaging;
33 use C4::Members;
34 use Koha::Account::Lines;
35 use Koha::Biblios;
36 use Koha::Calendar;
37 use Koha::CirculationRules;
38 use Koha::Database;
39 use Koha::DateUtils qw( dt_from_string output_pref );
40 use Koha::Hold;
41 use Koha::Holds;
42 use Koha::ItemTypes;
43 use Koha::Items;
44 use Koha::Libraries;
45 use Koha::Old::Hold;
46 use Koha::Patrons;
47 use Koha::Plugins;
48
49 use List::MoreUtils qw( any );
50
51 =head1 NAME
52
53 C4::Reserves - Koha functions for dealing with reservation.
54
55 =head1 SYNOPSIS
56
57   use C4::Reserves;
58
59 =head1 DESCRIPTION
60
61 This modules provides somes functions to deal with reservations.
62
63   Reserves are stored in reserves table.
64   The following columns contains important values :
65   - priority >0      : then the reserve is at 1st stage, and not yet affected to any item.
66              =0      : then the reserve is being dealed
67   - found : NULL         : means the patron requested the 1st available, and we haven't chosen the item
68             T(ransit)    : the reserve is linked to an item but is in transit to the pickup branch
69             W(aiting)    : the reserve is linked to an item, is at the pickup branch, and is waiting on the hold shelf
70             F(inished)   : the reserve has been completed, and is done
71             P(rocessing) : reserved item has been returned using self-check machine and reserve needs to be confirmed
72                            by librarian before notice is send and status changed to waiting.
73                            Applicable only if HoldsNeedProcessingSIP system preference is set.
74   - itemnumber : empty : the reserve is still unaffected to an item
75                  filled: the reserve is attached to an item
76   The complete workflow is :
77   ==== 1st use case ====
78   patron request a document, 1st available :                      P >0, F=NULL, I=NULL
79   a library having it run "transfertodo", and clic on the list
80          if there is no transfer to do, the reserve waiting
81          patron can pick it up                                    P =0, F=W,    I=filled
82          if there is a transfer to do, write in branchtransfer    P =0, F=T,    I=filled
83            The pickup library receive the book, it check in       P =0, F=W,    I=filled
84   The patron borrow the book                                      P =0, F=F,    I=filled
85
86   ==== 2nd use case ====
87   patron requests a document, a given item,
88     If pickup is holding branch                                   P =0, F=W,   I=filled
89     If transfer needed, write in branchtransfer                   P =0, F=T,    I=filled
90         The pickup library receive the book, it checks it in      P =0, F=W,    I=filled
91   The patron borrow the book                                      P =0, F=F,    I=filled
92
93 =head1 FUNCTIONS
94
95 =cut
96
97 our (@ISA, @EXPORT_OK);
98 BEGIN {
99     require Exporter;
100     @ISA = qw(Exporter);
101     @EXPORT_OK = qw(
102       AddReserve
103
104       GetReserveStatus
105
106       GetOtherReserves
107       ChargeReserveFee
108       GetReserveFee
109
110       ModReserveFill
111       ModReserveAffect
112       ModReserve
113       ModReserveStatus
114       ModReserveCancelAll
115       ModReserveMinusPriority
116       MoveReserve
117
118       CheckReserves
119       CanBookBeReserved
120       CanItemBeReserved
121       CanReserveBeCanceledFromOpac
122       CancelExpiredReserves
123
124       AutoUnsuspendReserves
125
126       IsAvailableForItemLevelRequest
127       ItemsAnyAvailableAndNotRestricted
128
129       AlterPriority
130       ToggleLowestPriority
131
132       ReserveSlip
133       ToggleSuspend
134       SuspendAll
135
136       GetReservesControlBranch
137
138       CalculatePriority
139
140       IsItemOnHoldAndFound
141
142       GetMaxPatronHoldsForRecord
143
144       MergeHolds
145
146       RevertWaitingStatus
147     );
148 }
149
150 =head2 AddReserve
151
152     AddReserve(
153         {
154             branchcode       => $branchcode,
155             borrowernumber   => $borrowernumber,
156             biblionumber     => $biblionumber,
157             priority         => $priority,
158             reservation_date => $reservation_date,
159             expiration_date  => $expiration_date,
160             notes            => $notes,
161             title            => $title,
162             itemnumber       => $itemnumber,
163             found            => $found,
164             itemtype         => $itemtype,
165         }
166     );
167
168 Adds reserve and generates HOLDPLACED message.
169
170 The following tables are available witin the HOLDPLACED message:
171
172     branches
173     borrowers
174     biblio
175     biblioitems
176     items
177     reserves
178
179 =cut
180
181 sub AddReserve {
182     my ($params)       = @_;
183     my $branch         = $params->{branchcode};
184     my $borrowernumber = $params->{borrowernumber};
185     my $biblionumber   = $params->{biblionumber};
186     my $priority       = $params->{priority};
187     my $resdate        = $params->{reservation_date};
188     my $expdate        = $params->{expiration_date};
189     my $notes          = $params->{notes};
190     my $title          = $params->{title};
191     my $checkitem      = $params->{itemnumber};
192     my $found          = $params->{found};
193     my $itemtype       = $params->{itemtype};
194     my $non_priority   = $params->{non_priority};
195
196     $resdate = output_pref( { str => dt_from_string( $resdate ), dateonly => 1, dateformat => 'iso' })
197         or output_pref({ dt => dt_from_string, dateonly => 1, dateformat => 'iso' });
198
199     $expdate = output_pref({ str => $expdate, dateonly => 1, dateformat => 'iso' });
200
201     # if we have an item selectionned, and the pickup branch is the same as the holdingbranch
202     # of the document, we force the value $priority and $found .
203     if ( $checkitem and not C4::Context->preference('ReservesNeedReturns') ) {
204         my $item = Koha::Items->find( $checkitem ); # FIXME Prevent bad calls
205
206         if (
207             # If item is already checked out, it cannot be set waiting
208             !$item->onloan
209
210             # The item can't be waiting if it needs a transfer
211             && $item->holdingbranch eq $branch
212
213             # Similarly, if in transit it can't be waiting
214             && !$item->get_transfer
215
216             # If we can't hold damaged items, and it is damaged, it can't be waiting
217             && ( $item->damaged && C4::Context->preference('AllowHoldsOnDamagedItems') || !$item->damaged )
218
219             # Lastly, if this already has holds, we shouldn't make it waiting for the new hold
220             && !$item->current_holds->count )
221         {
222             $priority = 0;
223             $found = 'W';
224         }
225     }
226
227     if ( C4::Context->preference('AllowHoldDateInFuture') ) {
228
229         # Make room in reserves for this before those of a later reserve date
230         $priority = _ShiftPriorityByDateAndPriority( $biblionumber, $resdate, $priority );
231     }
232
233     my $waitingdate;
234
235     # If the reserv had the waiting status, we had the value of the resdate
236     if ( $found && $found eq 'W' ) {
237         $waitingdate = $resdate;
238     }
239
240     # Don't add itemtype limit if specific item is selected
241     $itemtype = undef if $checkitem;
242
243     # updates take place here
244     my $hold = Koha::Hold->new(
245         {
246             borrowernumber => $borrowernumber,
247             biblionumber   => $biblionumber,
248             reservedate    => $resdate,
249             branchcode     => $branch,
250             priority       => $priority,
251             reservenotes   => $notes,
252             itemnumber     => $checkitem,
253             found          => $found,
254             waitingdate    => $waitingdate,
255             expirationdate => $expdate,
256             itemtype       => $itemtype,
257             item_level_hold => $checkitem ? 1 : 0,
258             non_priority   => $non_priority ? 1 : 0,
259         }
260     )->store();
261     $hold->set_waiting() if $found && $found eq 'W';
262
263     logaction( 'HOLDS', 'CREATE', $hold->id, $hold )
264         if C4::Context->preference('HoldsLog');
265
266     my $reserve_id = $hold->id();
267
268     # add a reserve fee if needed
269     if ( C4::Context->preference('HoldFeeMode') ne 'any_time_is_collected' ) {
270         my $reserve_fee = GetReserveFee( $borrowernumber, $biblionumber );
271         ChargeReserveFee( $borrowernumber, $reserve_fee, $title );
272     }
273
274     _FixPriority({ biblionumber => $biblionumber});
275
276     # Send e-mail to librarian if syspref is active
277     if(C4::Context->preference("emailLibrarianWhenHoldIsPlaced")){
278         my $patron = Koha::Patrons->find( $borrowernumber );
279         my $library = $patron->library;
280         if ( my $letter =  C4::Letters::GetPreparedLetter (
281             module => 'reserves',
282             letter_code => 'HOLDPLACED',
283             branchcode => $branch,
284             lang => $patron->lang,
285             tables => {
286                 'branches'    => $library->unblessed,
287                 'borrowers'   => $patron->unblessed,
288                 'biblio'      => $biblionumber,
289                 'biblioitems' => $biblionumber,
290                 'items'       => $checkitem,
291                 'reserves'    => $hold->unblessed,
292             },
293         ) ) {
294
295             my $branch_email_address = $library->inbound_email_address;
296
297             C4::Letters::EnqueueLetter(
298                 {
299                     letter                 => $letter,
300                     borrowernumber         => $borrowernumber,
301                     message_transport_type => 'email',
302                     to_address             => $branch_email_address,
303                 }
304             );
305         }
306     }
307
308     Koha::Plugins->call('after_hold_create', $hold);
309
310     return $reserve_id;
311 }
312
313 =head2 CanBookBeReserved
314
315   $canReserve = &CanBookBeReserved($borrowernumber, $biblionumber, $branchcode, $params)
316   if ($canReserve eq 'OK') { #We can reserve this Item! }
317
318   $params are passed directly through to CanItemBeReserved
319
320 See CanItemBeReserved() for possible return values.
321
322 =cut
323
324 sub CanBookBeReserved{
325     my ($borrowernumber, $biblionumber, $pickup_branchcode, $params) = @_;
326
327     # Check that patron have not checked out this biblio (if AllowHoldsOnPatronsPossessions set)
328     if ( !C4::Context->preference('AllowHoldsOnPatronsPossessions')
329         && C4::Circulation::CheckIfIssuedToPatron( $borrowernumber, $biblionumber ) ) {
330         return { status =>'alreadypossession' };
331     }
332
333     my @itemnumbers = Koha::Items->search({ biblionumber => $biblionumber})->get_column("itemnumber");
334     #get items linked via host records
335     my @hostitems = get_hostitemnumbers_of($biblionumber);
336     if (@hostitems){
337         push (@itemnumbers, @hostitems);
338     }
339
340     my $canReserve = { status => '' };
341     foreach my $itemnumber (@itemnumbers) {
342         $canReserve = CanItemBeReserved( $borrowernumber, $itemnumber, $pickup_branchcode, $params );
343         return { status => 'OK' } if $canReserve->{status} eq 'OK';
344     }
345     return $canReserve;
346 }
347
348 =head2 CanItemBeReserved
349
350   $canReserve = &CanItemBeReserved($borrowernumber, $itemnumber, $branchcode, $params)
351   if ($canReserve->{status} eq 'OK') { #We can reserve this Item! }
352
353   current params are:
354   'ignore_found_holds' - if true holds that have been trapped are not counted
355   toward the patron limit, used by checkHighHolds to avoid counting the hold we will fill with the
356   current checkout against the high holds threshold
357   'ignore_hold_counts' - we use this routine to check if an item can fill a hold - on this case we
358   should not check if there are too many holds as we only csre about reservability
359
360 @RETURNS { status => OK },              if the Item can be reserved.
361          { status => ageRestricted },   if the Item is age restricted for this borrower.
362          { status => damaged },         if the Item is damaged.
363          { status => cannotReserveFromOtherBranches }, if syspref 'canreservefromotherbranches' is OK.
364          { status => branchNotInHoldGroup }, if borrower home library is not in hold group, and holds are only allowed from hold groups.
365          { status => tooManyReserves, limit => $limit }, if the borrower has exceeded their maximum reserve amount.
366          { status => notReservable },   if holds on this item are not allowed
367          { status => libraryNotFound },   if given branchcode is not an existing library
368          { status => libraryNotPickupLocation },   if given branchcode is not configured to be a pickup location
369          { status => cannotBeTransferred }, if branch transfer limit applies on given item and branchcode
370          { status => pickupNotInHoldGroup }, pickup location is not in hold group, and pickup locations are only allowed from hold groups.
371
372 =cut
373
374 sub CanItemBeReserved {
375     my ( $borrowernumber, $itemnumber, $pickup_branchcode, $params ) = @_;
376
377     my $dbh = C4::Context->dbh;
378     my $ruleitemtype;    # itemtype of the matching issuing rule
379     my $allowedreserves  = 0; # Total number of holds allowed across all records, default to none
380
381     # we retrieve borrowers and items informations #
382     # item->{itype} will come for biblioitems if necessery
383     my $item       = Koha::Items->find($itemnumber);
384     my $biblio     = $item->biblio;
385     my $patron = Koha::Patrons->find( $borrowernumber );
386     my $borrower = $patron->unblessed;
387
388     # If an item is damaged and we don't allow holds on damaged items, we can stop right here
389     return { status =>'damaged' }
390       if ( $item->damaged
391         && !C4::Context->preference('AllowHoldsOnDamagedItems') );
392
393     # Check for the age restriction
394     my ( $ageRestriction, $daysToAgeRestriction ) =
395       C4::Circulation::GetAgeRestriction( $biblio->biblioitem->agerestriction, $borrower );
396     return { status => 'ageRestricted' } if $daysToAgeRestriction && $daysToAgeRestriction > 0;
397
398     # Check that the patron doesn't have an item level hold on this item already
399     return { status =>'itemAlreadyOnHold' }
400       if ( !$params->{ignore_hold_counts} && Koha::Holds->search( { borrowernumber => $borrowernumber, itemnumber => $itemnumber } )->count() );
401
402     # Check that patron have not checked out this biblio (if AllowHoldsOnPatronsPossessions set)
403     if ( !C4::Context->preference('AllowHoldsOnPatronsPossessions')
404         && C4::Circulation::CheckIfIssuedToPatron( $patron->borrowernumber, $biblio->biblionumber ) ) {
405         return { status =>'alreadypossession' };
406     }
407
408     my $controlbranch = C4::Context->preference('ReservesControlBranch');
409
410     my $querycount = q{
411         SELECT count(*) AS count
412           FROM reserves
413      LEFT JOIN items USING (itemnumber)
414      LEFT JOIN biblioitems ON (reserves.biblionumber=biblioitems.biblionumber)
415      LEFT JOIN borrowers USING (borrowernumber)
416          WHERE borrowernumber = ?
417     };
418
419     my $branchcode  = "";
420     my $branchfield = "reserves.branchcode";
421
422     if ( $controlbranch eq "ItemHomeLibrary" ) {
423         $branchfield = "items.homebranch";
424         $branchcode  = $item->homebranch;
425     }
426     elsif ( $controlbranch eq "PatronLibrary" ) {
427         $branchfield = "borrowers.branchcode";
428         $branchcode  = $borrower->{branchcode};
429     }
430
431     # we retrieve rights
432     if (
433         my $reservesallowed = Koha::CirculationRules->get_effective_rule({
434                 itemtype     => $item->effective_itemtype,
435                 categorycode => $borrower->{categorycode},
436                 branchcode   => $branchcode,
437                 rule_name    => 'reservesallowed',
438         })
439     ) {
440         $ruleitemtype     = $reservesallowed->itemtype;
441         $allowedreserves  = $reservesallowed->rule_value // 0; #undefined is 0, blank is unlimited
442     }
443     else {
444         $ruleitemtype = undef;
445     }
446
447     my $rights = Koha::CirculationRules->get_effective_rules({
448         categorycode => $borrower->{'categorycode'},
449         itemtype     => $item->effective_itemtype,
450         branchcode   => $branchcode,
451         rules        => ['holds_per_record','holds_per_day']
452     });
453     my $holds_per_record = $rights->{holds_per_record} // 1;
454     my $holds_per_day    = $rights->{holds_per_day};
455
456     my $search_params = {
457         borrowernumber => $borrowernumber,
458         biblionumber   => $item->biblionumber,
459     };
460     $search_params->{found} = undef if $params->{ignore_found_holds};
461
462     my $holds = Koha::Holds->search($search_params);
463     if (   defined $holds_per_record && $holds_per_record ne '' ){
464         if ( $holds_per_record == 0 ) {
465             return { status => "noReservesAllowed" };
466         }
467         if ( !$params->{ignore_hold_counts} && $holds->count() >= $holds_per_record ) {
468             return { status => "tooManyHoldsForThisRecord", limit => $holds_per_record };
469         }
470     }
471
472     my $today_holds = Koha::Holds->search({
473         borrowernumber => $borrowernumber,
474         reservedate    => dt_from_string->date
475     });
476
477     if (!$params->{ignore_hold_counts} && defined $holds_per_day && $holds_per_day ne ''
478         && $today_holds->count() >= $holds_per_day )
479     {
480         return { status => 'tooManyReservesToday', limit => $holds_per_day };
481     }
482
483     # we retrieve count
484
485     $querycount .= "AND ( $branchfield = ? OR $branchfield IS NULL )";
486
487     # If using item-level itypes, fall back to the record
488     # level itemtype if the hold has no associated item
489     $querycount .=
490       C4::Context->preference('item-level_itypes')
491       ? " AND COALESCE( items.itype, biblioitems.itemtype ) = ?"
492       : " AND biblioitems.itemtype = ?"
493       if defined $ruleitemtype;
494
495     my $sthcount = $dbh->prepare($querycount);
496
497     if ( defined $ruleitemtype ) {
498         $sthcount->execute( $borrowernumber, $branchcode, $ruleitemtype );
499     }
500     else {
501         $sthcount->execute( $borrowernumber, $branchcode );
502     }
503
504     my $reservecount = "0";
505     if ( my $rowcount = $sthcount->fetchrow_hashref() ) {
506         $reservecount = $rowcount->{count};
507     }
508
509     # we check if it's ok or not
510     if ( defined $allowedreserves && $allowedreserves ne '' ){
511         if( $allowedreserves == 0 ){
512             return { status => 'noReservesAllowed' };
513         }
514         if ( !$params->{ignore_hold_counts} && $reservecount >= $allowedreserves ) {
515             return { status => 'tooManyReserves', limit => $allowedreserves };
516         }
517     }
518
519     # Now we need to check hold limits by patron category
520     my $rule = Koha::CirculationRules->get_effective_rule(
521         {
522             categorycode => $borrower->{categorycode},
523             branchcode   => $branchcode,
524             rule_name    => 'max_holds',
525         }
526     );
527     if (!$params->{ignore_hold_counts} && $rule && defined( $rule->rule_value ) && $rule->rule_value ne '' ) {
528         my $total_holds_count = Koha::Holds->search(
529             {
530                 borrowernumber => $borrower->{borrowernumber}
531             }
532         )->count();
533
534         return { status => 'tooManyReserves', limit => $rule->rule_value} if $total_holds_count >= $rule->rule_value;
535     }
536
537     my $reserves_control_branch =
538       GetReservesControlBranch( $item->unblessed(), $borrower );
539     my $branchitemrule =
540       C4::Circulation::GetBranchItemRule( $reserves_control_branch, $item->effective_itemtype );
541
542     if ( $branchitemrule->{holdallowed} eq 'not_allowed' ) {
543         return { status => 'notReservable' };
544     }
545
546     if (   $branchitemrule->{holdallowed} eq 'from_home_library'
547         && $borrower->{branchcode} ne $item->homebranch )
548     {
549         return { status => 'cannotReserveFromOtherBranches' };
550     }
551
552     my $item_library = Koha::Libraries->find( {branchcode => $item->homebranch} );
553     if ( $branchitemrule->{holdallowed} eq 'from_local_hold_group') {
554         if($borrower->{branchcode} ne $item->homebranch && !$item_library->validate_hold_sibling( {branchcode => $borrower->{branchcode}} )) {
555             return { status => 'branchNotInHoldGroup' };
556         }
557     }
558
559     # If reservecount is ok, we check item branch if IndependentBranches is ON
560     # and canreservefromotherbranches is OFF
561     if ( C4::Context->preference('IndependentBranches')
562         and !C4::Context->preference('canreservefromotherbranches') )
563     {
564         if ( $item->homebranch ne $borrower->{branchcode} ) {
565             return { status => 'cannotReserveFromOtherBranches' };
566         }
567     }
568
569     if ($pickup_branchcode) {
570         my $destination = Koha::Libraries->find({
571             branchcode => $pickup_branchcode,
572         });
573
574         unless ($destination) {
575             return { status => 'libraryNotFound' };
576         }
577         unless ($destination->pickup_location) {
578             return { status => 'libraryNotPickupLocation' };
579         }
580         unless ($item->can_be_transferred({ to => $destination })) {
581             return { status => 'cannotBeTransferred' };
582         }
583         if ($branchitemrule->{hold_fulfillment_policy} eq 'holdgroup' && !$item_library->validate_hold_sibling( {branchcode => $pickup_branchcode} )) {
584             return { status => 'pickupNotInHoldGroup' };
585         }
586         if ($branchitemrule->{hold_fulfillment_policy} eq 'patrongroup' && !Koha::Libraries->find({branchcode => $borrower->{branchcode}})->validate_hold_sibling({branchcode => $pickup_branchcode})) {
587             return { status => 'pickupNotInHoldGroup' };
588         }
589     }
590
591     return { status => 'OK' };
592 }
593
594 =head2 CanReserveBeCanceledFromOpac
595
596     $number = CanReserveBeCanceledFromOpac($reserve_id, $borrowernumber);
597
598     returns 1 if reserve can be cancelled by user from OPAC.
599     First check if reserve belongs to user, next checks if reserve is not in
600     transfer or waiting status
601
602 =cut
603
604 sub CanReserveBeCanceledFromOpac {
605     my ($reserve_id, $borrowernumber) = @_;
606
607     return unless $reserve_id and $borrowernumber;
608     my $reserve = Koha::Holds->find($reserve_id) or return;
609
610     return 0 unless $reserve->borrowernumber == $borrowernumber;
611     return $reserve->is_cancelable_from_opac;
612 }
613
614 =head2 GetOtherReserves
615
616   ($messages,$nextreservinfo)=$GetOtherReserves(itemnumber);
617
618 Check queued list of this document and check if this document must be transferred
619
620 =cut
621
622 sub GetOtherReserves {
623     my ($itemnumber) = @_;
624     my $messages;
625     my $nextreservinfo;
626     my ( undef, $checkreserves, undef ) = CheckReserves($itemnumber);
627     if ($checkreserves) {
628         my $item = Koha::Items->find($itemnumber);
629         if ( $item->holdingbranch ne $checkreserves->{'branchcode'} ) {
630             $messages->{'transfert'} = $checkreserves->{'branchcode'};
631             #minus priorities of others reservs
632             ModReserveMinusPriority(
633                 $itemnumber,
634                 $checkreserves->{'reserve_id'},
635             );
636
637             #launch the subroutine dotransfer
638             C4::Items::ModItemTransfer(
639                 $itemnumber,
640                 $item->holdingbranch,
641                 $checkreserves->{'branchcode'},
642                 'Reserve'
643               ),
644               ;
645         }
646
647      #step 2b : case of a reservation on the same branch, set the waiting status
648         else {
649             $messages->{'waiting'} = 1;
650             ModReserveMinusPriority(
651                 $itemnumber,
652                 $checkreserves->{'reserve_id'},
653             );
654             ModReserveStatus($itemnumber,'W');
655         }
656
657         $nextreservinfo = $checkreserves;
658     }
659
660     return ( $messages, $nextreservinfo );
661 }
662
663 =head2 ChargeReserveFee
664
665     $fee = ChargeReserveFee( $borrowernumber, $fee, $title );
666
667     Charge the fee for a reserve (if $fee > 0)
668
669 =cut
670
671 sub ChargeReserveFee {
672     my ( $borrowernumber, $fee, $title ) = @_;
673     return if !$fee || $fee == 0;    # the last test is needed to include 0.00
674     Koha::Account->new( { patron_id => $borrowernumber } )->add_debit(
675         {
676             amount       => $fee,
677             description  => $title,
678             note         => undef,
679             user_id      => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
680             library_id   => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
681             interface    => C4::Context->interface,
682             invoice_type => undef,
683             type         => 'RESERVE',
684             item_id      => undef
685         }
686     );
687 }
688
689 =head2 GetReserveFee
690
691     $fee = GetReserveFee( $borrowernumber, $biblionumber );
692
693     Calculate the fee for a reserve (if applicable).
694
695 =cut
696
697 sub GetReserveFee {
698     my ( $borrowernumber, $biblionumber ) = @_;
699     my $borquery = qq{
700 SELECT reservefee FROM borrowers LEFT JOIN categories ON borrowers.categorycode = categories.categorycode WHERE borrowernumber = ?
701     };
702     my $issue_qry = qq{
703 SELECT COUNT(*) FROM items
704 LEFT JOIN issues USING (itemnumber)
705 WHERE items.biblionumber=? AND issues.issue_id IS NULL
706     };
707     my $holds_qry = qq{
708 SELECT COUNT(*) FROM reserves WHERE biblionumber=? AND borrowernumber<>?
709     };
710
711     my $dbh = C4::Context->dbh;
712     my ( $fee ) = $dbh->selectrow_array( $borquery, undef, ($borrowernumber) );
713     my $hold_fee_mode = C4::Context->preference('HoldFeeMode') || 'not_always';
714     if( $fee and $fee > 0 and $hold_fee_mode eq 'not_always' ) {
715         # This is a reconstruction of the old code:
716         # Compare number of items with items issued, and optionally check holds
717         # If not all items are issued and there are no holds: charge no fee
718         # NOTE: Lost, damaged, not-for-loan, etc. are just ignored here
719         my ( $notissued, $reserved );
720         ( $notissued ) = $dbh->selectrow_array( $issue_qry, undef,
721             ( $biblionumber ) );
722         if( $notissued ) {
723             ( $reserved ) = $dbh->selectrow_array( $holds_qry, undef,
724                 ( $biblionumber, $borrowernumber ) );
725             $fee = 0 if $reserved == 0;
726         }
727     }
728     return $fee;
729 }
730
731 =head2 GetReserveStatus
732
733   $reservestatus = GetReserveStatus($itemnumber);
734
735 Takes an itemnumber and returns the status of the reserve placed on it.
736 If several reserves exist, the reserve with the lower priority is given.
737
738 =cut
739
740 ## FIXME: I don't think this does what it thinks it does.
741 ## It only ever checks the first reserve result, even though
742 ## multiple reserves for that bib can have the itemnumber set
743 ## the sub is only used once in the codebase.
744 sub GetReserveStatus {
745     my ($itemnumber) = @_;
746
747     my $dbh = C4::Context->dbh;
748
749     my ($sth, $found, $priority);
750     if ( $itemnumber ) {
751         $sth = $dbh->prepare("SELECT found, priority FROM reserves WHERE itemnumber = ? order by priority LIMIT 1");
752         $sth->execute($itemnumber);
753         ($found, $priority) = $sth->fetchrow_array;
754     }
755
756     if(defined $found) {
757         return 'Waiting'  if $found eq 'W' and $priority == 0;
758         return 'Processing'  if $found eq 'P';
759         return 'Finished' if $found eq 'F';
760     }
761
762     return 'Reserved' if defined $priority && $priority > 0;
763
764     return ''; # empty string here will remove need for checking undef, or less log lines
765 }
766
767 =head2 CheckReserves
768
769   ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber);
770   ($status, $matched_reserve, $possible_reserves) = &CheckReserves(undef, $barcode);
771   ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber,undef,$lookahead);
772
773 Find a book in the reserves.
774
775 C<$itemnumber> is the book's item number.
776 C<$lookahead> is the number of days to look in advance for future reserves.
777
778 As I understand it, C<&CheckReserves> looks for the given item in the
779 reserves. If it is found, that's a match, and C<$status> is set to
780 C<Waiting>.
781
782 Otherwise, it finds the most important item in the reserves with the
783 same biblio number as this book (I'm not clear on this) and returns it
784 with C<$status> set to C<Reserved>.
785
786 C<&CheckReserves> returns a two-element list:
787
788 C<$status> is either C<Waiting>, C<Reserved> (see above), or 0.
789
790 C<$reserve> is the reserve item that matched. It is a
791 reference-to-hash whose keys are mostly the fields of the reserves
792 table in the Koha database.
793
794 =cut
795
796 sub CheckReserves {
797     my ( $item, $barcode, $lookahead_days, $ignore_borrowers) = @_;
798     my $dbh = C4::Context->dbh;
799     my $sth;
800     my $select;
801     if (C4::Context->preference('item-level_itypes')){
802         $select = "
803            SELECT items.biblionumber,
804            items.biblioitemnumber,
805            itemtypes.notforloan,
806            items.notforloan AS itemnotforloan,
807            items.itemnumber,
808            items.damaged,
809            items.homebranch,
810            items.holdingbranch
811            FROM   items
812            LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
813            LEFT JOIN itemtypes   ON items.itype   = itemtypes.itemtype
814         ";
815     }
816     else {
817         $select = "
818            SELECT items.biblionumber,
819            items.biblioitemnumber,
820            itemtypes.notforloan,
821            items.notforloan AS itemnotforloan,
822            items.itemnumber,
823            items.damaged,
824            items.homebranch,
825            items.holdingbranch
826            FROM   items
827            LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
828            LEFT JOIN itemtypes   ON biblioitems.itemtype   = itemtypes.itemtype
829         ";
830     }
831
832     if ($item) {
833         $sth = $dbh->prepare("$select WHERE itemnumber = ?");
834         $sth->execute($item);
835     }
836     else {
837         $sth = $dbh->prepare("$select WHERE barcode = ?");
838         $sth->execute($barcode);
839     }
840     # note: we get the itemnumber because we might have started w/ just the barcode.  Now we know for sure we have it.
841     my ( $biblio, $bibitem, $notforloan_per_itemtype, $notforloan_per_item, $itemnumber, $damaged, $item_homebranch, $item_holdingbranch ) = $sth->fetchrow_array;
842     return if ( $damaged && !C4::Context->preference('AllowHoldsOnDamagedItems') );
843
844     return unless $itemnumber; # bail if we got nothing.
845     # if item is not for loan it cannot be reserved either.....
846     # except where items.notforloan < 0 :  This indicates the item is holdable.
847
848     my @SkipHoldTrapOnNotForLoanValue = split( '\|', C4::Context->preference('SkipHoldTrapOnNotForLoanValue') );
849     return if grep { $_ eq $notforloan_per_item } @SkipHoldTrapOnNotForLoanValue;
850
851     my $dont_trap = C4::Context->preference('TrapHoldsOnOrder') ? ($notforloan_per_item > 0) : ($notforloan_per_item && 1 );
852     return if $dont_trap or $notforloan_per_itemtype;
853
854     # Find this item in the reserves
855     my @reserves = _Findgroupreserve( $bibitem, $biblio, $itemnumber, $lookahead_days, $ignore_borrowers);
856
857     # $priority and $highest are used to find the most important item
858     # in the list returned by &_Findgroupreserve. (The lower $priority,
859     # the more important the item.)
860     # $highest is the most important item we've seen so far.
861     my $highest;
862
863     if (scalar @reserves) {
864         my $LocalHoldsPriority = C4::Context->preference('LocalHoldsPriority');
865         my $LocalHoldsPriorityPatronControl = C4::Context->preference('LocalHoldsPriorityPatronControl');
866         my $LocalHoldsPriorityItemControl = C4::Context->preference('LocalHoldsPriorityItemControl');
867
868         my $priority = 10000000;
869         foreach my $res (@reserves) {
870             if ($res->{'found'} && $res->{'found'} eq 'W') {
871                 return ( "Waiting", $res, \@reserves ); # Found it, it is waiting
872             } elsif ($res->{'found'} && $res->{'found'} eq 'P') {
873                 return ( "Processing", $res, \@reserves ); # Found determinated hold, e. g. the transferred one
874             } elsif ($res->{'found'} && $res->{'found'} eq 'T') {
875                 return ( "Transferred", $res, \@reserves ); # Found determinated hold, e. g. the transferred one
876             } else {
877                 my $patron;
878                 my $item;
879                 my $local_hold_match;
880
881                 if ($LocalHoldsPriority) {
882                     $patron = Koha::Patrons->find( $res->{borrowernumber} );
883                     $item = Koha::Items->find($itemnumber);
884
885                     unless ($item->exclude_from_local_holds_priority || $patron->category->exclude_from_local_holds_priority) {
886                         my $local_holds_priority_item_branchcode =
887                             $item->$LocalHoldsPriorityItemControl;
888                         my $local_holds_priority_patron_branchcode =
889                             ( $LocalHoldsPriorityPatronControl eq 'PickupLibrary' )
890                             ? $res->{branchcode}
891                             : ( $LocalHoldsPriorityPatronControl eq 'HomeLibrary' )
892                             ? $patron->branchcode
893                             : undef;
894                         $local_hold_match =
895                             $local_holds_priority_item_branchcode eq
896                             $local_holds_priority_patron_branchcode;
897                     }
898                 }
899
900                 # See if this item is more important than what we've got so far
901                 if ( ( $res->{'priority'} && $res->{'priority'} < $priority ) || $local_hold_match ) {
902                     $item ||= Koha::Items->find($itemnumber);
903                     next if $res->{itemtype} && $res->{itemtype} ne $item->effective_itemtype;
904                     $patron ||= Koha::Patrons->find( $res->{borrowernumber} );
905                     my $branch = GetReservesControlBranch( $item->unblessed, $patron->unblessed );
906                     my $branchitemrule = C4::Circulation::GetBranchItemRule($branch,$item->effective_itemtype);
907                     next if ($branchitemrule->{'holdallowed'} eq 'not_allowed');
908                     next if (($branchitemrule->{'holdallowed'} eq 'from_home_library') && ($item->homebranch ne $patron->branchcode));
909                     my $library = Koha::Libraries->find({branchcode=>$item->homebranch});
910                     next if (($branchitemrule->{'holdallowed'} eq 'from_local_hold_group') && (!$library->validate_hold_sibling({branchcode => $patron->branchcode}) ));
911                     my $hold_fulfillment_policy = $branchitemrule->{hold_fulfillment_policy};
912                     next if ( ($hold_fulfillment_policy eq 'holdgroup') && (!$library->validate_hold_sibling({branchcode => $res->{branchcode}})) );
913                     next if ( ($hold_fulfillment_policy eq 'homebranch') && ($res->{branchcode} ne $item->$hold_fulfillment_policy) );
914                     next if ( ($hold_fulfillment_policy eq 'holdingbranch') && ($res->{branchcode} ne $item->$hold_fulfillment_policy) );
915                     next unless $item->can_be_transferred( { to => Koha::Libraries->find( $res->{branchcode} ) } );
916                     $priority = $res->{'priority'};
917                     $highest  = $res;
918                     last if $local_hold_match;
919                 }
920             }
921         }
922     }
923
924     # If we get this far, then no exact match was found.
925     # We return the most important (i.e. next) reservation.
926     if ($highest) {
927         $highest->{'itemnumber'} = $item;
928         return ( "Reserved", $highest, \@reserves );
929     }
930
931     return ( '' );
932 }
933
934 =head2 CancelExpiredReserves
935
936   CancelExpiredReserves();
937
938 Cancels all reserves with an expiration date from before today.
939
940 =cut
941
942 sub CancelExpiredReserves {
943     my $cancellation_reason = shift;
944     my $today = dt_from_string();
945     my $cancel_on_holidays = C4::Context->preference('ExpireReservesOnHolidays');
946     my $expireWaiting = C4::Context->preference('ExpireReservesMaxPickUpDelay');
947
948     my $dtf = Koha::Database->new->schema->storage->datetime_parser;
949     my $params = { expirationdate => { '<', $dtf->format_date($today) } };
950     $params->{found} = [ { '!=', 'W' }, undef ]  unless $expireWaiting;
951
952     # FIXME To move to Koha::Holds->search_expired (?)
953     my $holds = Koha::Holds->search( $params );
954
955     while ( my $hold = $holds->next ) {
956         my $calendar = Koha::Calendar->new( branchcode => $hold->branchcode );
957
958         next if !$cancel_on_holidays && $calendar->is_holiday( $today );
959
960         my $cancel_params = {};
961         $cancel_params->{cancellation_reason} = $cancellation_reason if defined($cancellation_reason);
962         if ( defined($hold->found) && $hold->found eq 'W' ) {
963             $cancel_params->{charge_cancel_fee} = 1;
964         }
965         $hold->cancel( $cancel_params );
966     }
967 }
968
969 =head2 AutoUnsuspendReserves
970
971   AutoUnsuspendReserves();
972
973 Unsuspends all suspended reserves with a suspend_until date from before today.
974
975 =cut
976
977 sub AutoUnsuspendReserves {
978     my $today = dt_from_string();
979
980     my @holds = Koha::Holds->search( { suspend_until => { '<=' => $today->ymd() } } );
981
982     map { $_->resume() } @holds;
983 }
984
985 =head2 ModReserve
986
987   ModReserve({ rank => $rank,
988                reserve_id => $reserve_id,
989                branchcode => $branchcode
990                [, itemnumber => $itemnumber ]
991                [, biblionumber => $biblionumber, $borrowernumber => $borrowernumber ]
992               });
993
994 Change a hold request's priority or cancel it.
995
996 C<$rank> specifies the effect of the change.  If C<$rank>
997 is 'n', nothing happens.  This corresponds to leaving a
998 request alone when changing its priority in the holds queue
999 for a bib.
1000
1001 If C<$rank> is 'del', the hold request is cancelled.
1002
1003 If C<$rank> is an integer greater than zero, the priority of
1004 the request is set to that value.  Since priority != 0 means
1005 that the item is not waiting on the hold shelf, setting the
1006 priority to a non-zero value also sets the request's found
1007 status and waiting date to NULL.
1008
1009 If the hold is 'found' (waiting, in-transit, processing) the
1010 only field that can be updated is the expiration date.
1011
1012 The optional C<$itemnumber> parameter is used only when
1013 C<$rank> is a non-zero integer; if supplied, the itemnumber
1014 of the hold request is set accordingly; if omitted, the itemnumber
1015 is cleared.
1016
1017 B<FIXME:> Note that the forgoing can have the effect of causing
1018 item-level hold requests to turn into title-level requests.  This
1019 will be fixed once reserves has separate columns for requested
1020 itemnumber and supplying itemnumber.
1021
1022 =cut
1023
1024 sub ModReserve {
1025     my ( $params ) = @_;
1026
1027     my $rank = $params->{'rank'};
1028     my $reserve_id = $params->{'reserve_id'};
1029     my $branchcode = $params->{'branchcode'};
1030     my $itemnumber = $params->{'itemnumber'};
1031     my $suspend_until = $params->{'suspend_until'};
1032     my $borrowernumber = $params->{'borrowernumber'};
1033     my $biblionumber = $params->{'biblionumber'};
1034     my $cancellation_reason = $params->{'cancellation_reason'};
1035     my $date = $params->{expirationdate};
1036
1037     return if $rank eq "n";
1038
1039     return unless ( $reserve_id || ( $borrowernumber && ( $biblionumber || $itemnumber ) ) );
1040
1041     my $hold;
1042     unless ( $reserve_id ) {
1043         my $holds = Koha::Holds->search({ biblionumber => $biblionumber, borrowernumber => $borrowernumber, itemnumber => $itemnumber });
1044         return unless $holds->count; # FIXME Should raise an exception
1045         $hold = $holds->next;
1046         $reserve_id = $hold->reserve_id;
1047     }
1048
1049     $hold ||= Koha::Holds->find($reserve_id);
1050
1051     if ( $rank eq "del" ) {
1052         $hold->cancel({ cancellation_reason => $cancellation_reason });
1053     }
1054     elsif ($hold->found && $hold->priority eq '0' && $date) {
1055         logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, $hold )
1056             if C4::Context->preference('HoldsLog');
1057
1058         # The only column that can be updated for a found hold is the expiration date
1059         $hold->expirationdate(dt_from_string($date))->store();
1060     }
1061     elsif ($rank =~ /^\d+/ and $rank > 0) {
1062         logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, $hold )
1063             if C4::Context->preference('HoldsLog');
1064
1065         my $properties = {
1066             priority    => $rank,
1067             branchcode  => $branchcode,
1068             itemnumber  => $itemnumber,
1069             found       => undef,
1070             waitingdate => undef
1071         };
1072         if (exists $params->{reservedate}) {
1073             $properties->{reservedate} = $params->{reservedate} || undef;
1074         }
1075         if (exists $params->{expirationdate}) {
1076             $properties->{expirationdate} = $params->{expirationdate} || undef;
1077         }
1078
1079         $hold->set($properties)->store();
1080
1081         if ( defined( $suspend_until ) ) {
1082             if ( $suspend_until ) {
1083                 $suspend_until = eval { dt_from_string( $suspend_until ) };
1084                 $hold->suspend_hold( $suspend_until );
1085             } else {
1086                 # If the hold is suspended leave the hold suspended, but convert it to an indefinite hold.
1087                 # If the hold is not suspended, this does nothing.
1088                 $hold->set( { suspend_until => undef } )->store();
1089             }
1090         }
1091
1092         _FixPriority({ reserve_id => $reserve_id, rank =>$rank });
1093     }
1094 }
1095
1096 =head2 ModReserveFill
1097
1098   &ModReserveFill($reserve);
1099
1100 Fill a reserve. If I understand this correctly, this means that the
1101 reserved book has been found and given to the patron who reserved it.
1102
1103 C<$reserve> specifies the reserve to fill. It is a reference-to-hash
1104 whose keys are fields from the reserves table in the Koha database.
1105
1106 =cut
1107
1108 sub ModReserveFill {
1109     my ($res) = @_;
1110     my $reserve_id = $res->{'reserve_id'};
1111
1112     my $hold = Koha::Holds->find($reserve_id);
1113     # get the priority on this record....
1114     my $priority = $hold->priority;
1115
1116     # update the hold statuses, no need to store it though, we will be deleting it anyway
1117     $hold->set(
1118         {
1119             found    => 'F',
1120             priority => 0,
1121         }
1122     );
1123
1124     logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, $hold )
1125         if C4::Context->preference('HoldsLog');
1126
1127     # FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log
1128     Koha::Old::Hold->new( $hold->unblessed() )->store();
1129
1130     $hold->delete();
1131
1132     if ( C4::Context->preference('HoldFeeMode') eq 'any_time_is_collected' ) {
1133         my $reserve_fee = GetReserveFee( $hold->borrowernumber, $hold->biblionumber );
1134         ChargeReserveFee( $hold->borrowernumber, $reserve_fee, $hold->biblio->title );
1135     }
1136
1137     # now fix the priority on the others (if the priority wasn't
1138     # already sorted!)....
1139     unless ( $priority == 0 ) {
1140         _FixPriority( { reserve_id => $reserve_id, biblionumber => $hold->biblionumber } );
1141     }
1142 }
1143
1144 =head2 ModReserveStatus
1145
1146   &ModReserveStatus($itemnumber, $newstatus);
1147
1148 Update the reserve status for the active (priority=0) reserve.
1149
1150 $itemnumber is the itemnumber the reserve is on
1151
1152 $newstatus is the new status.
1153
1154 =cut
1155
1156 sub ModReserveStatus {
1157
1158     #first : check if we have a reservation for this item .
1159     my ($itemnumber, $newstatus) = @_;
1160     my $dbh = C4::Context->dbh;
1161
1162     my $query = "UPDATE reserves SET found = ?, waitingdate = NOW() WHERE itemnumber = ? AND found IS NULL AND priority = 0";
1163     my $sth_set = $dbh->prepare($query);
1164     $sth_set->execute( $newstatus, $itemnumber );
1165
1166     my $item = Koha::Items->find($itemnumber);
1167     if ( $item->location && $item->location eq 'CART'
1168         && ( !$item->permanent_location || $item->permanent_location ne 'CART' )
1169         && $newstatus ) {
1170       CartToShelf( $itemnumber );
1171     }
1172 }
1173
1174 =head2 ModReserveAffect
1175
1176   &ModReserveAffect($itemnumber,$borrowernumber,$diffBranchSend,$reserve_id, $desk_id);
1177
1178 This function affect an item and a status for a given reserve, either fetched directly
1179 by record_id, or by borrowernumber and itemnumber or biblionumber. If only biblionumber
1180 is given, only first reserve returned is affected, which is ok for anything but
1181 multi-item holds.
1182
1183 if $transferToDo is not set, then the status is set to "Waiting" as well.
1184 otherwise, a transfer is on the way, and the end of the transfer will
1185 take care of the waiting status
1186
1187 This function also removes any entry of the hold in holds queue table.
1188
1189 =cut
1190
1191 sub ModReserveAffect {
1192     my ( $itemnumber, $borrowernumber, $transferToDo, $reserve_id, $desk_id ) = @_;
1193     my $dbh = C4::Context->dbh;
1194
1195     # we want to attach $itemnumber to $borrowernumber, find the biblionumber
1196     # attached to $itemnumber
1197     my $sth = $dbh->prepare("SELECT biblionumber FROM items WHERE itemnumber=?");
1198     $sth->execute($itemnumber);
1199     my ($biblionumber) = $sth->fetchrow;
1200
1201     # get request - need to find out if item is already
1202     # waiting in order to not send duplicate hold filled notifications
1203
1204     my $hold;
1205     # Find hold by id if we have it
1206     $hold = Koha::Holds->find( $reserve_id ) if $reserve_id;
1207     # Find item level hold for this item if there is one
1208     $hold ||= Koha::Holds->search( { borrowernumber => $borrowernumber, itemnumber => $itemnumber } )->next();
1209     # Find record level hold if there is no item level hold
1210     $hold ||= Koha::Holds->search( { borrowernumber => $borrowernumber, biblionumber => $biblionumber } )->next();
1211
1212     return unless $hold;
1213
1214     my $already_on_shelf = $hold->found && $hold->found eq 'W';
1215
1216     $hold->itemnumber($itemnumber);
1217
1218     if ($transferToDo) {
1219         $hold->set_transfer();
1220     } elsif (C4::Context->preference('HoldsNeedProcessingSIP')
1221              && C4::Context->interface eq 'sip'
1222              && !$already_on_shelf) {
1223         $hold->set_processing();
1224     } else {
1225         $hold->set_waiting($desk_id);
1226         _koha_notify_reserve( $hold->reserve_id ) unless $already_on_shelf;
1227         # Complete transfer if one exists
1228         my $transfer = $hold->item->get_transfer;
1229         $transfer->receive if $transfer;
1230     }
1231
1232     _FixPriority( { biblionumber => $biblionumber } );
1233     my $item = Koha::Items->find($itemnumber);
1234     if ( $item->location && $item->location eq 'CART'
1235         && ( !$item->permanent_location || $item->permanent_location ne 'CART' ) ) {
1236       CartToShelf( $itemnumber );
1237     }
1238
1239     my $std = $dbh->prepare(q{
1240         DELETE  q, t
1241         FROM    tmp_holdsqueue q
1242         INNER JOIN hold_fill_targets t
1243         ON  q.borrowernumber = t.borrowernumber
1244             AND q.biblionumber = t.biblionumber
1245             AND q.itemnumber = t.itemnumber
1246             AND q.item_level_request = t.item_level_request
1247             AND q.holdingbranch = t.source_branchcode
1248         WHERE t.reserve_id = ?
1249     });
1250     $std->execute($hold->reserve_id);
1251
1252     logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, $hold )
1253         if C4::Context->preference('HoldsLog');
1254
1255     return;
1256 }
1257
1258 =head2 ModReserveCancelAll
1259
1260   ($messages,$nextreservinfo) = &ModReserveCancelAll($itemnumber,$borrowernumber,$reason);
1261
1262 function to cancel reserv,check other reserves, and transfer document if it's necessary
1263
1264 =cut
1265
1266 sub ModReserveCancelAll {
1267     my $messages;
1268     my $nextreservinfo;
1269     my ( $itemnumber, $borrowernumber, $cancellation_reason ) = @_;
1270
1271     #step 1 : cancel the reservation
1272     my $holds = Koha::Holds->search({ itemnumber => $itemnumber, borrowernumber => $borrowernumber });
1273     return unless $holds->count;
1274     $holds->next->cancel({ cancellation_reason => $cancellation_reason });
1275
1276     #step 2 launch the subroutine of the others reserves
1277     ( $messages, $nextreservinfo ) = GetOtherReserves($itemnumber);
1278
1279     return ( $messages, $nextreservinfo->{borrowernumber} );
1280 }
1281
1282 =head2 ModReserveMinusPriority
1283
1284   &ModReserveMinusPriority($itemnumber,$borrowernumber,$biblionumber)
1285
1286 Reduce the values of queued list
1287
1288 =cut
1289
1290 sub ModReserveMinusPriority {
1291     my ( $itemnumber, $reserve_id ) = @_;
1292
1293     #first step update the value of the first person on reserv
1294     my $dbh   = C4::Context->dbh;
1295     my $query = "
1296         UPDATE reserves
1297         SET    priority = 0 , itemnumber = ?
1298         WHERE  reserve_id = ?
1299     ";
1300     my $sth_upd = $dbh->prepare($query);
1301     $sth_upd->execute( $itemnumber, $reserve_id );
1302     # second step update all others reserves
1303     _FixPriority({ reserve_id => $reserve_id, rank => '0' });
1304 }
1305
1306 =head2 IsAvailableForItemLevelRequest
1307
1308   my $is_available = IsAvailableForItemLevelRequest( $item_record, $borrower_record, $pickup_branchcode );
1309
1310 Checks whether a given item record is available for an
1311 item-level hold request.  An item is available if
1312
1313 * it is not lost AND
1314 * it is not damaged AND
1315 * it is not withdrawn AND
1316 * a waiting or in transit reserve is placed on
1317 * does not have a not for loan value > 0
1318
1319 Need to check the issuingrules onshelfholds column,
1320 if this is set items on the shelf can be placed on hold
1321
1322 Note that IsAvailableForItemLevelRequest() does not
1323 check if the staff operator is authorized to place
1324 a request on the item - in particular,
1325 this routine does not check IndependentBranches
1326 and canreservefromotherbranches.
1327
1328 Note also that this subroutine does not checks smart
1329 rules limits for item by reservesallowed/holds_per_record
1330 values, this complemented in calling code with calls and
1331 checks with CanItemBeReserved or CanBookBeReserved.
1332
1333 =cut
1334
1335 sub IsAvailableForItemLevelRequest {
1336     my $item                = shift;
1337     my $patron              = shift;
1338     my $pickup_branchcode   = shift;
1339     # items_any_available is precalculated status passed from request.pl when set of items
1340     # looped outside of IsAvailableForItemLevelRequest to avoid nested loops:
1341     my $items_any_available = shift;
1342
1343     my $dbh = C4::Context->dbh;
1344     # must check the notforloan setting of the itemtype
1345     # FIXME - a lot of places in the code do this
1346     #         or something similar - need to be
1347     #         consolidated
1348     my $itemtype = $item->effective_itemtype;
1349     return 0
1350       unless defined $itemtype;
1351     my $notforloan_per_itemtype = Koha::ItemTypes->find($itemtype)->notforloan;
1352
1353     return 0 if
1354         $notforloan_per_itemtype ||
1355         $item->itemlost        ||
1356         $item->notforloan > 0  || # item with negative or zero notforloan value is holdable
1357         $item->withdrawn        ||
1358         ($item->damaged && !C4::Context->preference('AllowHoldsOnDamagedItems'));
1359
1360     if ($pickup_branchcode) {
1361         my $destination = Koha::Libraries->find($pickup_branchcode);
1362         return 0 unless $destination;
1363         return 0 unless $destination->pickup_location;
1364         return 0 unless $item->can_be_transferred( { to => $destination } );
1365         my $reserves_control_branch =
1366             GetReservesControlBranch( $item->unblessed(), $patron->unblessed() );
1367         my $branchitemrule =
1368             C4::Circulation::GetBranchItemRule( $reserves_control_branch, $item->itype );
1369         my $home_library = Koha::Libraries->find( {branchcode => $item->homebranch} );
1370         return 0 unless $branchitemrule->{hold_fulfillment_policy} ne 'holdgroup' || $home_library->validate_hold_sibling( {branchcode => $pickup_branchcode} );
1371     }
1372
1373     my $on_shelf_holds = Koha::CirculationRules->get_onshelfholds_policy( { item => $item, patron => $patron } );
1374
1375     if ( $on_shelf_holds == 1 ) {
1376         return 1;
1377     } elsif ( $on_shelf_holds == 2 ) {
1378
1379         # if we have this param predefined from outer caller sub, we just need
1380         # to return it, so we saving from having loop inside other loop:
1381         return  $items_any_available ? 0 : 1
1382             if defined $items_any_available;
1383
1384         my $any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $item->biblionumber, patron => $patron });
1385         return $any_available ? 0 : 1;
1386     } else { # on_shelf_holds == 0 "If any unavailable" (the description is rather cryptic and could still be improved)
1387         return $item->onloan || IsItemOnHoldAndFound( $item->itemnumber );
1388     }
1389 }
1390
1391 =head2 ItemsAnyAvailableAndNotRestricted
1392
1393   ItemsAnyAvailableAndNotRestricted( { biblionumber => $biblionumber, patron => $patron });
1394
1395 This function checks all items for specified biblionumber (numeric) against patron (object)
1396 and returns true (1) if at least one item available for loan/check out/present/not held
1397 and also checks other parameters logic which not restricts item for hold at all (for ex.
1398 AllowHoldsOnDamagedItems or 'holdallowed' own/sibling library)
1399
1400 =cut
1401
1402 sub ItemsAnyAvailableAndNotRestricted {
1403     my $param = shift;
1404
1405     my @items = Koha::Items->search( { biblionumber => $param->{biblionumber} } );
1406
1407     foreach my $i (@items) {
1408         my $reserves_control_branch =
1409             GetReservesControlBranch( $i->unblessed(), $param->{patron}->unblessed );
1410         my $branchitemrule =
1411             C4::Circulation::GetBranchItemRule( $reserves_control_branch, $i->itype );
1412         my $item_library = Koha::Libraries->find( { branchcode => $i->homebranch } );
1413
1414         # we can return (end the loop) when first one found:
1415         return 1
1416             unless $i->itemlost
1417             || $i->notforloan # items with non-zero notforloan cannot be checked out
1418             || $i->withdrawn
1419             || $i->onloan
1420             || IsItemOnHoldAndFound( $i->id )
1421             || ( $i->damaged
1422                  && ! C4::Context->preference('AllowHoldsOnDamagedItems') )
1423             || Koha::ItemTypes->find( $i->effective_itemtype() )->notforloan
1424             || $branchitemrule->{holdallowed} eq 'from_home_library' && $param->{patron}->branchcode ne $i->homebranch
1425             || $branchitemrule->{holdallowed} eq 'from_local_hold_group' && ! $item_library->validate_hold_sibling( { branchcode => $param->{patron}->branchcode } )
1426             || CanItemBeReserved( $param->{patron}->borrowernumber, $i->id )->{status} ne 'OK';
1427     }
1428
1429     return 0;
1430 }
1431
1432 =head2 AlterPriority
1433
1434   AlterPriority( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority );
1435
1436 This function changes a reserve's priority up, down, to the top, or to the bottom.
1437 Input: $where is 'up', 'down', 'top' or 'bottom'. Biblionumber, Date reserve was placed
1438
1439 =cut
1440
1441 sub AlterPriority {
1442     my ( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority ) = @_;
1443
1444     my $hold = Koha::Holds->find( $reserve_id );
1445     return unless $hold;
1446
1447     if ( $hold->cancellationdate ) {
1448         warn "I cannot alter the priority for reserve_id $reserve_id, the reserve has been cancelled (" . $hold->cancellationdate . ')';
1449         return;
1450     }
1451
1452     if ( $where eq 'up' ) {
1453       return unless $prev_priority;
1454       _FixPriority({ reserve_id => $reserve_id, rank => $prev_priority })
1455     } elsif ( $where eq 'down' ) {
1456       return unless $next_priority;
1457       _FixPriority({ reserve_id => $reserve_id, rank => $next_priority })
1458     } elsif ( $where eq 'top' ) {
1459       _FixPriority({ reserve_id => $reserve_id, rank => $first_priority })
1460     } elsif ( $where eq 'bottom' ) {
1461       _FixPriority({ reserve_id => $reserve_id, rank => $last_priority });
1462     }
1463
1464     # FIXME Should return the new priority
1465 }
1466
1467 =head2 ToggleLowestPriority
1468
1469   ToggleLowestPriority( $borrowernumber, $biblionumber );
1470
1471 This function sets the lowestPriority field to true if is false, and false if it is true.
1472
1473 =cut
1474
1475 sub ToggleLowestPriority {
1476     my ( $reserve_id ) = @_;
1477
1478     my $dbh = C4::Context->dbh;
1479
1480     my $sth = $dbh->prepare( "UPDATE reserves SET lowestPriority = NOT lowestPriority WHERE reserve_id = ?");
1481     $sth->execute( $reserve_id );
1482
1483     _FixPriority({ reserve_id => $reserve_id, rank => '999999' });
1484 }
1485
1486 =head2 ToggleSuspend
1487
1488   ToggleSuspend( $reserve_id );
1489
1490 This function sets the suspend field to true if is false, and false if it is true.
1491 If the reserve is currently suspended with a suspend_until date, that date will
1492 be cleared when it is unsuspended.
1493
1494 =cut
1495
1496 sub ToggleSuspend {
1497     my ( $reserve_id, $suspend_until ) = @_;
1498
1499     $suspend_until = dt_from_string($suspend_until) if ($suspend_until);
1500
1501     my $hold = Koha::Holds->find( $reserve_id );
1502
1503     if ( $hold->is_suspended ) {
1504         $hold->resume()
1505     } else {
1506         $hold->suspend_hold( $suspend_until );
1507     }
1508 }
1509
1510 =head2 SuspendAll
1511
1512   SuspendAll(
1513       borrowernumber   => $borrowernumber,
1514       [ biblionumber   => $biblionumber, ]
1515       [ suspend_until  => $suspend_until, ]
1516       [ suspend        => $suspend ]
1517   );
1518
1519   This function accepts a set of hash keys as its parameters.
1520   It requires either borrowernumber or biblionumber, or both.
1521
1522   suspend_until is wholly optional.
1523
1524 =cut
1525
1526 sub SuspendAll {
1527     my %params = @_;
1528
1529     my $borrowernumber = $params{'borrowernumber'} || undef;
1530     my $biblionumber   = $params{'biblionumber'}   || undef;
1531     my $suspend_until  = $params{'suspend_until'}  || undef;
1532     my $suspend = defined( $params{'suspend'} ) ? $params{'suspend'} : 1;
1533
1534     $suspend_until = eval { dt_from_string($suspend_until) }
1535       if ( defined($suspend_until) );
1536
1537     return unless ( $borrowernumber || $biblionumber );
1538
1539     my $params;
1540     $params->{found}          = undef;
1541     $params->{borrowernumber} = $borrowernumber if $borrowernumber;
1542     $params->{biblionumber}   = $biblionumber if $biblionumber;
1543
1544     my @holds = Koha::Holds->search($params);
1545
1546     if ($suspend) {
1547         map { $_->suspend_hold($suspend_until) } @holds;
1548     }
1549     else {
1550         map { $_->resume() } @holds;
1551     }
1552 }
1553
1554
1555 =head2 _FixPriority
1556
1557   _FixPriority({
1558     reserve_id => $reserve_id,
1559     [rank => $rank,]
1560     [ignoreSetLowestRank => $ignoreSetLowestRank]
1561   });
1562
1563   or
1564
1565   _FixPriority({ biblionumber => $biblionumber});
1566
1567 This routine adjusts the priority of a hold request and holds
1568 on the same bib.
1569
1570 In the first form, where a reserve_id is passed, the priority of the
1571 hold is set to supplied rank, and other holds for that bib are adjusted
1572 accordingly.  If the rank is "del", the hold is cancelled.  If no rank
1573 is supplied, all of the holds on that bib have their priority adjusted
1574 as if the second form had been used.
1575
1576 In the second form, where a biblionumber is passed, the holds on that
1577 bib (that are not captured) are sorted in order of increasing priority,
1578 then have reserves.priority set so that the first non-captured hold
1579 has its priority set to 1, the second non-captured hold has its priority
1580 set to 2, and so forth.
1581
1582 In both cases, holds that have the lowestPriority flag on are have their
1583 priority adjusted to ensure that they remain at the end of the line.
1584
1585 Note that the ignoreSetLowestRank parameter is meant to be used only
1586 when _FixPriority calls itself.
1587
1588 =cut
1589
1590 sub _FixPriority {
1591     my ( $params ) = @_;
1592     my $reserve_id = $params->{reserve_id};
1593     my $rank = $params->{rank} // '';
1594     my $ignoreSetLowestRank = $params->{ignoreSetLowestRank};
1595     my $biblionumber = $params->{biblionumber};
1596
1597     my $dbh = C4::Context->dbh;
1598
1599     my $hold;
1600     if ( $reserve_id ) {
1601         $hold = Koha::Holds->find( $reserve_id );
1602         if (!defined $hold){
1603             # may have already been checked out and hold fulfilled
1604             $hold = Koha::Old::Holds->find( $reserve_id );
1605         }
1606         return unless $hold;
1607     }
1608
1609     unless ( $biblionumber ) { # FIXME This is a very weird API
1610         $biblionumber = $hold->biblionumber;
1611     }
1612
1613     if ( $rank eq "del" ) { # FIXME will crash if called without $hold
1614         $hold->cancel;
1615     }
1616     elsif ( $reserve_id && ( $rank eq "W" || $rank eq "0" ) ) {
1617
1618         # make sure priority for waiting or in-transit items is 0
1619         my $query = "
1620             UPDATE reserves
1621             SET    priority = 0
1622             WHERE reserve_id = ?
1623             AND found IN ('W', 'T', 'P')
1624         ";
1625         my $sth = $dbh->prepare($query);
1626         $sth->execute( $reserve_id );
1627     }
1628     my @priority;
1629
1630     # get whats left
1631     my $query = "
1632         SELECT reserve_id, borrowernumber, reservedate
1633         FROM   reserves
1634         WHERE  biblionumber   = ?
1635           AND  ((found <> 'W' AND found <> 'T' AND found <> 'P') OR found IS NULL)
1636         ORDER BY priority ASC
1637     ";
1638     my $sth = $dbh->prepare($query);
1639     $sth->execute( $biblionumber );
1640     while ( my $line = $sth->fetchrow_hashref ) {
1641         push( @priority,     $line );
1642     }
1643
1644     # FIXME This whole sub must be rewritten, especially to highlight what is done when reserve_id is not given
1645     # To find the matching index
1646     my $i;
1647     my $key = -1;    # to allow for 0 to be a valid result
1648     for ( $i = 0 ; $i < @priority ; $i++ ) {
1649         if ( $reserve_id && $reserve_id == $priority[$i]->{'reserve_id'} ) {
1650             $key = $i;    # save the index
1651             last;
1652         }
1653     }
1654
1655     # if index exists in array then move it to new position
1656     if ( $key > -1 && $rank ne 'del' && $rank > 0 ) {
1657         my $new_rank = $rank - 1; # $new_rank is what you want the new index to be in the array
1658         my $moving_item = splice( @priority, $key, 1 );
1659         $new_rank = scalar @priority if $new_rank > scalar @priority;
1660         splice( @priority, $new_rank, 0, $moving_item );
1661     }
1662
1663     # now fix the priority on those that are left....
1664     $query = "
1665         UPDATE reserves
1666         SET    priority = ?
1667         WHERE  reserve_id = ?
1668     ";
1669     $sth = $dbh->prepare($query);
1670     for ( my $j = 0 ; $j < @priority ; $j++ ) {
1671         $sth->execute(
1672             $j + 1,
1673             $priority[$j]->{'reserve_id'}
1674         );
1675     }
1676
1677     unless ( $ignoreSetLowestRank ) {
1678         $sth = $dbh->prepare( "SELECT reserve_id FROM reserves WHERE lowestPriority = 1 AND biblionumber = ? ORDER BY priority" );
1679         $sth->execute($biblionumber);
1680       while ( my $res = $sth->fetchrow_hashref() ) {
1681         _FixPriority({
1682             reserve_id => $res->{'reserve_id'},
1683             rank => '999999',
1684             ignoreSetLowestRank => 1
1685         });
1686       }
1687     }
1688 }
1689
1690 =head2 _Findgroupreserve
1691
1692   @results = &_Findgroupreserve($biblioitemnumber, $biblionumber, $itemnumber, $lookahead, $ignore_borrowers);
1693
1694 Looks for a holds-queue based item-specific match first, then for a holds-queue title-level match, returning the
1695 first match found.  If neither, then we look for non-holds-queue based holds.
1696 Lookahead is the number of days to look in advance.
1697
1698 C<&_Findgroupreserve> returns :
1699 C<@results> is an array of references-to-hash whose keys are mostly
1700 fields from the reserves table of the Koha database, plus
1701 C<biblioitemnumber>.
1702
1703 This routine with either return:
1704 1 - Item specific holds from the holds queue
1705 2 - Title level holds from the holds queue
1706 3 - All holds for this biblionumber
1707
1708 All return values will respect any borrowernumbers passed as arrayref in $ignore_borrowers
1709
1710 =cut
1711
1712 sub _Findgroupreserve {
1713     my ( $bibitem, $biblio, $itemnumber, $lookahead, $ignore_borrowers) = @_;
1714     my $dbh   = C4::Context->dbh;
1715
1716     # TODO: consolidate at least the SELECT portion of the first 2 queries to a common $select var.
1717     # check for exact targeted match
1718     my $item_level_target_query = qq{
1719         SELECT reserves.biblionumber        AS biblionumber,
1720                reserves.borrowernumber      AS borrowernumber,
1721                reserves.reservedate         AS reservedate,
1722                reserves.branchcode          AS branchcode,
1723                reserves.cancellationdate    AS cancellationdate,
1724                reserves.found               AS found,
1725                reserves.reservenotes        AS reservenotes,
1726                reserves.priority            AS priority,
1727                reserves.timestamp           AS timestamp,
1728                biblioitems.biblioitemnumber AS biblioitemnumber,
1729                reserves.itemnumber          AS itemnumber,
1730                reserves.reserve_id          AS reserve_id,
1731                reserves.itemtype            AS itemtype,
1732                reserves.non_priority        AS non_priority
1733         FROM reserves
1734         JOIN biblioitems USING (biblionumber)
1735         JOIN hold_fill_targets USING (reserve_id)
1736         WHERE found IS NULL
1737         AND priority > 0
1738         AND item_level_request = 1
1739         AND hold_fill_targets.itemnumber = ?
1740         AND reservedate <= DATE_ADD(NOW(),INTERVAL ? DAY)
1741         AND suspend = 0
1742         ORDER BY priority
1743     };
1744     my $sth = $dbh->prepare($item_level_target_query);
1745     $sth->execute($itemnumber, $lookahead||0);
1746     my @results;
1747     if ( my $data = $sth->fetchrow_hashref ) {
1748         push( @results, $data )
1749           unless any{ $data->{borrowernumber} eq $_ } @$ignore_borrowers ;
1750     }
1751     return @results if @results;
1752
1753     # check for title-level targeted match
1754     my $title_level_target_query = qq{
1755         SELECT reserves.biblionumber        AS biblionumber,
1756                reserves.borrowernumber      AS borrowernumber,
1757                reserves.reservedate         AS reservedate,
1758                reserves.branchcode          AS branchcode,
1759                reserves.cancellationdate    AS cancellationdate,
1760                reserves.found               AS found,
1761                reserves.reservenotes        AS reservenotes,
1762                reserves.priority            AS priority,
1763                reserves.timestamp           AS timestamp,
1764                biblioitems.biblioitemnumber AS biblioitemnumber,
1765                reserves.itemnumber          AS itemnumber,
1766                reserves.reserve_id          AS reserve_id,
1767                reserves.itemtype            AS itemtype,
1768                reserves.non_priority        AS non_priority
1769         FROM reserves
1770         JOIN biblioitems USING (biblionumber)
1771         JOIN hold_fill_targets USING (reserve_id)
1772         WHERE found IS NULL
1773         AND priority > 0
1774         AND item_level_request = 0
1775         AND hold_fill_targets.itemnumber = ?
1776         AND reservedate <= DATE_ADD(NOW(),INTERVAL ? DAY)
1777         AND suspend = 0
1778         ORDER BY priority
1779     };
1780     $sth = $dbh->prepare($title_level_target_query);
1781     $sth->execute($itemnumber, $lookahead||0);
1782     @results = ();
1783     if ( my $data = $sth->fetchrow_hashref ) {
1784         push( @results, $data )
1785           unless any{ $data->{borrowernumber} eq $_ } @$ignore_borrowers ;
1786     }
1787     return @results if @results;
1788
1789     my $query = qq{
1790         SELECT reserves.biblionumber               AS biblionumber,
1791                reserves.borrowernumber             AS borrowernumber,
1792                reserves.reservedate                AS reservedate,
1793                reserves.waitingdate                AS waitingdate,
1794                reserves.branchcode                 AS branchcode,
1795                reserves.cancellationdate           AS cancellationdate,
1796                reserves.found                      AS found,
1797                reserves.reservenotes               AS reservenotes,
1798                reserves.priority                   AS priority,
1799                reserves.timestamp                  AS timestamp,
1800                reserves.itemnumber                 AS itemnumber,
1801                reserves.reserve_id                 AS reserve_id,
1802                reserves.itemtype                   AS itemtype,
1803                reserves.non_priority        AS non_priority
1804         FROM reserves
1805         WHERE reserves.biblionumber = ?
1806           AND (reserves.itemnumber IS NULL OR reserves.itemnumber = ?)
1807           AND reserves.reservedate <= DATE_ADD(NOW(),INTERVAL ? DAY)
1808           AND suspend = 0
1809           ORDER BY priority
1810     };
1811     $sth = $dbh->prepare($query);
1812     $sth->execute( $biblio, $itemnumber, $lookahead||0);
1813     @results = ();
1814     while ( my $data = $sth->fetchrow_hashref ) {
1815         push( @results, $data )
1816           unless any{ $data->{borrowernumber} eq $_ } @$ignore_borrowers ;
1817     }
1818     return @results;
1819 }
1820
1821 =head2 _koha_notify_reserve
1822
1823   _koha_notify_reserve( $hold->reserve_id );
1824
1825 Sends a notification to the patron that their hold has been filled (through
1826 ModReserveAffect, _not_ ModReserveFill)
1827
1828 The letter code for this notice may be found using the following query:
1829
1830     select distinct letter_code
1831     from message_transports
1832     inner join message_attributes using (message_attribute_id)
1833     where message_name = 'Hold_Filled'
1834
1835 This will probably sipmly be 'HOLD', but because it is defined in the database,
1836 it is subject to addition or change.
1837
1838 The following tables are availalbe witin the notice:
1839
1840     branches
1841     borrowers
1842     biblio
1843     biblioitems
1844     reserves
1845     items
1846
1847 =cut
1848
1849 sub _koha_notify_reserve {
1850     my $reserve_id = shift;
1851     my $hold = Koha::Holds->find($reserve_id);
1852     my $borrowernumber = $hold->borrowernumber;
1853
1854     my $patron = Koha::Patrons->find( $borrowernumber );
1855
1856     # Try to get the borrower's email address
1857     my $to_address = $patron->notice_email_address;
1858
1859     my $messagingprefs = C4::Members::Messaging::GetMessagingPreferences( {
1860             borrowernumber => $borrowernumber,
1861             message_name => 'Hold_Filled'
1862     } );
1863
1864     my $library = Koha::Libraries->find( $hold->branchcode );
1865     my $admin_email_address = $library->from_email_address;
1866     $library = $library->unblessed;
1867
1868     my %letter_params = (
1869         module => 'reserves',
1870         branchcode => $hold->branchcode,
1871         lang => $patron->lang,
1872         tables => {
1873             'branches'       => $library,
1874             'borrowers'      => $patron->unblessed,
1875             'biblio'         => $hold->biblionumber,
1876             'biblioitems'    => $hold->biblionumber,
1877             'reserves'       => $hold->unblessed,
1878             'items'          => $hold->itemnumber,
1879         },
1880     );
1881
1882     my $notification_sent = 0; #Keeping track if a Hold_filled message is sent. If no message can be sent, then default to a print message.
1883     my $send_notification = sub {
1884         my ( $mtt, $letter_code ) = (@_);
1885         return unless defined $letter_code;
1886         $letter_params{letter_code} = $letter_code;
1887         $letter_params{message_transport_type} = $mtt;
1888         my $letter =  C4::Letters::GetPreparedLetter ( %letter_params );
1889         unless ($letter) {
1890             warn "Could not find a letter called '$letter_params{'letter_code'}' for $mtt in the 'reserves' module";
1891             return;
1892         }
1893
1894         C4::Letters::EnqueueLetter( {
1895             letter => $letter,
1896             borrowernumber => $borrowernumber,
1897             from_address => $admin_email_address,
1898             message_transport_type => $mtt,
1899         } );
1900     };
1901
1902     while ( my ( $mtt, $letter_code ) = each %{ $messagingprefs->{transports} } ) {
1903         next if (
1904                ( $mtt eq 'email' and not $to_address ) # No email address
1905             or ( $mtt eq 'sms'   and not $patron->smsalertnumber ) # No SMS number
1906             or ( $mtt eq 'itiva' and C4::Context->preference('TalkingTechItivaPhoneNotification') ) # Notice is handled by TalkingTech_itiva_outbound.pl
1907             or ( $mtt eq 'phone' and not $patron->phone ) # No phone number to call
1908         );
1909
1910         &$send_notification($mtt, $letter_code);
1911         $notification_sent++;
1912     }
1913     #Making sure that a print notification is sent if no other transport types can be utilized.
1914     if (! $notification_sent) {
1915         &$send_notification('print', 'HOLD');
1916     }
1917
1918 }
1919
1920 =head2 _ShiftPriorityByDateAndPriority
1921
1922   $new_priority = _ShiftPriorityByDateAndPriority( $biblionumber, $reservedate, $priority );
1923
1924 This increments the priority of all reserves after the one
1925 with either the lowest date after C<$reservedate>
1926 or the lowest priority after C<$priority>.
1927
1928 It effectively makes room for a new reserve to be inserted with a certain
1929 priority, which is returned.
1930
1931 This is most useful when the reservedate can be set by the user.  It allows
1932 the new reserve to be placed before other reserves that have a later
1933 reservedate.  Since priority also is set by the form in reserves/request.pl
1934 the sub accounts for that too.
1935
1936 =cut
1937
1938 sub _ShiftPriorityByDateAndPriority {
1939     my ( $biblio, $resdate, $new_priority ) = @_;
1940
1941     my $dbh = C4::Context->dbh;
1942     my $query = "SELECT priority FROM reserves WHERE biblionumber = ? AND ( reservedate > ? OR priority > ? ) ORDER BY priority ASC LIMIT 1";
1943     my $sth = $dbh->prepare( $query );
1944     $sth->execute( $biblio, $resdate, $new_priority );
1945     my $min_priority = $sth->fetchrow;
1946     # if no such matches are found, $new_priority remains as original value
1947     $new_priority = $min_priority if ( $min_priority );
1948
1949     # Shift the priority up by one; works in conjunction with the next SQL statement
1950     $query = "UPDATE reserves
1951               SET priority = priority+1
1952               WHERE biblionumber = ?
1953               AND borrowernumber = ?
1954               AND reservedate = ?
1955               AND found IS NULL";
1956     my $sth_update = $dbh->prepare( $query );
1957
1958     # Select all reserves for the biblio with priority greater than $new_priority, and order greatest to least
1959     $query = "SELECT borrowernumber, reservedate FROM reserves WHERE priority >= ? AND biblionumber = ? ORDER BY priority DESC";
1960     $sth = $dbh->prepare( $query );
1961     $sth->execute( $new_priority, $biblio );
1962     while ( my $row = $sth->fetchrow_hashref ) {
1963         $sth_update->execute( $biblio, $row->{borrowernumber}, $row->{reservedate} );
1964     }
1965
1966     return $new_priority;  # so the caller knows what priority they wind up receiving
1967 }
1968
1969 =head2 MoveReserve
1970
1971   MoveReserve( $itemnumber, $borrowernumber, $cancelreserve )
1972
1973 Use when checking out an item to handle reserves
1974 If $cancelreserve boolean is set to true, it will remove existing reserve
1975
1976 =cut
1977
1978 sub MoveReserve {
1979     my ( $itemnumber, $borrowernumber, $cancelreserve ) = @_;
1980
1981     $cancelreserve //= 0;
1982
1983     my $lookahead = C4::Context->preference('ConfirmFutureHolds'); #number of days to look for future holds
1984     my ( $restype, $res, undef ) = CheckReserves( $itemnumber, undef, $lookahead );
1985     return unless $res;
1986
1987     my $biblionumber     =  $res->{biblionumber};
1988
1989     if ($res->{borrowernumber} == $borrowernumber) {
1990         ModReserveFill($res);
1991     }
1992     else {
1993         # warn "Reserved";
1994         # The item is reserved by someone else.
1995         # Find this item in the reserves
1996
1997         my $borr_res  = Koha::Holds->search({
1998             borrowernumber => $borrowernumber,
1999             biblionumber   => $biblionumber,
2000         },{
2001             order_by       => 'priority'
2002         })->next();
2003
2004         if ( $borr_res ) {
2005             # The item is reserved by the current patron
2006             ModReserveFill($borr_res->unblessed);
2007         }
2008
2009         if ( $cancelreserve eq 'revert' ) { ## Revert waiting reserve to priority 1
2010             RevertWaitingStatus({ itemnumber => $itemnumber });
2011         }
2012         elsif ( $cancelreserve eq 'cancel' || $cancelreserve ) { # cancel reserves on this item
2013             my $hold = Koha::Holds->find( $res->{reserve_id} );
2014             $hold->cancel;
2015         }
2016     }
2017 }
2018
2019 =head2 MergeHolds
2020
2021   MergeHolds($dbh,$to_biblio, $from_biblio);
2022
2023 This shifts the holds from C<$from_biblio> to C<$to_biblio> and reorders them by the date they were placed
2024
2025 =cut
2026
2027 sub MergeHolds {
2028     my ( $dbh, $to_biblio, $from_biblio ) = @_;
2029     my $sth = $dbh->prepare(
2030         "SELECT count(*) as reserve_count FROM reserves WHERE biblionumber = ?"
2031     );
2032     $sth->execute($from_biblio);
2033     if ( my $data = $sth->fetchrow_hashref() ) {
2034
2035         # holds exist on old record, if not we don't need to do anything
2036         $sth = $dbh->prepare(
2037             "UPDATE reserves SET biblionumber = ? WHERE biblionumber = ?");
2038         $sth->execute( $to_biblio, $from_biblio );
2039
2040         # Reorder by date
2041         # don't reorder those already waiting
2042
2043         $sth = $dbh->prepare(
2044 "SELECT * FROM reserves WHERE biblionumber = ? AND (found NOT IN ('W', 'T', 'P') OR found is NULL) ORDER BY reservedate ASC"
2045         );
2046         my $upd_sth = $dbh->prepare(
2047 "UPDATE reserves SET priority = ? WHERE biblionumber = ? AND borrowernumber = ?
2048         AND reservedate = ? AND (itemnumber = ? or itemnumber is NULL) "
2049         );
2050         $sth->execute( $to_biblio );
2051         my $priority = 1;
2052         while ( my $reserve = $sth->fetchrow_hashref() ) {
2053             $upd_sth->execute(
2054                 $priority,                    $to_biblio,
2055                 $reserve->{'borrowernumber'}, $reserve->{'reservedate'},
2056                 $reserve->{'itemnumber'}
2057             );
2058             $priority++;
2059         }
2060     }
2061 }
2062
2063 =head2 RevertWaitingStatus
2064
2065   RevertWaitingStatus({ itemnumber => $itemnumber });
2066
2067   Reverts a 'waiting' hold back to a regular hold with a priority of 1.
2068
2069   Caveat: Any waiting hold fixed with RevertWaitingStatus will be an
2070           item level hold, even if it was only a bibliolevel hold to
2071           begin with. This is because we can no longer know if a hold
2072           was item-level or bib-level after a hold has been set to
2073           waiting status.
2074
2075 =cut
2076
2077 sub RevertWaitingStatus {
2078     my ( $params ) = @_;
2079     my $itemnumber = $params->{'itemnumber'};
2080
2081     return unless ( $itemnumber );
2082
2083     my $dbh = C4::Context->dbh;
2084
2085     ## Get the waiting reserve we want to revert
2086     my $hold = Koha::Holds->search(
2087         {
2088             itemnumber => $itemnumber,
2089             found => { not => undef },
2090         }
2091     )->next;
2092
2093     ## Increment the priority of all other non-waiting
2094     ## reserves for this bib record
2095     my $holds = Koha::Holds->search({ biblionumber => $hold->biblionumber, priority => { '>' => 0 } })
2096                            ->update({ priority => \'priority + 1' }, { no_triggers => 1 });
2097
2098     ## Fix up the currently waiting reserve
2099     $hold->set(
2100         {
2101             priority    => 1,
2102             found       => undef,
2103             waitingdate => undef,
2104             itemnumber  => $hold->item_level_hold ? $hold->itemnumber : undef,
2105         }
2106     )->store();
2107
2108     _FixPriority( { biblionumber => $hold->biblionumber } );
2109
2110     return $hold;
2111 }
2112
2113 =head2 ReserveSlip
2114
2115 ReserveSlip(
2116     {
2117         branchcode     => $branchcode,
2118         borrowernumber => $borrowernumber,
2119         biblionumber   => $biblionumber,
2120         [ itemnumber   => $itemnumber, ]
2121         [ barcode      => $barcode, ]
2122     }
2123   )
2124
2125 Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
2126
2127 The letter code will be HOLD_SLIP, and the following tables are
2128 available within the slip:
2129
2130     reserves
2131     branches
2132     borrowers
2133     biblio
2134     biblioitems
2135     items
2136
2137 =cut
2138
2139 sub ReserveSlip {
2140     my ($args) = @_;
2141     my $branchcode     = $args->{branchcode};
2142     my $reserve_id = $args->{reserve_id};
2143
2144     my $hold = Koha::Holds->find($reserve_id);
2145     return unless $hold;
2146
2147     my $patron = $hold->borrower;
2148     my $reserve = $hold->unblessed;
2149
2150     return  C4::Letters::GetPreparedLetter (
2151         module => 'circulation',
2152         letter_code => 'HOLD_SLIP',
2153         branchcode => $branchcode,
2154         lang => $patron->lang,
2155         tables => {
2156             'reserves'    => $reserve,
2157             'branches'    => $reserve->{branchcode},
2158             'borrowers'   => $reserve->{borrowernumber},
2159             'biblio'      => $reserve->{biblionumber},
2160             'biblioitems' => $reserve->{biblionumber},
2161             'items'       => $reserve->{itemnumber},
2162         },
2163     );
2164 }
2165
2166 =head2 GetReservesControlBranch
2167
2168   my $reserves_control_branch = GetReservesControlBranch($item, $borrower);
2169
2170   Return the branchcode to be used to determine which reserves
2171   policy applies to a transaction.
2172
2173   C<$item> is a hashref for an item. Only 'homebranch' is used.
2174
2175   C<$borrower> is a hashref to borrower. Only 'branchcode' is used.
2176
2177 =cut
2178
2179 sub GetReservesControlBranch {
2180     my ( $item, $borrower ) = @_;
2181
2182     my $reserves_control = C4::Context->preference('ReservesControlBranch');
2183
2184     my $branchcode =
2185         ( $reserves_control eq 'ItemHomeLibrary' ) ? $item->{'homebranch'}
2186       : ( $reserves_control eq 'PatronLibrary' )   ? $borrower->{'branchcode'}
2187       :                                              undef;
2188
2189     return $branchcode;
2190 }
2191
2192 =head2 CalculatePriority
2193
2194     my $p = CalculatePriority($biblionumber, $resdate);
2195
2196 Calculate priority for a new reserve on biblionumber, placing it at
2197 the end of the line of all holds whose start date falls before
2198 the current system time and that are neither on the hold shelf
2199 or in transit.
2200
2201 The reserve date parameter is optional; if it is supplied, the
2202 priority is based on the set of holds whose start date falls before
2203 the parameter value.
2204
2205 After calculation of this priority, it is recommended to call
2206 _ShiftPriorityByDateAndPriority. Note that this is currently done in
2207 AddReserves.
2208
2209 =cut
2210
2211 sub CalculatePriority {
2212     my ( $biblionumber, $resdate ) = @_;
2213
2214     my $sql = q{
2215         SELECT COUNT(*) FROM reserves
2216         WHERE biblionumber = ?
2217         AND   priority > 0
2218         AND   (found IS NULL OR found = '')
2219     };
2220     #skip found==W or found==T or found==P (waiting, transit or processing holds)
2221     if( $resdate ) {
2222         $sql.= ' AND ( reservedate <= ? )';
2223     }
2224     else {
2225         $sql.= ' AND ( reservedate < NOW() )';
2226     }
2227     my $dbh = C4::Context->dbh();
2228     my @row = $dbh->selectrow_array(
2229         $sql,
2230         undef,
2231         $resdate ? ($biblionumber, $resdate) : ($biblionumber)
2232     );
2233
2234     return @row ? $row[0]+1 : 1;
2235 }
2236
2237 =head2 IsItemOnHoldAndFound
2238
2239     my $bool = IsItemFoundHold( $itemnumber );
2240
2241     Returns true if the item is currently on hold
2242     and that hold has a non-null found status ( W, T, etc. )
2243
2244 =cut
2245
2246 sub IsItemOnHoldAndFound {
2247     my ($itemnumber) = @_;
2248
2249     my $rs = Koha::Database->new()->schema()->resultset('Reserve');
2250
2251     my $found = $rs->count(
2252         {
2253             itemnumber => $itemnumber,
2254             found      => { '!=' => undef }
2255         }
2256     );
2257
2258     return $found;
2259 }
2260
2261 =head2 GetMaxPatronHoldsForRecord
2262
2263 my $holds_per_record = ReservesControlBranch( $borrowernumber, $biblionumber );
2264
2265 For multiple holds on a given record for a given patron, the max
2266 number of record level holds that a patron can be placed is the highest
2267 value of the holds_per_record rule for each item if the record for that
2268 patron. This subroutine finds and returns the highest holds_per_record
2269 rule value for a given patron id and record id.
2270
2271 =cut
2272
2273 sub GetMaxPatronHoldsForRecord {
2274     my ( $borrowernumber, $biblionumber ) = @_;
2275
2276     my $patron = Koha::Patrons->find($borrowernumber);
2277     my @items = Koha::Items->search( { biblionumber => $biblionumber } );
2278
2279     my $controlbranch = C4::Context->preference('ReservesControlBranch');
2280
2281     my $categorycode = $patron->categorycode;
2282     my $branchcode;
2283     $branchcode = $patron->branchcode if ( $controlbranch eq "PatronLibrary" );
2284
2285     my $max = 0;
2286     foreach my $item (@items) {
2287         my $itemtype = $item->effective_itemtype();
2288
2289         $branchcode = $item->homebranch if ( $controlbranch eq "ItemHomeLibrary" );
2290
2291         my $rule = Koha::CirculationRules->get_effective_rule({
2292             categorycode => $categorycode,
2293             itemtype     => $itemtype,
2294             branchcode   => $branchcode,
2295             rule_name    => 'holds_per_record'
2296         });
2297         my $holds_per_record = $rule ? $rule->rule_value : 0;
2298         $max = $holds_per_record if $holds_per_record > $max;
2299     }
2300
2301     return $max;
2302 }
2303
2304 =head1 AUTHOR
2305
2306 Koha Development Team <http://koha-community.org/>
2307
2308 =cut
2309
2310 1;