Bugzilla – Attachment 129144 Details for
Bug 27946
Add a charge per article request to patron categories
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27946: Article request fee methods in Koha::Patron
Bug-27946-Article-request-fee-methods-in-KohaPatro.patch (text/plain), 7.94 KB, created by
Kyle M Hall (khall)
on 2022-01-07 12:14:38 UTC
(
hide
)
Description:
Bug 27946: Article request fee methods in Koha::Patron
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2022-01-07 12:14:38 UTC
Size:
7.94 KB
patch
obsolete
>From 4ae3c7280cb6a662961aefaad732a7f4ff3aac9f Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Fri, 17 Dec 2021 10:18:53 -0300 >Subject: [PATCH] Bug 27946: Article request fee methods in Koha::Patron > >This patch adds article_request_fee() and add_article_request_fee_if_needed() methods to Koha::Patron. > >To test: >1. Apply this patch >2. Run: > $ kshell > k$ prove t/db_dependent/Koha/Patron.t >=> SUCCESS: Tests pass! >3. Sign off :-D > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > Koha/Patron.pm | 84 ++++++++++++++++++++++++++ > t/db_dependent/Koha/Patron.t | 113 ++++++++++++++++++++++++++++++++++- > 2 files changed, 196 insertions(+), 1 deletion(-) > >diff --git a/Koha/Patron.pm b/Koha/Patron.pm >index 3414546ca26..ddf4ebe5bbb 100644 >--- a/Koha/Patron.pm >+++ b/Koha/Patron.pm >@@ -1004,6 +1004,90 @@ sub can_request_article { > return $count < $limit ? 1 : 0; > } > >+=head3 article_request_fee >+ >+ my $fee = $patron->article_request_fee( >+ { >+ [ library_id => $library->id, ] >+ } >+ ); >+ >+Returns the fee to be charged to the patron when it places an article request. >+ >+A I<library_id> can be passed as parameter, falling back to userenv if absent. >+ >+=cut >+ >+sub article_request_fee { >+ my ($self, $params) = @_; >+ >+ my $library_id = $params->{library_id}; >+ >+ $library_id //= C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef; >+ >+ my $rule = Koha::CirculationRules->get_effective_rule( >+ { >+ branchcode => $library_id, >+ categorycode => $self->categorycode, >+ rule_name => 'article_request_fee' >+ } >+ ); >+ >+ my $fee = ($rule) ? $rule->rule_value + 0 : 0; >+ >+ return $fee; >+} >+ >+=head3 add_article_request_fee_if_needed >+ >+ my $fee = $patron->add_article_request_fee_if_needed( >+ { >+ [ item_id => $item->id, >+ library_id => $library->id, ] >+ } >+ ); >+ >+If an article request fee needs to be charged, it adds a debit to the patron's >+account. >+ >+Returns the fee line. >+ >+A I<library_id> can be passed as parameter, falling back to userenv if absent. >+ >+=cut >+ >+sub add_article_request_fee_if_needed { >+ my ($self, $params) = @_; >+ >+ my $library_id = $params->{library_id}; >+ my $item_id = $params->{item_id}; >+ >+ $library_id //= C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef; >+ >+ my $amount = $self->article_request_fee( >+ { >+ library_id => $library_id, >+ } >+ ); >+ >+ my $debit_line; >+ >+ if ( $amount > 0 ) { >+ $debit_line = $self->account->add_debit( >+ { >+ amount => $amount, >+ user_id => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef, >+ interface => C4::Context->interface, >+ library_id => $library_id, >+ type => 'ARTICLE_REQUEST', >+ item_id => $item_id, >+ } >+ ); >+ } >+ >+ return $debit_line; >+} >+ > =head3 article_requests > > my $article_requests = $patron->article_requests; >diff --git a/t/db_dependent/Koha/Patron.t b/t/db_dependent/Koha/Patron.t >index 8d492168d72..ce114cab0ee 100755 >--- a/t/db_dependent/Koha/Patron.t >+++ b/t/db_dependent/Koha/Patron.t >@@ -19,10 +19,11 @@ > > use Modern::Perl; > >-use Test::More tests => 11; >+use Test::More tests => 13; > use Test::Exception; > use Test::Warn; > >+use Koha::CirculationRules; > use Koha::Database; > use Koha::DateUtils qw(dt_from_string); > use Koha::ArticleRequests; >@@ -820,6 +821,9 @@ subtest 'article_requests() tests' => sub { > > $schema->storage->txn_begin; > >+ my $library = $builder->build_object({ class => 'Koha::Libraries' }); >+ t::lib::Mocks::mock_userenv( { branchcode => $library->id } ); >+ > my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); > > my $article_requests = $patron->article_requests; >@@ -907,6 +911,113 @@ subtest 'safe_to_delete() tests' => sub { > ok( $patron->safe_to_delete, 'Can delete, all conditions met' ); > my $messages = $patron->safe_to_delete->messages; > is_deeply( $messages, [], 'Patron can be deleted, no messages' ); >+}; >+ >+subtest 'article_request_fee() tests' => sub { >+ >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ # Cleanup, to avoid interference >+ Koha::CirculationRules->search( { rule_name => 'article_request_fee' } )->delete; >+ >+ t::lib::Mocks::mock_preference( 'ArticleRequests', 1 ); >+ >+ my $item = $builder->build_sample_item; >+ >+ my $library_1 = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $library_2 = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); >+ >+ # Rule that should never be picked, because the patron's category is always picked >+ Koha::CirculationRules->set_rule( >+ { categorycode => undef, >+ branchcode => undef, >+ rule_name => 'article_request_fee', >+ rule_value => 1, >+ } >+ ); >+ >+ is( $patron->article_request_fee( { library_id => $library_2->id } ), 1, 'library_id used correctly' ); >+ >+ Koha::CirculationRules->set_rule( >+ { categorycode => $patron->categorycode, >+ branchcode => undef, >+ rule_name => 'article_request_fee', >+ rule_value => 2, >+ } >+ ); >+ >+ Koha::CirculationRules->set_rule( >+ { categorycode => $patron->categorycode, >+ branchcode => $library_1->id, >+ rule_name => 'article_request_fee', >+ rule_value => 3, >+ } >+ ); >+ >+ is( $patron->article_request_fee( { library_id => $library_2->id } ), 2, 'library_id used correctly' ); >+ >+ t::lib::Mocks::mock_userenv( { branchcode => $library_1->id } ); >+ >+ is( $patron->article_request_fee(), 3, 'env used correctly' ); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'add_article_request_fee_if_needed() tests' => sub { >+ >+ plan tests => 12; >+ >+ $schema->storage->txn_begin; >+ >+ my $amount = 0; >+ >+ my $patron_mock = Test::MockModule->new('Koha::Patron'); >+ $patron_mock->mock( 'article_request_fee', sub { return $amount; } ); >+ >+ my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); >+ >+ is( $patron->article_request_fee, $amount, 'article_request_fee mocked' ); >+ >+ my $library_1 = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $library_2 = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $staff = $builder->build_object( { class => 'Koha::Patrons' } ); >+ my $item = $builder->build_sample_item; >+ >+ t::lib::Mocks::mock_userenv( >+ { branchcode => $library_1->id, patron => $staff } ); >+ >+ my $debit = $patron->add_article_request_fee_if_needed(); >+ is( $debit, undef, 'No fee, no debit line' ); >+ >+ # positive value >+ $amount = 1; >+ >+ $debit = $patron->add_article_request_fee_if_needed({ item_id => $item->id }); >+ is( ref($debit), 'Koha::Account::Line', 'Debit object type correct' ); >+ is( $debit->amount, $amount, >+ 'amount set to $patron->article_request_fee value' ); >+ is( $debit->manager_id, $staff->id, >+ 'manager_id set to userenv session user' ); >+ is( $debit->branchcode, $library_1->id, >+ 'branchcode set to userenv session library' ); >+ is( $debit->debit_type_code, 'ARTICLE_REQUEST', >+ 'debit_type_code set correctly' ); >+ is( $debit->itemnumber, $item->id, >+ 'itemnumber set correctly' ); >+ >+ $amount = 100; >+ >+ $debit = $patron->add_article_request_fee_if_needed({ library_id => $library_2->id }); >+ is( ref($debit), 'Koha::Account::Line', 'Debit object type correct' ); >+ is( $debit->amount, $amount, >+ 'amount set to $patron->article_request_fee value' ); >+ is( $debit->branchcode, $library_2->id, >+ 'branchcode set to userenv session library' ); >+ is( $debit->itemnumber, undef, >+ 'itemnumber set correctly to undef' ); > > $schema->storage->txn_rollback; > }; >-- >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 27946
:
120144
|
120145
|
120146
|
120147
|
122522
|
122529
|
122530
|
122531
|
122532
|
122552
|
123503
|
123504
|
123505
|
123506
|
123507
|
128660
|
128661
|
128662
|
128663
|
128664
|
128665
|
128868
|
128869
|
128870
|
128871
|
128872
|
128873
|
129141
|
129142
|
129143
|
129144
|
129145
|
129146
|
129147
|
129171
|
129172
|
129173
|
129174
|
129175
|
129176
|
129177