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., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #======================================================================
 
  31 # backend code for reports
 
  33 #======================================================================
 
  39 use List::Util qw(sum);
 
  44 # new implementation of balance sheet
 
  47 # stuff missing from the original implementation:
 
  50 # - proper testing for heading charts
 
  51 # - transmission from $form to TMPL realm is not as clear as i'd like
 
  53   $main::lxdebug->enter_sub();
 
  55   my $myconfig = \%main::myconfig;
 
  56   my $form     = $main::form;
 
  57   my $dbh      = $form->get_standard_dbh($myconfig);
 
  60   my @categories  = qw(A C L Q);
 
  62   # if there are any dates construct a where
 
  63   if ($form->{asofdate}) {
 
  64     $form->{period} = $form->{this_period} = conv_dateq($form->{asofdate});
 
  67   get_accounts($dbh, $last_period, "", $form->{asofdate}, $form, \@categories);
 
  69   # if there are any compare dates
 
  70   if ($form->{compareasofdate}) {
 
  72     get_accounts($dbh, $last_period, "", $form->{compareasofdate}, $form, \@categories);
 
  73     $form->{last_period} = conv_dateq($form->{compareasofdate});
 
  76   # now we got $form->{A}{accno}{ }    assets
 
  77   # and $form->{L}{accno}{ }           liabilities
 
  78   # and $form->{Q}{accno}{ }           equity
 
  79   # build asset accounts
 
  81   my %account = ('A' => { 'ml'     => -1 },
 
  83                  'Q' => { 'ml'     =>  1 });
 
  87   foreach my $category (grep { !/C/ } @categories) {
 
  89     $TMPL_DATA->{$category} = [];
 
  90     my $ml  = $account{$category}{ml};
 
  92     foreach my $key (sort keys %{ $form->{$category} }) {
 
  94       my $row = { %{ $form->{$category}{$key} } };
 
  96       # if charttype "heading" - calculate this entry, start a new batch of charts belonging to this heading and skip the rest bo the loop
 
  97       # header charts are not real charts. start a sub aggregation with them, but don't calculate anything with them
 
  98       if ($row->{charttype} eq "H") {
 
  99         if ($account{$category}{subtotal} && $form->{l_subtotal}) {
 
 100           $row->{subdescription} = $account{$category}{subdescription};
 
 101           $row->{this}           = $account{$category}{subthis} * $ml;                   # format: $dec, $dash
 
 102           $row->{last}           = $account{$category}{sublast} * $ml if $last_period;   # format: $dec, $dash
 
 105         $row->{subheader} = 1;
 
 106         $account{$category}{subthis}        = $row->{this};
 
 107         $account{$category}{sublast}        = $row->{last};
 
 108         $account{$category}{subdescription} = $row->{description};
 
 109         $account{$category}{subtotal} = 1;
 
 114         next unless $form->{l_heading};
 
 117       for my $period (qw(this last)) {
 
 118         next if ($period eq 'last' && !$last_period);
 
 120         $row->{$period}                    *= $ml;
 
 121         $form->{total}{$category}{$period} += $row->{$period};      #      if ($row->{charttype} eq 'A') {   # why??
 
 124       push @{ $TMPL_DATA->{$category} }, $row;
 
 127     # resolve heading/subtotal
 
 128     if ($account{$category}{subtotal} && $form->{l_subtotal}) {
 
 129       $TMPL_DATA->{$category}[-1]{subdescription} = $account{$category}{subdescription};
 
 130       $TMPL_DATA->{$category}[-1]{this}           = $account{$category}{subthis} * $ml;                   # format: $dec, $dash
 
 131       $TMPL_DATA->{$category}[-1]{last}           = $account{$category}{sublast} * $ml if $last_period;   # format: $dec, $dash
 
 134     $TMPL_DATA->{total}{$category}{this} = sum map { $_->{this} } @{ $TMPL_DATA->{$category} };
 
 135     $TMPL_DATA->{total}{$category}{last} = sum map { $_->{last} } @{ $TMPL_DATA->{$category} };
 
 138   for my $period (qw(this last)) {
 
 139     next if ($period eq 'last' && !$last_period);
 
 141     $form->{E}{$period}             = $form->{total}{A}{$period} - $form->{total}{L}{$period} - $form->{total}{Q}{$period};
 
 142     $form->{total}{Q}{$period}     += $form->{E}{$period};
 
 143     $TMPL_DATA->{total}{Q}{$period} = $form->{total}{Q}{$period};
 
 144     $TMPL_DATA->{total}{$period}    = $form->{total}{L}{$period} + $form->{total}{Q}{$period};
 
 147   push @{ $TMPL_DATA->{Q} }, $form->{E};
 
 149   $main::lxdebug->leave_sub();
 
 155   $main::lxdebug->enter_sub();
 
 157   my ($dbh, $last_period, $fromdate, $todate, $form, $categories) = @_;
 
 159   my ($null, $department_id) = split /--/, $form->{department};
 
 170   my $dec = $form->{decimalplaces};
 
 172   my $category = qq| AND (| . join(" OR ", map({ "(c.category = " . $dbh->quote($_) . ")" } @{$categories})) . qq|) |;
 
 176     qq|SELECT c.accno, c.description, c.category
 
 178        WHERE (c.charttype = 'H')
 
 182   $sth = prepare_execute_query($form, $dbh, $query);
 
 184   my @headingaccounts = ();
 
 185   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 186     $form->{ $ref->{category} }{ $ref->{accno} }{description} =
 
 187       "$ref->{description}";
 
 188     $form->{ $ref->{category} }{ $ref->{accno} }{charttype} = "H";
 
 189     $form->{ $ref->{category} }{ $ref->{accno} }{accno}     = $ref->{accno};
 
 191     push @headingaccounts, $ref->{accno};
 
 197     $fromdate = conv_dateq($fromdate);
 
 198     if ($form->{method} eq 'cash') {
 
 199       $subwhere .= " AND (transdate >= $fromdate)";
 
 200       $glwhere = " AND (ac.transdate >= $fromdate)";
 
 202       $where .= " AND (ac.transdate >= $fromdate)";
 
 207     $todate = conv_dateq($todate);
 
 208     $where    .= " AND (ac.transdate <= $todate)";
 
 209     $subwhere .= " AND (transdate <= $todate)";
 
 212   if ($department_id) {
 
 213     $dpt_join = qq| JOIN department t ON (a.department_id = t.id) |;
 
 214     $dpt_where = qq| AND (t.id = | . conv_i($department_id, 'NULL') . qq|)|;
 
 217   if ($form->{project_id}) {
 
 218     $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
 
 221   if ($form->{method} eq 'cash') {
 
 223       qq|SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 225          JOIN chart c ON (c.id = ac.chart_id)
 
 226          JOIN ar a ON (a.id = ac.trans_id)
 
 235                JOIN chart ON (chart_id = id)
 
 236                WHERE (link LIKE '%AR_paid%')
 
 240          GROUP BY c.accno, c.description, c.category
 
 244          SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 246          JOIN chart c ON (c.id = ac.chart_id)
 
 247          JOIN ap a ON (a.id = ac.trans_id)
 
 256                JOIN chart ON (chart_id = id)
 
 257                WHERE (link LIKE '%AP_paid%')
 
 261          GROUP BY c.accno, c.description, c.category
 
 265          SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 267          JOIN chart c ON (c.id = ac.chart_id)
 
 268          JOIN gl a ON (a.id = ac.trans_id)
 
 274              AND NOT ((c.link = 'AR') OR (c.link = 'AP'))
 
 276          GROUP BY c.accno, c.description, c.category |;
 
 278     if ($form->{project_id}) {
 
 283          SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount, c.description AS description, c.category
 
 285          JOIN ar a ON (a.id = ac.trans_id)
 
 286          JOIN parts p ON (ac.parts_id = p.id)
 
 287          JOIN chart c on (p.income_accno_id = c.id)
 
 289          -- use transdate from subwhere
 
 290          WHERE (c.category = 'I')
 
 297                JOIN chart ON (chart_id = id)
 
 298                WHERE (link LIKE '%AR_paid%')
 
 302          GROUP BY c.accno, c.description, c.category
 
 306          SELECT c.accno AS accno, SUM(ac.sellprice) AS amount, c.description AS description, c.category
 
 308          JOIN ap a ON (a.id = ac.trans_id)
 
 309          JOIN parts p ON (ac.parts_id = p.id)
 
 310          JOIN chart c on (p.expense_accno_id = c.id)
 
 312          WHERE (c.category = 'E')
 
 319                JOIN chart ON (chart_id = id)
 
 320                WHERE link LIKE '%AP_paid%'
 
 324          GROUP BY c.accno, c.description, c.category |;
 
 327   } else {                      # if ($form->{method} eq 'cash')
 
 328     if ($department_id) {
 
 329       $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
 
 330       $dpt_where = qq| AND t.department_id = $department_id |;
 
 334       SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
 
 336       JOIN chart c ON (c.id = ac.chart_id)
 
 342       GROUP BY c.accno, c.description, c.category |;
 
 344     if ($form->{project_id}) {
 
 348       SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount, c.description AS description, c.category
 
 350       JOIN ar a ON (a.id = ac.trans_id)
 
 351       JOIN parts p ON (ac.parts_id = p.id)
 
 352       JOIN chart c on (p.income_accno_id = c.id)
 
 354       -- use transdate from subwhere
 
 355       WHERE (c.category = 'I')
 
 359       GROUP BY c.accno, c.description, c.category
 
 363       SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) * -1 AS amount, c.description AS description, c.category
 
 365       JOIN ap a ON (a.id = ac.trans_id)
 
 366       JOIN parts p ON (ac.parts_id = p.id)
 
 367       JOIN chart c on (p.expense_accno_id = c.id)
 
 369       WHERE (c.category = 'E')
 
 373       GROUP BY c.accno, c.description, c.category |;
 
 381   $sth = prepare_execute_query($form, $dbh, $query);
 
 383   while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 385     if ($ref->{category} eq 'C') {
 
 386       $ref->{category} = 'A';
 
 389     # get last heading account
 
 390     @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
 
 394         $form->{ $ref->{category} }{$accno}{last} += $ref->{amount};
 
 396         $form->{ $ref->{category} }{$accno}{this} += $ref->{amount};
 
 400     $form->{ $ref->{category} }{ $ref->{accno} }{accno}       = $ref->{accno};
 
 401     $form->{ $ref->{category} }{ $ref->{accno} }{description} = $ref->{description};
 
 402     $form->{ $ref->{category} }{ $ref->{accno} }{charttype} = "A";
 
 405       $form->{ $ref->{category} }{ $ref->{accno} }{last} += $ref->{amount};
 
 407       $form->{ $ref->{category} }{ $ref->{accno} }{this} += $ref->{amount};
 
 412   # remove accounts with zero balance
 
 413   foreach $category (@{$categories}) {
 
 414     foreach $accno (keys %{ $form->{$category} }) {
 
 415       $form->{$category}{$accno}{last} = $form->round_amount($form->{$category}{$accno}{last}, $dec);
 
 416       $form->{$category}{$accno}{this} = $form->round_amount($form->{$category}{$accno}{this}, $dec);
 
 418       delete $form->{$category}{$accno}
 
 419         if (   $form->{$category}{$accno}{this} == 0
 
 420             && $form->{$category}{$accno}{last} == 0);
 
 424   $main::lxdebug->leave_sub();
 
 428   $main::lxdebug->enter_sub();
 
 430   my ($dbh, $last_period, $fromdate, $todate, $form, $category) = @_;
 
 432   my ($null, $department_id) = split /--/, $form->{department};
 
 445     $fromdate = conv_dateq($fromdate);
 
 446     if ($form->{method} eq 'cash') {
 
 447       $subwhere .= " AND (transdate    >= $fromdate)";
 
 448       $glwhere   = " AND (ac.transdate >= $fromdate)";
 
 449       $prwhere   = " AND (a.transdate  >= $fromdate)";
 
 451       $where    .= " AND (ac.transdate >= $fromdate)";
 
 456     $todate = conv_dateq($todate);
 
 457     $subwhere   .= " AND (transdate    <= $todate)";
 
 458     $where      .= " AND (ac.transdate <= $todate)";
 
 459     $prwhere    .= " AND (a.transdate  <= $todate)";
 
 462   if ($department_id) {
 
 463     $dpt_join = qq| JOIN department t ON (a.department_id = t.id) |;
 
 464     $dpt_where = qq| AND (t.id = | . conv_i($department_id, 'NULL') . qq|) |;
 
 467   if ($form->{project_id}) {
 
 468     $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}) . qq|) |;
 
 471   if ($form->{method} eq 'cash') {
 
 474        SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 476          JOIN chart c ON (c.id = ac.chart_id)
 
 477          JOIN ar a ON (a.id = ac.trans_id)
 
 479          WHERE $where $dpt_where
 
 480            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AR_paid%') $subwhere)
 
 486          SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 488          JOIN chart c ON (c.id = ac.chart_id)
 
 489          JOIN ap a ON (a.id = ac.trans_id)
 
 491          WHERE $where $dpt_where
 
 492            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AP_paid%') $subwhere)
 
 498          SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 500          JOIN chart c ON (c.id = ac.chart_id)
 
 501          JOIN gl a ON (a.id = ac.trans_id)
 
 503          WHERE $where $dpt_where $glwhere
 
 504            AND NOT ((c.link = 'AR') OR (c.link = 'AP'))
 
 509     if ($form->{project_id}) {
 
 513          SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 515          JOIN ar a ON (a.id = ac.trans_id)
 
 516          JOIN parts p ON (ac.parts_id = p.id)
 
 517          JOIN chart c on (p.income_accno_id = c.id)
 
 519          WHERE (c.category = 'I') $prwhere $dpt_where
 
 520            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AR_paid%') $subwhere)
 
 526          SELECT SUM(ac.sellprice * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 528          JOIN ap a ON (a.id = ac.trans_id)
 
 529          JOIN parts p ON (ac.parts_id = p.id)
 
 530          JOIN chart c on (p.expense_accno_id = c.id)
 
 532          WHERE (c.category = 'E') $prwhere $dpt_where
 
 533            AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AP_paid%') $subwhere)
 
 539   } else {                      # if ($form->{method} eq 'cash')
 
 540     if ($department_id) {
 
 541       $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
 
 542       $dpt_where = qq| AND (t.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
 
 546         SELECT sum(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 548         JOIN chart c ON (c.id = ac.chart_id)
 
 553         GROUP BY c.$category |;
 
 555     if ($form->{project_id}) {
 
 559         SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 561         JOIN ar a ON (a.id = ac.trans_id)
 
 562         JOIN parts p ON (ac.parts_id = p.id)
 
 563         JOIN chart c on (p.income_accno_id = c.id)
 
 565         WHERE (c.category = 'I')
 
 573         SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
 
 575         JOIN ap a ON (a.id = ac.trans_id)
 
 576         JOIN parts p ON (ac.parts_id = p.id)
 
 577         JOIN chart c on (p.expense_accno_id = c.id)
 
 579         WHERE (c.category = 'E')
 
 583         GROUP BY c.$category |;
 
 591   my $sth = prepare_execute_query($form, $dbh, $query);
 
 593   while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 594     if ($category eq "pos_bwa") {
 
 596         $form->{ $ref->{$category} }{kumm} += $ref->{amount};
 
 598         $form->{ $ref->{$category} }{jetzt} += $ref->{amount};
 
 601       $form->{ $ref->{$category} } += $ref->{amount};
 
 606   $main::lxdebug->leave_sub();
 
 610   $main::lxdebug->enter_sub();
 
 612   my ($self, $myconfig, $form, %options) = @_;
 
 614   my $dbh = $form->dbconnect($myconfig);
 
 616   my ($query, $sth, $ref);
 
 619   my ($null, $department_id) = split /--/, $form->{department};
 
 620   my @headingaccounts = ();
 
 626   my $invwhere = $where;
 
 628   if ($department_id) {
 
 629     $dpt_join = qq| JOIN dpt_trans t ON (ac.trans_id = t.trans_id) |;
 
 630     $dpt_where = qq| AND (t.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
 
 633   # project_id only applies to getting transactions
 
 634   # it has nothing to do with a trial balance
 
 635   # but we use the same function to collect information
 
 637   if ($form->{project_id}) {
 
 638     $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
 
 641   my $acc_cash_where = "";
 
 642 #  my $ar_cash_where = "";
 
 643 #  my $ap_cash_where = "";
 
 646   if ($form->{method} eq "cash") {
 
 648       qq| AND (ac.trans_id IN (
 
 651             WHERE datepaid >= '$form->{fromdate}'
 
 652               AND datepaid <= '$form->{todate}'
 
 658             WHERE datepaid >= '$form->{fromdate}'
 
 659               AND datepaid <= '$form->{todate}'
 
 665             WHERE transdate >= '$form->{fromdate}'
 
 666               AND transdate <= '$form->{todate}'
 
 668 #    $ar_ap_cash_where = qq| AND (a.datepaid>='$form->{fromdate}' AND a.datepaid<='$form->{todate}') |;
 
 671   if ($options{beginning_balances}) {
 
 672     foreach my $prefix (qw(from to)) {
 
 673       next if ($form->{"${prefix}date"});
 
 675       my $min_max = $prefix eq 'from' ? 'min' : 'max';
 
 676       $query      = qq|SELECT ${min_max}(transdate)
 
 682       ($form->{"${prefix}date"}) = selectfirst_array_query($form, $dbh, $query);
 
 685     # get beginning balances
 
 687       qq|SELECT c.accno, c.category, SUM(ac.amount) AS amount, c.description
 
 689           LEFT JOIN chart c ON (ac.chart_id = c.id)
 
 691           WHERE ((select date_trunc('year', ac.transdate::date)) = (select date_trunc('year', ?::date))) AND ac.ob_transaction $acc_cash_where
 
 694           GROUP BY c.accno, c.category, c.description |;
 
 696     $sth = prepare_execute_query($form, $dbh, $query, $form->{fromdate});
 
 698     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 700       if ($ref->{amount} != 0 || $form->{all_accounts}) {
 
 701         $trb{ $ref->{accno} }{description} = $ref->{description};
 
 702         $trb{ $ref->{accno} }{charttype}   = 'A';
 
 703         $trb{ $ref->{accno} }{beginning_balance} = $ref->{amount};
 
 705         if ($ref->{amount} > 0) {
 
 706           $trb{ $ref->{accno} }{haben_eb}   = $ref->{amount};
 
 708           $trb{ $ref->{accno} }{soll_eb}   = $ref->{amount} * -1;
 
 710         $trb{ $ref->{accno} }{category}    = $ref->{category};
 
 719     qq|SELECT c.accno, c.description, c.category
 
 721        WHERE c.charttype = 'H'
 
 724   $sth = prepare_execute_query($form, $dbh, $query);
 
 726   while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 727     $trb{ $ref->{accno} }{description} = $ref->{description};
 
 728     $trb{ $ref->{accno} }{charttype}   = 'H';
 
 729     $trb{ $ref->{accno} }{category}    = $ref->{category};
 
 731     push @headingaccounts, $ref->{accno};
 
 737   my $saldowhere    = " 1 = 1 ";
 
 738   my $sumwhere      = " 1 = 1 ";
 
 740   my $sumsubwhere   = '';
 
 741   my $saldosubwhere = '';
 
 742   my $glsaldowhere  = '';
 
 748   if ($form->{fromdate} || $form->{todate}) {
 
 749     if ($form->{fromdate}) {
 
 750       my $fromdate = conv_dateq($form->{fromdate});
 
 751       $tofrom        .= " AND (ac.transdate >= $fromdate)";
 
 752       $subwhere      .= " AND (transdate >= $fromdate)";
 
 753       $sumsubwhere   .= " AND (transdate >= (select date_trunc('year', date $fromdate))) ";
 
 754       $saldosubwhere .= " AND transdate>=(select date_trunc('year', date $fromdate))  ";
 
 755       $invwhere      .= " AND (a.transdate >= $fromdate)";
 
 756       $glsaldowhere  .= " AND ac.transdate>=(select date_trunc('year', date $fromdate)) ";
 
 757       $glwhere        = " AND (ac.transdate >= $fromdate)";
 
 758       $glsumwhere     = " AND (ac.transdate >= (select date_trunc('year', date $fromdate))) ";
 
 760     if ($form->{todate}) {
 
 761       my $todate = conv_dateq($form->{todate});
 
 762       $tofrom        .= " AND (ac.transdate <= $todate)";
 
 763       $invwhere      .= " AND (a.transdate <= $todate)";
 
 764       $saldosubwhere .= " AND (transdate <= $todate)";
 
 765       $sumsubwhere   .= " AND (transdate <= $todate)";
 
 766       $subwhere      .= " AND (transdate <= $todate)";
 
 767       $glwhere       .= " AND (ac.transdate <= $todate)";
 
 768       $glsumwhere    .= " AND (ac.transdate <= $todate) ";
 
 769       $glsaldowhere  .= " AND (ac.transdate <= $todate) ";
 
 773   if ($form->{method} eq "cash") {
 
 775       qq| AND ((ac.trans_id IN (SELECT id from ar) AND
 
 780                     JOIN chart ON (chart_id = id)
 
 781                     WHERE (link LIKE '%AR_paid%')
 
 786                (ac.trans_id in (SELECT id from ap) AND
 
 791                     JOIN chart ON (chart_id = id)
 
 792                     WHERE (link LIKE '%AP_paid%')
 
 797                (ac.trans_id in (SELECT id from gl)
 
 801       qq| AND ((ac.trans_id IN (SELECT id from ar) AND
 
 806                     JOIN chart ON (chart_id = id)
 
 807                     WHERE (link LIKE '%AR_paid%')
 
 812                (ac.trans_id in (SELECT id from ap) AND
 
 817                     JOIN chart ON (chart_id = id)
 
 818                     WHERE (link LIKE '%AP_paid%')
 
 823                (ac.trans_id in (SELECT id from gl)
 
 827       qq| AND ((ac.trans_id IN (SELECT id from ar) AND
 
 832                     JOIN chart ON (chart_id = id)
 
 833                     WHERE (link LIKE '%AR_paid%')
 
 838                (ac.trans_id in (SELECT id from ap) AND
 
 843                     JOIN chart ON (chart_id = id)
 
 844                     WHERE (link LIKE '%AP_paid%')
 
 849                (ac.trans_id in (SELECT id from gl)
 
 854     $where .= $tofrom . " AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
 
 855     $saldowhere .= $glsaldowhere . " AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
 
 856     $sumwhere .= $glsumwhere . " AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
 
 860        SELECT c.accno, c.description, c.category, SUM(ac.amount) AS amount
 
 862        JOIN chart c ON (c.id = ac.chart_id)
 
 867        GROUP BY c.accno, c.description, c.category |;
 
 869   if ($form->{project_id}) {
 
 871       -- add project transactions from invoice
 
 875       SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) AS amount
 
 877       JOIN ar a ON (ac.trans_id = a.id)
 
 878       JOIN parts p ON (ac.parts_id = p.id)
 
 879       JOIN chart c ON (p.income_accno_id = c.id)
 
 884       GROUP BY c.accno, c.description, c.category
 
 888       SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) * -1 AS amount
 
 890       JOIN ap a ON (ac.trans_id = a.id)
 
 891       JOIN parts p ON (ac.parts_id = p.id)
 
 892       JOIN chart c ON (p.expense_accno_id = c.id)
 
 897       GROUP BY c.accno, c.description, c.category
 
 901   $query .= qq| ORDER BY accno|;
 
 903   $sth = prepare_execute_query($form, $dbh, $query);
 
 905   # calculate the debit and credit in the period
 
 906   while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 907     $trb{ $ref->{accno} }{description} = $ref->{description};
 
 908     $trb{ $ref->{accno} }{charttype}   = 'A';
 
 909     $trb{ $ref->{accno} }{category}    = $ref->{category};
 
 910     $trb{ $ref->{accno} }{amount} += $ref->{amount};
 
 914   # prepare query for each account
 
 915   my ($q_drcr, $drcr, $q_project_drcr, $project_drcr);
 
 919          (SELECT SUM(ac.amount) * -1
 
 921           JOIN chart c ON (c.id = ac.chart_id)
 
 927           AND (c.accno = ?)) AS debit,
 
 929          (SELECT SUM(ac.amount)
 
 931           JOIN chart c ON (c.id = ac.chart_id)
 
 937           AND c.accno = ?) AS credit,
 
 938         (SELECT SUM(ac.amount)
 
 940          JOIN chart c ON (ac.chart_id = c.id)
 
 945          AND c.accno = ? AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL)) AS saldo,
 
 947         (SELECT SUM(ac.amount)
 
 949          JOIN chart c ON (ac.chart_id = c.id)
 
 955          AND c.accno = ?) AS sum_credit,
 
 957         (SELECT SUM(ac.amount)
 
 959          JOIN chart c ON (ac.chart_id = c.id)
 
 965          AND c.accno = ?) AS sum_debit,
 
 967         (SELECT max(ac.transdate) FROM acc_trans ac
 
 968         JOIN chart c ON (ac.chart_id = c.id)
 
 973         AND c.accno = ?) AS last_transaction
 
 978   $drcr = prepare_query($form, $dbh, $q_drcr);
 
 980   if ($form->{project_id}) {
 
 981     # prepare query for each account
 
 984           (SELECT SUM(ac.sellprice * ac.qty) * -1
 
 986            JOIN parts p ON (ac.parts_id = p.id)
 
 987            JOIN ap a ON (ac.trans_id = a.id)
 
 988            JOIN chart c ON (p.expense_accno_id = c.id)
 
 993            AND c.accno = ?) AS debit,
 
 995           (SELECT SUM(ac.sellprice * ac.qty)
 
 997            JOIN parts p ON (ac.parts_id = p.id)
 
 998            JOIN ar a ON (ac.trans_id = a.id)
 
 999            JOIN chart c ON (p.income_accno_id = c.id)
 
1004            AND c.accno = ?) AS credit,
 
1006         (SELECT SUM(ac.amount)
 
1008          JOIN chart c ON (ac.chart_id = c.id)
 
1013          AND c.accno = ? AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL)) AS saldo,
 
1015         (SELECT SUM(ac.amount)
 
1017          JOIN chart c ON (ac.chart_id = c.id)
 
1023          AND c.accno = ?) AS sum_credit,
 
1025         (SELECT SUM(ac.amount)
 
1027          JOIN chart c ON (ac.chart_id = c.id)
 
1033          AND c.accno = ?) AS sum_debit,
 
1036         (SELECT max(ac.transdate) FROM acc_trans ac
 
1037         JOIN chart c ON (ac.chart_id = c.id)
 
1042         AND c.accno = ?) AS last_transaction
 
1045     $project_drcr = prepare_query($form, $dbh, $q_project_drcr);
 
1049   my ($debit, $credit, $saldo, $soll_saldo, $haben_saldo,$soll_kummuliert, $haben_kummuliert, $last_transaction);
 
1051   foreach my $accno (sort keys %trb) {
 
1054     $ref->{accno} = $accno;
 
1055     map { $ref->{$_} = $trb{$accno}{$_} }
 
1056       qw(description category charttype amount soll_eb haben_eb beginning_balance);
 
1058     $ref->{balance} = $form->round_amount($balance{ $ref->{accno} }, 2);
 
1060     if ($trb{$accno}{charttype} eq 'A') {
 
1063       do_statement($form, $drcr, $q_drcr, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno});
 
1065       ($debit, $credit, $saldo, $haben_saldo, $soll_saldo) = (0, 0, 0, 0, 0);
 
1066       my ($soll_kumuliert, $haben_kumuliert) = (0, 0);
 
1067       $last_transaction = "";
 
1068       while (($debit, $credit, $saldo, $haben_kumuliert, $soll_kumuliert, $last_transaction) = $drcr->fetchrow_array) {
 
1069         $ref->{debit}  += $debit;
 
1070         $ref->{credit} += $credit;
 
1072           $ref->{haben_saldo} += $saldo;
 
1074           $ref->{soll_saldo} += $saldo * -1;
 
1076         $ref->{last_transaction} = $last_transaction;
 
1077         $ref->{soll_kumuliert} = $soll_kumuliert * -1;
 
1078         $ref->{haben_kumuliert} = $haben_kumuliert;
 
1082       if ($form->{project_id}) {
 
1085         do_statement($form, $project_drcr, $q_project_drcr, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno});
 
1087         ($debit, $credit) = (0, 0);
 
1088         while (($debit, $credit, $saldo, $haben_kumuliert, $soll_kumuliert, $last_transaction) = $project_drcr->fetchrow_array) {
 
1089           $ref->{debit}  += $debit;
 
1090           $ref->{credit} += $credit;
 
1092             $ref->{haben_saldo} += $saldo;
 
1094             $ref->{soll_saldo} += $saldo * -1;
 
1096           $ref->{soll_kumuliert} += $soll_kumuliert * -1;
 
1097           $ref->{haben_kumuliert} += $haben_kumuliert;
 
1099         $project_drcr->finish;
 
1102       $ref->{debit}  = $form->round_amount($ref->{debit},  2);
 
1103       $ref->{credit} = $form->round_amount($ref->{credit}, 2);
 
1105       if ($ref->{haben_saldo} != 0) {
 
1106         $ref->{haben_saldo}  = $ref->{haben_saldo} + $ref->{beginning_balance};
 
1107         if ($ref->{haben_saldo} < 0) {
 
1108           $ref->{soll_saldo} = $form->round_amount(($ref->{haben_saldo} *- 1), 2);
 
1109           $ref->{haben_saldo} = 0;
 
1111       } elsif ($ref->{soll_saldo} != 0) {
 
1112         $ref->{soll_saldo} = $ref->{soll_saldo} - $ref->{beginning_balance};
 
1113         if ($ref->{soll_saldo} < 0) {
 
1114           $ref->{haben_saldo} = $form->round_amount(($ref->{haben_saldo} * -1), 2);
 
1115           $ref->{soll_saldo} = 0;
 
1118       $ref->{haben_saldo} = $form->round_amount($ref->{haben_saldo}, 2);
 
1119       $ref->{soll_saldo} = $form->round_amount($ref->{soll_saldo}, 2);
 
1120       $ref->{haben_kumuliert}  = $form->round_amount($ref->{haben_kumuliert},  2);
 
1121       $ref->{soll_kumuliert} = $form->round_amount($ref->{soll_kumuliert}, 2);
 
1126     @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
 
1127     $accno = pop @accno;
 
1129       $trb{$accno}{debit}  += $ref->{debit};
 
1130       $trb{$accno}{credit} += $ref->{credit};
 
1131       $trb{$accno}{soll_saldo}  += $ref->{soll_saldo};
 
1132       $trb{$accno}{haben_saldo} += $ref->{haben_saldo};
 
1133       $trb{$accno}{soll_kumuliert}  += $ref->{soll_kumuliert};
 
1134       $trb{$accno}{haben_kumuliert} += $ref->{haben_kumuliert};
 
1137     push @{ $form->{TB} }, $ref;
 
1143   # debits and credits for headings
 
1144   foreach my $accno (@headingaccounts) {
 
1145     foreach $ref (@{ $form->{TB} }) {
 
1146       if ($accno eq $ref->{accno}) {
 
1147         $ref->{debit}           = $trb{$accno}{debit};
 
1148         $ref->{credit}          = $trb{$accno}{credit};
 
1149         $ref->{soll_saldo}      = $trb{$accno}{soll_saldo};
 
1150         $ref->{haben_saldo}     = $trb{$accno}{haben_saldo};
 
1151         $ref->{soll_kumuliert}  = $trb{$accno}{soll_kumuliert};
 
1152         $ref->{haben_kumuliert} = $trb{$accno}{haben_kumuliert};
 
1157   $main::lxdebug->leave_sub();
 
1161   $main::lxdebug->enter_sub();
 
1162   my ($self, $dbh, $form) = @_;
 
1163   my $arap = $form->{arap} eq "ar" ? "ar" : "ap";
 
1164   my $query = qq|SELECT invnumber FROM $arap WHERE invnumber LIKE "Storno zu "|;
 
1165   my $sth =  $dbh->prepare($query);
 
1166   while(my $ref = $sth->fetchrow_hashref()) {
 
1167     $ref->{invnumer} =~ s/Storno zu //g;
 
1168     $form->{storno}{$ref->{invnumber}} = 1;
 
1170   $main::lxdebug->leave_sub();
 
1174   $main::lxdebug->enter_sub();
 
1176   my ($self, $myconfig, $form) = @_;
 
1178   # connect to database
 
1179   my $dbh     = $form->dbconnect($myconfig);
 
1181   my ($invoice, $arap, $buysell, $ct, $ct_id, $ml);
 
1183   if ($form->{ct} eq "customer") {
 
1196   $ct_id = "${ct}_id";
 
1198   $form->{todate} = $form->current_date($myconfig) unless ($form->{todate});
 
1199   my $todate = conv_dateq($form->{todate});
 
1200   my $fromdate = conv_dateq($form->{fromdate});
 
1202   my $fromwhere = ($form->{fromdate} ne "") ? " AND (transdate >= (date $fromdate)) " : "";
 
1204   my $where = " 1 = 1 ";
 
1207   if ($form->{$ct_id}) {
 
1208     $where .= qq| AND (ct.id = | . conv_i($form->{$ct_id}) . qq|)|;
 
1209   } elsif ($form->{ $form->{ct} }) {
 
1210     $where .= qq| AND (ct.name ILIKE | . $dbh->quote('%' . $form->{$ct} . '%') . qq|)|;
 
1214   if ($form->{department}) {
 
1215     my ($null, $department_id) = split /--/, $form->{department};
 
1216     $dpt_join = qq| JOIN department d ON (a.department_id = d.id) |;
 
1217     $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|)|;
 
1221     -- between 0-30 days
 
1223     SELECT ${ct}.id AS ctid, ${ct}.name,
 
1224       street, zipcode, city, country, contact, email,
 
1225       phone as customerphone, fax as customerfax, ${ct}number,
 
1226       "invnumber", "transdate",
 
1227       (amount - COALESCE((SELECT sum(amount)*$ml FROM acc_trans LEFT JOIN chart ON (acc_trans.chart_id=chart.id) WHERE link ilike '%paid%' AND acc_trans.trans_id=${arap}.id AND acc_trans.transdate <= (date $todate)),0)) as "open", "amount",
 
1228       "duedate", invoice, ${arap}.id,
 
1231        WHERE (${arap}.curr = exchangerate.curr)
 
1232          AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate
 
1234     WHERE ((paid != amount) OR (datepaid > (date $todate) AND datepaid is not null))
 
1235       AND (${arap}.storno IS FALSE)
 
1236       AND (${arap}.${ct}_id = ${ct}.id)
 
1238       AND (transdate <= (date $todate) $fromwhere )
 
1240     ORDER BY ctid, transdate, invnumber |;
 
1242   my $sth_details = prepare_query($form, $dbh, $q_details);
 
1244   # select outstanding vendors or customers, depends on $ct
 
1246     qq|SELECT DISTINCT ct.id, ct.name
 
1247        FROM $ct ct, $arap a
 
1250          AND (a.${ct_id} = ct.id)
 
1251          AND ((a.paid != a.amount) OR ((a.datepaid > $todate) AND (datepaid is NOT NULL)))
 
1252          AND (a.transdate <= $todate $fromwhere)
 
1255   my $sth = prepare_execute_query($form, $dbh, $query);
 
1258   # for each company that has some stuff outstanding
 
1259   while (my ($id) = $sth->fetchrow_array) {
 
1260     do_statement($form, $sth_details, $q_details, $id);
 
1262     while (my $ref = $sth_details->fetchrow_hashref("NAME_lc")) {
 
1263       $ref->{module} = ($ref->{invoice}) ? $invoice : $arap;
 
1264       $ref->{exchangerate} = 1 unless $ref->{exchangerate};
 
1265       push @{ $form->{AG} }, $ref;
 
1268     $sth_details->finish;
 
1277   $main::lxdebug->leave_sub();
 
1281   $main::lxdebug->enter_sub();
 
1283   my ($self, $myconfig, $form) = @_;
 
1285   # connect to database
 
1286   my $dbh = $form->dbconnect($myconfig);
 
1288   my $ct = $form->{ct} eq "customer" ? "customer" : "vendor";
 
1291     qq|SELECT ct.name, ct.email, ct.cc, ct.bcc
 
1294   ($form->{ $form->{ct} }, $form->{email}, $form->{cc}, $form->{bcc}) =
 
1295     selectrow_query($form, $dbh, $query, $form->{"${ct}_id"});
 
1298   $main::lxdebug->leave_sub();
 
1301 sub get_taxaccounts {
 
1302   $main::lxdebug->enter_sub();
 
1304   my ($self, $myconfig, $form) = @_;
 
1306   # connect to database
 
1307   my $dbh = $form->dbconnect($myconfig);
 
1311     qq|SELECT c.accno, c.description, t.rate
 
1313        WHERE (c.link LIKE '%CT_tax%') AND (c.id = t.chart_id)
 
1315   $form->{taxaccounts} = selectall_hashref_quert($form, $dbh, $query);
 
1319   $main::lxdebug->leave_sub();
 
1323   $main::lxdebug->enter_sub();
 
1325   my ($self, $myconfig, $form) = @_;
 
1327   # connect to database
 
1328   my $dbh = $form->dbconnect($myconfig);
 
1330   my ($null, $department_id) = split /--/, $form->{department};
 
1333   my $where = "1 = 1";
 
1335   if ($department_id) {
 
1336     $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
 
1341   if ($form->{accno}) {
 
1342     $accno = $form->{accno};
 
1343     $rate  = $form->{"$form->{accno}_rate"};
 
1344     $accno = qq| AND (ch.accno = | . $dbh->quote($accno) . qq|)|;
 
1350   if ($form->{db} eq 'ar') {
 
1351     $table = "customer";
 
1358   my $arap = lc($ARAP);
 
1360   my $transdate = "a.transdate";
 
1362   if ($form->{method} eq 'cash') {
 
1363     $transdate = "a.datepaid";
 
1365     my $todate = conv_dateq($form->{todate} ? $form->{todate} : $form->current_date($myconfig));
 
1372           JOIN chart ON (chart_id = id)
 
1373           WHERE (link LIKE '%${ARAP}_paid%')
 
1374           AND (transdate <= $todate)
 
1379   # if there are any dates construct a where
 
1380   $where .= " AND ($transdate >= " . conv_dateq($form->{fromdate}) . ") " if ($form->{fromdate});
 
1381   $where .= " AND ($transdate <= " . conv_dateq($form->{todate}) . ") " if ($form->{todate});
 
1383   my $ml = ($form->{db} eq 'ar') ? 1 : -1;
 
1385   my $sortorder = join ', ', $form->sort_columns(qw(transdate invnumber name));
 
1386   $sortorder = $form->{sort} if ($form->{sort} && grep({ $_ eq $form->{sort} } qw(id transdate invnumber name netamount tax)));
 
1389   if ($form->{report} !~ /nontaxable/) {
 
1391       qq|SELECT a.id, '0' AS invoice, $transdate AS transdate, a.invnumber, n.name, a.netamount,
 
1392           ac.amount * $ml AS tax
 
1394          JOIN ${arap} a ON (a.id = ac.trans_id)
 
1395          JOIN chart ch ON (ch.id = ac.chart_id)
 
1396          JOIN $table n ON (n.id = a.${table}_id)
 
1400            AND (a.invoice = '0')
 
1404          SELECT a.id, '1' AS invoice, $transdate AS transdate, a.invnumber, n.name, i.sellprice * i.qty AS netamount,
 
1405            i.sellprice * i.qty * $rate * $ml AS tax
 
1407          JOIN ${arap} a ON (a.id = ac.trans_id)
 
1408          JOIN chart ch ON (ch.id = ac.chart_id)
 
1409          JOIN $table n ON (n.id = a.${table}_id)
 
1410          JOIN ${table}tax t ON (t.${table}_id = n.id)
 
1411          JOIN invoice i ON (i.trans_id = a.id)
 
1412          JOIN partstax p ON (p.parts_id = i.parts_id)
 
1416            AND (a.invoice = '1')
 
1417          ORDER BY $sortorder|;
 
1419     # only gather up non-taxable transactions
 
1421       qq|SELECT a.id, '0' AS invoice, $transdate AS transdate, a.invnumber, n.name, a.netamount
 
1423          JOIN ${arap} a ON (a.id = ac.trans_id)
 
1424          JOIN $table n ON (n.id = a.${table}_id)
 
1427            AND (a.invoice = '0')
 
1428            AND (a.netamount = a.amount)
 
1432          SELECT a.id, '1' AS invoice, $transdate AS transdate, a.invnumber, n.name, i.sellprice * i.qty AS netamount
 
1434          JOIN ${arap} a ON (a.id = ac.trans_id)
 
1435          JOIN $table n ON (n.id = a.${table}_id)
 
1436          JOIN invoice i ON (i.trans_id = a.id)
 
1439            AND (a.invoice = '1')
 
1441              a.${table}_id NOT IN (SELECT ${table}_id FROM ${table}tax t (${table}_id))
 
1443              i.parts_id NOT IN (SELECT parts_id FROM partstax p (parts_id))
 
1445          GROUP BY a.id, a.invnumber, $transdate, n.name, i.sellprice, i.qty
 
1446          ORDER by $sortorder|;
 
1449   $form->{TR} = selectall_hashref_query($form, $dbh, $query);
 
1453   $main::lxdebug->leave_sub();
 
1456 sub paymentaccounts {
 
1457   $main::lxdebug->enter_sub();
 
1459   my ($self, $myconfig, $form) = @_;
 
1461   # connect to database, turn AutoCommit off
 
1462   my $dbh = $form->dbconnect_noauto($myconfig);
 
1464   my $ARAP = $form->{db} eq "ar" ? "AR" : "AP";
 
1466   # get A(R|P)_paid accounts
 
1468     qq|SELECT accno, description
 
1470        WHERE link LIKE '%${ARAP}_paid%'|;
 
1471   $form->{PR} = selectall_hashref_query($form, $dbh, $query);
 
1475   $main::lxdebug->leave_sub();
 
1479   $main::lxdebug->enter_sub();
 
1481   my ($self, $myconfig, $form) = @_;
 
1483   # connect to database, turn AutoCommit off
 
1484   my $dbh = $form->dbconnect_noauto($myconfig);
 
1489   if ($form->{db} eq 'ar') {
 
1490     $table = 'customer';
 
1502   if ($form->{department_id}) {
 
1503     $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
 
1504     $where = qq| AND (t.department_id = | . conv_i($form->{department_id}, 'NULL') . qq|) |;
 
1507   if ($form->{fromdate}) {
 
1508     $where .= " AND (ac.transdate >= " . $dbh->quote($form->{fromdate}) . ") ";
 
1510   if ($form->{todate}) {
 
1511     $where .= " AND (ac.transdate <= " . $dbh->quote($form->{todate}) . ") ";
 
1513   if (!$form->{fx_transaction}) {
 
1514     $where .= " AND ac.fx_transaction = '0'";
 
1519   if ($form->{reference}) {
 
1520     $reference = $dbh->quote('%' . $form->{reference} . '%');
 
1521     $invnumber = " AND (a.invnumber LIKE $reference)";
 
1522     $reference = " AND (g.reference LIKE $reference)";
 
1524   if ($form->{source}) {
 
1525     $where .= " AND (ac.source ILIKE " . $dbh->quote('%' . $form->{source} . '%') . ") ";
 
1527   if ($form->{memo}) {
 
1528     $where .= " AND (ac.memo ILIKE " . $dbh->quote('%' . $form->{memo} . '%') . ") ";
 
1531   my %sort_columns =  (
 
1532     'transdate'    => [ qw(transdate lower_invnumber lower_name) ],
 
1533     'invnumber'    => [ qw(lower_invnumber lower_name transdate) ],
 
1534     'name'         => [ qw(lower_name transdate)                 ],
 
1535     'source'       => [ qw(lower_source)                         ],
 
1536     'memo'         => [ qw(lower_memo)                           ],
 
1538   my %lowered_columns =  (
 
1539     'invnumber'       => { 'gl' => 'g.reference',   'arap' => 'a.invnumber', },
 
1540     'memo'            => { 'gl' => 'ac.memo',       'arap' => 'ac.memo',     },
 
1541     'source'          => { 'gl' => 'ac.source',     'arap' => 'ac.source',   },
 
1542     'name'            => { 'gl' => 'g.description', 'arap' => 'c.name',      },
 
1545   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
1546   my $sortkey   = $sort_columns{$form->{sort}} ? $form->{sort} : 'transdate';
 
1547   my $sortorder = join ', ', map { "$_ $sortdir" } @{ $sort_columns{$sortkey} };
 
1550   my %columns_for_sorting = ( 'gl' => '', 'arap' => '', );
 
1551   foreach my $spec (@{ $sort_columns{$sortkey} }) {
 
1552     next if ($spec !~ m/^lower_(.*)$/);
 
1555     map { $columns_for_sorting{$_} .= sprintf(', lower(%s) AS lower_%s', $lowered_columns{$column}->{$_}, $column) } qw(gl arap);
 
1558   $query = qq|SELECT id, accno, description FROM chart WHERE accno = ?|;
 
1559   $sth = prepare_query($form, $dbh, $query);
 
1562       qq|SELECT c.name, a.invnumber, a.ordnumber,
 
1563            ac.transdate, ac.amount * $ml AS paid, ac.source,
 
1564            a.invoice, a.id, ac.memo, '${arap}' AS module
 
1565            $columns_for_sorting{arap}
 
1567          JOIN $arap a ON (ac.trans_id = a.id)
 
1568          JOIN $table c ON (c.id = a.${table}_id)
 
1570          WHERE (ac.chart_id = ?)
 
1576          SELECT g.description, g.reference, NULL AS ordnumber,
 
1577            ac.transdate, ac.amount * $ml AS paid, ac.source,
 
1578            '0' as invoice, g.id, ac.memo, 'gl' AS module
 
1579            $columns_for_sorting{gl}
 
1581          JOIN gl g ON (g.id = ac.trans_id)
 
1583          WHERE (ac.chart_id = ?)
 
1586            AND (ac.amount * $ml) > 0
 
1588          ORDER BY $sortorder|;
 
1589   my $sth_details = prepare_query($form, $dbh, $q_details);
 
1593   # cycle through each id
 
1594   foreach my $accno (split(/ /, $form->{paymentaccounts})) {
 
1595     do_statement($form, $sth, $query, $accno);
 
1596     my $ref = $sth->fetchrow_hashref();
 
1597     push(@{ $form->{PR} }, $ref);
 
1600     $form->{ $ref->{id} } = [] unless ($form->{ $ref->{id} });
 
1602     do_statement($form, $sth_details, $q_details, $ref->{id}, $ref->{id});
 
1603     while (my $pr = $sth_details->fetchrow_hashref()) {
 
1604       push(@{ $form->{ $ref->{id} } }, $pr);
 
1606     $sth_details->finish();
 
1611   $main::lxdebug->leave_sub();
 
1615   $main::lxdebug->enter_sub();
 
1617   my ($self, $myconfig, $form) = @_;
 
1619   # connect to database
 
1620   my $dbh = $form->dbconnect($myconfig);
 
1622   my $last_period = 0;
 
1625     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);
 
1627   $form->{decimalplaces} *= 1;
 
1629   &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate}, $form, "pos_bwa");
 
1631   # if there are any compare dates
 
1633   if ($form->{fromdate} || $form->{todate}) {
 
1635     if ($form->{fromdate}) {
 
1636       $form->{fromdate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
 
1639       $form->{todate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
 
1642     my $kummfromdate = $form->{comparefromdate};
 
1643     my $kummtodate   = $form->{comparetodate};
 
1644     &get_accounts_g($dbh, $last_period, $kummfromdate, $kummtodate, $form, "pos_bwa");
 
1647   my @periods        = qw(jetzt kumm);
 
1648   my @gesamtleistung = qw(1 2 3);
 
1649   my @gesamtkosten   = qw (10 11 12 13 14 15 16 17 18 19 20);
 
1651     qw (rohertrag betriebrohertrag betriebsergebnis neutraleraufwand neutralerertrag ergebnisvorsteuern ergebnis gesamtleistung gesamtkosten);
 
1653   foreach my $key (@periods) {
 
1654     $form->{ "$key" . "gesamtleistung" } = 0;
 
1655     $form->{ "$key" . "gesamtkosten" }   = 0;
 
1657     foreach $category (@categories) {
 
1659       if (defined($form->{$category}{$key})) {
 
1660         $form->{"$key$category"} =
 
1661           $form->format_amount($myconfig,
 
1662                                $form->round_amount($form->{$category}{$key}, 2
 
1664                                $form->{decimalplaces},
 
1668     foreach my $item (@gesamtleistung) {
 
1669       $form->{ "$key" . "gesamtleistung" } += $form->{$item}{$key};
 
1671     foreach my $item (@gesamtkosten) {
 
1672       $form->{ "$key" . "gesamtkosten" } += $form->{$item}{$key};
 
1674     $form->{ "$key" . "rohertrag" } =
 
1675       $form->{ "$key" . "gesamtleistung" } - $form->{4}{$key};
 
1676     $form->{ "$key" . "betriebrohertrag" } =
 
1677       $form->{ "$key" . "rohertrag" } + $form->{5}{$key};
 
1678     $form->{ "$key" . "betriebsergebnis" } =
 
1679       $form->{ "$key" . "betriebrohertrag" } -
 
1680       $form->{ "$key" . "gesamtkosten" };
 
1681     $form->{ "$key" . "neutraleraufwand" } =
 
1682       $form->{30}{$key} + $form->{31}{$key};
 
1683     $form->{ "$key" . "neutralertrag" } =
 
1684       $form->{32}{$key} + $form->{33}{$key} + $form->{34}{$key};
 
1685     $form->{ "$key" . "ergebnisvorsteuern" } =
 
1686       $form->{ "$key" . "betriebsergebnis" } -
 
1687       $form->{ "$key" . "neutraleraufwand" } +
 
1688       $form->{ "$key" . "neutralertrag" };
 
1689     $form->{ "$key" . "ergebnis" } =
 
1690       $form->{ "$key" . "ergebnisvorsteuern" } - $form->{35}{$key};
 
1692     if ($form->{ "$key" . "gesamtleistung" } > 0) {
 
1693       foreach $category (@categories) {
 
1694         if (defined($form->{$category}{$key})) {
 
1695           $form->{ "$key" . "gl" . "$category" } =
 
1696             $form->format_amount(
 
1698                                $form->round_amount(
 
1699                                  ($form->{$category}{$key} /
 
1700                                     $form->{ "$key" . "gesamtleistung" } * 100
 
1702                                  $form->{decimalplaces}
 
1704                                $form->{decimalplaces},
 
1708       foreach my $item (@ergebnisse) {
 
1709         $form->{ "$key" . "gl" . "$item" } =
 
1710           $form->format_amount($myconfig,
 
1711                                $form->round_amount(
 
1712                                  ( $form->{ "$key" . "$item" } /
 
1713                                      $form->{ "$key" . "gesamtleistung" } * 100
 
1715                                  $form->{decimalplaces}
 
1717                                $form->{decimalplaces},
 
1722     if ($form->{ "$key" . "gesamtkosten" } > 0) {
 
1723       foreach $category (@categories) {
 
1724         if (defined($form->{$category}{$key})) {
 
1725           $form->{ "$key" . "gk" . "$category" } =
 
1726             $form->format_amount($myconfig,
 
1727                                  $form->round_amount(
 
1728                                    ($form->{$category}{$key} /
 
1729                                       $form->{ "$key" . "gesamtkosten" } * 100
 
1731                                    $form->{decimalplaces}
 
1733                                  $form->{decimalplaces},
 
1737       foreach my $item (@ergebnisse) {
 
1738         $form->{ "$key" . "gk" . "$item" } =
 
1739           $form->format_amount($myconfig,
 
1740                                $form->round_amount(
 
1741                                    ($form->{ "$key" . "$item" } /
 
1742                                       $form->{ "$key" . "gesamtkosten" } * 100
 
1744                                    $form->{decimalplaces}
 
1746                                $form->{decimalplaces},
 
1751     if ($form->{10}{$key} > 0) {
 
1752       foreach $category (@categories) {
 
1753         if (defined($form->{$category}{$key})) {
 
1754           $form->{ "$key" . "pk" . "$category" } =
 
1755             $form->format_amount(
 
1757                         $form->round_amount(
 
1758                           ($form->{$category}{$key} / $form->{10}{$key} * 100),
 
1759                           $form->{decimalplaces}
 
1761                         $form->{decimalplaces},
 
1765       foreach my $item (@ergebnisse) {
 
1766         $form->{ "$key" . "pk" . "$item" } =
 
1767           $form->format_amount($myconfig,
 
1768                                $form->round_amount(
 
1769                                                 ($form->{ "$key" . "$item" } /
 
1770                                                    $form->{10}{$key} * 100
 
1772                                                 $form->{decimalplaces}
 
1774                                $form->{decimalplaces},
 
1779     if ($form->{4}{$key} > 0) {
 
1780       foreach $category (@categories) {
 
1781         if (defined($form->{$category}{$key})) {
 
1782           $form->{ "$key" . "auf" . "$category" } =
 
1783             $form->format_amount(
 
1785                          $form->round_amount(
 
1786                            ($form->{$category}{$key} / $form->{4}{$key} * 100),
 
1787                            $form->{decimalplaces}
 
1789                          $form->{decimalplaces},
 
1793       foreach my $item (@ergebnisse) {
 
1794         $form->{ "$key" . "auf" . "$item" } =
 
1795           $form->format_amount($myconfig,
 
1796                                $form->round_amount(
 
1797                                                 ($form->{ "$key" . "$item" } /
 
1798                                                    $form->{4}{$key} * 100
 
1800                                                 $form->{decimalplaces}
 
1802                                $form->{decimalplaces},
 
1807     foreach my $item (@ergebnisse) {
 
1808       $form->{ "$key" . "$item" } =
 
1809         $form->format_amount($myconfig,
 
1810                              $form->round_amount($form->{ "$key" . "$item" },
 
1811                                                  $form->{decimalplaces}
 
1813                              $form->{decimalplaces},
 
1820   $main::lxdebug->leave_sub();
 
1824   $main::lxdebug->enter_sub();
 
1826   my ($self, $myconfig, $form) = @_;
 
1828   # connect to database
 
1829   my $dbh = $form->dbconnect($myconfig);
 
1831   my $last_period     = 0;
 
1832   my @categories_cent = qw(51r 511 86r 861 97r 971 93r 931
 
1833     96 66 43 45 53 62 65 67);
 
1834   my @categories_euro = qw(48 51 86 91 97 93 94);
 
1835   $form->{decimalplaces} *= 1;
 
1837   foreach my $item (@categories_cent) {
 
1838     $form->{"$item"} = 0;
 
1840   foreach my $item (@categories_euro) {
 
1841     $form->{"$item"} = 0;
 
1844   &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate}, $form, "pos_ustva");
 
1846   #   foreach $item (@categories_cent) {
 
1847   #     if ($form->{$item}{"jetzt"} > 0) {
 
1848   #             $form->{$item} = $form->{$item}{"jetzt"};
 
1849   #             delete $form->{$item}{"jetzt"};
 
1852   #   foreach $item (@categories_euro) {
 
1853   #     if ($form->{$item}{"jetzt"} > 0) {
 
1854   #             $form->{$item} = $form->{$item}{"jetzt"};
 
1855   #             delete $form->{$item}{"jetzt"};
 
1856   #     }  foreach $item (@categories_cent) {
 
1857   #     if ($form->{$item}{"jetzt"} > 0) {
 
1858   #             $form->{$item} = $form->{$item}{"jetzt"};
 
1859   #             delete $form->{$item}{"jetzt"};
 
1862   #   foreach $item (@categories_euro) {
 
1863   #     if ($form->{$item}{"jetzt"} > 0) {
 
1864   #             $form->{$item} = $form->{$item}{"jetzt"};
 
1865   #             delete $form->{$item}{"jetzt"};
 
1872   # Berechnung der USTVA Formularfelder
 
1874   $form->{"51r"} = $form->{"511"};
 
1875   $form->{"86r"} = $form->{"861"};
 
1876   $form->{"97r"} = $form->{"971"};
 
1877   $form->{"93r"} = $form->{"931"};
 
1879   #$form->{"96"}  = $form->{"94"} * 0.16;
 
1881     $form->{"51r"} + $form->{"86r"} + $form->{"97r"} + $form->{"93r"} +
 
1883   $form->{"45"} = $form->{"43"};
 
1884   $form->{"53"} = $form->{"43"};
 
1885   $form->{"62"} = $form->{"43"} - $form->{"66"};
 
1886   $form->{"65"} = $form->{"43"} - $form->{"66"};
 
1887   $form->{"67"} = $form->{"43"} - $form->{"66"};
 
1889   foreach my $item (@categories_cent) {
 
1891       $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),
 
1895   foreach my $item (@categories_euro) {
 
1897       $form->format_amount($myconfig, $form->round_amount($form->{$item}, 0),
 
1903   $main::lxdebug->leave_sub();
 
1906 sub income_statement {
 
1907   $main::lxdebug->enter_sub();
 
1909   my ($self, $myconfig, $form) = @_;
 
1911   # connect to database
 
1912   my $dbh = $form->dbconnect($myconfig);
 
1914   my $last_period          = 0;
 
1915   my @categories_einnahmen = qw(1 2 3 4 5 6 7);
 
1916   my @categories_ausgaben  =
 
1917     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);
 
1919   my @ergebnisse = qw(sumeura sumeurb guvsumme);
 
1921   $form->{decimalplaces} *= 1;
 
1923   foreach my $item (@categories_einnahmen) {
 
1926   foreach my $item (@categories_ausgaben) {
 
1930   foreach my $item (@ergebnisse) {
 
1934   &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate},
 
1937   foreach my $item (@categories_einnahmen) {
 
1938     $form->{"eur${item}"} =
 
1939       $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2));
 
1940     $form->{"sumeura"} += $form->{$item};
 
1942   foreach my $item (@categories_ausgaben) {
 
1943     $form->{"eur${item}"} =
 
1944       $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2));
 
1945     $form->{"sumeurb"} += $form->{$item};
 
1948   $form->{"guvsumme"} = $form->{"sumeura"} - $form->{"sumeurb"};
 
1950   foreach my $item (@ergebnisse) {
 
1952       $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2));
 
1954   $main::lxdebug->leave_sub();