Bugzilla – Attachment 123714 Details for
Bug 27945
Limit the number of active article requests per patron category
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27945: Add limit article request feature
Bug-27945-Add-limit-article-request-feature.patch (text/plain), 17.10 KB, created by
Tomás Cohen Arazi (tcohen)
on 2021-08-10 16:58:05 UTC
(
hide
)
Description:
Bug 27945: Add limit article request feature
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2021-08-10 16:58:05 UTC
Size:
17.10 KB
patch
obsolete
>From e9685a56b4edcfd8597f5ac8fbb58514ae4f870b Mon Sep 17 00:00:00 2001 >From: Agustin Moyano <agustinmoyano@theke.io> >Date: Tue, 27 Jul 2021 12:20:46 -0300 >Subject: [PATCH] Bug 27945: Add limit article request feature > >This patch makes it possible to limit article requests per patron per day. > >To test: >1. Apply patches >2. updatedatabase >3. Enable ArticleRequests preference >4. Edit a patron category and set an article request limit to 1 >CHECK => if you set the limit to anything else but a positive number or empty string, a warning appears >5. In staff search biblios and request an article for a patron of the modified category >6. Repeat step 5 >SUCCESS => if limit is reached, when you select the user to request an article a warning appears saying that the limit was reached >7. Repeat steps 5 and 6 but this time in opac >SUCCESS => Patron is not allowed to request another article if limit is reached >8. prove t/db_dependent/ArticleRequests.t > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > Koha/ArticleRequest.pm | 12 ++++- > Koha/Exceptions/ArticleRequest.pm | 47 ++++++++++++++++ > Koha/Patron.pm | 26 +++++++++ > admin/categories.pl | 9 ++++ > circ/request-article.pl | 48 +++++++++++------ > .../prog/en/modules/admin/categories.tt | 14 +++++ > .../prog/en/modules/circ/request-article.tt | 5 ++ > .../en/modules/opac-request-article.tt | 7 ++- > opac/opac-request-article.pl | 54 ++++++++++++------- > 9 files changed, 182 insertions(+), 40 deletions(-) > create mode 100644 Koha/Exceptions/ArticleRequest.pm > >diff --git a/Koha/ArticleRequest.pm b/Koha/ArticleRequest.pm >index e79e01610c..078f00bc70 100644 >--- a/Koha/ArticleRequest.pm >+++ b/Koha/ArticleRequest.pm >@@ -27,7 +27,9 @@ use Koha::Items; > use Koha::Libraries; > use Koha::DateUtils qw( dt_from_string ); > use C4::Context; >+use Koha::ArticleRequests; > use Koha::Account::Lines; >+use Koha::Exceptions::ArticleRequest; > > use base qw(Koha::Object); > >@@ -48,11 +50,17 @@ Koha::ArticleRequest - Koha Article Request Object class > sub open { > my ($self) = @_; > >+ Koha::Exceptions::ArticleRequest::LimitReached->throw( >+ error => 'Patron cannot request more articles for today' >+ ) unless $self->borrower->can_request_article; >+ > $self->status(Koha::ArticleRequest::Status::Pending); >- if(C4::Context->preference('ArticleRequests') && $self->borrower->category->article_request_fee) { >+ >+ my $fee = $self->borrower->category->article_request_fee; >+ if($fee && $fee > 0) { > my $debit_line = $self->borrower->account->add_debit( > { >- amount => $self->borrower->category->article_request_fee, >+ amount => $fee, > user_id => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef, > interface => C4::Context->interface, > library_id => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef, >diff --git a/Koha/Exceptions/ArticleRequest.pm b/Koha/Exceptions/ArticleRequest.pm >new file mode 100644 >index 0000000000..f9fac5969e >--- /dev/null >+++ b/Koha/Exceptions/ArticleRequest.pm >@@ -0,0 +1,47 @@ >+package Koha::Exceptions::ArticleRequest; >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Exception::Class ( >+ 'Koha::Exceptions::ArticleRequest' => { >+ description => 'Something went wrong!', >+ }, >+ 'Koha::Exceptions::ArticleRequest::LimitReached' => { >+ isa => 'Koha::Exceptions::ArticleRequest', >+ description => 'Article request limit was reached' >+ }, >+); >+ >+=head1 NAME >+ >+Koha::Exceptions::ArticleRequest - Base class for ArticleRequest exceptions >+ >+=head1 Exceptions >+ >+=head2 Koha::Exceptions::ArticleRequest >+ >+Generic ArticleRequest exception >+ >+=head2 Koha::Exceptions::ArticleRequest::IsNotCredit >+ >+Exception to be used when an action on an account line requires it to be a >+credit and it isn't. >+ >+=cut >+ >+1; >\ No newline at end of file >diff --git a/Koha/Patron.pm b/Koha/Patron.pm >index 941dace0df..bbdb8d8ff1 100644 >--- a/Koha/Patron.pm >+++ b/Koha/Patron.pm >@@ -958,6 +958,32 @@ sub move_to_deleted { > return Koha::Database->new->schema->resultset('Deletedborrower')->create($patron_infos); > } > >+=head3 can_request_article >+ >+my $can_request = $borrower->can_request_article >+ >+Returns true if patron can request articles >+ >+=cut >+ >+sub can_request_article { >+ my ($self) = @_; >+ my $limit = $self->category->article_request_limit; >+ >+ return 1 if !$limit; >+ >+ my $date = dt_from_string; >+ my $count = Koha::ArticleRequests->search({ >+ borrowernumber => $self->borrowernumber, >+ status => {'!=' => 'CANCELED'}, >+ created_on => { >+ '>=' => $date->date.' 00:00:00', >+ '<=' => $date->date.' 23:59:59' >+ } >+ })->count; >+ return $count < $limit ? 1 : 0; >+} >+ > =head3 article_requests > > my @requests = $borrower->article_requests(); >diff --git a/admin/categories.pl b/admin/categories.pl >index 7aba61990e..3e42ee63e9 100755 >--- a/admin/categories.pl >+++ b/admin/categories.pl >@@ -68,6 +68,7 @@ if ( $op eq 'add_validate' ) { > my $min_password_length = $input->param('min_password_length'); > my $require_strong_password = $input->param('require_strong_password'); > my $article_request_fee = $input->param('article_request_fee'); >+ my $article_request_limit = $input->param('article_request_limit'); > my @branches = grep { $_ ne q{} } $input->multi_param('branches'); > > $reset_password = undef if $reset_password eq -1; >@@ -80,6 +81,12 @@ if ( $op eq 'add_validate' ) { > if ($article_request_fee < 0) { > push @messages, {type => 'error', code => 'article_request_negative_fee' }; > $op = 'add_form'; >+ } elsif ($article_request_limit ne '' && $article_request_limit !~ /\d+/) { >+ push @messages, {type => 'error', code => 'article_request_numeric_limit' }; >+ $op = 'add_form'; >+ } elsif ($article_request_limit ne '' && $article_request_limit < 0) { >+ push @messages, {type => 'error', code => 'article_request_negative_limit' }; >+ $op = 'add_form'; > } else { > if ($enrolmentperioddate) { > $enrolmentperioddate = output_pref( >@@ -113,6 +120,7 @@ if ( $op eq 'add_validate' ) { > $category->min_password_length($min_password_length); > $category->require_strong_password($require_strong_password); > $category->article_request_fee($article_request_fee); >+ $category->article_request_limit($article_request_limit); > eval { > $category->store; > $category->replace_library_limits( \@branches ); >@@ -145,6 +153,7 @@ if ( $op eq 'add_validate' ) { > min_password_length => $min_password_length, > require_strong_password => $require_strong_password, > article_request_fee => $article_request_fee, >+ article_request_limit => $article_request_limit > }); > eval { > $category->store; >diff --git a/circ/request-article.pl b/circ/request-article.pl >index 678c4c9694..0cc4cc591d 100755 >--- a/circ/request-article.pl >+++ b/circ/request-article.pl >@@ -27,6 +27,7 @@ use C4::Serials qw( CountSubscriptionFromBiblionumber ); > use Koha::Biblios; > use Koha::Patrons; > use Koha::ArticleRequests; >+use Try::Tiny; > > my $cgi = CGI->new; > >@@ -68,23 +69,29 @@ if ( $action eq 'create' ) { > my $patron_notes = $cgi->param('patron_notes') || undef; > my $format = $cgi->param('format') || undef; > >- my $ar = Koha::ArticleRequest->new( >- { >- borrowernumber => $borrowernumber, >- biblionumber => $biblionumber, >- branchcode => $branchcode, >- itemnumber => $itemnumber, >- title => $title, >- author => $author, >- volume => $volume, >- issue => $issue, >- date => $date, >- pages => $pages, >- chapters => $chapters, >- patron_notes => $patron_notes, >- format => $format, >- } >- )->store(); >+ try { >+ my $ar = Koha::ArticleRequest->new( >+ { >+ borrowernumber => $borrowernumber, >+ biblionumber => $biblionumber, >+ branchcode => $branchcode, >+ itemnumber => $itemnumber, >+ title => $title, >+ author => $author, >+ volume => $volume, >+ issue => $issue, >+ date => $date, >+ pages => $pages, >+ chapters => $chapters, >+ patron_notes => $patron_notes, >+ format => $format, >+ } >+ )->store(); >+ } catch { >+ $template->param( >+ error_message => $_->{message} >+ ); >+ }; > > } > >@@ -109,6 +116,13 @@ if ( !$patron && $patron_cardnumber ) { > } > } > >+if( $patron && !$patron->can_request_article) { >+ $patron = undef; >+ $template->param( >+ error_message => 'Patron cannot request more articles for today' >+ ); >+} >+ > $template->param( > biblio => $biblio, > patron => $patron, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >index 6be219fdb4..54636156f4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >@@ -110,6 +110,10 @@ > This patron category already exists. > [% CASE 'article_request_negative_fee' %] > Article request fee cannot be negative. >+ [% CASE 'article_request_negative_limit' %] >+ Maximum article request limit cannot be negative. >+ [% CASE 'article_request_numeric_limit' %] >+ Maximum article request limit must be a positive number. > [% CASE %] > [% m.code | html %] > [% END %] >@@ -209,6 +213,10 @@ > <label for="article_request_fee">Cost for article scan request</label> > <input type="text" name="article_request_fee" id="article_request_fee" size="6" value="[% category.article_request_fee | $Price on_editing => 1 %]" /> > </li> >+ <li> >+ <label for="article_request_limit">Maximum article scan requests</label> >+ <input type="text" name="article_request_limit" id="article_request_limit" size="6" value="[% category.article_request_limit | html %]" /> per day >+ </li> > [% END %] > <li> > <label for="category_type" class="required">Category type: </label> >@@ -535,6 +543,7 @@ > <th scope="col">Hold fee</th> > [% IF Koha.Preference('ArticleRequests') %] > <th scope="col">Article request fee</th> >+ <th scope="col">Maximum request limit</th> > [% END %] > [% IF ( EnhancedMessagingPreferences ) %] > <th scope="col">Messaging</th> >@@ -600,6 +609,11 @@ > [% ELSE %] > <td>-</td> > [% END %] >+ [% IF (category.article_request_limit > 0) %] >+ <td>[% category.article_request_limit | html %]</td> >+ [% ELSE %] >+ <td>-</td> >+ [% END %] > [% END %] > [% IF Koha.Preference('EnhancedMessagingPreferences') %] > <td style="white-space: nowrap; font-size:80%;"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt >index 1df77b4985..cd8a773500 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt >@@ -47,6 +47,11 @@ > <main> > > <h1>Request article from [% INCLUDE 'biblio-title.inc' link = 1 %]</h1> >+ [% IF error_message %] >+ <div class="dialog alert"> >+ <p>[% error_message | html %]</p> >+ </div> >+ [% END %] > [% IF no_patrons_found %] > <div class="dialog alert"> > <h3>Patron not found</h3> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-request-article.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-request-article.tt >index 4dfcf7137b..5e855b7f9c 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-request-article.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-request-article.tt >@@ -34,7 +34,7 @@ > <div class="container-fluid maincontent"> > <div class="row"> > <div class="col"> >- [% IF biblio.can_article_request( patron ) %] >+ [% IF !error_message && biblio.can_article_request( patron ) %] > <h1>Place article request for [% biblio.title | html %]</h1> > [% IF ( disclaimer && !action) %] > <div class="alert alert-warning"> >@@ -223,6 +223,11 @@ > <input type="submit" class="btn btn-primary" value="Place request" /> > </form> > [% END %] >+ [% ELSIF error_message %] >+ <h1 class="title">[% biblio.title | html %]</h1> >+ <div class="alert alert-info"> >+ [% error_message | html %] >+ </div> > [% ELSE %] > <h1 class="title">[% biblio.title | html %]</h1> > <div class="alert alert-info"> >diff --git a/opac/opac-request-article.pl b/opac/opac-request-article.pl >index dd02b4d7b9..146454f033 100755 >--- a/opac/opac-request-article.pl >+++ b/opac/opac-request-article.pl >@@ -26,6 +26,7 @@ use C4::Output qw( output_html_with_http_headers ); > > use Koha::Biblios; > use Koha::Patrons; >+use Try::Tiny; > > my $cgi = CGI->new; > >@@ -59,26 +60,33 @@ if ( $action eq 'create' ) { > my $patron_notes = $cgi->param('patron_notes') || undef; > my $format = $cgi->param('format') || undef; > >- my $ar = Koha::ArticleRequest->new( >- { >- borrowernumber => $borrowernumber, >- biblionumber => $biblionumber, >- branchcode => $branchcode, >- itemnumber => $itemnumber, >- title => $title, >- author => $author, >- volume => $volume, >- issue => $issue, >- date => $date, >- pages => $pages, >- chapters => $chapters, >- patron_notes => $patron_notes, >- format => $format, >- } >- )->store(); >- >- print $cgi->redirect("/cgi-bin/koha/opac-user.pl#opac-user-article-requests"); >- exit; >+ try { >+ my $ar = Koha::ArticleRequest->new( >+ { >+ borrowernumber => $borrowernumber, >+ biblionumber => $biblionumber, >+ branchcode => $branchcode, >+ itemnumber => $itemnumber, >+ title => $title, >+ author => $author, >+ volume => $volume, >+ issue => $issue, >+ date => $date, >+ pages => $pages, >+ chapters => $chapters, >+ patron_notes => $patron_notes, >+ format => $format, >+ } >+ )->store(); >+ >+ print $cgi->redirect("/cgi-bin/koha/opac-user.pl#opac-user-article-requests"); >+ exit; >+ } catch { >+ exit unless $_->[0] && $_->[0] eq 'EXIT'; >+ $template->param( >+ error_message => $_->{message} >+ ); >+ }; > # Should we redirect? > } > elsif ( !$action && C4::Context->preference('ArticleRequestsOpacHostRedirection') ) { >@@ -96,6 +104,12 @@ elsif ( !$action && C4::Context->preference('ArticleRequestsOpacHostRedirection' > > my $patron = Koha::Patrons->find($borrowernumber); > >+if(!$patron->can_request_article) { >+ $template->param( >+ error_message => 'You cannot request more articles for today' >+ ); >+} >+ > $template->param( > biblio => $biblio, > patron => $patron, >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 27945
:
123217
|
123218
|
123219
|
123220
|
123714
|
123715
|
123774
|
123775
|
123776
|
123777
|
123778
|
123820
|
124066
|
124067
|
124068
|
124069
|
124070
|
124071
|
124072
|
124073
|
124074
|
124075
|
124076
|
124077
|
124078
|
124079
|
124284
|
124285
|
124633
|
124673
|
124674
|
124675
|
124676
|
124677
|
124678
|
124679
|
124680
|
124681
|
124682
|
125140
|
125142
|
125143
|
125144
|
125145
|
125146
|
125147
|
125148
|
125149
|
125150
|
125151
|
125152
|
125178
|
125179
|
125569
|
125571
|
125638
|
125690
|
125702
|
125703
|
125704
|
125705
|
125706
|
125707
|
125726
|
125741
|
125761