Revision 5e056ce8
Von Cem Aydin vor etwa 2 Jahren hinzugefügt
SL/Controller/ListTransactions.pm | ||
---|---|---|
my %data = map { $_ => { class => 'listtotal' } } keys %{ $self->report->{columns} };
|
||
$data{credit}->{data} = $::form->format_amount(\%::myconfig, $subtotal_credit, 2);
|
||
$data{debit}->{data} = $::form->format_amount(\%::myconfig, $subtotal_debit, 2);
|
||
$data{$_}->{align} = 'right' for qw(debit credit);
|
||
push @row_set, \%data;
|
||
|
||
$subtotal_credit = 0.;
|
Auch abrufbar als: Unified diff
ListTransactions Controller: align 'right' für Zwischensummen setzen