Bugzilla – Attachment 49575 Details for
Bug 15903
Remove use of recordpayment in paycollect.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15903 - Remove use of recordpayment in paycollect.pl
Bug-15903---Remove-use-of-recordpayment-in-paycoll.patch (text/plain), 1.43 KB, created by
Mirko Tietgen
on 2016-03-25 07:41:20 UTC
(
hide
)
Description:
Bug 15903 - Remove use of recordpayment in paycollect.pl
Filename:
MIME Type:
Creator:
Mirko Tietgen
Created:
2016-03-25 07:41:20 UTC
Size:
1.43 KB
patch
obsolete
>From edd5af905f6168d0796277997e22344c0581bcee Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 24 Feb 2016 15:25:04 +0000 >Subject: [PATCH] Bug 15903 - Remove use of recordpayment in paycollect.pl > >Test Plan: >1) Apply this patch >2) Pay a fine via the "Pay amount" button >3) Payment should succeed. > >Signed-off-by: Mirko Tietgen <mirko@abunchofthings.net> >--- > members/paycollect.pl | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/members/paycollect.pl b/members/paycollect.pl >index e9de655..a66e955 100755 >--- a/members/paycollect.pl >+++ b/members/paycollect.pl >@@ -30,6 +30,7 @@ use C4::Accounts; > use C4::Koha; > use C4::Branch; > use Koha::Patron::Images; >+use Koha::Account; > > my $input = CGI->new(); > >@@ -127,11 +128,10 @@ if ( $total_paid and $total_paid ne '0.00' ) { > recordpayment_selectaccts( $borrowernumber, $total_paid, \@acc, $note ); > } else { > my $note = $input->param('selected_accts_notes'); >- recordpayment( $borrowernumber, $total_paid, '', $note ); >+ Koha::Account->new( { patron_id => $borrowernumber } ) >+ ->pay( { amount => $total_paid, note => $note } ); > } > >-# recordpayment does not return success or failure so lets redisplay the boraccount >- > print $input->redirect( > "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber" > ); >-- >2.1.4
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 15903
:
48340
|
49575
|
52145
|
54161
|
55877