1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (C) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  15 #  Contributors: Benjamin Lee <benjaminlee@consultant.com>
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
  30 #======================================================================
 
  32 # backend code for reports
 
  34 #======================================================================
 
  40 use SL::DB::Helper::AccountingPeriod qw(get_balance_starting_date);
 
  41 use List::Util qw(sum);
 
  42 use List::UtilsBy qw(partition_by sort_by);
 
  48 # new implementation of balance sheet
 
  51 # stuff missing from the original implementation:
 
  54 # - proper testing for heading charts
 
  55 # - transmission from $form to TMPL realm is not as clear as i'd like
 
  58   $main::lxdebug->enter_sub();
 
  62   my $myconfig = \%main::myconfig;
 
  63   my $form     = $main::form;
 
  64   my $dbh      = $::form->get_standard_dbh;
 
  67   my @categories  = qw(A C L Q);
 
  69   # if there are any dates construct a where
 
  70   if ($form->{asofdate}) {
 
  71     $form->{period} = $form->{this_period} = conv_dateq($form->{asofdate});
 
  74   # get starting date for calculating balance
 
  75   $form->{this_startdate} = $self->get_balance_starting_date($form->{asofdate});
 
  77   get_accounts($dbh, $last_period, $form->{this_startdate}, $form->{asofdate}, $form, \@categories);
 
  79   # if there are any compare dates
 
  80   if ($form->{compareasofdate}) {
 
  83     $form->{last_startdate} = $self->get_balance_starting_date($form->{compareasofdate});
 
  85     get_accounts($dbh, $last_period, $form->{last_startdate} , $form->{compareasofdate}, $form, \@categories);
 
  86     $form->{last_period} = conv_dateq($form->{compareasofdate});
 
  89   # now we got $form->{A}{accno}{ }    assets
 
  90   # and $form->{L}{accno}{ }           liabilities
 
  91   # and $form->{Q}{accno}{ }           equity
 
  92   # build asset accounts
 
  94   my %account = ('A' => { 'ml'     => -1 },
 
  96                  'Q' => { 'ml'     =>  1 });
 
 100   foreach my $category (grep { !/C/ } @categories) {
 
 102     $TMPL_DATA->{$category} = [];
 
 103     my $ml  = $account{$category}{ml};
 
 105     foreach my $key (sort keys %{ $form->{$category} }) {
 
 107       my $row = { %{ $form->{$category}{$key} } };
 
 109       # if charttype "heading" - calculate this entry, start a new batch of charts belonging to this heading and skip the rest bo the loop
 
 110       # header charts are not real charts. start a sub aggregation with them, but don't calculate anything with them
 
 111       if ($row->{charttype} eq "H") {
 
 112         if ($account{$category}{subtotal} && $form->{l_subtotal}) {
 
 113           $row->{subdescription} = $account{$category}{subdescription};
 
 114           $row->{this}           = $account{$category}{subthis} * $ml;                   # format: $dec, $dash
 
 115           $row->{last}           = $account{$category}{sublast} * $ml if $last_period;   # format: $dec, $dash
 
 118         $row->{subheader} = 1;
 
 119         $account{$category}{subthis}        = $row->{this};
 
 120         $account{$category}{sublast}        = $row->{last};
 
 121         $account{$category}{subdescription} = $row->{description};
 
 122         $account{$category}{subtotal} = 1;
 
 127         next unless $form->{l_heading};
 
 130       for my $period (qw(this last)) {
 
 131         next if ($period eq 'last' && !$last_period);
 
 133         $row->{$period}                    *= $ml;
 
 136       push @{ $TMPL_DATA->{$category} }, $row;
 
 139     # resolve heading/subtotal
 
 140     if ($account{$category}{subtotal} && $form->{l_subtotal}) {
 
 141       $TMPL_DATA->{$category}[-1]{subdescription} = $account{$category}{subdescription};
 
 142       $TMPL_DATA->{$category}[-1]{this}           = $account{$category}{subthis} * $ml;                   # format: $dec, $dash
 
 143       $TMPL_DATA->{$category}[-1]{last}           = $account{$category}{sublast} * $ml if $last_period;   # format: $dec, $dash
 
 146     $TMPL_DATA->{total}{$category}{this} = sum map { $_->{this} } @{ $TMPL_DATA->{$category} };
 
 147     $TMPL_DATA->{total}{$category}{last} = sum map { $_->{last} } @{ $TMPL_DATA->{$category} };
 
 150   for my $period (qw(this last)) {
 
 151     next if ($period eq 'last' && !$last_period);
 
 153     $form->{E}{$period}             = $TMPL_DATA->{total}{A}{$period} - $TMPL_DATA->{total}{L}{$period} - $TMPL_DATA->{total}{Q}{$period};
 
 154     $TMPL_DATA->{total}{Q}{$period}     += $form->{E}{$period};
 
 155     $TMPL_DATA->{total}{$period}    = $TMPL_DATA->{total}{L}{$period} + $TMPL_DATA->{total}{Q}{$period};
 
 157     $form->{E}{description}='nicht verbuchter Gewinn/Verlust';
 
 158   push @{ $TMPL_DATA->{Q} }, $form->{E};
 
 160   $main::lxdebug->leave_sub();
 
 166   $main::lxdebug->enter_sub();
 
 168   my ($dbh, $last_period, $fromdate, $todate, $form, $categories) = @_;
 
 170   my ($null, $department_id) = split /--/, $form->{department};
 
 174   my $dpt_where_without_arapgl = '';
 
 181   my $dec = $form->{decimalplaces};
 
 183   my $category = qq| AND (| . join(" OR ", map({ "(c.category = " . $dbh->quote($_) . ")" } @{$categories})) . qq|) |;
 
 187     qq|SELECT c.accno, c.description, c.category
 
 189        WHERE (c.charttype = 'H')
 
 193   $sth = prepare_execute_query($form, $dbh, $query);
 
 195   my @headingaccounts = ();
 
 196   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 197     $form->{ $ref->{category} }{ $ref->{accno} }{description} =
 
 198       "$ref->{description}";
 
 199     $form->{ $ref->{category} }{ $ref->{accno} }{charttype} = "H";
 
 200     $form->{ $ref->{category} }{ $ref->{accno} }{accno}     = $ref->{accno};
 
 202     push @headingaccounts, $ref->{accno};
 
 207   # filter for opening and closing bookings
 
 208   # if l_ob is selected l_cb is always ignored
 
 209   if ( $last_period ) {
 
 210     # ob/cb-settings for "compared to" balance
 
 211     if ( $form->{l_ob_compared} ) {
 
 212       $where .= ' AND ac.ob_transaction is true  '
 
 213     } elsif ( not $form->{l_cb_compared} ) {
 
 214       $where .= ' AND ac.cb_transaction is false ';
 
 217     # ob/cb-settings for "as of" balance
 
 218     if ( $form->{l_ob} ) {
 
 219       $where .= ' AND ac.ob_transaction is true  '
 
 220     } elsif ( not $form->{l_cb} ) {
 
 221       $where .= ' AND ac.cb_transaction is false ';
 
 227     $fromdate = conv_dateq($fromdate);
 
 228     if ($form->{method} eq 'cash') {
 
 229       $subwhere .= " AND (transdate >= $fromdate)";
 
 230       $glwhere = " AND (ac.transdate >= $fromdate)";
 
 232       $where .= " AND (ac.transdate >= $fromdate)";
 
 237     $todate = conv_dateq($todate);
 
 238     $where    .= " AND (ac.transdate <= $todate)";
 
 239     $subwhere .= " AND (transdate <= $todate)";
 
 242   if ($department_id) {
 
 243     $dpt_where = qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|)|;
 
 246   if ($form->{project_id}) {
 
 247     # Diese Bedingung wird derzeit niemals wahr sein, da man in Bericht->Bilanz keine
 
 248     # Projekte auswählen kann
 
 249     $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
 
 252   if ($form->{method} eq 'cash') {
 
 254       qq|SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 256          JOIN chart c ON (c.id = ac.chart_id)
 
 257          JOIN ar a ON (a.id = ac.trans_id)
 
 265                WHERE (a.chart_link LIKE '%AR_paid%')
 
 269          GROUP BY c.accno, c.description, c.category
 
 273          SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 275          JOIN chart c ON (c.id = ac.chart_id)
 
 276          JOIN ap a ON (a.id = ac.trans_id)
 
 284                WHERE (a.chart_link LIKE '%AP_paid%')
 
 288          GROUP BY c.accno, c.description, c.category
 
 292          SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 294          JOIN chart c ON (c.id = ac.chart_id)
 
 295          JOIN gl a ON (a.id = ac.trans_id)
 
 300              AND NOT ((ac.chart_link = 'AR') OR (ac.chart_link = 'AP'))
 
 302          GROUP BY c.accno, c.description, c.category |;
 
 304     if ($form->{project_id}) {
 
 305       # s.o. keine Projektauswahl in Bilanz
 
 310          SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount, c.description AS description, c.category
 
 312          JOIN ar a ON (a.id = ac.trans_id)
 
 313          JOIN parts p ON (ac.parts_id = p.id)
 
 314          JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 315          JOIN chart c on (t.income_accno_id = c.id)
 
 316          -- use transdate from subwhere
 
 317          WHERE (c.category = 'I')
 
 324                WHERE (a.chart_link LIKE '%AR_paid%')
 
 328          GROUP BY c.accno, c.description, c.category
 
 332          SELECT c.accno AS accno, SUM(ac.sellprice) AS amount, c.description AS description, c.category
 
 334          JOIN ap a ON (a.id = ac.trans_id)
 
 335          JOIN parts p ON (ac.parts_id = p.id)
 
 336          JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 337          JOIN chart c on (t.expense_accno_id = c.id)
 
 338          WHERE (c.category = 'E')
 
 345                WHERE a.chart_link LIKE '%AP_paid%'
 
 349          GROUP BY c.accno, c.description, c.category |;
 
 352   } else {                      # if ($form->{method} eq 'cash')
 
 353     if ($department_id) {
 
 354       $dpt_where = qq| AND a.department_id = | . conv_i($department_id);
 
 355       $dpt_where_without_arapgl = qq| AND COALESCE((SELECT department_id FROM ar WHERE ar.id=ac.trans_id),
 
 356                                                    (SELECT department_id FROM gl WHERE gl.id=ac.trans_id),
 
 357                                                    (SELECT department_id FROM ap WHERE ap.id=ac.trans_id)) = | . conv_i($department_id);
 
 361       SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 363       JOIN chart c ON (c.id = ac.chart_id)
 
 365         $dpt_where_without_arapgl
 
 368       GROUP BY c.accno, c.description, c.category |;
 
 370     if ($form->{project_id}) {
 
 371       # s.o. keine Projektauswahl in Bilanz
 
 375       SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount, c.description AS description, c.category
 
 377       JOIN ar a ON (a.id = ac.trans_id)
 
 378       JOIN parts p ON (ac.parts_id = p.id)
 
 379       JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 380       JOIN chart c on (t.income_accno_id = c.id)
 
 381       -- use transdate from subwhere
 
 382       WHERE (c.category = 'I')
 
 386       GROUP BY c.accno, c.description, c.category
 
 390       SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) * -1 AS amount, c.description AS description, c.category
 
 392       JOIN ap a ON (a.id = ac.trans_id)
 
 393       JOIN parts p ON (ac.parts_id = p.id)
 
 394       JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 395       JOIN chart c on (t.expense_accno_id = c.id)
 
 396       WHERE (c.category = 'E')
 
 400       GROUP BY c.accno, c.description, c.category |;
 
 408   $sth = prepare_execute_query($form, $dbh, $query);
 
 410   while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 412     if ($ref->{category} eq 'C') {
 
 413       $ref->{category} = 'A';
 
 416     # get last heading account
 
 417     @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
 
 421         $form->{ $ref->{category} }{$accno}{last} += $ref->{amount};
 
 423         $form->{ $ref->{category} }{$accno}{this} += $ref->{amount};
 
 427     $form->{ $ref->{category} }{ $ref->{accno} }{accno}       = $ref->{accno};
 
 428     $form->{ $ref->{category} }{ $ref->{accno} }{description} = $ref->{description};
 
 429     $form->{ $ref->{category} }{ $ref->{accno} }{charttype} = "A";
 
 432       $form->{ $ref->{category} }{ $ref->{accno} }{last} += $ref->{amount};
 
 434       $form->{ $ref->{category} }{ $ref->{accno} }{this} += $ref->{amount};
 
 439   # remove accounts with zero balance
 
 440   foreach $category (@{$categories}) {
 
 441     foreach $accno (keys %{ $form->{$category} }) {
 
 442       $form->{$category}{$accno}{last} = $form->round_amount($form->{$category}{$accno}{last}, $dec);
 
 443       $form->{$category}{$accno}{this} = $form->round_amount($form->{$category}{$accno}{this}, $dec);
 
 445       delete $form->{$category}{$accno}
 
 446         if (   $form->{$category}{$accno}{this} == 0
 
 447             && $form->{$category}{$accno}{last} == 0);
 
 451   $main::lxdebug->leave_sub();
 
 455   $main::lxdebug->enter_sub();
 
 457   my ($dbh, $last_period, $fromdate, $todate, $form, $category) = @_;
 
 459   my ($null, $department_id) = split /--/, $form->{department};
 
 463   my $dpt_where_without_arapgl;
 
 472   $where .= ' AND ac.cb_transaction is false ' unless $form->{l_cb};
 
 475     $fromdate = conv_dateq($fromdate);
 
 476     if ($form->{method} eq 'cash') {
 
 477       $subwhere .= " AND (transdate    >= $fromdate)";
 
 478       $glwhere   = " AND (ac.transdate >= $fromdate)";
 
 479       $prwhere   = " AND (a.transdate  >= $fromdate)";
 
 480       $inwhere   = " AND (acc.transdate >= $fromdate)";
 
 482       $where    .= " AND (ac.transdate >= $fromdate)";
 
 483       # hotfix for projectfilter in guv and bwa
 
 484       # fromdate is otherwise ignored if project is selected
 
 485       $prwhere   = " AND (a.transdate  >= $fromdate)";
 
 490     $todate = conv_dateq($todate);
 
 491     $subwhere   .= " AND (transdate    <= $todate)";
 
 492     $where      .= " AND (ac.transdate <= $todate)";
 
 493     $prwhere    .= " AND (a.transdate  <= $todate)";
 
 494     $inwhere    .= " AND (acc.transdate <= $todate)";
 
 497   if ($department_id) {
 
 498     $dpt_where = qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
 
 501   if ($form->{project_id}) {
 
 502     $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}) . qq|) |;
 
 506 # GUV patch by Ronny Rentner (Bug 1190)
 
 508 # GUV IST-Versteuerung
 
 510 # Alle tatsaechlichen _Zahlungseingaenge_
 
 511 # im Zeitraum erfassen
 
 512 # (Teilzahlungen werden prozentual auf verschiedene Steuern aufgeteilt)
 
 516   if ($form->{method} eq 'cash') {
 
 519        SELECT SUM( ac.amount * CASE WHEN COALESCE((SELECT amount FROM ar a WHERE id = ac.trans_id $dpt_where), 0) != 0 THEN
 
 520             /* ar amount is not zero, so we can divide by amount   */
 
 521                     (SELECT SUM(acc.amount) * -1
 
 524                      AND acc.trans_id = ac.trans_id
 
 525                      AND acc.chart_link LIKE '%AR_paid%')
 
 526                   / (SELECT amount FROM ar WHERE id = ac.trans_id)
 
 528             /* ar amount is zero, or we are checking with a non-ar-transaction, so we return 0 in both cases as multiplicator of ac.amount */
 
 530                 ) AS amount, c.$category, c.accno, c.description
 
 532        LEFT JOIN chart c ON (c.id  = ac.chart_id)
 
 533        LEFT JOIN ar      ON (ar.id = ac.trans_id)
 
 534       WHERE ac.trans_id IN (SELECT DISTINCT trans_id FROM acc_trans WHERE 1=1 $subwhere)
 
 536       GROUP BY c.$category, c.accno, c.description
 
 539        SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 541          JOIN chart c ON (c.id = ac.chart_id)
 
 542          JOIN ar a ON (a.id = ac.trans_id)
 
 543          WHERE $where $dpt_where
 
 544            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans a WHERE (a.chart_link LIKE '%AR_paid%') $subwhere)
 
 546          GROUP BY c.$category, c.accno, c.description
 
 550          SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 552          JOIN chart c ON (c.id = ac.chart_id)
 
 553          JOIN ap a ON (a.id = ac.trans_id)
 
 554          WHERE $where $dpt_where
 
 555            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans a WHERE (a.chart_link LIKE '%AP_paid%') $subwhere)
 
 557          GROUP BY c.$category, c.accno, c.description
 
 561          SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 563          JOIN chart c ON (c.id = ac.chart_id)
 
 564          JOIN gl a ON (a.id = ac.trans_id)
 
 565          WHERE $where $dpt_where $glwhere
 
 566            AND NOT ((ac.chart_link = 'AR') OR (ac.chart_link = 'AP'))
 
 568          GROUP BY c.$category, c.accno, c.description
 
 571     if ($form->{project_id}) {
 
 575          SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 577          JOIN ar a ON (a.id = ac.trans_id)
 
 578          JOIN parts p ON (ac.parts_id = p.id)
 
 579          JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 580          JOIN chart c on (t.income_accno_id = c.id)
 
 581          WHERE (c.category = 'I') $prwhere $dpt_where
 
 582            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans a WHERE (a.chart_link LIKE '%AR_paid%') $subwhere)
 
 584          GROUP BY c.$category, c.accno, c.description
 
 588          SELECT SUM(ac.sellprice * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 590          JOIN ap a ON (a.id = ac.trans_id)
 
 591          JOIN parts p ON (ac.parts_id = p.id)
 
 592          JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 593          JOIN chart c on (t.expense_accno_id = c.id)
 
 594          WHERE (c.category = 'E') $prwhere $dpt_where
 
 595            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans a WHERE (a.chart_link LIKE '%AP_paid%') $subwhere)
 
 597          GROUP BY c.$category, c.accno, c.description
 
 601   } else {                      # if ($form->{method} eq 'cash')
 
 602     if ($department_id) {
 
 603       $dpt_where = qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
 
 604       $dpt_where_without_arapgl = qq| AND COALESCE((SELECT department_id FROM ar WHERE ar.id=ac.trans_id),
 
 605                                                    (SELECT department_id FROM gl WHERE gl.id=ac.trans_id),
 
 606                                                    (SELECT department_id FROM ap WHERE ap.id=ac.trans_id)) = | . conv_i($department_id);
 
 610         SELECT sum(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 612         JOIN chart c ON (c.id = ac.chart_id)
 
 614           $dpt_where_without_arapgl
 
 616         GROUP BY c.$category, c.accno, c.description |;
 
 618     if ($form->{project_id}) {
 
 622         SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 624         JOIN ar a ON (a.id = ac.trans_id)
 
 625         JOIN parts p ON (ac.parts_id = p.id)
 
 626         JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 627         JOIN chart c on (t.income_accno_id = c.id)
 
 628         WHERE (c.category = 'I')
 
 632         GROUP BY c.$category, c.accno, c.description
 
 636         SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category, c.accno, c.description
 
 638         JOIN ap a ON (a.id = ac.trans_id)
 
 639         JOIN parts p ON (ac.parts_id = p.id)
 
 640         JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 641         JOIN chart c on (t.expense_accno_id = c.id)
 
 642         WHERE (c.category = 'E')
 
 646         GROUP BY c.$category, c.accno, c.description |;
 
 654   # store information for chart list in $form->{charts}
 
 655   foreach my $ref (selectall_hashref_query($form, $dbh, $query)) {
 
 656     unless ( defined $form->{charts}->{$ref->{accno}}  ) {
 
 657       # a chart may appear several times in the resulting hashref, init it the first time
 
 658       $form->{charts}->{$ref->{accno}} = { amount      => 0,
 
 659                                            "$category" => $ref->{"$category"},
 
 660                                            accno       => $ref->{accno},
 
 661                                            description => $ref->{description},
 
 664     if ($category eq "pos_bwa") {
 
 666         $form->{ $ref->{$category} }{kumm} += $ref->{amount};
 
 668         $form->{ $ref->{$category} }{jetzt} += $ref->{amount};
 
 669         # only increase chart amount for current period, not last_period
 
 670         $form->{charts}->{$ref->{accno}}->{amount} +=  $ref->{amount},
 
 673       $form->{ $ref->{$category} } += $ref->{amount};
 
 674       $form->{charts}->{$ref->{accno}}->{amount} +=  $ref->{amount}; # no last_period for eur
 
 678   $main::lxdebug->leave_sub();
 
 682   $main::lxdebug->enter_sub();
 
 684   my ($self, $myconfig, $form, %options) = @_;
 
 686   my $dbh = SL::DB->client->dbh;
 
 688   my ($query, $sth, $ref);
 
 691   my ($null, $department_id) = split /--/, $form->{department};
 
 692   my @headingaccounts = ();
 
 694   my $dpt_where_without_arapgl;
 
 695   my ($customer_where, $customer_join, $customer_no_union);
 
 699   my $invwhere = $where;
 
 701   if ($department_id) {
 
 702     $dpt_where = qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
 
 703     $dpt_where_without_arapgl = qq| AND COALESCE((SELECT department_id FROM ar WHERE ar.id=ac.trans_id),
 
 704                                                  (SELECT department_id FROM gl WHERE gl.id=ac.trans_id),
 
 705                                                  (SELECT department_id FROM ap WHERE ap.id=ac.trans_id)) = | . conv_i($department_id);
 
 707   if ($form->{customer_id}) {
 
 708     $customer_join     = qq| JOIN ar a ON (ac.trans_id = a.id) |;
 
 709     $customer_where    = qq| AND (a.customer_id = | . conv_i($form->{customer_id}, 'NULL') . qq|) |;
 
 710     $customer_no_union = qq| AND 1=0 |;
 
 713   # project_id only applies to getting transactions
 
 714   # it has nothing to do with a trial balance
 
 715   # but we use the same function to collect information
 
 717   if ($form->{project_id}) {
 
 718     $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
 
 721   my $acc_cash_where = "";
 
 722 #  my $ar_cash_where = "";
 
 723 #  my $ap_cash_where = "";
 
 726   if ($form->{method} eq "cash") {
 
 728       qq| AND (ac.trans_id IN (
 
 731             WHERE datepaid >= '$form->{fromdate}'
 
 732               AND datepaid <= '$form->{todate}'
 
 738             WHERE datepaid >= '$form->{fromdate}'
 
 739               AND datepaid <= '$form->{todate}'
 
 745             WHERE transdate >= '$form->{fromdate}'
 
 746               AND transdate <= '$form->{todate}'
 
 748 #    $ar_ap_cash_where = qq| AND (a.datepaid>='$form->{fromdate}' AND a.datepaid<='$form->{todate}') |;
 
 751   if ($options{beginning_balances}) {
 
 752     foreach my $prefix (qw(from to)) {
 
 753       next if ($form->{"${prefix}date"});
 
 755       my $min_max = $prefix eq 'from' ? 'min' : 'max';
 
 756       $query      = qq|SELECT ${min_max}(transdate)
 
 760                          $dpt_where_without_arapgl
 
 764       ($form->{"${prefix}date"}) = selectfirst_array_query($form, $dbh, $query);
 
 767     # get beginning balances
 
 769       qq|SELECT c.accno, c.category, SUM(ac.amount) AS amount, c.description
 
 771           LEFT JOIN chart c ON (ac.chart_id = c.id)
 
 773           WHERE ((select date_trunc('year', ac.transdate::date)) = (select date_trunc('year', ?::date))) AND ac.ob_transaction
 
 774             $dpt_where_without_arapgl
 
 777           GROUP BY c.accno, c.category, c.description |;
 
 779     $sth = prepare_execute_query($form, $dbh, $query, $form->{fromdate});
 
 781     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 783       if ($ref->{amount} != 0 || $form->{all_accounts}) {
 
 784         $trb{ $ref->{accno} }{description} = $ref->{description};
 
 785         $trb{ $ref->{accno} }{charttype}   = 'A';
 
 786         $trb{ $ref->{accno} }{beginning_balance} = $ref->{amount};
 
 788         if ($ref->{amount} > 0) {
 
 789           $trb{ $ref->{accno} }{haben_eb}   = $ref->{amount};
 
 791           $trb{ $ref->{accno} }{soll_eb}   = $ref->{amount} * -1;
 
 793         $trb{ $ref->{accno} }{category}    = $ref->{category};
 
 802     qq|SELECT c.accno, c.description, c.category
 
 804        WHERE c.charttype = 'H'
 
 807   $sth = prepare_execute_query($form, $dbh, $query);
 
 809   while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 810     $trb{ $ref->{accno} }{description} = $ref->{description};
 
 811     $trb{ $ref->{accno} }{charttype}   = 'H';
 
 812     $trb{ $ref->{accno} }{category}    = $ref->{category};
 
 814     push @headingaccounts, $ref->{accno};
 
 820   my $saldowhere    = " 1 = 1 ";
 
 821   my $sumwhere      = " 1 = 1 ";
 
 823   my $sumsubwhere   = '';
 
 824   my $saldosubwhere = '';
 
 825   my $glsaldowhere  = '';
 
 830   my ($fromdate, $todate, $fetch_accounts_before_from);
 
 832   if ($form->{fromdate} || $form->{todate}) {
 
 833     if ($form->{fromdate}) {
 
 834       $fromdate = conv_dateq($form->{fromdate});
 
 835       $tofrom        .= " AND (ac.transdate >= $fromdate)";
 
 836       $subwhere      .= " AND (ac.transdate >= $fromdate)";
 
 837       $sumsubwhere   .= " AND (ac.transdate >= (select date_trunc('year', date $fromdate))) ";
 
 838       $saldosubwhere .= " AND (ac,transdate>=(select date_trunc('year', date $fromdate)))  ";
 
 839       $invwhere      .= " AND (a.transdate >= $fromdate)";
 
 840       $glsaldowhere  .= " AND ac.transdate>=(select date_trunc('year', date $fromdate)) ";
 
 841       $glwhere        = " AND (ac.transdate >= $fromdate)";
 
 842       $glsumwhere     = " AND (ac.transdate >= (select date_trunc('year', date $fromdate))) ";
 
 844     if ($form->{todate}) {
 
 845       $todate = conv_dateq($form->{todate});
 
 846       $tofrom        .= " AND (ac.transdate <= $todate)";
 
 847       $invwhere      .= " AND (a.transdate <= $todate)";
 
 848       $saldosubwhere .= " AND (ac.transdate <= $todate)";
 
 849       $sumsubwhere   .= " AND (ac.transdate <= $todate)";
 
 850       $subwhere      .= " AND (ac.transdate <= $todate)";
 
 851       $glwhere       .= " AND (ac.transdate <= $todate)";
 
 852       $glsumwhere    .= " AND (ac.transdate <= $todate) ";
 
 853       $glsaldowhere  .= " AND (ac.transdate <= $todate) ";
 
 857   if ($form->{method} eq "cash") {
 
 859       qq| AND(ac.trans_id IN (SELECT id FROM ar WHERE datepaid>= $fromdate AND datepaid<= $todate UNION SELECT id FROM ap WHERE datepaid>= $fromdate AND datepaid<= $todate UNION SELECT id FROM gl WHERE transdate>= $fromdate AND transdate<= $todate)) AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL) |;
 
 860     $saldowhere .= qq| AND(ac.trans_id IN (SELECT id FROM ar WHERE datepaid>= $fromdate AND datepaid<= $todate UNION SELECT id FROM ap WHERE datepaid>= $fromdate AND datepaid<= $todate UNION SELECT id FROM gl WHERE transdate>= $fromdate AND transdate<= $todate))  AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL) |;
 
 862     $sumwhere .= qq| AND(ac.trans_id IN (SELECT id FROM ar WHERE datepaid>= $fromdate AND datepaid<= $todate UNION SELECT id FROM ap WHERE datepaid>= $fromdate AND datepaid<= $todate UNION SELECT id FROM gl WHERE transdate>= $fromdate AND transdate<= $todate)) AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL) |;
 
 864     $where .= $tofrom . " AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
 
 865     $saldowhere .= $glsaldowhere . " AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
 
 866     $sumwhere .= $glsumwhere . " AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
 
 868     # get all entries before fromdate, which are not yet fetched
 
 869     # TODO dpt_where_without_arapgl and project - project calculation seems bogus anyway
 
 870     # TODO use fiscal_year_startdate for the whole trial balance
 
 871     #      anyway, if the last booking is in a deviating fiscal year, this already improves the query
 
 872     my $fiscal_year_startdate = conv_dateq($self->get_balance_starting_date($form->{fromdate}));
 
 873     $fetch_accounts_before_from = qq|SELECT c.accno, c.description, c.category, SUM(ac.amount) AS amount
 
 874                        FROM acc_trans ac JOIN chart c ON (c.id = ac.chart_id) WHERE 1 = 1 AND (ac.transdate <= $fromdate)
 
 875                        AND (ac.transdate >= $fiscal_year_startdate)
 
 876                        AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)
 
 877                        AND c.accno NOT IN (SELECT c.accno FROM acc_trans ac JOIN chart c ON (c.id = ac.chart_id) WHERE 1 = 1 AND (ac.transdate >= $fromdate) AND (ac.transdate <= $todate)
 
 878                        AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL))
 
 879                        GROUP BY c.accno, c.description, c.category ORDER BY accno|;
 
 883        SELECT c.accno, c.description, c.category, SUM(ac.amount) AS amount
 
 885        JOIN chart c ON (c.id = ac.chart_id)
 
 888          $dpt_where_without_arapgl
 
 890        GROUP BY c.accno, c.description, c.category |;
 
 892   if ($form->{project_id}) {
 
 894       -- add project transactions from invoice
 
 898       SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) AS amount
 
 900       JOIN ar a ON (ac.trans_id = a.id)
 
 901       JOIN parts p ON (ac.parts_id = p.id)
 
 902       JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 903       JOIN chart c ON (t.income_accno_id = c.id)
 
 908       GROUP BY c.accno, c.description, c.category
 
 912       SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) * -1 AS amount
 
 914       JOIN ap a ON (ac.trans_id = a.id)
 
 915       JOIN parts p ON (ac.parts_id = p.id)
 
 916       JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
 917       JOIN chart c ON (t.expense_accno_id = c.id)
 
 922       GROUP BY c.accno, c.description, c.category
 
 926   $query .= qq| ORDER BY accno|;
 
 928   $sth = prepare_execute_query($form, $dbh, $query);
 
 930   # calculate the debit and credit in the period
 
 931   while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 932     $trb{ $ref->{accno} }{description} = $ref->{description};
 
 933     $trb{ $ref->{accno} }{charttype}   = 'A';
 
 934     $trb{ $ref->{accno} }{category}    = $ref->{category};
 
 935     $trb{ $ref->{accno} }{amount} += $ref->{amount};
 
 939   if ($form->{method} ne "cash") {  # better eq 'accrual'
 
 940     $sth = prepare_execute_query($form, $dbh, $fetch_accounts_before_from);
 
 941     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 942       $trb{ $ref->{accno} }{description} = $ref->{description};
 
 943       $trb{ $ref->{accno} }{charttype}   = 'A';
 
 944       $trb{ $ref->{accno} }{category}    = $ref->{category};
 
 945       $trb{ $ref->{accno} }{amount} += $ref->{amount};
 
 950   # prepare query for each account
 
 951   my ($q_drcr, $drcr, $q_project_drcr, $project_drcr);
 
 955          (SELECT SUM(ac.amount) * -1
 
 957           JOIN chart c ON (c.id = ac.chart_id)
 
 960             $dpt_where_without_arapgl
 
 964           AND (c.accno = ?)) AS debit,
 
 966          (SELECT SUM(ac.amount)
 
 968           JOIN chart c ON (c.id = ac.chart_id)
 
 971             $dpt_where_without_arapgl
 
 975           AND c.accno = ?) AS credit,
 
 976         (SELECT SUM(ac.amount)
 
 978          JOIN chart c ON (ac.chart_id = c.id)
 
 981            $dpt_where_without_arapgl
 
 984          AND c.accno = ? AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL)) AS saldo,
 
 986         (SELECT SUM(ac.amount)
 
 988          JOIN chart c ON (ac.chart_id = c.id)
 
 991            $dpt_where_without_arapgl
 
 995          AND c.accno = ?) AS sum_credit,
 
 997         (SELECT SUM(ac.amount)
 
 999          JOIN chart c ON (ac.chart_id = c.id)
 
1002            $dpt_where_without_arapgl
 
1006          AND c.accno = ?) AS sum_debit,
 
1008         (SELECT max(ac.transdate) FROM acc_trans ac
 
1009         JOIN chart c ON (ac.chart_id = c.id)
 
1012           $dpt_where_without_arapgl
 
1015         AND c.accno = ?) AS last_transaction
 
1020   $drcr = prepare_query($form, $dbh, $q_drcr);
 
1022   if ($form->{project_id}) {
 
1023     # prepare query for each account
 
1026           (SELECT SUM(ac.sellprice * ac.qty) * -1
 
1028            JOIN parts p ON (ac.parts_id = p.id)
 
1029            JOIN ap a ON (ac.trans_id = a.id)
 
1030            JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
1031            JOIN chart c ON (t.expense_accno_id = c.id)
 
1036            AND c.accno = ?) AS debit,
 
1038           (SELECT SUM(ac.sellprice * ac.qty)
 
1040            JOIN parts p ON (ac.parts_id = p.id)
 
1041            JOIN ar a ON (ac.trans_id = a.id)
 
1042            JOIN taxzone_charts t ON (p.buchungsgruppen_id = t.id)
 
1043            JOIN chart c ON (t.income_accno_id = c.id)
 
1048            AND c.accno = ?) AS credit,
 
1050         (SELECT SUM(ac.amount)
 
1052          JOIN chart c ON (ac.chart_id = c.id)
 
1055            $dpt_where_without_arapgl
 
1059          AND c.accno = ? AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL)) AS saldo,
 
1061         (SELECT SUM(ac.amount)
 
1063          JOIN chart c ON (ac.chart_id = c.id)
 
1066            $dpt_where_without_arapgl
 
1071          AND c.accno = ?) AS sum_credit,
 
1073         (SELECT SUM(ac.amount)
 
1075          JOIN chart c ON (ac.chart_id = c.id)
 
1079            $dpt_where_without_arapgl
 
1083          AND c.accno = ?) AS sum_debit,
 
1086         (SELECT max(ac.transdate) FROM acc_trans ac
 
1087         JOIN chart c ON (ac.chart_id = c.id)
 
1090           $dpt_where_without_arapgl
 
1093         AND c.accno = ?) AS last_transaction
 
1096     $project_drcr = prepare_query($form, $dbh, $q_project_drcr);
 
1100   my ($debit, $credit, $saldo, $soll_saldo, $haben_saldo,$soll_kummuliert, $haben_kummuliert, $last_transaction);
 
1102   foreach my $accno (sort keys %trb) {
 
1105     $ref->{accno} = $accno;
 
1106     map { $ref->{$_} = $trb{$accno}{$_} }
 
1107       qw(description category charttype amount soll_eb haben_eb beginning_balance);
 
1109     $ref->{balance} = $form->round_amount($balance{ $ref->{accno} }, 2);
 
1111     if ($trb{$accno}{charttype} eq 'A') {
 
1114       do_statement($form, $drcr, $q_drcr, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno});
 
1116       ($debit, $credit, $saldo, $haben_saldo, $soll_saldo) = (0, 0, 0, 0, 0);
 
1117       my ($soll_kumuliert, $haben_kumuliert) = (0, 0);
 
1118       $last_transaction = "";
 
1119       while (($debit, $credit, $saldo, $haben_kumuliert, $soll_kumuliert, $last_transaction) = $drcr->fetchrow_array) {
 
1120         $ref->{debit}  += $debit;
 
1121         $ref->{credit} += $credit;
 
1123           $ref->{haben_saldo} += $saldo;
 
1125           $ref->{soll_saldo} += $saldo * -1;
 
1127         $ref->{last_transaction} = $last_transaction;
 
1128         $ref->{soll_kumuliert} = $soll_kumuliert * -1;
 
1129         $ref->{haben_kumuliert} = $haben_kumuliert;
 
1133       if ($form->{project_id}) {
 
1136         do_statement($form, $project_drcr, $q_project_drcr, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno});
 
1138         ($debit, $credit) = (0, 0);
 
1139         while (($debit, $credit, $saldo, $haben_kumuliert, $soll_kumuliert, $last_transaction) = $project_drcr->fetchrow_array) {
 
1140           $ref->{debit}  += $debit;
 
1141           $ref->{credit} += $credit;
 
1143             $ref->{haben_saldo} += $saldo;
 
1145             $ref->{soll_saldo} += $saldo * -1;
 
1147           $ref->{soll_kumuliert} += $soll_kumuliert * -1;
 
1148           $ref->{haben_kumuliert} += $haben_kumuliert;
 
1150         $project_drcr->finish;
 
1153       $ref->{debit}  = $form->round_amount($ref->{debit},  2);
 
1154       $ref->{credit} = $form->round_amount($ref->{credit}, 2);
 
1156       if ($ref->{haben_saldo} != 0) {
 
1157         $ref->{haben_saldo}  = $ref->{haben_saldo} + $ref->{beginning_balance};
 
1158         if ($ref->{haben_saldo} < 0) {
 
1159           $ref->{soll_saldo} = $form->round_amount(($ref->{haben_saldo} *- 1), 2);
 
1160           $ref->{haben_saldo} = 0;
 
1163         $ref->{soll_saldo} = $ref->{soll_saldo} - $ref->{beginning_balance};
 
1164         if ($ref->{soll_saldo} < 0) {
 
1165           $ref->{haben_saldo} = $form->round_amount(($ref->{soll_saldo} * -1), 2);
 
1166           $ref->{soll_saldo} = 0;
 
1169       $ref->{haben_saldo} = $form->round_amount($ref->{haben_saldo}, 2);
 
1170       $ref->{soll_saldo} = $form->round_amount($ref->{soll_saldo}, 2);
 
1171       $ref->{haben_kumuliert}  = $form->round_amount($ref->{haben_kumuliert},  2);
 
1172       $ref->{soll_kumuliert} = $form->round_amount($ref->{soll_kumuliert}, 2);
 
1177     @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
 
1178     $accno = pop @accno;
 
1180       $trb{$accno}{debit}  += $ref->{debit};
 
1181       $trb{$accno}{credit} += $ref->{credit};
 
1182       $trb{$accno}{soll_saldo}  += $ref->{soll_saldo};
 
1183       $trb{$accno}{haben_saldo} += $ref->{haben_saldo};
 
1184       $trb{$accno}{soll_kumuliert}  += $ref->{soll_kumuliert};
 
1185       $trb{$accno}{haben_kumuliert} += $ref->{haben_kumuliert};
 
1188     push @{ $form->{TB} }, $ref;
 
1192   # debits and credits for headings
 
1193   foreach my $accno (@headingaccounts) {
 
1194     foreach $ref (@{ $form->{TB} }) {
 
1195       if ($accno eq $ref->{accno}) {
 
1196         $ref->{debit}           = $trb{$accno}{debit};
 
1197         $ref->{credit}          = $trb{$accno}{credit};
 
1198         $ref->{soll_saldo}      = $trb{$accno}{soll_saldo};
 
1199         $ref->{haben_saldo}     = $trb{$accno}{haben_saldo};
 
1200         $ref->{soll_kumuliert}  = $trb{$accno}{soll_kumuliert};
 
1201         $ref->{haben_kumuliert} = $trb{$accno}{haben_kumuliert};
 
1206   $main::lxdebug->leave_sub();
 
1210   $main::lxdebug->enter_sub();
 
1212   my ($self, $myconfig, $form) = @_;
 
1214   # connect to database
 
1215   my $dbh     = SL::DB->client->dbh;
 
1217   my ($invoice, $arap, $buysell, $ct, $ct_id, $ml);
 
1219   # falls customer ziehen wir die offene forderungsliste
 
1220   # anderfalls für die lieferanten die offenen verbindlichkeitne
 
1221   if ($form->{ct} eq "customer") {
 
1234   $ct_id = "${ct}_id";
 
1236   # erweiterung um einen freien zeitraum oder einen stichtag
 
1237   # mit entsprechender altersstrukturliste (s.a. Bug 1842)
 
1238   # eine neue variable an der oberfläche eingeführt, somit ist
 
1239   # todate == freier zeitrau und fordate == stichtag
 
1240   # duedate_where == nur fällige rechnungen anzeigen
 
1242   my ($review_of_aging_list, $todate, $fromdate, $fromwhere, $fordate,
 
1245   if ($form->{reporttype} eq 'custom') {  # altersstrukturliste, nur fällige
 
1247     # explizit rausschmeissen was man für diesen bericht nicht braucht
 
1248     delete $form->{fromdate};
 
1249     delete $form->{todate};
 
1251     # an der oberfläche ist das tagesaktuelle datum vorausgewählt
 
1252     # falls es dennoch per Benutzereingabe gelöscht wird, lieber wieder vorbelegen
 
1253     # ferner muss für die spätere DB-Abfrage muss todate gesetzt sein.
 
1254     $form->{fordate}  = $form->current_date($myconfig) unless ($form->{fordate});
 
1255     $fordate          = conv_dateq($form->{fordate});
 
1258     if ($form->{review_of_aging_list}) { # falls die liste leer ist, alles anzeigen
 
1259       if ($form->{review_of_aging_list} =~ m "-") {             # ..  periode von bis
 
1260         my @period = split(/-/, $form->{review_of_aging_list}); # ... von periode bis periode
 
1261         $review_of_aging_list = " AND $period[0] <  (date $fordate) - duedate
 
1262                                   AND (date $fordate) - duedate  < $period[1]";
 
1264         $form->{review_of_aging_list} =~ s/[^0-9]//g;   # größer 120 das substitute ist nur für das '>' zeichen
 
1265         $review_of_aging_list = " AND $form->{review_of_aging_list} < (date $fordate) - duedate";
 
1268     $duedate_where = " AND (date $fordate) - duedate >= 0 ";
 
1269   } else {  # freier zeitraum, nur rechnungsdatum und OHNE review_of_aging_list
 
1270     $form->{todate}  = $form->current_date($myconfig) unless ($form->{todate});
 
1271     $todate = conv_dateq($form->{todate});
 
1272     $fromdate = conv_dateq($form->{fromdate});
 
1273     $fromwhere = ($form->{fromdate} ne "") ? " AND (transdate >= (date $fromdate)) " : "";
 
1275   my $where = " 1 = 1 ";
 
1278   if ($form->{$ct_id}) {
 
1279     $where .= qq| AND (ct.id = | . conv_i($form->{$ct_id}) . qq|)|;
 
1280   } elsif ($form->{ $form->{ct} }) {
 
1281     $where .= qq| AND (ct.name ILIKE | . $dbh->quote(like($form->{$ct})) . qq|)|;
 
1286   if ($form->{department}) {
 
1287     my ($null, $department_id) = split /--/, $form->{department};
 
1288     $dpt_join = qq| JOIN department d ON (a.department_id = d.id) |;
 
1289     $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|)|;
 
1290     $where_dpt = qq| AND (${arap}.department_id = | . conv_i($department_id, 'NULL') . qq|)|;
 
1294     SELECT ${ct}.id AS ctid, ${ct}.name,
 
1295       street, zipcode, city, country, contact, email,
 
1296       phone as customerphone, fax as customerfax, ${ct}number,
 
1297       "invnumber", "transdate",
 
1298       (amount - COALESCE((SELECT sum(amount)*$ml FROM acc_trans WHERE chart_link ilike '%paid%' AND acc_trans.trans_id=${arap}.id AND acc_trans.transdate <= (date $todate)),0)) as "open", "amount",
 
1299       "duedate", invoice, ${arap}.id, date_part('days', now() - duedate) as overduedays,
 
1302        WHERE (${arap}.currency_id = exchangerate.currency_id)
 
1303          AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate
 
1305     WHERE ((paid != amount) OR (datepaid > (date $todate) AND datepaid is not null))
 
1306       AND NOT COALESCE (${arap}.storno, 'f')
 
1307       AND (${arap}.${ct}_id = ${ct}.id)
 
1310       AND (transdate <= (date $todate) $fromwhere )
 
1311       $review_of_aging_list
 
1313     ORDER BY ctid, transdate, invnumber |;
 
1315   my $sth_details = prepare_query($form, $dbh, $q_details);
 
1317   # select outstanding vendors or customers, depends on $ct
 
1319     qq|SELECT DISTINCT ct.id, ct.name
 
1320        FROM $ct ct, $arap a
 
1323          AND (a.${ct_id} = ct.id)
 
1324          AND ((a.paid != a.amount) OR ((a.datepaid > $todate) AND (datepaid is NOT NULL)))
 
1325          AND (a.transdate <= $todate $fromwhere)
 
1328   my $sth = prepare_execute_query($form, $dbh, $query);
 
1331   # for each company that has some stuff outstanding
 
1332   while (my ($id) = $sth->fetchrow_array) {
 
1333     do_statement($form, $sth_details, $q_details, $id);
 
1335     while (my $ref = $sth_details->fetchrow_hashref("NAME_lc")) {
 
1336       $ref->{module} = ($ref->{invoice}) ? $invoice : $arap;
 
1337       $ref->{exchangerate} = 1 unless $ref->{exchangerate};
 
1338       push @{ $form->{AG} }, $ref;
 
1341     $sth_details->finish;
 
1347   $main::lxdebug->leave_sub();
 
1351   $main::lxdebug->enter_sub();
 
1353   my ($self, $myconfig, $form) = @_;
 
1355   my $dbh = SL::DB->client->dbh;
 
1357   my $ct = $form->{ct} eq "customer" ? "customer" : "vendor";
 
1360     qq|SELECT ct.name, ct.email, ct.cc, ct.bcc
 
1363   ($form->{ $form->{ct} }, $form->{email}, $form->{cc}, $form->{bcc}) =
 
1364     selectrow_query($form, $dbh, $query, $form->{"${ct}_id"});
 
1366   $main::lxdebug->leave_sub();
 
1370   $main::lxdebug->enter_sub();
 
1372   my ($self, $myconfig, $form) = @_;
 
1374   my $dbh = SL::DB->client->dbh;
 
1376   my ($null, $department_id) = split /--/, $form->{department};
 
1379   my $where = "1 = 1";
 
1381   if ($department_id) {
 
1382     $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
 
1387   if ($form->{accno}) {
 
1388     $accno = $form->{accno};
 
1389     $rate  = $form->{"$form->{accno}_rate"};
 
1390     $accno = qq| AND (ch.accno = | . $dbh->quote($accno) . qq|)|;
 
1396   if ($form->{db} eq 'ar') {
 
1397     $table = "customer";
 
1404   my $arap = lc($ARAP);
 
1406   my $transdate = "a.transdate";
 
1408   if ($form->{method} eq 'cash') {
 
1409     $transdate = "a.datepaid";
 
1411     my $todate = conv_dateq($form->{todate} ? $form->{todate} : $form->current_date($myconfig));
 
1418           WHERE (a.chart_link LIKE '%${ARAP}_paid%')
 
1419           AND (transdate <= $todate)
 
1424   # if there are any dates construct a where
 
1425   $where .= " AND ($transdate >= " . conv_dateq($form->{fromdate}) . ") " if ($form->{fromdate});
 
1426   $where .= " AND ($transdate <= " . conv_dateq($form->{todate}) . ") " if ($form->{todate});
 
1428   my $ml = ($form->{db} eq 'ar') ? 1 : -1;
 
1430   my $sortorder = join ', ', $form->sort_columns(qw(transdate invnumber name));
 
1431   $sortorder = $form->{sort} if ($form->{sort} && grep({ $_ eq $form->{sort} } qw(id transdate invnumber name netamount tax)));
 
1434       qq|SELECT a.id, '0' AS invoice, $transdate AS transdate, a.invnumber, n.name, a.netamount,
 
1435           ac.amount * $ml AS tax
 
1437          JOIN ${arap} a ON (a.id = ac.trans_id)
 
1438          JOIN chart ch ON (ch.id = ac.chart_id)
 
1439          JOIN $table n ON (n.id = a.${table}_id)
 
1443            AND (a.invoice = '0')
 
1447          SELECT a.id, '1' AS invoice, $transdate AS transdate, a.invnumber, n.name, i.sellprice * i.qty AS netamount,
 
1448            i.sellprice * i.qty * $rate * $ml AS tax
 
1450          JOIN ${arap} a ON (a.id = ac.trans_id)
 
1451          JOIN chart ch ON (ch.id = ac.chart_id)
 
1452          JOIN $table n ON (n.id = a.${table}_id)
 
1453          JOIN ${table}tax t ON (t.${table}_id = n.id)
 
1454          JOIN invoice i ON (i.trans_id = a.id)
 
1458            AND (a.invoice = '1')
 
1459          ORDER BY $sortorder|;
 
1461   $form->{TR} = selectall_hashref_query($form, $dbh, $query);
 
1463   $main::lxdebug->leave_sub();
 
1466 sub paymentaccounts {
 
1467   $main::lxdebug->enter_sub();
 
1469   my ($self, $myconfig, $form) = @_;
 
1471   # connect to database, turn AutoCommit off
 
1472   my $dbh = SL::DB->client->dbh;
 
1474   my $ARAP = $form->{db} eq "ar" ? "AR" : "AP";
 
1476   # get A(R|P)_paid accounts
 
1478     qq|SELECT accno, description
 
1480        WHERE link LIKE '%${ARAP}_paid%'|;
 
1481   $form->{PR} = selectall_hashref_query($form, $dbh, $query);
 
1483   $main::lxdebug->leave_sub();
 
1487   $main::lxdebug->enter_sub();
 
1489   my ($self, $myconfig, $form) = @_;
 
1491   # connect to database, turn AutoCommit off
 
1492   my $dbh = SL::DB->client->dbh;
 
1497   if ($form->{db} eq 'ar') {
 
1498     $table = 'customer';
 
1509   if ($form->{department_id}) {
 
1510     $where = qq| AND (a.department_id = | . conv_i($form->{department_id}, 'NULL') . qq|) |;
 
1513   if ($form->{fromdate}) {
 
1514     $where .= " AND (ac.transdate >= " . $dbh->quote($form->{fromdate}) . ") ";
 
1516   if ($form->{todate}) {
 
1517     $where .= " AND (ac.transdate <= " . $dbh->quote($form->{todate}) . ") ";
 
1519   if (!$form->{fx_transaction}) {
 
1520     $where .= " AND ac.fx_transaction = '0'";
 
1525   if ($form->{reference}) {
 
1526     $reference = $dbh->quote(like($form->{reference}));
 
1527     $invnumber = " AND (a.invnumber LIKE $reference)";
 
1528     $reference = " AND (a.reference LIKE $reference)";
 
1530   if ($form->{source}) {
 
1531     $where .= " AND (ac.source ILIKE " . $dbh->quote(like($form->{source})) . ") ";
 
1533   if ($form->{memo}) {
 
1534     $where .= " AND (ac.memo ILIKE " . $dbh->quote(like($form->{memo})) . ") ";
 
1537   my %sort_columns =  (
 
1538     'transdate'    => [ qw(transdate lower_invnumber lower_name) ],
 
1539     'invnumber'    => [ qw(lower_invnumber lower_name transdate) ],
 
1540     'name'         => [ qw(lower_name transdate)                 ],
 
1541     'source'       => [ qw(lower_source)                         ],
 
1542     'memo'         => [ qw(lower_memo)                           ],
 
1544   my %lowered_columns =  (
 
1545     'invnumber'       => { 'gl' => 'a.reference',   'arap' => 'a.invnumber', },
 
1546     'memo'            => { 'gl' => 'ac.memo',       'arap' => 'ac.memo',     },
 
1547     'source'          => { 'gl' => 'ac.source',     'arap' => 'ac.source',   },
 
1548     'name'            => { 'gl' => 'a.description', 'arap' => 'c.name',      },
 
1551   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
1552   my $sortkey   = $sort_columns{$form->{sort}} ? $form->{sort} : 'transdate';
 
1553   my $sortorder = join ', ', map { "$_ $sortdir" } @{ $sort_columns{$sortkey} };
 
1556   my %columns_for_sorting = ( 'gl' => '', 'arap' => '', );
 
1557   foreach my $spec (@{ $sort_columns{$sortkey} }) {
 
1558     next if ($spec !~ m/^lower_(.*)$/);
 
1561     map { $columns_for_sorting{$_} .= sprintf(', lower(%s) AS lower_%s', $lowered_columns{$column}->{$_}, $column) } qw(gl arap);
 
1564   $query = qq|SELECT id, accno, description FROM chart WHERE accno = ?|;
 
1565   $sth = prepare_query($form, $dbh, $query);
 
1568       qq|SELECT c.name, a.invnumber, a.ordnumber,
 
1569            ac.transdate, ac.amount * $ml AS paid, ac.source,
 
1570            a.invoice, a.id, ac.memo, '${arap}' AS module
 
1571            $columns_for_sorting{arap}
 
1573          JOIN $arap a ON (ac.trans_id = a.id)
 
1574          JOIN $table c ON (c.id = a.${table}_id)
 
1575          WHERE (ac.chart_id = ?)
 
1581          SELECT a.description, a.reference, NULL AS ordnumber,
 
1582            ac.transdate, ac.amount * $ml AS paid, ac.source,
 
1583            '0' as invoice, a.id, ac.memo, 'gl' AS module
 
1584            $columns_for_sorting{gl}
 
1586          JOIN gl a ON (a.id = ac.trans_id)
 
1587          WHERE (ac.chart_id = ?)
 
1590            AND (ac.amount * $ml) > 0
 
1592          ORDER BY $sortorder|;
 
1593   my $sth_details = prepare_query($form, $dbh, $q_details);
 
1597   # cycle through each id
 
1598   foreach my $accno (split(/ /, $form->{paymentaccounts})) {
 
1599     do_statement($form, $sth, $query, $accno);
 
1600     my $ref = $sth->fetchrow_hashref();
 
1601     push(@{ $form->{PR} }, $ref);
 
1604     $form->{ $ref->{id} } = [] unless ($form->{ $ref->{id} });
 
1606     do_statement($form, $sth_details, $q_details, $ref->{id}, $ref->{id});
 
1607     while (my $pr = $sth_details->fetchrow_hashref()) {
 
1608       push(@{ $form->{ $ref->{id} } }, $pr);
 
1610     $sth_details->finish();
 
1613   $main::lxdebug->leave_sub();
 
1617   $main::lxdebug->enter_sub();
 
1619   my ($self, $myconfig, $form) = @_;
 
1621   my $dbh = SL::DB->client->dbh;
 
1623   my $last_period = 0;
 
1626     qw(1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40);
 
1628   $form->{decimalplaces} *= 1;
 
1630   &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate}, $form, "pos_bwa");
 
1632   # if there are any compare dates
 
1634   if ($form->{fromdate} || $form->{todate}) {
 
1636     if ($form->{fromdate}) {
 
1637       $form->{fromdate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
 
1640       $form->{todate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
 
1643     my $kummfromdate = $form->{comparefromdate};
 
1644     my $kummtodate   = $form->{comparetodate};
 
1645     &get_accounts_g($dbh, $last_period, $kummfromdate, $kummtodate, $form, "pos_bwa");
 
1648   my %charts_by_category =
 
1649     partition_by { $_->{pos_bwa} }
 
1650     sort_by      { $_->{accno}   }
 
1651     map          { $form->{charts}->{$_} }
 
1652     keys %{ $form->{charts} };
 
1653   $form->{"charts_by_category"} = \%charts_by_category;
 
1655   $form->{category_names} = AM->get_bwa_categories($myconfig, $form);
 
1657   my @periods        = qw(jetzt kumm);
 
1658   my @gesamtleistung = qw(1 3);
 
1659   my @gesamtkosten   = qw (10 11 12 13 14 15 16 17 18 20);
 
1661     qw (rohertrag betriebrohertrag betriebsergebnis neutraleraufwand neutralerertrag ergebnisvorsteuern ergebnis gesamtleistung gesamtkosten);
 
1663   foreach my $key (@periods) {
 
1664     $form->{ "$key" . "gesamtleistung" } = 0;
 
1665     $form->{ "$key" . "gesamtkosten" }   = 0;
 
1667     foreach $category (@categories) {
 
1669       if (defined($form->{$category}{$key})) {
 
1670         $form->{"$key$category"} =
 
1671           $form->format_amount($myconfig,
 
1672                                $form->round_amount($form->{$category}{$key}, 2
 
1674                                $form->{decimalplaces},
 
1678     foreach my $item (@gesamtleistung) {
 
1679       $form->{ "$key" . "gesamtleistung" } += $form->{$item}{$key};
 
1681     $form->{ "$key" . "gesamtleistung" } -= $form->{2}{$key};
 
1683     foreach my $item (@gesamtkosten) {
 
1684       $form->{ "$key" . "gesamtkosten" } += $form->{$item}{$key};
 
1686     $form->{ "$key" . "rohertrag" } =
 
1687       $form->{ "$key" . "gesamtleistung" } - $form->{4}{$key};
 
1688     $form->{ "$key" . "betriebrohertrag" } =
 
1689       $form->{ "$key" . "rohertrag" } + $form->{5}{$key};
 
1690     $form->{ "$key" . "betriebsergebnis" } =
 
1691       $form->{ "$key" . "betriebrohertrag" } -
 
1692       $form->{ "$key" . "gesamtkosten" };
 
1693     $form->{ "$key" . "neutraleraufwand" } =
 
1694       $form->{19}{$key} + $form->{30}{$key} + $form->{31}{$key};
 
1695     $form->{ "$key" . "neutralerertrag" } =
 
1696       $form->{32}{$key} + $form->{33}{$key} + $form->{34}{$key};
 
1697     $form->{ "$key" . "ergebnisvorsteuern" } =
 
1698       $form->{ "$key" . "betriebsergebnis" } -
 
1699       $form->{ "$key" . "neutraleraufwand" } +
 
1700       $form->{ "$key" . "neutralerertrag" };
 
1701     $form->{ "$key" . "ergebnis" } =
 
1702       $form->{ "$key" . "ergebnisvorsteuern" } - $form->{35}{$key};
 
1704     if ($form->{ "$key" . "gesamtleistung" } > 0) {
 
1705       foreach $category (@categories) {
 
1706         if (defined($form->{$category}{$key})) {
 
1707           $form->{ "$key" . "gl" . "$category" } =
 
1708             $form->format_amount(
 
1710                                $form->round_amount(
 
1711                                  ($form->{$category}{$key} /
 
1712                                     $form->{ "$key" . "gesamtleistung" } * 100
 
1714                                  $form->{decimalplaces}
 
1716                                $form->{decimalplaces},
 
1720       foreach my $item (@ergebnisse) {
 
1721         $form->{ "$key" . "gl" . "$item" } =
 
1722           $form->format_amount($myconfig,
 
1723                                $form->round_amount(
 
1724                                  ( $form->{ "$key" . "$item" } /
 
1725                                      $form->{ "$key" . "gesamtleistung" } * 100
 
1727                                  $form->{decimalplaces}
 
1729                                $form->{decimalplaces},
 
1734     if ($form->{ "$key" . "gesamtkosten" } > 0) {
 
1735       foreach $category (@categories) {
 
1736         if (defined($form->{$category}{$key})) {
 
1737           $form->{ "$key" . "gk" . "$category" } =
 
1738             $form->format_amount($myconfig,
 
1739                                  $form->round_amount(
 
1740                                    ($form->{$category}{$key} /
 
1741                                       $form->{ "$key" . "gesamtkosten" } * 100
 
1743                                    $form->{decimalplaces}
 
1745                                  $form->{decimalplaces},
 
1749       foreach my $item (@ergebnisse) {
 
1750         $form->{ "$key" . "gk" . "$item" } =
 
1751           $form->format_amount($myconfig,
 
1752                                $form->round_amount(
 
1753                                    ($form->{ "$key" . "$item" } /
 
1754                                       $form->{ "$key" . "gesamtkosten" } * 100
 
1756                                    $form->{decimalplaces}
 
1758                                $form->{decimalplaces},
 
1763     if ($form->{10}{$key} > 0) {
 
1764       foreach $category (@categories) {
 
1765         if (defined($form->{$category}{$key})) {
 
1766           $form->{ "$key" . "pk" . "$category" } =
 
1767             $form->format_amount(
 
1769                         $form->round_amount(
 
1770                           ($form->{$category}{$key} / $form->{10}{$key} * 100),
 
1771                           $form->{decimalplaces}
 
1773                         $form->{decimalplaces},
 
1777       foreach my $item (@ergebnisse) {
 
1778         $form->{ "$key" . "pk" . "$item" } =
 
1779           $form->format_amount($myconfig,
 
1780                                $form->round_amount(
 
1781                                                 ($form->{ "$key" . "$item" } /
 
1782                                                    $form->{10}{$key} * 100
 
1784                                                 $form->{decimalplaces}
 
1786                                $form->{decimalplaces},
 
1791     if ($form->{4}{$key} > 0) {
 
1792       foreach $category (@categories) {
 
1793         if (defined($form->{$category}{$key})) {
 
1794           $form->{ "$key" . "auf" . "$category" } =
 
1795             $form->format_amount(
 
1797                          $form->round_amount(
 
1798                            ($form->{$category}{$key} / $form->{4}{$key} * 100),
 
1799                            $form->{decimalplaces}
 
1801                          $form->{decimalplaces},
 
1805       foreach my $item (@ergebnisse) {
 
1806         $form->{ "$key" . "auf" . "$item" } =
 
1807           $form->format_amount($myconfig,
 
1808                                $form->round_amount(
 
1809                                                 ($form->{ "$key" . "$item" } /
 
1810                                                    $form->{4}{$key} * 100
 
1812                                                 $form->{decimalplaces}
 
1814                                $form->{decimalplaces},
 
1819     foreach my $item (@ergebnisse) {
 
1820       $form->{ "$key" . "$item" } =
 
1821         $form->format_amount($myconfig,
 
1822                              $form->round_amount($form->{ "$key" . "$item" },
 
1823                                                  $form->{decimalplaces}
 
1825                              $form->{decimalplaces},
 
1831   $main::lxdebug->leave_sub();
 
1834 sub income_statement {
 
1835   $main::lxdebug->enter_sub();
 
1837   my ($self, $myconfig, $form) = @_;
 
1839   # connect to database
 
1840   my $dbh = $form->dbconnect($myconfig);
 
1842   my $last_period          = 0;
 
1843   my @categories_einnahmen = qw(1 2 3 4 5 6 7);
 
1844   my @categories_ausgaben  =
 
1845     qw(8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31);
 
1847   my @ergebnisse = qw(sumeura sumeurb guvsumme);
 
1849   $form->{decimalplaces} *= 1;
 
1853   &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate},
 
1857   # add extra information to form to be used by template
 
1858   my %charts_by_category =
 
1859     partition_by { $_->{pos_eur} }
 
1860     sort_by      { $_->{accno}   }
 
1861     map          { $form->{charts}->{$_} }
 
1862     keys %{ $form->{charts} };
 
1863   $form->{"charts_by_category"} = \%charts_by_category;
 
1865   $form->{"categories_income"}  = \@categories_einnahmen;
 
1866   $form->{"categories_expense"} = \@categories_ausgaben;
 
1868   $form->{category_names} = AM->get_eur_categories($myconfig, $form);
 
1872   foreach my $item (@categories_einnahmen) {
 
1873     $eur_amounts{$item} = $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),2);
 
1874     $form->{"sumeura"} += $form->{$item};
 
1876   foreach my $item (@categories_ausgaben) {
 
1877     $eur_amounts{$item} = $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),2);
 
1878     $form->{"sumeurb"} += $form->{$item};
 
1881   $form->{"guvsumme"} = $form->{"sumeura"} - $form->{"sumeurb"};
 
1883   $form->{eur_amounts} = \%eur_amounts;
 
1885   foreach my $item (@ergebnisse) {
 
1887       $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),2);
 
1889   $main::lxdebug->leave_sub();
 
1892 sub erfolgsrechnung {
 
1893   $main::lxdebug->enter_sub();
 
1895   my ($self, $myconfig, $form) = @_;
 
1896   $form->{company} = $::instance_conf->get_company;
 
1897   $form->{address} = $::instance_conf->get_address;
 
1898   $form->{fromdate} = DateTime->new(year => 2000, month => 1, day => 1)->to_kivitendo unless $form->{fromdate};
 
1899   $form->{todate} = $form->current_date(%{$myconfig}) unless $form->{todate};
 
1901   my %categories = (I => "ERTRAG", E => "AUFWAND");
 
1902   my $fromdate = conv_dateq($form->{fromdate});
 
1903   my $todate = conv_dateq($form->{todate});
 
1904   my $department_id = conv_i((split /--/, $form->{department})[1], 'NULL');
 
1908   foreach my $category ('I', 'E') {
 
1910       name => $categories{$category},
 
1912       accounts => get_accounts_ch($category)
 
1914     foreach my $account (@{$category{accounts}}) {
 
1915       $account->{total} = get_total_ch($department_id, $account->{id}, $fromdate, $todate);
 
1916       $category{total} += $account->{total};
 
1917       $account->{total} = $form->format_amount($myconfig, $form->round_amount($account->{total}, 2), 2);
 
1919     $form->{total} += $category{total};
 
1920     $category{total} = $form->format_amount($myconfig, $form->round_amount($category{total}, 2), 2);
 
1921     push(@{$form->{categories}}, \%category);
 
1923   $form->{total} = $form->format_amount($myconfig, $form->round_amount($form->{total}, 2), 2);
 
1925   $main::lxdebug->leave_sub();
 
1929 sub get_accounts_ch {
 
1930   $main::lxdebug->enter_sub();
 
1932   my ($category) = @_;
 
1933   my $inclusion = '' ;
 
1935   if ($category eq 'I') {
 
1936     $inclusion = "AND pos_er = NULL OR pos_er = '1'";
 
1937   } elsif ($category eq 'E') {
 
1938     $inclusion = "AND pos_er = NULL OR pos_er = '6'";
 
1944     SELECT id, accno, description, category
 
1946     WHERE category = ? $inclusion
 
1949   my $accounts = _query($query, $category);
 
1951   $main::lxdebug->leave_sub();
 
1956   $main::lxdebug->enter_sub();
 
1958   my ($department_id, $chart_id, $fromdate, $todate) = @_;
 
1967   if ($department_id) {
 
1968     $query .= qq| AND COALESCE(
 
1969         (SELECT department_id FROM ar WHERE ar.id=trans_id),
 
1970         (SELECT department_id FROM gl WHERE gl.id=trans_id),
 
1971         (SELECT department_id FROM ap WHERE ap.id=trans_id)
 
1973     $total += _query($query, $chart_id, $fromdate, $todate, $department_id)->[0]->{sum};
 
1975     $total += _query($query, $chart_id, $fromdate, $todate)->[0]->{sum};
 
1978   $main::lxdebug->leave_sub();
 
1982 sub _query {return selectall_hashref_query($::form, $::form->get_standard_dbh, @_);}