Bugzilla – Attachment 21492 Details for
Bug 10954
Payment receipt does not display the payment made
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10954 - Payment receipt does not display the payment made
Bug-10954---Payment-receipt-does-not-display-the-p.patch (text/plain), 1.41 KB, created by
Kyle M Hall (khall)
on 2013-09-26 16:24:12 UTC
(
hide
)
Description:
Bug 10954 - Payment receipt does not display the payment made
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2013-09-26 16:24:12 UTC
Size:
1.41 KB
patch
obsolete
>From 8808008e8736cf986876703542e3d380c0602bc7 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 26 Sep 2013 12:22:39 -0400 >Subject: [PATCH] Bug 10954 - Payment receipt does not display the payment made > >When printing a payment receipt, the payment does not display, only the >total currently owed. > >Test Plan: >1) Create a payment for a borrower >2) Print the payment with the "print" button to the right of the payment >3) Note the missing payment line >4) Apply this patch >5) Repeat step 2 >6) Note the payment line now displays >--- > members/printfeercpt.pl | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/members/printfeercpt.pl b/members/printfeercpt.pl >index 59d5cb3..fb15d3c 100755 >--- a/members/printfeercpt.pl >+++ b/members/printfeercpt.pl >@@ -47,7 +47,7 @@ my ($template, $loggedinuser, $cookie) > > my $borrowernumber=$input->param('borrowernumber'); > my $action = $input->param('action') || ''; >-my $accountno = $input->param('accountno'); >+my $accountlines_id = $input->param('accountlines_id'); > > #get borrower details > my $data=GetMember('borrowernumber' => $borrowernumber); >@@ -73,7 +73,7 @@ my @accountrows; # this is for the tmpl-loop > > my $toggle; > for (my $i=0;$i<$numaccts;$i++){ >- next if ($accts->[$i]{'accountno'} ne $accountno); >+ next if ( $accts->[$i]{'accountlines_id'} ne $accountlines_id ); > if($i%2){ > $toggle = 0; > } else { >-- >1.7.2.5
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 10954
:
21490
|
21491
|
21492
|
22022
|
22234