$trans = getTransactions($from, $to, $systype, $user);
+ $tot_amount = 0;
while ($myrow=db_fetch($trans))
{
$rep->TextCol(0, 1, sql2date(date("Y-m-d", $myrow['unix_stamp'])));
else
$action = _('Closed');
$rep->TextCol(6, 7, $action);
- if ($myrow['amount'] != null)
+ if ($myrow['amount'] != null) {
$rep->AmountCol(7, 8, $myrow['amount'], $dec);
+ if ($systype != -1)
+ $tot_amount += $myrow['amount'];
+ }
$rep->NewLine(1, 2);
}
$rep->Line($rep->row + 4);
+ if ($systype != -1) {
+ $rep->NewLine(1, 2);
+ $rep->TextCol(6, 7, _('Total'));
+ $rep->AmountCol(7, 8, $tot_amount, $dec);
+ }
$rep->End();
}