Lines 89-95
for (my $i=0;$i<$numaccts;$i++){
Link Here
|
89 |
if($accts->[$i]{'amountoutstanding'} <= 0){ |
89 |
if($accts->[$i]{'amountoutstanding'} <= 0){ |
90 |
$accts->[$i]{'amountoutstandingcredit'} = 1; |
90 |
$accts->[$i]{'amountoutstandingcredit'} = 1; |
91 |
} |
91 |
} |
92 |
my %row = ( 'date' => output_pref({ dt => dt_from_string( $accts->[$i]{'date'} ), dateformat => 'iso', dateonly => 1 }), |
92 |
|
|
|
93 |
my %row = ( 'date' => dt_from_string( $accts->[$i]{'date'} ), |
93 |
'amountcredit' => $accts->[$i]{'amountcredit'}, |
94 |
'amountcredit' => $accts->[$i]{'amountcredit'}, |
94 |
'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'}, |
95 |
'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'}, |
95 |
'toggle' => $accts->[$i]{'toggle'}, |
96 |
'toggle' => $accts->[$i]{'toggle'}, |
96 |
- |
|
|