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'); |
50 |
my $accountlines_id = $input->param('accountlines_id'); |
51 |
|
51 |
|
52 |
#get borrower details |
52 |
#get borrower details |
53 |
my $data=GetMember('borrowernumber' => $borrowernumber); |
53 |
my $data=GetMember('borrowernumber' => $borrowernumber); |
Lines 73-79
my @accountrows; # this is for the tmpl-loop
Link Here
|
73 |
|
73 |
|
74 |
my $toggle; |
74 |
my $toggle; |
75 |
for (my $i=0;$i<$numaccts;$i++){ |
75 |
for (my $i=0;$i<$numaccts;$i++){ |
76 |
next if ($accts->[$i]{'accountno'} ne $accountno); |
76 |
next if ( $accts->[$i]{'accountlines_id'} ne $accountlines_id ); |
77 |
if($i%2){ |
77 |
if($i%2){ |
78 |
$toggle = 0; |
78 |
$toggle = 0; |
79 |
} else { |
79 |
} else { |
80 |
- |
|
|