kivitendo/bin/mozilla/ca.pl @ 15e3714a
d319704a | Moritz Bunkus | #=====================================================================
|
||
# LX-Office ERP
|
||||
# Copyright (C) 2004
|
||||
# Based on SQL-Ledger Version 2.1.9
|
||||
# Web http://www.lx-office.org
|
||||
#
|
||||
#=====================================================================
|
||||
# SQL-Ledger Accounting
|
||||
# Copyright (C) 2001
|
||||
#
|
||||
# Author: Dieter Simader
|
||||
# Email: dsimader@sql-ledger.org
|
||||
# Web: http://www.sql-ledger.org
|
||||
#
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
f7b15d43 | Christian Wittmer | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||
# MA 02110-1335, USA.
|
||||
d319704a | Moritz Bunkus | #======================================================================
|
||
#
|
||||
# module for Chart of Accounts, Income Statement and Balance Sheet
|
||||
# search and edit transactions posted by the GL, AR and AP
|
||||
#
|
||||
#======================================================================
|
||||
ec022a58 | Moritz Bunkus | use POSIX qw(strftime);
|
||
d319704a | Moritz Bunkus | use SL::CA;
|
||
cd417762 | Moritz Bunkus | use SL::DB::Default;
|
||
ec022a58 | Moritz Bunkus | use SL::ReportGenerator;
|
||
18da4a96 | Moritz Bunkus | require "bin/mozilla/reportgenerator.pl";
|
||
d319704a | Moritz Bunkus | |||
ed4ab03f | Sven Schöling | use strict;
|
||
d319704a | Moritz Bunkus | 1;
|
||
# end of main
|
||||
# this is for our long dates
|
||||
# $locale->text('January')
|
||||
# $locale->text('February')
|
||||
# $locale->text('March')
|
||||
# $locale->text('April')
|
||||
# $locale->text('May ')
|
||||
# $locale->text('June')
|
||||
# $locale->text('July')
|
||||
# $locale->text('August')
|
||||
# $locale->text('September')
|
||||
# $locale->text('October')
|
||||
# $locale->text('November')
|
||||
# $locale->text('December')
|
||||
# this is for our short month
|
||||
# $locale->text('Jan')
|
||||
# $locale->text('Feb')
|
||||
# $locale->text('Mar')
|
||||
# $locale->text('Apr')
|
||||
# $locale->text('May')
|
||||
# $locale->text('Jun')
|
||||
# $locale->text('Jul')
|
||||
# $locale->text('Aug')
|
||||
# $locale->text('Sep')
|
||||
# $locale->text('Oct')
|
||||
# $locale->text('Nov')
|
||||
# $locale->text('Dec')
|
||||
sub chart_of_accounts {
|
||||
ed4ab03f | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d319704a | Moritz Bunkus | |||
ed4ab03f | Sven Schöling | $main::auth->assert('report');
|
||
8c7e4493 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $form->{title} = $locale->text('Chart of Accounts');
|
||
43f9b1c5 | Geoffrey Richardson | if ( $::instance_conf->get_accounting_method eq 'cash' ) {
|
||
# $form->{method} can probably be made redundant now that we have get_accounting_method
|
||||
703f76b6 | Philip Reetz | $form->{method} = "cash";
|
||
}
|
||||
ec022a58 | Moritz Bunkus | CA->all_accounts(\%myconfig, \%$form);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my @columns = qw(accno description debit credit);
|
||
my %column_defs = (
|
||||
'accno' => { 'text' => $locale->text('Account'), },
|
||||
'description' => { 'text' => $locale->text('Description'), },
|
||||
'debit' => { 'text' => $locale->text('Debit'), },
|
||||
'credit' => { 'text' => $locale->text('Credit'), },
|
||||
);
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $report = SL::ReportGenerator->new(\%myconfig, $form);
|
||
0576299f | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_options('output_format' => 'HTML',
|
||
'title' => $form->{title},
|
||||
'attachment_basename' => $locale->text('chart_of_accounts') . strftime('_%Y%m%d', localtime time),
|
||||
'std_column_visibility' => 1,
|
||||
);
|
||||
$report->set_options_from_form();
|
||||
a873249c | Moritz Bunkus | $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_columns(%column_defs);
|
||
$report->set_column_order(@columns);
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_export_options('chart_of_accounts');
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_sort_indicator($form->{sort}, 1);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my %totals = ('debit' => 0, 'credit' => 0);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | foreach my $ca (@{ $form->{CA} }) {
|
||
1974df33 | Sven Schöling | next unless defined $ca->{amount};
|
||
ec022a58 | Moritz Bunkus | my $row = { };
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | foreach (qw(debit credit)) {
|
||
$totals{$_} += $ca->{$_} * 1;
|
||||
$ca->{$_} = $form->format_amount(\%myconfig, $ca->{$_}, 2) if ($ca->{$_});
|
||||
30a70ccf | Philip Reetz | }
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | map { $row->{$_} = { 'data' => $ca->{$_} } } @columns;
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | map { $row->{$_}->{align} = 'right' } qw(debit credit);
|
||
map { $row->{$_}->{class} = 'listheading' } @columns if ($ca->{charttype} eq "H");
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $row->{accno}->{link} = build_std_url('action=list', 'accno=' . E($ca->{accno}), 'description=' . E($ca->{description}));
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->add_data($row);
|
||
}
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $row = { map { $_ => { 'class' => 'listtotal', 'align' => 'right' } } @columns };
|
||
map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals{$_}, 2) } qw(debit credit);
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->add_separator();
|
||
$report->add_data($row);
|
||||
$report->generate_with_headers();
|
||||
d319704a | Moritz Bunkus | |||
ed4ab03f | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
sub list {
|
||||
82684e3d | Sven Schöling | $::lxdebug->enter_sub;
|
||
$::auth->assert('report');
|
||||
d319704a | Moritz Bunkus | |||
976c74f1 | Peter Schulgin | $::form->{title} = $::locale->text('List Transactions') . " - " . $::locale->text('Account') . " $::form->{accno}" . " - " . $::form->{description};
|
||
cac2ae9b | Peter Schulgin | |||
82684e3d | Sven Schöling | $::form->header;
|
||
print $::form->parse_html_template('ca/list', {
|
||||
year => DateTime->today->year,
|
||||
});
|
||||
$::lxdebug->leave_sub;
|
||||
d319704a | Moritz Bunkus | }
|
||
8e9ede8f | Moritz Bunkus | sub format_debit_credit {
|
||
ed4ab03f | Sven Schöling | $main::lxdebug->enter_sub();
|
||
8e9ede8f | Moritz Bunkus | |||
my $dc = shift;
|
||||
ed4ab03f | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
8e9ede8f | Moritz Bunkus | my $formatted_dc = $form->format_amount(\%myconfig, abs($dc), 2) . ' ';
|
||
$formatted_dc .= ($dc > 0) ? $locale->text('Credit (one letter abbreviation)') : $locale->text('Debit (one letter abbreviation)');
|
||||
ed4ab03f | Sven Schöling | $main::lxdebug->leave_sub();
|
||
8e9ede8f | Moritz Bunkus | |||
return $formatted_dc;
|
||||
}
|
||||
d319704a | Moritz Bunkus | sub list_transactions {
|
||
ed4ab03f | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
cd417762 | Moritz Bunkus | my $defaults = SL::DB::Default->get;
|
||
d319704a | Moritz Bunkus | |||
ed4ab03f | Sven Schöling | $main::auth->assert('report');
|
||
8c7e4493 | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $form->{title} = $locale->text('Account') . " $form->{accno} - $form->{description}";
|
||
d319704a | Moritz Bunkus | |||
8c94b0ea | Philip Reetz | if ($form->{reporttype} eq "custom") {
|
||
#forgotten the year --> thisyear
|
||||
if ($form->{year} !~ m/^\d\d\d\d$/) {
|
||||
$locale->date(\%myconfig, $form->current_date(\%myconfig), 0) =~
|
||||
/(\d\d\d\d)/;
|
||||
$form->{year} = $1;
|
||||
}
|
||||
#yearly report
|
||||
if ($form->{duetyp} eq "13") {
|
||||
$form->{fromdate} = "1.1.$form->{year}";
|
||||
$form->{todate} = "31.12.$form->{year}";
|
||||
}
|
||||
#Quater reports
|
||||
if ($form->{duetyp} eq "A") {
|
||||
$form->{fromdate} = "1.1.$form->{year}";
|
||||
$form->{todate} = "31.3.$form->{year}";
|
||||
}
|
||||
if ($form->{duetyp} eq "B") {
|
||||
$form->{fromdate} = "1.4.$form->{year}";
|
||||
$form->{todate} = "30.6.$form->{year}";
|
||||
}
|
||||
if ($form->{duetyp} eq "C") {
|
||||
$form->{fromdate} = "1.7.$form->{year}";
|
||||
$form->{todate} = "30.9.$form->{year}";
|
||||
}
|
||||
if ($form->{duetyp} eq "D") {
|
||||
$form->{fromdate} = "1.10.$form->{year}";
|
||||
$form->{todate} = "31.12.$form->{year}";
|
||||
}
|
||||
#Monthly reports
|
||||
SWITCH: {
|
||||
$form->{duetyp} eq "1" && do {
|
||||
$form->{fromdate} = "1.1.$form->{year}";
|
||||
$form->{todate} = "31.1.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "2" && do {
|
||||
$form->{fromdate} = "1.2.$form->{year}";
|
||||
#this works from 1901 to 2099, 1900 and 2100 fail.
|
||||
ed4ab03f | Sven Schöling | my $leap = ($form->{year} % 4 == 0) ? "29" : "28";
|
||
8c94b0ea | Philip Reetz | $form->{todate} = "$leap.2.$form->{year}";
|
||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "3" && do {
|
||||
$form->{fromdate} = "1.3.$form->{year}";
|
||||
$form->{todate} = "31.3.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "4" && do {
|
||||
$form->{fromdate} = "1.4.$form->{year}";
|
||||
$form->{todate} = "30.4.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "5" && do {
|
||||
$form->{fromdate} = "1.5.$form->{year}";
|
||||
$form->{todate} = "31.5.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "6" && do {
|
||||
$form->{fromdate} = "1.6.$form->{year}";
|
||||
$form->{todate} = "30.6.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "7" && do {
|
||||
$form->{fromdate} = "1.7.$form->{year}";
|
||||
$form->{todate} = "31.7.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "8" && do {
|
||||
$form->{fromdate} = "1.8.$form->{year}";
|
||||
$form->{todate} = "31.8.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "9" && do {
|
||||
$form->{fromdate} = "1.9.$form->{year}";
|
||||
$form->{todate} = "30.9.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "10" && do {
|
||||
$form->{fromdate} = "1.10.$form->{year}";
|
||||
$form->{todate} = "31.10.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "11" && do {
|
||||
$form->{fromdate} = "1.11.$form->{year}";
|
||||
$form->{todate} = "30.11.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
$form->{duetyp} eq "12" && do {
|
||||
$form->{fromdate} = "1.12.$form->{year}";
|
||||
$form->{todate} = "31.12.$form->{year}";
|
||||
last SWITCH;
|
||||
};
|
||||
}
|
||||
}
|
||||
ec022a58 | Moritz Bunkus | CA->all_transactions(\%myconfig, \%$form);
|
||
d319704a | Moritz Bunkus | |||
4654d993 | Philip Reetz | $form->{saldo_old} += $form->{beginning_balance};
|
||
$form->{saldo_new} += $form->{beginning_balance};
|
||||
8e9ede8f | Moritz Bunkus | my $saldo_old = format_debit_credit($form->{saldo_old});
|
||
my $eb_string = format_debit_credit($form->{beginning_balance});
|
||||
09f64724 | Philip Reetz | $form->{balance} = $form->{saldo_old};
|
||
8c94b0ea | Philip Reetz | |||
ec022a58 | Moritz Bunkus | my @options;
|
||
d319704a | Moritz Bunkus | if ($form->{department}) {
|
||
ec022a58 | Moritz Bunkus | my ($department) = split /--/, $form->{department};
|
||
push @options, $locale->text('Department') . " : $department";
|
||||
d319704a | Moritz Bunkus | }
|
||
if ($form->{projectnumber}) {
|
||||
ec022a58 | Moritz Bunkus | push @options, $locale->text('Project Number') . " : $form->{projectnumber}<br>";
|
||
d319704a | Moritz Bunkus | }
|
||
ec022a58 | Moritz Bunkus | my $period;
|
||
d319704a | Moritz Bunkus | if ($form->{fromdate} || $form->{todate}) {
|
||
ec022a58 | Moritz Bunkus | my ($fromdate, $todate);
|
||
d319704a | Moritz Bunkus | if ($form->{fromdate}) {
|
||
$fromdate = $locale->date(\%myconfig, $form->{fromdate}, 1);
|
||||
}
|
||||
if ($form->{todate}) {
|
||||
$todate = $locale->date(\%myconfig, $form->{todate}, 1);
|
||||
}
|
||||
ec022a58 | Moritz Bunkus | $period = "$fromdate - $todate";
|
||
d319704a | Moritz Bunkus | } else {
|
||
ec022a58 | Moritz Bunkus | $period = $locale->date(\%myconfig, $form->current_date(\%myconfig), 1);
|
||
d319704a | Moritz Bunkus | }
|
||
ec022a58 | Moritz Bunkus | push @options, $period;
|
||
d319704a | Moritz Bunkus | |||
46a67f95 | Philip Reetz | $form->{print_date} = $locale->text('Create Date') . " " . $locale->date(\%myconfig, $form->current_date(\%myconfig), 0);
|
||
push (@options, $form->{print_date});
|
||||
cd417762 | Moritz Bunkus | $form->{company} = $locale->text('Company') . " " . $defaults->company;
|
||
46a67f95 | Philip Reetz | push (@options, $form->{company});
|
||
09f64724 | Philip Reetz | my @columns = qw(transdate reference description gegenkonto debit credit ustkonto ustrate balance);
|
||
ec022a58 | Moritz Bunkus | my %column_defs = (
|
||
'transdate' => { 'text' => $locale->text('Date'), },
|
||||
'reference' => { 'text' => $locale->text('Reference'), },
|
||||
'description' => { 'text' => $locale->text('Description'), },
|
||||
'debit' => { 'text' => $locale->text('Debit'), },
|
||||
'credit' => { 'text' => $locale->text('Credit'), },
|
||||
53d96600 | Moritz Bunkus | 'gegenkonto' => { 'text' => $locale->text('Gegenkonto'), },
|
||
'ustkonto' => { 'text' => $locale->text('USt-Konto'), },
|
||||
'balance' => { 'text' => $locale->text('Balance'), },
|
||||
09f64724 | Philip Reetz | 'ustrate' => { 'text' => $locale->text('Satz %'), },
|
||
8c94b0ea | Philip Reetz | );
|
||
7d0e997b | Philip Reetz | |||
3f0b42e6 | Geoffrey Richardson | my @hidden_variables = qw(accno fromdate todate description accounttype l_heading subtotal department projectnumber project_id sort method);
|
||
7d0e997b | Philip Reetz | |||
my $link = build_std_url('action=list_transactions', grep { $form->{$_} } @hidden_variables);
|
||||
$form->{callback} = $link . '&sort=' . E($form->{sort});
|
||||
7b108151 | Sven Schöling | my %column_alignment = map { $_ => 'right' } qw(debit credit balance);
|
||
8c94b0ea | Philip Reetz | |||
ed4ab03f | Sven Schöling | my @custom_headers = ();
|
||
8c94b0ea | Philip Reetz | # Zeile 1:
|
||
push @custom_headers, [
|
||||
{ 'text' => 'Letzte Buchung', },
|
||||
{ 'text' => 'EB-Wert', },
|
||||
{ 'text' => 'Saldo alt', 'colspan' => 2, },
|
||||
{ 'text' => 'Jahresverkehrszahlen alt', 'colspan' => 2, },
|
||||
{ 'text' => '', 'colspan' => 2, },
|
||||
];
|
||||
push @custom_headers, [
|
||||
{ 'text' => $form->{last_transaction}, },
|
||||
{ 'text' => $eb_string, },
|
||||
{ 'text' => $saldo_old, 'colspan' => 2, },
|
||||
{ 'text' => $form->format_amount(\%myconfig, abs($form->{old_balance_debit}), 2) . " S", },
|
||||
{ 'text' => $form->format_amount(\%myconfig, $form->{old_balance_credit}, 2) . " H", },
|
||||
{ 'text' => '', 'colspan' => 2, },
|
||||
];
|
||||
# Zeile 2:
|
||||
push @custom_headers, [
|
||||
7d0e997b | Philip Reetz | { 'text' => $locale->text('Date'), 'link' => $link . "&sort=transdate", },
|
||
{ 'text' => $locale->text('Reference'), 'link' => $link . "&sort=reference", },
|
||||
{ 'text' => $locale->text('Description'), 'link' => $link . "&sort=description", },
|
||||
8c94b0ea | Philip Reetz | { 'text' => $locale->text('Gegenkonto'), },
|
||
{ 'text' => $locale->text('Debit'), },
|
||||
{ 'text' => $locale->text('Credit'), },
|
||||
{ 'text' => $locale->text('USt-Konto'), },
|
||||
{ 'text' => $locale->text('Satz %'), },
|
||||
09f64724 | Philip Reetz | { 'text' => $locale->text('Balance'), },
|
||
8c94b0ea | Philip Reetz | ];
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $report = SL::ReportGenerator->new(\%myconfig, $form);
|
||
8c94b0ea | Philip Reetz | $report->set_custom_headers(@custom_headers);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_options('top_info_text' => join("\n", @options),
|
||
'output_format' => 'HTML',
|
||||
'title' => $form->{title},
|
||||
'attachment_basename' => $locale->text('list_of_transactions') . strftime('_%Y%m%d', localtime time),
|
||||
'std_column_visibility' => 1,
|
||||
);
|
||||
$report->set_options_from_form();
|
||||
a873249c | Moritz Bunkus | $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_columns(%column_defs);
|
||
$report->set_column_order(@columns);
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_export_options('list_transactions', @hidden_variables);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->set_sort_indicator($form->{sort}, 1);
|
||
d319704a | Moritz Bunkus | |||
ed4ab03f | Sven Schöling | $column_defs{balance}->{visible} = 1;
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $ml = ($form->{category} =~ /(A|E)/) ? -1 : 1;
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $idx = 0;
|
||
my %totals = ( 'debit' => 0, 'credit' => 0 );
|
||||
my %subtotals = ( 'debit' => 0, 'credit' => 0 );
|
||||
9c879953 | Moritz Bunkus | my ($previous_index, $row_set);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | foreach my $ca (@{ $form->{CA} }) {
|
||
foreach (qw(debit credit)) {
|
||||
$subtotals{$_} += $ca->{$_};
|
||||
$totals{$_} += $ca->{$_};
|
||||
09f64724 | Philip Reetz | if ($_ =~ /debit.*/) {
|
||
$ml = -1;
|
||||
} else {
|
||||
$ml = 1;
|
||||
}
|
||||
$form->{balance}= $form->{balance} + $ca->{$_} * $ml;
|
||||
ec022a58 | Moritz Bunkus | $ca->{$_} = $form->format_amount(\%myconfig, $ca->{$_}, 2) if ($ca->{$_} != 0);
|
||
d319704a | Moritz Bunkus | }
|
||
7d0e997b | Philip Reetz | my $do_subtotal = 0;
|
||
if (($form->{subtotal})
|
||||
&& (($idx == scalar @{ $form->{CA} } - 1)
|
||||
|| ($ca->{$form->{sort}} ne $form->{CA}->[$idx + 1]->{$form->{sort}}))) {
|
||||
$do_subtotal = 1;
|
||||
}
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $row = { };
|
||
d319704a | Moritz Bunkus | |||
8c94b0ea | Philip Reetz | $ca->{ustrate} = $form->format_amount(\%myconfig, $ca->{ustrate} * 100, 2) if ($ca->{ustrate} != 0);
|
||
6cbeab9a | Philip Reetz | if ($ca->{memo} ne "") {
|
||
b3bcbbe9 | Philip Reetz | $ca->{description} .= " \n " . $ca->{memo};
|
||
6cbeab9a | Philip Reetz | }
|
||
1974df33 | Sven Schöling | |||
8c94b0ea | Philip Reetz | |||
foreach my $gegenkonto (@{ $ca->{GEGENKONTO} }) {
|
||||
if ($ca->{gegenkonto} eq "") {
|
||||
$ca->{gegenkonto} = $gegenkonto->{accno};
|
||||
} else {
|
||||
$ca->{gegenkonto} .= ", " . $gegenkonto->{accno};
|
||||
}
|
||||
}
|
||||
ec022a58 | Moritz Bunkus | foreach (@columns) {
|
||
$row->{$_} = {
|
||||
'data' => $ca->{$_},
|
||||
'align' => $column_alignment{$_},
|
||||
};
|
||||
}
|
||||
d319704a | Moritz Bunkus | |||
4654d993 | Philip Reetz | $row->{balance}->{data} = $form->format_amount(\%myconfig, $form->{balance}, 2, 'DRCR');
|
||
09f64724 | Philip Reetz | |||
9c879953 | Moritz Bunkus | if ($ca->{index} ne $previous_index) {
|
||
7d0e997b | Philip Reetz | # $report->add_data($row_set) if ($row_set);
|
||
d319704a | Moritz Bunkus | |||
7d0e997b | Philip Reetz | # $row_set = [ ];
|
||
9c879953 | Moritz Bunkus | $previous_index = $ca->{index};
|
||
$row->{reference}->{link} = build_std_url("script=$ca->{module}.pl", 'action=edit', 'id=' . E($ca->{id}), 'callback');
|
||||
7d0e997b | Philip Reetz | } elsif ($ca->{index} eq $previous_index) {
|
||
9c879953 | Moritz Bunkus | map { $row->{$_}->{data} = '' } qw(reference description);
|
||
$row->{transdate}->{data} = '' if ($form->{sort} eq 'transdate');
|
||||
}
|
||||
7d0e997b | Philip Reetz | my $row_set = [];
|
||
9c879953 | Moritz Bunkus | push @{ $row_set }, $row;
|
||
d319704a | Moritz Bunkus | |||
7d0e997b | Philip Reetz | push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, 'listsubtotal') if ($do_subtotal);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $idx++;
|
||
7d0e997b | Philip Reetz | $report->add_data($row_set);
|
||
ec022a58 | Moritz Bunkus | }
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->add_data($row_set) if ($row_set);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | $report->add_separator();
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $row = create_subtotal_row(\%totals, \@columns, \%column_alignment, 'listtotal');
|
||
09f64724 | Philip Reetz | |||
4654d993 | Philip Reetz | $row->{balance}->{data} = $form->format_amount(\%myconfig, $form->{balance}, 2, 'DRCR');
|
||
09f64724 | Philip Reetz | |||
ec022a58 | Moritz Bunkus | $report->add_data($row);
|
||
d319704a | Moritz Bunkus | |||
8c94b0ea | Philip Reetz | |||
$report->add_separator();
|
||||
ed4ab03f | Sven Schöling | $row = {
|
||
8c94b0ea | Philip Reetz | 'transdate' => {
|
||
'data' => "",
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'reference' => {
|
||||
'data' => $locale->text('EB-Wert'),
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'description' => {
|
||||
'data' => $locale->text('Saldo neu'),
|
||||
'colspan' => 2,
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'debit' => {
|
||||
'data' => $locale->text('Jahresverkehrszahlen neu'),
|
||||
'colspan' => 2,
|
||||
'align' => 'left',
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'ustkonto' => {
|
||||
'data' => '',
|
||||
'colspan' => 2,
|
||||
'align' => 'left',
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
};
|
||||
$report->add_data($row);
|
||||
8e9ede8f | Moritz Bunkus | my $saldo_new = format_debit_credit($form->{saldo_new});
|
||
ed4ab03f | Sven Schöling | $row = {
|
||
8c94b0ea | Philip Reetz | 'transdate' => {
|
||
'data' => "",
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'reference' => {
|
||||
'data' => $eb_string,
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'description' => {
|
||||
'data' => $saldo_new,
|
||||
'colspan' => 2,
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'debit' => {
|
||||
'data' => $form->format_amount(\%myconfig, abs($form->{current_balance_debit}) , 2) . " S",
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'credit' => {
|
||||
'data' => $form->format_amount(\%myconfig, $form->{current_balance_credit}, 2) . " H",
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
'ustkonto' => {
|
||||
'data' => "",
|
||||
'colspan' => 2,
|
||||
'class' => 'listtotal',
|
||||
},
|
||||
};
|
||||
$report->add_data($row);
|
||||
ec022a58 | Moritz Bunkus | $report->generate_with_headers();
|
||
d319704a | Moritz Bunkus | |||
ed4ab03f | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
ec022a58 | Moritz Bunkus | sub create_subtotal_row {
|
||
ed4ab03f | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my ($totals, $columns, $column_alignment, $class) = @_;
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } qw(credit debit);
|
||
d319704a | Moritz Bunkus | |||
ec022a58 | Moritz Bunkus | map { $totals->{$_} = 0 } qw(debit credit);
|
||
d319704a | Moritz Bunkus | |||
ed4ab03f | Sven Schöling | $main::lxdebug->leave_sub();
|
||
ec022a58 | Moritz Bunkus | |||
return $row;
|
||||
d319704a | Moritz Bunkus | }
|