View | Details | Raw Unified | Return to bug 10027
Collapse All | Expand All

(-)a/members/printinvoice.pl (-3 / +1 lines)
Lines 47-53 my ($template, $loggedinuser, $cookie) Link Here
47
47
48
my $borrowernumber=$input->param('borrowernumber');
48
my $borrowernumber=$input->param('borrowernumber');
49
my $action = $input->param('action') || '';
49
my $action = $input->param('action') || '';
50
my $accountno = $input->param('accountno');
51
my $accountlines_id = $input->param('accountlines_id');
50
my $accountlines_id = $input->param('accountlines_id');
52
51
53
#get borrower details
52
#get borrower details
Lines 74-80 my @accountrows; # this is for the tmpl-loop Link Here
74
73
75
my $toggle;
74
my $toggle;
76
for (my $i=0;$i<$numaccts;$i++){
75
for (my $i=0;$i<$numaccts;$i++){
77
   next if ($accts->[$i]{'accountno'} ne $accountno);
76
   next if ($accts->[$i]{'accountlines_id'} ne $accountlines_id );
78
    if($i%2){
77
    if($i%2){
79
            $toggle = 0;
78
            $toggle = 0;
80
    } else {
79
    } else {
81
- 

Return to bug 10027