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 # ich sehe keinen sinn das nochmal explizit ohne conv_i aufzurufen
329 # bitte prüfen und löschen jan 15.11.2009
330 # if ($department_id) {
331 # $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
332 # $dpt_where = qq| AND t.department_id = $department_id |;
336 SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
338 JOIN chart c ON (c.id = ac.chart_id)
344 GROUP BY c.accno, c.description, c.category |;
346 if ($form->{project_id}) {
350 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount, c.description AS description, c.category
352 JOIN ar a ON (a.id = ac.trans_id)
353 JOIN parts p ON (ac.parts_id = p.id)
354 JOIN chart c on (p.income_accno_id = c.id)
356 -- use transdate from subwhere
357 WHERE (c.category = 'I')
361 GROUP BY c.accno, c.description, c.category
365 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) * -1 AS amount, c.description AS description, c.category
367 JOIN ap a ON (a.id = ac.trans_id)
368 JOIN parts p ON (ac.parts_id = p.id)
369 JOIN chart c on (p.expense_accno_id = c.id)
371 WHERE (c.category = 'E')
375 GROUP BY c.accno, c.description, c.category |;
383 $sth = prepare_execute_query($form, $dbh, $query);
385 while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
387 if ($ref->{category} eq 'C') {
388 $ref->{category} = 'A';
391 # get last heading account
392 @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
396 $form->{ $ref->{category} }{$accno}{last} += $ref->{amount};
398 $form->{ $ref->{category} }{$accno}{this} += $ref->{amount};
402 $form->{ $ref->{category} }{ $ref->{accno} }{accno} = $ref->{accno};
403 $form->{ $ref->{category} }{ $ref->{accno} }{description} = $ref->{description};
404 $form->{ $ref->{category} }{ $ref->{accno} }{charttype} = "A";
407 $form->{ $ref->{category} }{ $ref->{accno} }{last} += $ref->{amount};
409 $form->{ $ref->{category} }{ $ref->{accno} }{this} += $ref->{amount};
414 # remove accounts with zero balance
415 foreach $category (@{$categories}) {
416 foreach $accno (keys %{ $form->{$category} }) {
417 $form->{$category}{$accno}{last} = $form->round_amount($form->{$category}{$accno}{last}, $dec);
418 $form->{$category}{$accno}{this} = $form->round_amount($form->{$category}{$accno}{this}, $dec);
420 delete $form->{$category}{$accno}
421 if ( $form->{$category}{$accno}{this} == 0
422 && $form->{$category}{$accno}{last} == 0);
426 $main::lxdebug->leave_sub();
430 $main::lxdebug->enter_sub();
432 my ($dbh, $last_period, $fromdate, $todate, $form, $category) = @_;
434 my ($null, $department_id) = split /--/, $form->{department};
448 $fromdate = conv_dateq($fromdate);
449 if ($form->{method} eq 'cash') {
450 $subwhere .= " AND (transdate >= $fromdate)";
451 $glwhere = " AND (ac.transdate >= $fromdate)";
452 $prwhere = " AND (a.transdate >= $fromdate)";
453 $inwhere = " AND (acc.transdate >= $fromdate)";
455 $where .= " AND (ac.transdate >= $fromdate)";
460 $todate = conv_dateq($todate);
461 $subwhere .= " AND (transdate <= $todate)";
462 $where .= " AND (ac.transdate <= $todate)";
463 $prwhere .= " AND (a.transdate <= $todate)";
464 $inwhere .= " AND (acc.transdate <= $todate)";
467 if ($department_id) {
468 $dpt_join = qq| JOIN department t ON (a.department_id = t.id) |;
469 $dpt_where = qq| AND (t.id = | . conv_i($department_id, 'NULL') . qq|) |;
472 if ($form->{project_id}) {
473 $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}) . qq|) |;
477 # GUV patch by Ronny Rentner (Bug 1190)
479 # GUV IST-Versteuerung
481 # Alle tatsaechlichen _Zahlungseingaenge_
482 # im Zeitraum erfassen
483 # (Teilzahlungen werden prozentual auf verschiedene Steuern aufgeteilt)
487 if ($form->{method} eq 'cash') {
490 SELECT SUM( ac.amount *
491 (SELECT SUM(acc.amount) * -1
493 INNER JOIN chart c ON (acc.chart_id = c.id AND c.link LIKE '%AR_paid%')
494 WHERE 1=1 $inwhere AND acc.trans_id = ac.trans_id)
495 / (SELECT amount FROM ar WHERE id = ac.trans_id)
496 ) AS amount, c.pos_eur
498 LEFT JOIN chart c ON (c.id = ac.chart_id)
499 LEFT JOIN ar ON (ar.id = ac.trans_id)
500 LEFT JOIN taxkeys tk ON (tk.id = (
501 SELECT id FROM taxkeys
502 WHERE chart_id = ac.chart_id
503 AND startdate <= COALESCE(ar.deliverydate,ar.transdate)
504 ORDER BY startdate DESC LIMIT 1
507 WHERE ac.trans_id IN (SELECT DISTINCT trans_id FROM acc_trans WHERE 1=1 $subwhere)
512 SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
514 JOIN chart c ON (c.id = ac.chart_id)
515 JOIN ar a ON (a.id = ac.trans_id)
517 WHERE $where $dpt_where
518 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AR_paid%') $subwhere)
524 SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
526 JOIN chart c ON (c.id = ac.chart_id)
527 JOIN ap a ON (a.id = ac.trans_id)
529 WHERE $where $dpt_where
530 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AP_paid%') $subwhere)
536 SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
538 JOIN chart c ON (c.id = ac.chart_id)
539 JOIN gl a ON (a.id = ac.trans_id)
541 WHERE $where $dpt_where $glwhere
542 AND NOT ((c.link = 'AR') OR (c.link = 'AP'))
547 if ($form->{project_id}) {
551 SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
553 JOIN ar a ON (a.id = ac.trans_id)
554 JOIN parts p ON (ac.parts_id = p.id)
555 JOIN chart c on (p.income_accno_id = c.id)
557 WHERE (c.category = 'I') $prwhere $dpt_where
558 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AR_paid%') $subwhere)
564 SELECT SUM(ac.sellprice * chart_category_to_sgn(c.category)) AS amount, c.$category
566 JOIN ap a ON (a.id = ac.trans_id)
567 JOIN parts p ON (ac.parts_id = p.id)
568 JOIN chart c on (p.expense_accno_id = c.id)
570 WHERE (c.category = 'E') $prwhere $dpt_where
571 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AP_paid%') $subwhere)
577 } else { # if ($form->{method} eq 'cash')
578 # s.o. jan 15.11.2009
579 # if ($department_id) {
580 # ($dpt_join, $dpt_where) = sql_department($department_id);
584 SELECT sum(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
586 JOIN chart c ON (c.id = ac.chart_id)
591 GROUP BY c.$category |;
593 if ($form->{project_id}) {
597 SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
599 JOIN ar a ON (a.id = ac.trans_id)
600 JOIN parts p ON (ac.parts_id = p.id)
601 JOIN chart c on (p.income_accno_id = c.id)
603 WHERE (c.category = 'I')
611 SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
613 JOIN ap a ON (a.id = ac.trans_id)
614 JOIN parts p ON (ac.parts_id = p.id)
615 JOIN chart c on (p.expense_accno_id = c.id)
617 WHERE (c.category = 'E')
621 GROUP BY c.$category |;
629 foreach my $ref (selectall_hashref_query($form, $dbh, $query)) {
630 if ($category eq "pos_bwa") {
632 $form->{ $ref->{$category} }{kumm} += $ref->{amount};
634 $form->{ $ref->{$category} }{jetzt} += $ref->{amount};
637 $form->{ $ref->{$category} } += $ref->{amount};
641 $main::lxdebug->leave_sub();
645 $main::lxdebug->enter_sub();
647 my ($self, $myconfig, $form, %options) = @_;
649 my $dbh = $form->dbconnect($myconfig);
651 my ($query, $sth, $ref);
654 my ($null, $department_id) = split /--/, $form->{department};
655 my @headingaccounts = ();
661 my $invwhere = $where;
663 if ($department_id) {
664 $dpt_join = qq| JOIN dpt_trans t ON (ac.trans_id = t.trans_id) |;
665 $dpt_where = qq| AND (t.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
668 # project_id only applies to getting transactions
669 # it has nothing to do with a trial balance
670 # but we use the same function to collect information
672 if ($form->{project_id}) {
673 $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
676 my $acc_cash_where = "";
677 # my $ar_cash_where = "";
678 # my $ap_cash_where = "";
681 if ($form->{method} eq "cash") {
683 qq| AND (ac.trans_id IN (
686 WHERE datepaid >= '$form->{fromdate}'
687 AND datepaid <= '$form->{todate}'
693 WHERE datepaid >= '$form->{fromdate}'
694 AND datepaid <= '$form->{todate}'
700 WHERE transdate >= '$form->{fromdate}'
701 AND transdate <= '$form->{todate}'
703 # $ar_ap_cash_where = qq| AND (a.datepaid>='$form->{fromdate}' AND a.datepaid<='$form->{todate}') |;
706 if ($options{beginning_balances}) {
707 foreach my $prefix (qw(from to)) {
708 next if ($form->{"${prefix}date"});
710 my $min_max = $prefix eq 'from' ? 'min' : 'max';
711 $query = qq|SELECT ${min_max}(transdate)
717 ($form->{"${prefix}date"}) = selectfirst_array_query($form, $dbh, $query);
720 # get beginning balances
722 qq|SELECT c.accno, c.category, SUM(ac.amount) AS amount, c.description
724 LEFT JOIN chart c ON (ac.chart_id = c.id)
726 WHERE ((select date_trunc('year', ac.transdate::date)) = (select date_trunc('year', ?::date))) AND ac.ob_transaction
729 GROUP BY c.accno, c.category, c.description |;
731 $sth = prepare_execute_query($form, $dbh, $query, $form->{fromdate});
733 while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
735 if ($ref->{amount} != 0 || $form->{all_accounts}) {
736 $trb{ $ref->{accno} }{description} = $ref->{description};
737 $trb{ $ref->{accno} }{charttype} = 'A';
738 $trb{ $ref->{accno} }{beginning_balance} = $ref->{amount};
740 if ($ref->{amount} > 0) {
741 $trb{ $ref->{accno} }{haben_eb} = $ref->{amount};
743 $trb{ $ref->{accno} }{soll_eb} = $ref->{amount} * -1;
745 $trb{ $ref->{accno} }{category} = $ref->{category};
754 qq|SELECT c.accno, c.description, c.category
756 WHERE c.charttype = 'H'
759 $sth = prepare_execute_query($form, $dbh, $query);
761 while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
762 $trb{ $ref->{accno} }{description} = $ref->{description};
763 $trb{ $ref->{accno} }{charttype} = 'H';
764 $trb{ $ref->{accno} }{category} = $ref->{category};
766 push @headingaccounts, $ref->{accno};
772 my $saldowhere = " 1 = 1 ";
773 my $sumwhere = " 1 = 1 ";
775 my $sumsubwhere = '';
776 my $saldosubwhere = '';
777 my $glsaldowhere = '';
782 my ($fromdate, $todate);
784 if ($form->{fromdate} || $form->{todate}) {
785 if ($form->{fromdate}) {
786 $fromdate = conv_dateq($form->{fromdate});
787 $tofrom .= " AND (ac.transdate >= $fromdate)";
788 $subwhere .= " AND (ac.transdate >= $fromdate)";
789 $sumsubwhere .= " AND (ac.transdate >= (select date_trunc('year', date $fromdate))) ";
790 $saldosubwhere .= " AND (ac,transdate>=(select date_trunc('year', date $fromdate))) ";
791 $invwhere .= " AND (a.transdate >= $fromdate)";
792 $glsaldowhere .= " AND ac.transdate>=(select date_trunc('year', date $fromdate)) ";
793 $glwhere = " AND (ac.transdate >= $fromdate)";
794 $glsumwhere = " AND (ac.transdate >= (select date_trunc('year', date $fromdate))) ";
796 if ($form->{todate}) {
797 $todate = conv_dateq($form->{todate});
798 $tofrom .= " AND (ac.transdate <= $todate)";
799 $invwhere .= " AND (a.transdate <= $todate)";
800 $saldosubwhere .= " AND (ac.transdate <= $todate)";
801 $sumsubwhere .= " AND (ac.transdate <= $todate)";
802 $subwhere .= " AND (ac.transdate <= $todate)";
803 $glwhere .= " AND (ac.transdate <= $todate)";
804 $glsumwhere .= " AND (ac.transdate <= $todate) ";
805 $glsaldowhere .= " AND (ac.transdate <= $todate) ";
809 if ($form->{method} eq "cash") {
811 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) |;
812 $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) |;
814 $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) |;
816 $where .= $tofrom . " AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
817 $saldowhere .= $glsaldowhere . " AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
818 $sumwhere .= $glsumwhere . " AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL) AND (NOT ac.cb_transaction OR ac.cb_transaction IS NULL)";
822 SELECT c.accno, c.description, c.category, SUM(ac.amount) AS amount
824 JOIN chart c ON (c.id = ac.chart_id)
829 GROUP BY c.accno, c.description, c.category |;
831 if ($form->{project_id}) {
833 -- add project transactions from invoice
837 SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) AS amount
839 JOIN ar a ON (ac.trans_id = a.id)
840 JOIN parts p ON (ac.parts_id = p.id)
841 JOIN chart c ON (p.income_accno_id = c.id)
846 GROUP BY c.accno, c.description, c.category
850 SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) * -1 AS amount
852 JOIN ap a ON (ac.trans_id = a.id)
853 JOIN parts p ON (ac.parts_id = p.id)
854 JOIN chart c ON (p.expense_accno_id = c.id)
859 GROUP BY c.accno, c.description, c.category
863 $query .= qq| ORDER BY accno|;
865 $sth = prepare_execute_query($form, $dbh, $query);
867 # calculate the debit and credit in the period
868 while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
869 $trb{ $ref->{accno} }{description} = $ref->{description};
870 $trb{ $ref->{accno} }{charttype} = 'A';
871 $trb{ $ref->{accno} }{category} = $ref->{category};
872 $trb{ $ref->{accno} }{amount} += $ref->{amount};
876 # prepare query for each account
877 my ($q_drcr, $drcr, $q_project_drcr, $project_drcr);
881 (SELECT SUM(ac.amount) * -1
883 JOIN chart c ON (c.id = ac.chart_id)
889 AND (c.accno = ?)) AS debit,
891 (SELECT SUM(ac.amount)
893 JOIN chart c ON (c.id = ac.chart_id)
899 AND c.accno = ?) AS credit,
900 (SELECT SUM(ac.amount)
902 JOIN chart c ON (ac.chart_id = c.id)
907 AND c.accno = ? AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL)) AS saldo,
909 (SELECT SUM(ac.amount)
911 JOIN chart c ON (ac.chart_id = c.id)
917 AND c.accno = ?) AS sum_credit,
919 (SELECT SUM(ac.amount)
921 JOIN chart c ON (ac.chart_id = c.id)
927 AND c.accno = ?) AS sum_debit,
929 (SELECT max(ac.transdate) FROM acc_trans ac
930 JOIN chart c ON (ac.chart_id = c.id)
935 AND c.accno = ?) AS last_transaction
940 $drcr = prepare_query($form, $dbh, $q_drcr);
942 if ($form->{project_id}) {
943 # prepare query for each account
946 (SELECT SUM(ac.sellprice * ac.qty) * -1
948 JOIN parts p ON (ac.parts_id = p.id)
949 JOIN ap a ON (ac.trans_id = a.id)
950 JOIN chart c ON (p.expense_accno_id = c.id)
955 AND c.accno = ?) AS debit,
957 (SELECT SUM(ac.sellprice * ac.qty)
959 JOIN parts p ON (ac.parts_id = p.id)
960 JOIN ar a ON (ac.trans_id = a.id)
961 JOIN chart c ON (p.income_accno_id = c.id)
966 AND c.accno = ?) AS credit,
968 (SELECT SUM(ac.amount)
970 JOIN chart c ON (ac.chart_id = c.id)
975 AND c.accno = ? AND (NOT ac.ob_transaction OR ac.ob_transaction IS NULL)) AS saldo,
977 (SELECT SUM(ac.amount)
979 JOIN chart c ON (ac.chart_id = c.id)
985 AND c.accno = ?) AS sum_credit,
987 (SELECT SUM(ac.amount)
989 JOIN chart c ON (ac.chart_id = c.id)
995 AND c.accno = ?) AS sum_debit,
998 (SELECT max(ac.transdate) FROM acc_trans ac
999 JOIN chart c ON (ac.chart_id = c.id)
1004 AND c.accno = ?) AS last_transaction
1007 $project_drcr = prepare_query($form, $dbh, $q_project_drcr);
1011 my ($debit, $credit, $saldo, $soll_saldo, $haben_saldo,$soll_kummuliert, $haben_kummuliert, $last_transaction);
1013 foreach my $accno (sort keys %trb) {
1016 $ref->{accno} = $accno;
1017 map { $ref->{$_} = $trb{$accno}{$_} }
1018 qw(description category charttype amount soll_eb haben_eb beginning_balance);
1020 $ref->{balance} = $form->round_amount($balance{ $ref->{accno} }, 2);
1022 if ($trb{$accno}{charttype} eq 'A') {
1025 do_statement($form, $drcr, $q_drcr, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno});
1027 ($debit, $credit, $saldo, $haben_saldo, $soll_saldo) = (0, 0, 0, 0, 0);
1028 my ($soll_kumuliert, $haben_kumuliert) = (0, 0);
1029 $last_transaction = "";
1030 while (($debit, $credit, $saldo, $haben_kumuliert, $soll_kumuliert, $last_transaction) = $drcr->fetchrow_array) {
1031 $ref->{debit} += $debit;
1032 $ref->{credit} += $credit;
1034 $ref->{haben_saldo} += $saldo;
1036 $ref->{soll_saldo} += $saldo * -1;
1038 $ref->{last_transaction} = $last_transaction;
1039 $ref->{soll_kumuliert} = $soll_kumuliert * -1;
1040 $ref->{haben_kumuliert} = $haben_kumuliert;
1044 if ($form->{project_id}) {
1047 do_statement($form, $project_drcr, $q_project_drcr, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno}, $ref->{accno});
1049 ($debit, $credit) = (0, 0);
1050 while (($debit, $credit, $saldo, $haben_kumuliert, $soll_kumuliert, $last_transaction) = $project_drcr->fetchrow_array) {
1051 $ref->{debit} += $debit;
1052 $ref->{credit} += $credit;
1054 $ref->{haben_saldo} += $saldo;
1056 $ref->{soll_saldo} += $saldo * -1;
1058 $ref->{soll_kumuliert} += $soll_kumuliert * -1;
1059 $ref->{haben_kumuliert} += $haben_kumuliert;
1061 $project_drcr->finish;
1064 $ref->{debit} = $form->round_amount($ref->{debit}, 2);
1065 $ref->{credit} = $form->round_amount($ref->{credit}, 2);
1067 if ($ref->{haben_saldo} != 0) {
1068 $ref->{haben_saldo} = $ref->{haben_saldo} + $ref->{beginning_balance};
1069 if ($ref->{haben_saldo} < 0) {
1070 $ref->{soll_saldo} = $form->round_amount(($ref->{haben_saldo} *- 1), 2);
1071 $ref->{haben_saldo} = 0;
1074 $ref->{soll_saldo} = $ref->{soll_saldo} - $ref->{beginning_balance};
1075 if ($ref->{soll_saldo} < 0) {
1076 $ref->{haben_saldo} = $form->round_amount(($ref->{soll_saldo} * -1), 2);
1077 $ref->{soll_saldo} = 0;
1080 $ref->{haben_saldo} = $form->round_amount($ref->{haben_saldo}, 2);
1081 $ref->{soll_saldo} = $form->round_amount($ref->{soll_saldo}, 2);
1082 $ref->{haben_kumuliert} = $form->round_amount($ref->{haben_kumuliert}, 2);
1083 $ref->{soll_kumuliert} = $form->round_amount($ref->{soll_kumuliert}, 2);
1088 @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
1089 $accno = pop @accno;
1091 $trb{$accno}{debit} += $ref->{debit};
1092 $trb{$accno}{credit} += $ref->{credit};
1093 $trb{$accno}{soll_saldo} += $ref->{soll_saldo};
1094 $trb{$accno}{haben_saldo} += $ref->{haben_saldo};
1095 $trb{$accno}{soll_kumuliert} += $ref->{soll_kumuliert};
1096 $trb{$accno}{haben_kumuliert} += $ref->{haben_kumuliert};
1099 push @{ $form->{TB} }, $ref;
1105 # debits and credits for headings
1106 foreach my $accno (@headingaccounts) {
1107 foreach $ref (@{ $form->{TB} }) {
1108 if ($accno eq $ref->{accno}) {
1109 $ref->{debit} = $trb{$accno}{debit};
1110 $ref->{credit} = $trb{$accno}{credit};
1111 $ref->{soll_saldo} = $trb{$accno}{soll_saldo};
1112 $ref->{haben_saldo} = $trb{$accno}{haben_saldo};
1113 $ref->{soll_kumuliert} = $trb{$accno}{soll_kumuliert};
1114 $ref->{haben_kumuliert} = $trb{$accno}{haben_kumuliert};
1119 $main::lxdebug->leave_sub();
1123 $main::lxdebug->enter_sub();
1124 my ($self, $dbh, $form) = @_;
1125 my $arap = $form->{arap} eq "ar" ? "ar" : "ap";
1126 my $query = qq|SELECT invnumber FROM $arap WHERE invnumber LIKE "Storno zu "|;
1127 my $sth = $dbh->prepare($query);
1128 while(my $ref = $sth->fetchrow_hashref()) {
1129 $ref->{invnumer} =~ s/Storno zu //g;
1130 $form->{storno}{$ref->{invnumber}} = 1;
1132 $main::lxdebug->leave_sub();
1136 $main::lxdebug->enter_sub();
1138 my ($self, $myconfig, $form) = @_;
1140 # connect to database
1141 my $dbh = $form->dbconnect($myconfig);
1143 my ($invoice, $arap, $buysell, $ct, $ct_id, $ml);
1145 if ($form->{ct} eq "customer") {
1158 $ct_id = "${ct}_id";
1160 $form->{todate} = $form->current_date($myconfig) unless ($form->{todate});
1161 my $todate = conv_dateq($form->{todate});
1162 my $fromdate = conv_dateq($form->{fromdate});
1164 my $fromwhere = ($form->{fromdate} ne "") ? " AND (transdate >= (date $fromdate)) " : "";
1166 my $where = " 1 = 1 ";
1169 if ($form->{$ct_id}) {
1170 $where .= qq| AND (ct.id = | . conv_i($form->{$ct_id}) . qq|)|;
1171 } elsif ($form->{ $form->{ct} }) {
1172 $where .= qq| AND (ct.name ILIKE | . $dbh->quote('%' . $form->{$ct} . '%') . qq|)|;
1176 if ($form->{department}) {
1177 my ($null, $department_id) = split /--/, $form->{department};
1178 $dpt_join = qq| JOIN department d ON (a.department_id = d.id) |;
1179 $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|)|;
1183 -- between 0-30 days
1185 SELECT ${ct}.id AS ctid, ${ct}.name,
1186 street, zipcode, city, country, contact, email,
1187 phone as customerphone, fax as customerfax, ${ct}number,
1188 "invnumber", "transdate",
1189 (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",
1190 "duedate", invoice, ${arap}.id,
1193 WHERE (${arap}.curr = exchangerate.curr)
1194 AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate
1196 WHERE ((paid != amount) OR (datepaid > (date $todate) AND datepaid is not null))
1197 AND (${arap}.storno IS FALSE)
1198 AND (${arap}.${ct}_id = ${ct}.id)
1200 AND (transdate <= (date $todate) $fromwhere )
1202 ORDER BY ctid, transdate, invnumber |;
1204 my $sth_details = prepare_query($form, $dbh, $q_details);
1206 # select outstanding vendors or customers, depends on $ct
1208 qq|SELECT DISTINCT ct.id, ct.name
1209 FROM $ct ct, $arap a
1212 AND (a.${ct_id} = ct.id)
1213 AND ((a.paid != a.amount) OR ((a.datepaid > $todate) AND (datepaid is NOT NULL)))
1214 AND (a.transdate <= $todate $fromwhere)
1217 my $sth = prepare_execute_query($form, $dbh, $query);
1220 # for each company that has some stuff outstanding
1221 while (my ($id) = $sth->fetchrow_array) {
1222 do_statement($form, $sth_details, $q_details, $id);
1224 while (my $ref = $sth_details->fetchrow_hashref("NAME_lc")) {
1225 $ref->{module} = ($ref->{invoice}) ? $invoice : $arap;
1226 $ref->{exchangerate} = 1 unless $ref->{exchangerate};
1227 push @{ $form->{AG} }, $ref;
1230 $sth_details->finish;
1239 $main::lxdebug->leave_sub();
1243 $main::lxdebug->enter_sub();
1245 my ($self, $myconfig, $form) = @_;
1247 # connect to database
1248 my $dbh = $form->dbconnect($myconfig);
1250 my $ct = $form->{ct} eq "customer" ? "customer" : "vendor";
1253 qq|SELECT ct.name, ct.email, ct.cc, ct.bcc
1256 ($form->{ $form->{ct} }, $form->{email}, $form->{cc}, $form->{bcc}) =
1257 selectrow_query($form, $dbh, $query, $form->{"${ct}_id"});
1260 $main::lxdebug->leave_sub();
1263 sub get_taxaccounts {
1264 $main::lxdebug->enter_sub();
1266 my ($self, $myconfig, $form) = @_;
1268 # connect to database
1269 my $dbh = $form->dbconnect($myconfig);
1273 qq|SELECT c.accno, c.description, t.rate
1275 WHERE (c.link LIKE '%CT_tax%') AND (c.id = t.chart_id)
1277 $form->{taxaccounts} = selectall_hashref_quert($form, $dbh, $query);
1281 $main::lxdebug->leave_sub();
1285 $main::lxdebug->enter_sub();
1287 my ($self, $myconfig, $form) = @_;
1289 # connect to database
1290 my $dbh = $form->dbconnect($myconfig);
1292 my ($null, $department_id) = split /--/, $form->{department};
1295 my $where = "1 = 1";
1297 if ($department_id) {
1298 $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
1303 if ($form->{accno}) {
1304 $accno = $form->{accno};
1305 $rate = $form->{"$form->{accno}_rate"};
1306 $accno = qq| AND (ch.accno = | . $dbh->quote($accno) . qq|)|;
1312 if ($form->{db} eq 'ar') {
1313 $table = "customer";
1320 my $arap = lc($ARAP);
1322 my $transdate = "a.transdate";
1324 if ($form->{method} eq 'cash') {
1325 $transdate = "a.datepaid";
1327 my $todate = conv_dateq($form->{todate} ? $form->{todate} : $form->current_date($myconfig));
1334 JOIN chart ON (chart_id = id)
1335 WHERE (link LIKE '%${ARAP}_paid%')
1336 AND (transdate <= $todate)
1341 # if there are any dates construct a where
1342 $where .= " AND ($transdate >= " . conv_dateq($form->{fromdate}) . ") " if ($form->{fromdate});
1343 $where .= " AND ($transdate <= " . conv_dateq($form->{todate}) . ") " if ($form->{todate});
1345 my $ml = ($form->{db} eq 'ar') ? 1 : -1;
1347 my $sortorder = join ', ', $form->sort_columns(qw(transdate invnumber name));
1348 $sortorder = $form->{sort} if ($form->{sort} && grep({ $_ eq $form->{sort} } qw(id transdate invnumber name netamount tax)));
1351 if ($form->{report} !~ /nontaxable/) {
1353 qq|SELECT a.id, '0' AS invoice, $transdate AS transdate, a.invnumber, n.name, a.netamount,
1354 ac.amount * $ml AS tax
1356 JOIN ${arap} a ON (a.id = ac.trans_id)
1357 JOIN chart ch ON (ch.id = ac.chart_id)
1358 JOIN $table n ON (n.id = a.${table}_id)
1362 AND (a.invoice = '0')
1366 SELECT a.id, '1' AS invoice, $transdate AS transdate, a.invnumber, n.name, i.sellprice * i.qty AS netamount,
1367 i.sellprice * i.qty * $rate * $ml AS tax
1369 JOIN ${arap} a ON (a.id = ac.trans_id)
1370 JOIN chart ch ON (ch.id = ac.chart_id)
1371 JOIN $table n ON (n.id = a.${table}_id)
1372 JOIN ${table}tax t ON (t.${table}_id = n.id)
1373 JOIN invoice i ON (i.trans_id = a.id)
1374 JOIN partstax p ON (p.parts_id = i.parts_id)
1378 AND (a.invoice = '1')
1379 ORDER BY $sortorder|;
1381 # only gather up non-taxable transactions
1383 qq|SELECT a.id, '0' AS invoice, $transdate AS transdate, a.invnumber, n.name, a.netamount
1385 JOIN ${arap} a ON (a.id = ac.trans_id)
1386 JOIN $table n ON (n.id = a.${table}_id)
1389 AND (a.invoice = '0')
1390 AND (a.netamount = a.amount)
1394 SELECT a.id, '1' AS invoice, $transdate AS transdate, a.invnumber, n.name, i.sellprice * i.qty AS netamount
1396 JOIN ${arap} a ON (a.id = ac.trans_id)
1397 JOIN $table n ON (n.id = a.${table}_id)
1398 JOIN invoice i ON (i.trans_id = a.id)
1401 AND (a.invoice = '1')
1403 a.${table}_id NOT IN (SELECT ${table}_id FROM ${table}tax t (${table}_id))
1405 i.parts_id NOT IN (SELECT parts_id FROM partstax p (parts_id))
1407 GROUP BY a.id, a.invnumber, $transdate, n.name, i.sellprice, i.qty
1408 ORDER by $sortorder|;
1411 $form->{TR} = selectall_hashref_query($form, $dbh, $query);
1415 $main::lxdebug->leave_sub();
1418 sub paymentaccounts {
1419 $main::lxdebug->enter_sub();
1421 my ($self, $myconfig, $form) = @_;
1423 # connect to database, turn AutoCommit off
1424 my $dbh = $form->dbconnect_noauto($myconfig);
1426 my $ARAP = $form->{db} eq "ar" ? "AR" : "AP";
1428 # get A(R|P)_paid accounts
1430 qq|SELECT accno, description
1432 WHERE link LIKE '%${ARAP}_paid%'|;
1433 $form->{PR} = selectall_hashref_query($form, $dbh, $query);
1437 $main::lxdebug->leave_sub();
1441 $main::lxdebug->enter_sub();
1443 my ($self, $myconfig, $form) = @_;
1445 # connect to database, turn AutoCommit off
1446 my $dbh = $form->dbconnect_noauto($myconfig);
1451 if ($form->{db} eq 'ar') {
1452 $table = 'customer';
1464 if ($form->{department_id}) {
1465 $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
1466 $where = qq| AND (t.department_id = | . conv_i($form->{department_id}, 'NULL') . qq|) |;
1469 if ($form->{fromdate}) {
1470 $where .= " AND (ac.transdate >= " . $dbh->quote($form->{fromdate}) . ") ";
1472 if ($form->{todate}) {
1473 $where .= " AND (ac.transdate <= " . $dbh->quote($form->{todate}) . ") ";
1475 if (!$form->{fx_transaction}) {
1476 $where .= " AND ac.fx_transaction = '0'";
1481 if ($form->{reference}) {
1482 $reference = $dbh->quote('%' . $form->{reference} . '%');
1483 $invnumber = " AND (a.invnumber LIKE $reference)";
1484 $reference = " AND (g.reference LIKE $reference)";
1486 if ($form->{source}) {
1487 $where .= " AND (ac.source ILIKE " . $dbh->quote('%' . $form->{source} . '%') . ") ";
1489 if ($form->{memo}) {
1490 $where .= " AND (ac.memo ILIKE " . $dbh->quote('%' . $form->{memo} . '%') . ") ";
1493 my %sort_columns = (
1494 'transdate' => [ qw(transdate lower_invnumber lower_name) ],
1495 'invnumber' => [ qw(lower_invnumber lower_name transdate) ],
1496 'name' => [ qw(lower_name transdate) ],
1497 'source' => [ qw(lower_source) ],
1498 'memo' => [ qw(lower_memo) ],
1500 my %lowered_columns = (
1501 'invnumber' => { 'gl' => 'g.reference', 'arap' => 'a.invnumber', },
1502 'memo' => { 'gl' => 'ac.memo', 'arap' => 'ac.memo', },
1503 'source' => { 'gl' => 'ac.source', 'arap' => 'ac.source', },
1504 'name' => { 'gl' => 'g.description', 'arap' => 'c.name', },
1507 my $sortdir = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
1508 my $sortkey = $sort_columns{$form->{sort}} ? $form->{sort} : 'transdate';
1509 my $sortorder = join ', ', map { "$_ $sortdir" } @{ $sort_columns{$sortkey} };
1512 my %columns_for_sorting = ( 'gl' => '', 'arap' => '', );
1513 foreach my $spec (@{ $sort_columns{$sortkey} }) {
1514 next if ($spec !~ m/^lower_(.*)$/);
1517 map { $columns_for_sorting{$_} .= sprintf(', lower(%s) AS lower_%s', $lowered_columns{$column}->{$_}, $column) } qw(gl arap);
1520 $query = qq|SELECT id, accno, description FROM chart WHERE accno = ?|;
1521 $sth = prepare_query($form, $dbh, $query);
1524 qq|SELECT c.name, a.invnumber, a.ordnumber,
1525 ac.transdate, ac.amount * $ml AS paid, ac.source,
1526 a.invoice, a.id, ac.memo, '${arap}' AS module
1527 $columns_for_sorting{arap}
1529 JOIN $arap a ON (ac.trans_id = a.id)
1530 JOIN $table c ON (c.id = a.${table}_id)
1532 WHERE (ac.chart_id = ?)
1538 SELECT g.description, g.reference, NULL AS ordnumber,
1539 ac.transdate, ac.amount * $ml AS paid, ac.source,
1540 '0' as invoice, g.id, ac.memo, 'gl' AS module
1541 $columns_for_sorting{gl}
1543 JOIN gl g ON (g.id = ac.trans_id)
1545 WHERE (ac.chart_id = ?)
1548 AND (ac.amount * $ml) > 0
1550 ORDER BY $sortorder|;
1551 my $sth_details = prepare_query($form, $dbh, $q_details);
1555 # cycle through each id
1556 foreach my $accno (split(/ /, $form->{paymentaccounts})) {
1557 do_statement($form, $sth, $query, $accno);
1558 my $ref = $sth->fetchrow_hashref();
1559 push(@{ $form->{PR} }, $ref);
1562 $form->{ $ref->{id} } = [] unless ($form->{ $ref->{id} });
1564 do_statement($form, $sth_details, $q_details, $ref->{id}, $ref->{id});
1565 while (my $pr = $sth_details->fetchrow_hashref()) {
1566 push(@{ $form->{ $ref->{id} } }, $pr);
1568 $sth_details->finish();
1573 $main::lxdebug->leave_sub();
1577 $main::lxdebug->enter_sub();
1579 my ($self, $myconfig, $form) = @_;
1581 # connect to database
1582 my $dbh = $form->dbconnect($myconfig);
1584 my $last_period = 0;
1587 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);
1589 $form->{decimalplaces} *= 1;
1591 &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate}, $form, "pos_bwa");
1593 # if there are any compare dates
1595 if ($form->{fromdate} || $form->{todate}) {
1597 if ($form->{fromdate}) {
1598 $form->{fromdate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
1601 $form->{todate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
1604 my $kummfromdate = $form->{comparefromdate};
1605 my $kummtodate = $form->{comparetodate};
1606 &get_accounts_g($dbh, $last_period, $kummfromdate, $kummtodate, $form, "pos_bwa");
1609 my @periods = qw(jetzt kumm);
1610 my @gesamtleistung = qw(1 3);
1611 my @gesamtkosten = qw (10 11 12 13 14 15 16 17 18 19 20);
1613 qw (rohertrag betriebrohertrag betriebsergebnis neutraleraufwand neutralerertrag ergebnisvorsteuern ergebnis gesamtleistung gesamtkosten);
1615 foreach my $key (@periods) {
1616 $form->{ "$key" . "gesamtleistung" } = 0;
1617 $form->{ "$key" . "gesamtkosten" } = 0;
1619 foreach $category (@categories) {
1621 if (defined($form->{$category}{$key})) {
1622 $form->{"$key$category"} =
1623 $form->format_amount($myconfig,
1624 $form->round_amount($form->{$category}{$key}, 2
1626 $form->{decimalplaces},
1630 foreach my $item (@gesamtleistung) {
1631 $form->{ "$key" . "gesamtleistung" } += $form->{$item}{$key};
1633 $form->{ "$key" . "gesamtleistung" } -= $form->{2}{$key};
1635 foreach my $item (@gesamtkosten) {
1636 $form->{ "$key" . "gesamtkosten" } += $form->{$item}{$key};
1638 $form->{ "$key" . "rohertrag" } =
1639 $form->{ "$key" . "gesamtleistung" } - $form->{4}{$key};
1640 $form->{ "$key" . "betriebrohertrag" } =
1641 $form->{ "$key" . "rohertrag" } + $form->{5}{$key};
1642 $form->{ "$key" . "betriebsergebnis" } =
1643 $form->{ "$key" . "betriebrohertrag" } -
1644 $form->{ "$key" . "gesamtkosten" };
1645 $form->{ "$key" . "neutraleraufwand" } =
1646 $form->{30}{$key} + $form->{31}{$key};
1647 $form->{ "$key" . "neutralertrag" } =
1648 $form->{32}{$key} + $form->{33}{$key} + $form->{34}{$key};
1649 $form->{ "$key" . "ergebnisvorsteuern" } =
1650 $form->{ "$key" . "betriebsergebnis" } -
1651 $form->{ "$key" . "neutraleraufwand" } +
1652 $form->{ "$key" . "neutralertrag" };
1653 $form->{ "$key" . "ergebnis" } =
1654 $form->{ "$key" . "ergebnisvorsteuern" } - $form->{35}{$key};
1656 if ($form->{ "$key" . "gesamtleistung" } > 0) {
1657 foreach $category (@categories) {
1658 if (defined($form->{$category}{$key})) {
1659 $form->{ "$key" . "gl" . "$category" } =
1660 $form->format_amount(
1662 $form->round_amount(
1663 ($form->{$category}{$key} /
1664 $form->{ "$key" . "gesamtleistung" } * 100
1666 $form->{decimalplaces}
1668 $form->{decimalplaces},
1672 foreach my $item (@ergebnisse) {
1673 $form->{ "$key" . "gl" . "$item" } =
1674 $form->format_amount($myconfig,
1675 $form->round_amount(
1676 ( $form->{ "$key" . "$item" } /
1677 $form->{ "$key" . "gesamtleistung" } * 100
1679 $form->{decimalplaces}
1681 $form->{decimalplaces},
1686 if ($form->{ "$key" . "gesamtkosten" } > 0) {
1687 foreach $category (@categories) {
1688 if (defined($form->{$category}{$key})) {
1689 $form->{ "$key" . "gk" . "$category" } =
1690 $form->format_amount($myconfig,
1691 $form->round_amount(
1692 ($form->{$category}{$key} /
1693 $form->{ "$key" . "gesamtkosten" } * 100
1695 $form->{decimalplaces}
1697 $form->{decimalplaces},
1701 foreach my $item (@ergebnisse) {
1702 $form->{ "$key" . "gk" . "$item" } =
1703 $form->format_amount($myconfig,
1704 $form->round_amount(
1705 ($form->{ "$key" . "$item" } /
1706 $form->{ "$key" . "gesamtkosten" } * 100
1708 $form->{decimalplaces}
1710 $form->{decimalplaces},
1715 if ($form->{10}{$key} > 0) {
1716 foreach $category (@categories) {
1717 if (defined($form->{$category}{$key})) {
1718 $form->{ "$key" . "pk" . "$category" } =
1719 $form->format_amount(
1721 $form->round_amount(
1722 ($form->{$category}{$key} / $form->{10}{$key} * 100),
1723 $form->{decimalplaces}
1725 $form->{decimalplaces},
1729 foreach my $item (@ergebnisse) {
1730 $form->{ "$key" . "pk" . "$item" } =
1731 $form->format_amount($myconfig,
1732 $form->round_amount(
1733 ($form->{ "$key" . "$item" } /
1734 $form->{10}{$key} * 100
1736 $form->{decimalplaces}
1738 $form->{decimalplaces},
1743 if ($form->{4}{$key} > 0) {
1744 foreach $category (@categories) {
1745 if (defined($form->{$category}{$key})) {
1746 $form->{ "$key" . "auf" . "$category" } =
1747 $form->format_amount(
1749 $form->round_amount(
1750 ($form->{$category}{$key} / $form->{4}{$key} * 100),
1751 $form->{decimalplaces}
1753 $form->{decimalplaces},
1757 foreach my $item (@ergebnisse) {
1758 $form->{ "$key" . "auf" . "$item" } =
1759 $form->format_amount($myconfig,
1760 $form->round_amount(
1761 ($form->{ "$key" . "$item" } /
1762 $form->{4}{$key} * 100
1764 $form->{decimalplaces}
1766 $form->{decimalplaces},
1771 foreach my $item (@ergebnisse) {
1772 $form->{ "$key" . "$item" } =
1773 $form->format_amount($myconfig,
1774 $form->round_amount($form->{ "$key" . "$item" },
1775 $form->{decimalplaces}
1777 $form->{decimalplaces},
1784 $main::lxdebug->leave_sub();
1788 $main::lxdebug->enter_sub();
1790 my ($self, $myconfig, $form) = @_;
1792 # connect to database
1793 my $dbh = $form->dbconnect($myconfig);
1795 my $last_period = 0;
1796 my @categories_cent = qw(51r 511 86r 861 97r 971 93r 931
1797 96 66 43 45 53 62 65 67);
1798 my @categories_euro = qw(48 51 86 91 97 93 94);
1799 $form->{decimalplaces} *= 1;
1801 foreach my $item (@categories_cent) {
1802 $form->{"$item"} = 0;
1804 foreach my $item (@categories_euro) {
1805 $form->{"$item"} = 0;
1808 &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate}, $form, "pos_ustva");
1810 # foreach $item (@categories_cent) {
1811 # if ($form->{$item}{"jetzt"} > 0) {
1812 # $form->{$item} = $form->{$item}{"jetzt"};
1813 # delete $form->{$item}{"jetzt"};
1816 # foreach $item (@categories_euro) {
1817 # if ($form->{$item}{"jetzt"} > 0) {
1818 # $form->{$item} = $form->{$item}{"jetzt"};
1819 # delete $form->{$item}{"jetzt"};
1820 # } foreach $item (@categories_cent) {
1821 # if ($form->{$item}{"jetzt"} > 0) {
1822 # $form->{$item} = $form->{$item}{"jetzt"};
1823 # delete $form->{$item}{"jetzt"};
1826 # foreach $item (@categories_euro) {
1827 # if ($form->{$item}{"jetzt"} > 0) {
1828 # $form->{$item} = $form->{$item}{"jetzt"};
1829 # delete $form->{$item}{"jetzt"};
1836 # Berechnung der USTVA Formularfelder
1838 $form->{"51r"} = $form->{"511"};
1839 $form->{"86r"} = $form->{"861"};
1840 $form->{"97r"} = $form->{"971"};
1841 $form->{"93r"} = $form->{"931"};
1843 #$form->{"96"} = $form->{"94"} * 0.16;
1845 $form->{"51r"} + $form->{"86r"} + $form->{"97r"} + $form->{"93r"} +
1847 $form->{"45"} = $form->{"43"};
1848 $form->{"53"} = $form->{"43"};
1849 $form->{"62"} = $form->{"43"} - $form->{"66"};
1850 $form->{"65"} = $form->{"43"} - $form->{"66"};
1851 $form->{"67"} = $form->{"43"} - $form->{"66"};
1853 foreach my $item (@categories_cent) {
1855 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),
1859 foreach my $item (@categories_euro) {
1861 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 0),
1867 $main::lxdebug->leave_sub();
1870 sub income_statement {
1871 $main::lxdebug->enter_sub();
1873 my ($self, $myconfig, $form) = @_;
1875 # connect to database
1876 my $dbh = $form->dbconnect($myconfig);
1878 my $last_period = 0;
1879 my @categories_einnahmen = qw(1 2 3 4 5 6 7);
1880 my @categories_ausgaben =
1881 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);
1883 my @ergebnisse = qw(sumeura sumeurb guvsumme);
1885 $form->{decimalplaces} *= 1;
1889 &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate},
1893 foreach my $item (@categories_einnahmen) {
1894 $form->{"eur${item}"} =
1895 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),2);
1896 $form->{"sumeura"} += $form->{$item};
1898 foreach my $item (@categories_ausgaben) {
1899 $form->{"eur${item}"} =
1900 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),2);
1901 $form->{"sumeurb"} += $form->{$item};
1904 $form->{"guvsumme"} = $form->{"sumeura"} - $form->{"sumeurb"};
1906 foreach my $item (@ergebnisse) {
1908 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),2);
1910 $main::lxdebug->leave_sub();