Bugzilla – Attachment 75013 Details for
Bug 20703
Add ability to void any credit
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20703: Add ability to void any credit
Bug-20703-Add-ability-to-void-any-credit.patch (text/plain), 6.01 KB, created by
Kyle M Hall (khall)
on 2018-05-03 13:59:27 UTC
(
hide
)
Description:
Bug 20703: Add ability to void any credit
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2018-05-03 13:59:27 UTC
Size:
6.01 KB
patch
obsolete
>From ecbeb6b537dc0d4447c6314a720b26e293470a53 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatetsolutions.com> >Date: Thu, 3 May 2018 09:17:06 -0400 >Subject: [PATCH] Bug 20703: Add ability to void any credit > >At this time, only payments may be voided. There is no reason to have this limitation. There are situations where a librarian may need to void an accidental writeoff, or perhaps void an automatic credit that was created by Koha. For illustration, this is directly from a partner library: > >"For example a lost book refund becomes a credit on account. Presently the credit may be applied to a fine for a different item charged to patron. We perform a write off to clear the remaining credit, then add the fine back to the account and give the patron a refund for the lost/refunded amount. Our accounting system ask that we keep the Lost funds/refunds separate from all fines." > >Test Plan: >1) Create a fine and write it off >2) Note there is no 'void' button for the writeoff >3) Apply this patch >4) Note the buttons now show >5) Test each button on a writeoff >--- > Koha/Account/Line.pm | 4 ++-- > .../intranet-tmpl/prog/en/modules/members/boraccount.tt | 12 ++++++++---- > members/boraccount.pl | 6 ++++-- > t/db_dependent/Accounts.t | 13 +++++++++++-- > 4 files changed, 25 insertions(+), 10 deletions(-) > >diff --git a/Koha/Account/Line.pm b/Koha/Account/Line.pm >index b32f9a7b91..caba957826 100644 >--- a/Koha/Account/Line.pm >+++ b/Koha/Account/Line.pm >@@ -60,11 +60,11 @@ sub void { > my ($self) = @_; > > # Make sure it is a payment we are voiding >- return unless $self->accounttype =~ /^Pay/; >+ return unless $self->amount < 0; > > my @account_offsets = > Koha::Account::Offsets->search( >- { credit_id => $self->id, type => 'Payment' } ); >+ { credit_id => $self->id, amount => { '<' => 0 } } ); > > $self->_result->result_source->schema->txn_do( > sub { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >index f91f929ff0..29f1dc29fe 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -71,10 +71,14 @@ > [% END %] > <a href="accountline-details.pl?accountlines_id=[% account.accountlines_id %]" class="btn btn-default btn-xs"><i class="fa fa-list"></i> Details</a> > [% IF ( reverse_col) %] >- [% IF ( account.payment ) %] >- <a href="boraccount.pl?action=reverse&accountlines_id=[% account.accountlines_id %]&borrowernumber=[% account.borrowernumber %]" class="btn btn-default btn-xs"><i class="fa fa-undo"></i> Reverse</a> >- <a href="boraccount.pl?action=void&accountlines_id=[% account.accountlines_id %]&borrowernumber=[% account.borrowernumber %]" class="btn btn-default btn-xs"><i class="fa fa-ban"></i> Void</a> >- [% ELSE %][% SET footerjs = 1 %] >+ [% IF ( account.payment || account.amount < 0 ) %] >+ [% IF account.payment %] >+ <a href="boraccount.pl?action=reverse&accountlines_id=[% account.accountlines_id %]&borrowernumber=[% account.borrowernumber %]" class="btn btn-default btn-xs"><i class="fa fa-undo"></i> Reverse</a> >+ [% END %] >+ [% IF account.amount < 0 %] >+ <a href="boraccount.pl?action=void&accountlines_id=[% account.accountlines_id %]&borrowernumber=[% account.borrowernumber %]" class="btn btn-default btn-xs"><i class="fa fa-ban"></i> Void</a> >+ [% END %] >+ [% ELSE %] > > [% END %] > [% END %] >diff --git a/members/boraccount.pl b/members/boraccount.pl >index b3d1431e58..f95a268099 100755 >--- a/members/boraccount.pl >+++ b/members/boraccount.pl >@@ -104,8 +104,10 @@ while ( my $line = $accts->next ) { > > $accountline->{amount} = sprintf '%.2f', $accountline->{amount}; > $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding}; >- if ($accountline->{accounttype} =~ /^Pay/) { >- $accountline->{payment} = 1; >+ if ($accountline->{amount} < 0) { >+ $accountline->{payment} = 1 >+ if ( $accountline->{accounttype} =~ /^Pay/ ); >+ > $reverse_col = 1; > } > >diff --git a/t/db_dependent/Accounts.t b/t/db_dependent/Accounts.t >index ab1fc5fe01..5a4db31d0b 100644 >--- a/t/db_dependent/Accounts.t >+++ b/t/db_dependent/Accounts.t >@@ -846,7 +846,7 @@ subtest "Koha::Account::non_issues_charges tests" => sub { > > subtest "Koha::Account::Line::void tests" => sub { > >- plan tests => 12; >+ plan tests => 15; > > # Create a borrower > my $categorycode = $builder->build({ source => 'Category' })->{ categorycode }; >@@ -886,8 +886,9 @@ subtest "Koha::Account::Line::void tests" => sub { > is( $line1->amountoutstanding+0, 0, 'First fee has amount outstanding of 0' ); > is( $line2->amountoutstanding+0, 0, 'Second fee has amount outstanding of 0' ); > >- $account_payment->void(); >+ my $ret = $account_payment->void(); > >+ is( ref($ret), 'Koha::Account::Line', 'Void returns the account line' ); > is( $account->balance(), 30, "Account balance is again 30" ); > > $account_payment->_result->discard_changes(); >@@ -900,6 +901,14 @@ subtest "Koha::Account::Line::void tests" => sub { > > is( $line1->amountoutstanding+0, 10, 'First fee again has amount outstanding of 10' ); > is( $line2->amountoutstanding+0, 20, 'Second fee again has amount outstanding of 20' ); >+ >+ # Accountlines that are not credits should be un-voidable >+ my $line1_pre = $line1->unblessed(); >+ $ret = $line1->void(); >+ $line1->_result->discard_changes(); >+ my $line1_post = $line1->unblessed(); >+ is( $ret, undef, 'Attempted void on non-credit returns undef' ); >+ is_deeply( $line1_pre, $line1_post, 'Non-credit account line cannot be voided' ) > }; > > subtest "Koha::Account::Offset credit & debit tests" => sub { >-- >2.15.1 (Apple Git-101)
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 20703
:
75013
|
75154
|
75468
|
75471
|
75472