Bug 14866: Make high holds work with different item types
[koha.git] / admin / smart-rules.pl
1 #!/usr/bin/perl
2 # Copyright 2000-2002 Katipo Communications
3 # copyright 2010 BibLibre
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use C4::Context;
23 use C4::Output;
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Debug;
27 use Koha::DateUtils;
28 use Koha::Database;
29 use Koha::Logger;
30 use Koha::Libraries;
31 use Koha::CirculationRules;
32 use Koha::Patron::Categories;
33 use Koha::Caches;
34 use Koha::Patrons;
35
36 my $input = CGI->new;
37 my $dbh = C4::Context->dbh;
38
39 # my $flagsrequired;
40 # $flagsrequired->{circulation}=1;
41 my ($template, $loggedinuser, $cookie)
42     = get_template_and_user({template_name => "admin/smart-rules.tt",
43                             query => $input,
44                             type => "intranet",
45                             flagsrequired => {parameters => 'manage_circ_rules'},
46                             debug => 1,
47                             });
48
49 my $type=$input->param('type');
50
51 my $branch = $input->param('branch');
52 unless ( $branch ) {
53     if ( C4::Context->preference('DefaultToLoggedInLibraryCircRules') ) {
54         $branch = Koha::Libraries->search->count() == 1 ? undef : C4::Context::mybranch();
55     }
56     else {
57         $branch = C4::Context::only_my_library() ? ( C4::Context::mybranch() || '*' ) : '*';
58     }
59 }
60
61 my $logged_in_patron = Koha::Patrons->find( $loggedinuser );
62
63 my $can_edit_from_any_library = $logged_in_patron->has_permission( {parameters => 'manage_circ_rules_from_any_libraries' } );
64 $template->param( restricted_to_own_library => not $can_edit_from_any_library );
65 $branch = C4::Context::mybranch() unless $can_edit_from_any_library;
66
67 my $op = $input->param('op') || q{};
68 my $language = C4::Languages::getlanguage();
69
70 my $cache = Koha::Caches->get_instance;
71 $cache->clear_from_cache( Koha::CirculationRules::GUESSED_ITEMTYPES_KEY );
72
73 if ($op eq 'delete') {
74     my $itemtype     = $input->param('itemtype');
75     my $categorycode = $input->param('categorycode');
76     $debug and warn "deleting $1 $2 $branch";
77
78     Koha::CirculationRules->set_rules(
79         {
80             categorycode => $categorycode eq '*' ? undef : $categorycode,
81             branchcode   => $branch eq '*' ? undef : $branch,
82             itemtype     => $itemtype eq '*' ? undef : $itemtype,
83             rules        => {
84                 maxissueqty                      => undef,
85                 maxonsiteissueqty                => undef,
86                 rentaldiscount                   => undef,
87                 fine                             => undef,
88                 finedays                         => undef,
89                 maxsuspensiondays                => undef,
90                 suspension_chargeperiod          => undef,
91                 firstremind                      => undef,
92                 chargeperiod                     => undef,
93                 chargeperiod_charge_at           => undef,
94                 issuelength                      => undef,
95                 daysmode                         => undef,
96                 lengthunit                       => undef,
97                 hardduedate                      => undef,
98                 hardduedatecompare               => undef,
99                 renewalsallowed                  => undef,
100                 renewalperiod                    => undef,
101                 norenewalbefore                  => undef,
102                 auto_renew                       => undef,
103                 no_auto_renewal_after            => undef,
104                 no_auto_renewal_after_hard_limit => undef,
105                 reservesallowed                  => undef,
106                 holds_per_record                 => undef,
107                 holds_per_day                    => undef,
108                 onshelfholds                     => undef,
109                 opacitemholds                    => undef,
110                 overduefinescap                  => undef,
111                 cap_fine_to_replacement_price    => undef,
112                 article_requests                 => undef,
113                 note                             => undef,
114             }
115         }
116     );
117 }
118 elsif ($op eq 'delete-branch-cat') {
119     my $categorycode  = $input->param('categorycode');
120     if ($branch eq "*") {
121         if ($categorycode eq "*") {
122             Koha::CirculationRules->set_rules(
123                 {
124                     branchcode   => undef,
125                     categorycode => undef,
126                     rules        => {
127                         max_holds                      => undef,
128                         patron_maxissueqty             => undef,
129                         patron_maxonsiteissueqty       => undef,
130                     }
131                 }
132             );
133             Koha::CirculationRules->set_rules(
134                 {
135                     branchcode   => undef,
136                     itemtype     => undef,
137                     rules        => {
138                         holdallowed             => undef,
139                         hold_fulfillment_policy => undef,
140                         returnbranch            => undef,
141                     }
142                 }
143             );
144         } else {
145             Koha::CirculationRules->set_rules(
146                 {
147                     categorycode => $categorycode,
148                     branchcode   => undef,
149                     rules        => {
150                         max_holds                => undef,
151                         patron_maxissueqty       => undef,
152                         patron_maxonsiteissueqty => undef,
153                     }
154                 }
155             );
156         }
157     } elsif ($categorycode eq "*") {
158         Koha::CirculationRules->set_rules(
159             {
160                 branchcode   => $branch,
161                 categorycode => undef,
162                 rules        => {
163                     max_holds                => undef,
164                     patron_maxissueqty       => undef,
165                     patron_maxonsiteissueqty => undef,
166                 }
167             }
168         );
169         Koha::CirculationRules->set_rules(
170             {
171                 branchcode   => $branch,
172                 itemtype     => undef,
173                 rules        => {
174                     holdallowed             => undef,
175                     hold_fulfillment_policy => undef,
176                     returnbranch            => undef,
177                 }
178             }
179         );
180     } else {
181         Koha::CirculationRules->set_rules(
182             {
183                 categorycode => $categorycode,
184                 branchcode   => $branch,
185                 rules        => {
186                     max_holds         => undef,
187                     patron_maxissueqty       => undef,
188                     patron_maxonsiteissueqty => undef,
189                 }
190             }
191         );
192     }
193 }
194 elsif ($op eq 'delete-branch-item') {
195     my $itemtype  = $input->param('itemtype');
196     if ($branch eq "*") {
197         if ($itemtype eq "*") {
198             Koha::CirculationRules->set_rules(
199                 {
200                     branchcode   => undef,
201                     itemtype     => undef,
202                     rules        => {
203                         holdallowed             => undef,
204                         hold_fulfillment_policy => undef,
205                         returnbranch            => undef,
206                     }
207                 }
208             );
209         } else {
210             Koha::CirculationRules->set_rules(
211                 {
212                     branchcode   => undef,
213                     itemtype     => $itemtype,
214                     rules        => {
215                         holdallowed             => undef,
216                         hold_fulfillment_policy => undef,
217                         returnbranch            => undef,
218                     }
219                 }
220             );
221         }
222     } elsif ($itemtype eq "*") {
223         Koha::CirculationRules->set_rules(
224             {
225                 branchcode   => $branch,
226                 itemtype     => undef,
227                 rules        => {
228                     holdallowed             => undef,
229                     hold_fulfillment_policy => undef,
230                     returnbranch            => undef,
231                 }
232             }
233         );
234     } else {
235         Koha::CirculationRules->set_rules(
236             {
237                 branchcode   => $branch,
238                 itemtype     => $itemtype,
239                 rules        => {
240                     holdallowed             => undef,
241                     hold_fulfillment_policy => undef,
242                     returnbranch            => undef,
243                 }
244             }
245         );
246     }
247 }
248 # save the values entered
249 elsif ($op eq 'add') {
250     my $br = $branch; # branch
251     my $bor  = $input->param('categorycode'); # borrower category
252     my $itemtype  = $input->param('itemtype');     # item type
253     my $fine = $input->param('fine');
254     my $finedays     = $input->param('finedays');
255     my $maxsuspensiondays = $input->param('maxsuspensiondays') || '';
256     my $suspension_chargeperiod = $input->param('suspension_chargeperiod') || 1;
257     my $firstremind  = $input->param('firstremind');
258     my $chargeperiod = $input->param('chargeperiod');
259     my $chargeperiod_charge_at = $input->param('chargeperiod_charge_at');
260     my $maxissueqty = strip_non_numeric( scalar $input->param('maxissueqty') );
261     my $maxonsiteissueqty = strip_non_numeric( scalar $input->param('maxonsiteissueqty') );
262     my $renewalsallowed  = $input->param('renewalsallowed');
263     my $renewalperiod    = $input->param('renewalperiod');
264     my $norenewalbefore  = $input->param('norenewalbefore');
265     $norenewalbefore = '' if $norenewalbefore =~ /^\s*$/;
266     my $auto_renew = $input->param('auto_renew') eq 'yes' ? 1 : 0;
267     my $no_auto_renewal_after = $input->param('no_auto_renewal_after');
268     $no_auto_renewal_after = '' if $no_auto_renewal_after =~ /^\s*$/;
269     my $no_auto_renewal_after_hard_limit = $input->param('no_auto_renewal_after_hard_limit') || '';
270     $no_auto_renewal_after_hard_limit = eval { dt_from_string( scalar $no_auto_renewal_after_hard_limit ) } if ( $no_auto_renewal_after_hard_limit );
271     $no_auto_renewal_after_hard_limit = output_pref( { dt => $no_auto_renewal_after_hard_limit, dateonly => 1, dateformat => 'iso' } ) if ( $no_auto_renewal_after_hard_limit );
272     my $reservesallowed  = strip_non_numeric( scalar $input->param('reservesallowed') );
273     my $holds_per_record = strip_non_numeric( scalar $input->param('holds_per_record') );
274     my $holds_per_day    = strip_non_numeric( scalar $input->param('holds_per_day') );
275     my $onshelfholds     = $input->param('onshelfholds') || 0;
276     my $issuelength  = $input->param('issuelength');
277     $issuelength = $issuelength eq q{} ? undef : $issuelength;
278     my $daysmode = $input->param('daysmode');
279     my $lengthunit  = $input->param('lengthunit');
280     my $hardduedate = $input->param('hardduedate') || undef;
281     $hardduedate = eval { dt_from_string( scalar $hardduedate ) } if ( $hardduedate );
282     $hardduedate = output_pref( { dt => $hardduedate, dateonly => 1, dateformat => 'iso' } ) if ( $hardduedate );
283     my $hardduedatecompare = $input->param('hardduedatecompare');
284     my $rentaldiscount = $input->param('rentaldiscount');
285     my $opacitemholds = $input->param('opacitemholds') || 0;
286     my $article_requests = $input->param('article_requests') || 'no';
287     my $overduefinescap = $input->param('overduefinescap') || '';
288     my $cap_fine_to_replacement_price = ($input->param('cap_fine_to_replacement_price') || '') eq 'on';
289     my $note = $input->param('note');
290     my $decreaseloanholds = $input->param('decreaseloanholds') || undef;
291     $debug and warn "Adding $br, $bor, $itemtype, $fine, $maxissueqty, $maxonsiteissueqty, $cap_fine_to_replacement_price";
292
293     my $rules = {
294         maxissueqty                   => $maxissueqty,
295         maxonsiteissueqty             => $maxonsiteissueqty,
296         rentaldiscount                => $rentaldiscount,
297         fine                          => $fine,
298         finedays                      => $finedays,
299         maxsuspensiondays             => $maxsuspensiondays,
300         suspension_chargeperiod       => $suspension_chargeperiod,
301         firstremind                   => $firstremind,
302         chargeperiod                  => $chargeperiod,
303         chargeperiod_charge_at        => $chargeperiod_charge_at,
304         issuelength                   => $issuelength,
305         daysmode                      => $daysmode,
306         lengthunit                    => $lengthunit,
307         hardduedate                   => $hardduedate,
308         hardduedatecompare            => $hardduedatecompare,
309         renewalsallowed               => $renewalsallowed,
310         renewalperiod                 => $renewalperiod,
311         norenewalbefore               => $norenewalbefore,
312         auto_renew                    => $auto_renew,
313         no_auto_renewal_after         => $no_auto_renewal_after,
314         no_auto_renewal_after_hard_limit => $no_auto_renewal_after_hard_limit,
315         reservesallowed               => $reservesallowed,
316         holds_per_record              => $holds_per_record,
317         holds_per_day                 => $holds_per_day,
318         onshelfholds                  => $onshelfholds,
319         opacitemholds                 => $opacitemholds,
320         overduefinescap               => $overduefinescap,
321         cap_fine_to_replacement_price => $cap_fine_to_replacement_price,
322         article_requests              => $article_requests,
323         note                          => $note,
324         decreaseloanholds             => $decreaseloanholds,
325     };
326
327     Koha::CirculationRules->set_rules(
328         {
329             categorycode => $bor eq '*' ? undef : $bor,
330             itemtype     => $itemtype eq '*' ? undef : $itemtype,
331             branchcode   => $br eq '*' ? undef : $br,
332             rules        => $rules,
333         }
334     );
335
336 }
337 elsif ($op eq "set-branch-defaults") {
338     my $categorycode  = $input->param('categorycode');
339     my $patron_maxissueqty = strip_non_numeric( scalar $input->param('patron_maxissueqty') );
340     my $patron_maxonsiteissueqty = $input->param('patron_maxonsiteissueqty');
341     $patron_maxonsiteissueqty = strip_non_numeric($patron_maxonsiteissueqty);
342     my $holdallowed   = $input->param('holdallowed');
343     my $hold_fulfillment_policy = $input->param('hold_fulfillment_policy');
344     my $returnbranch  = $input->param('returnbranch');
345     my $max_holds = strip_non_numeric( scalar $input->param('max_holds') );
346
347     if ($branch eq "*") {
348         Koha::CirculationRules->set_rules(
349             {
350                 itemtype     => undef,
351                 branchcode   => undef,
352                 rules        => {
353                     holdallowed             => $holdallowed,
354                     hold_fulfillment_policy => $hold_fulfillment_policy,
355                     returnbranch            => $returnbranch,
356                 }
357             }
358         );
359         Koha::CirculationRules->set_rules(
360             {
361                 categorycode => undef,
362                 branchcode   => undef,
363                 rules        => {
364                     patron_maxissueqty             => $patron_maxissueqty,
365                     patron_maxonsiteissueqty       => $patron_maxonsiteissueqty,
366                 }
367             }
368         );
369     } else {
370         Koha::CirculationRules->set_rules(
371             {
372                 itemtype     => undef,
373                 branchcode   => $branch,
374                 rules        => {
375                     holdallowed             => $holdallowed,
376                     hold_fulfillment_policy => $hold_fulfillment_policy,
377                     returnbranch            => $returnbranch,
378                 }
379             }
380         );
381         Koha::CirculationRules->set_rules(
382             {
383                 categorycode => undef,
384                 branchcode   => $branch,
385                 rules        => {
386                     patron_maxissueqty             => $patron_maxissueqty,
387                     patron_maxonsiteissueqty       => $patron_maxonsiteissueqty,
388                 }
389             }
390         );
391     }
392     Koha::CirculationRules->set_rule(
393         {
394             branchcode   => $branch,
395             categorycode => undef,
396             rule_name    => 'max_holds',
397             rule_value   => $max_holds,
398         }
399     );
400 }
401 elsif ($op eq "add-branch-cat") {
402     my $categorycode  = $input->param('categorycode');
403     my $patron_maxissueqty = strip_non_numeric( scalar $input->param('patron_maxissueqty') );
404     my $patron_maxonsiteissueqty = $input->param('patron_maxonsiteissueqty');
405     $patron_maxonsiteissueqty = strip_non_numeric($patron_maxonsiteissueqty);
406     my $max_holds = $input->param('max_holds');
407     $max_holds =~ s/\s//g;
408     $max_holds = undef if $max_holds !~ /^\d+/;
409
410     if ($branch eq "*") {
411         if ($categorycode eq "*") {
412             Koha::CirculationRules->set_rules(
413                 {
414                     categorycode => undef,
415                     branchcode   => undef,
416                     rules        => {
417                         max_holds         => $max_holds,
418                         patron_maxissueqty       => $patron_maxissueqty,
419                         patron_maxonsiteissueqty => $patron_maxonsiteissueqty,
420                     }
421                 }
422             );
423         } else {
424             Koha::CirculationRules->set_rules(
425                 {
426                     categorycode => $categorycode,
427                     branchcode   => undef,
428                     rules        => {
429                         max_holds         => $max_holds,
430                         patron_maxissueqty       => $patron_maxissueqty,
431                         patron_maxonsiteissueqty => $patron_maxonsiteissueqty,
432                     }
433                 }
434             );
435         }
436     } elsif ($categorycode eq "*") {
437         Koha::CirculationRules->set_rules(
438             {
439                 categorycode => undef,
440                 branchcode   => $branch,
441                 rules        => {
442                     max_holds         => $max_holds,
443                     patron_maxissueqty       => $patron_maxissueqty,
444                     patron_maxonsiteissueqty => $patron_maxonsiteissueqty,
445                 }
446             }
447         );
448     } else {
449         Koha::CirculationRules->set_rules(
450             {
451                 categorycode => $categorycode,
452                 branchcode   => $branch,
453                 rules        => {
454                     max_holds         => $max_holds,
455                     patron_maxissueqty       => $patron_maxissueqty,
456                     patron_maxonsiteissueqty => $patron_maxonsiteissueqty,
457                 }
458             }
459         );
460     }
461 }
462 elsif ($op eq "add-branch-item") {
463     my $itemtype                = $input->param('itemtype');
464     my $holdallowed             = $input->param('holdallowed');
465     my $hold_fulfillment_policy = $input->param('hold_fulfillment_policy');
466     my $returnbranch            = $input->param('returnbranch');
467
468     if ($branch eq "*") {
469         if ($itemtype eq "*") {
470             Koha::CirculationRules->set_rules(
471                 {
472                     itemtype     => undef,
473                     branchcode   => undef,
474                     rules        => {
475                         holdallowed             => $holdallowed,
476                         hold_fulfillment_policy => $hold_fulfillment_policy,
477                         returnbranch            => $returnbranch,
478                     }
479                 }
480             );
481         } else {
482             Koha::CirculationRules->set_rules(
483                 {
484                     itemtype     => $itemtype,
485                     branchcode   => undef,
486                     rules        => {
487                         holdallowed             => $holdallowed,
488                         hold_fulfillment_policy => $hold_fulfillment_policy,
489                         returnbranch            => $returnbranch,
490                     }
491                 }
492             );
493         }
494     } elsif ($itemtype eq "*") {
495             Koha::CirculationRules->set_rules(
496                 {
497                     itemtype     => undef,
498                     branchcode   => $branch,
499                     rules        => {
500                         holdallowed             => $holdallowed,
501                         hold_fulfillment_policy => $hold_fulfillment_policy,
502                         returnbranch            => $returnbranch,
503                     }
504                 }
505             );
506     } else {
507         Koha::CirculationRules->set_rules(
508             {
509                 itemtype     => $itemtype,
510                 branchcode   => $branch,
511                 rules        => {
512                     holdallowed             => $holdallowed,
513                     hold_fulfillment_policy => $hold_fulfillment_policy,
514                     returnbranch            => $returnbranch,
515                 }
516             }
517         );
518     }
519 }
520 elsif ( $op eq 'mod-refund-lost-item-fee-rule' ) {
521
522     my $lostreturn = $input->param('lostreturn');
523
524     if ( $lostreturn eq '*' ) {
525         if ( $branch ne '*' ) {
526             # only do something for $lostreturn eq '*' if branch-specific
527             Koha::CirculationRules->set_rules(
528                 {
529                     branchcode   => $branch,
530                     rules        => {
531                         lostreturn => undef
532                     }
533                 }
534             );
535         }
536     } else {
537         Koha::CirculationRules->set_rules(
538             {
539                 branchcode   => $branch,
540                 rules        => {
541                     lostreturn => $lostreturn
542                 }
543             }
544         );
545     }
546 }
547
548 my $refundLostItemFeeRule = Koha::CirculationRules->find({ branchcode => ($branch eq '*') ? undef : $branch, rule_name => 'lostreturn' });
549 my $defaultLostItemFeeRule = Koha::CirculationRules->find({ branchcode => undef, rule_name => 'lostreturn' });
550 $template->param(
551     refundLostItemFeeRule => $refundLostItemFeeRule,
552     defaultRefundRule     => $defaultLostItemFeeRule ? $defaultLostItemFeeRule->rule_value : 'refund'
553 );
554
555 my $patron_categories = Koha::Patron::Categories->search({}, { order_by => ['description'] });
556
557 my $itemtypes = Koha::ItemTypes->search_with_localization;
558
559 my $humanbranch = ( $branch ne '*' ? $branch : undef );
560
561 my $all_rules = Koha::CirculationRules->search({ branchcode => $humanbranch });
562 my $definedbranch = $all_rules->count ? 1 : 0;
563
564 my $rules = {};
565 while ( my $r = $all_rules->next ) {
566     $r = $r->unblessed;
567     $rules->{ $r->{categorycode} // '' }->{ $r->{itemtype} // '' }->{ $r->{rule_name} } = $r->{rule_value};
568 }
569
570 $template->param(show_branch_cat_rule_form => 1);
571
572 $template->param(
573     patron_categories => $patron_categories,
574     itemtypeloop      => $itemtypes,
575     humanbranch       => $humanbranch,
576     current_branch    => $branch,
577     definedbranch     => $definedbranch,
578     all_rules         => $rules,
579 );
580 output_html_with_http_headers $input, $cookie, $template->output;
581
582 exit 0;
583
584 # sort by patron category, then item type, putting
585 # default entries at the bottom
586 sub by_category_and_itemtype {
587     unless (by_category($a, $b)) {
588         return by_itemtype($a, $b);
589     }
590 }
591
592 sub by_category {
593     my ($a, $b) = @_;
594     if ($a->{'default_humancategorycode'}) {
595         return ($b->{'default_humancategorycode'} ? 0 : 1);
596     } elsif ($b->{'default_humancategorycode'}) {
597         return -1;
598     } else {
599         return $a->{'humancategorycode'} cmp $b->{'humancategorycode'};
600     }
601 }
602
603 sub by_itemtype {
604     my ($a, $b) = @_;
605     if ($a->{default_translated_description}) {
606         return ($b->{'default_translated_description'} ? 0 : 1);
607     } elsif ($b->{'default_translated_description'}) {
608         return -1;
609     } else {
610         return lc $a->{'translated_description'} cmp lc $b->{'translated_description'};
611     }
612 }
613
614 sub strip_non_numeric {
615     my $string = shift;
616     $string =~ s/\s//g;
617     $string = '' if $string !~ /^\d+/;
618     return $string;
619 }