@@ -, +, @@ priority. - Create a rule with 4 checkouts allowed in default checkout limit table for a patron category and make it has priority, - create more permissive rules for all other branches (at least 5 checkouts allowed), - Checkout items of different branches for a patron with the same category, - Patron should be limited to 4 checkouts --- admin/smart-rules.pl | 6 ++++++ .../Bug_8137-add-column-has_priority.sql | 5 +++++ .../prog/en/modules/admin/smart-rules.tt | 15 ++++++++++++++ t/db_dependent/Circulation/Branch.t | 24 ++++++++++++++++++++++ 4 files changed, 50 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/Bug_8137-add-column-has_priority.sql --- a/admin/smart-rules.pl +++ a/admin/smart-rules.pl @@ -406,6 +406,8 @@ elsif ($op eq "add-branch-cat") { my $max_holds = $input->param('max_holds'); $max_holds =~ s/\s//g; $max_holds = undef if $max_holds !~ /^\d+/; + my $has_priority = $input->param('has_priority'); + $has_priority = $has_priority ? 1 : 0; if ($branch eq "*") { if ($categorycode eq "*") { @@ -421,6 +423,7 @@ elsif ($op eq "add-branch-cat") { } ); } else { + Koha::CirculationRules->set_rules( { categorycode => $categorycode, @@ -429,6 +432,7 @@ elsif ($op eq "add-branch-cat") { max_holds => $max_holds, patron_maxissueqty => $patron_maxissueqty, patron_maxonsiteissueqty => $patron_maxonsiteissueqty, + has_priority => $has_priority, } } ); @@ -442,6 +446,7 @@ elsif ($op eq "add-branch-cat") { max_holds => $max_holds, patron_maxissueqty => $patron_maxissueqty, patron_maxonsiteissueqty => $patron_maxonsiteissueqty, + has_priority => $has_priority, } } ); @@ -454,6 +459,7 @@ elsif ($op eq "add-branch-cat") { max_holds => $max_holds, patron_maxissueqty => $patron_maxissueqty, patron_maxonsiteissueqty => $patron_maxonsiteissueqty, + has_priority => $has_priority, } } ); --- a/installer/data/mysql/atomicupdate/Bug_8137-add-column-has_priority.sql +++ a/installer/data/mysql/atomicupdate/Bug_8137-add-column-has_priority.sql @@ -0,0 +1,5 @@ +ALTER TABLE default_borrower_circ_rules ADD has_priority INT(1) DEFAULT 0; +ALTER TABLE default_borrower_circ_rules DROP foreign key borrower_borrower_circ_rules_ibfk_1; +ALTER TABLE default_borrower_circ_rules DROP primary key; +ALTER TABLE default_borrower_circ_rules ADD primary key(categorycode, has_priority); +ALTER TABLE default_borrower_circ_rules ADD CONSTRAINT borrower_borrower_circ_rules_ibfk_1 FOREIGN KEY (categorycode) REFERENCES categories (categorycode) ON DELETE CASCADE ON UPDATE CASCADE; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt @@ -672,6 +672,10 @@

If the total amount loanable for a given patron category is left blank, no limit applies, except possibly for a limit you define for a specific item type.

+

+ Has priority: If checked, the rule will override those for all branches. Else + it behaves like a default one: used if no rule existe for the coresponding branch. +

@@ -681,6 +685,7 @@ Total current checkouts allowed Total current on-site checkouts allowed Total holds allowed + [% UNLESS humanbranch %]Has priority[% END %]   [% FOREACH c IN categorycodes %] @@ -719,6 +724,11 @@ Unlimited [% END %] + [% UNLESS humanbranch %] + + + + [% END %] Delete @@ -737,6 +747,11 @@ + [% UNLESS humanbranch %] + + + + [% END %]