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 #======================================================================
41 $main::lxdebug->enter_sub();
43 my ($self, $myconfig, $form) = @_;
46 my $dbh = $form->dbconnect($myconfig);
49 my @categories = qw(A C L Q);
51 # if there are any dates construct a where
52 if ($form->{asofdate}) {
53 $form->{period} = $form->{this_period} = conv_dateq($form->{asofdate});
56 $form->{decimalplaces} *= 1;
58 &get_accounts($dbh, $last_period, "", $form->{asofdate}, $form,
61 # if there are any compare dates
62 if ($form->{compareasofdate}) {
65 &get_accounts($dbh, $last_period, "", $form->{compareasofdate},
68 $form->{last_period} = conv_dateq($form->{compareasofdate});
75 # now we got $form->{A}{accno}{ } assets
76 # and $form->{L}{accno}{ } liabilities
77 # and $form->{Q}{accno}{ } equity
78 # build asset accounts
84 'A' => { 'label' => 'asset',
88 'L' => { 'label' => 'liability',
89 'labels' => 'liabilities',
92 'Q' => { 'label' => 'equity',
97 foreach my $category (grep { !/C/ } @categories) {
99 foreach $key (sort keys %{ $form->{$category} }) {
101 $str = ($form->{l_heading}) ? $form->{padding} : "";
103 if ($form->{$category}{$key}{charttype} eq "A") {
106 ? "$form->{$category}{$key}{accno} - $form->{$category}{$key}{description}"
107 : "$form->{$category}{$key}{description}";
109 if ($form->{$category}{$key}{charttype} eq "H") {
110 if ($account{$category}{subtotal} && $form->{l_subtotal}) {
112 push(@{ $form->{"$account{$category}{label}_account"} },
113 "$str$form->{bold}$account{$category}{subdescription}$form->{endbold}"
115 push(@{ $form->{"$account{$category}{label}_this_period"} },
116 $form->format_amount(
118 $account{$category}{subthis} * $account{$category}{ml},
119 $form->{decimalplaces}, $dash
123 push(@{ $form->{"$account{$category}{label}_last_period"} },
124 $form->format_amount(
126 $account{$category}{sublast} * $account{$category}{ml},
127 $form->{decimalplaces}, $dash
133 "$form->{bold}$form->{$category}{$key}{description}$form->{endbold}";
135 $account{$category}{subthis} = $form->{$category}{$key}{this};
136 $account{$category}{sublast} = $form->{$category}{$key}{last};
137 $account{$category}{subdescription} =
138 $form->{$category}{$key}{description};
139 $account{$category}{subtotal} = 1;
141 $form->{$category}{$key}{this} = 0;
142 $form->{$category}{$key}{last} = 0;
144 next unless $form->{l_heading};
149 # push description onto array
150 push(@{ $form->{"$account{$category}{label}_account"} }, $str);
152 if ($form->{$category}{$key}{charttype} eq 'A') {
153 $form->{"total_$account{$category}{labels}_this_period"} +=
154 $form->{$category}{$key}{this} * $account{$category}{ml};
158 push(@{ $form->{"$account{$category}{label}_this_period"} },
159 $form->format_amount(
161 $form->{$category}{$key}{this} * $account{$category}{ml},
162 $form->{decimalplaces}, $dash
166 $form->{"total_$account{$category}{labels}_last_period"} +=
167 $form->{$category}{$key}{last} * $account{$category}{ml};
169 push(@{ $form->{"$account{$category}{label}_last_period"} },
170 $form->format_amount(
172 $form->{$category}{$key}{last} * $account{$category}{ml},
173 $form->{decimalplaces}, $dash
178 $str = ($form->{l_heading}) ? $form->{padding} : "";
179 if ($account{$category}{subtotal} && $form->{l_subtotal}) {
180 push(@{ $form->{"$account{$category}{label}_account"} },
181 "$str$form->{bold}$account{$category}{subdescription}$form->{endbold}"
183 push(@{ $form->{"$account{$category}{label}_this_period"} },
184 $form->format_amount(
186 $account{$category}{subthis} * $account{$category}{ml},
187 $form->{decimalplaces}, $dash
191 push(@{ $form->{"$account{$category}{label}_last_period"} },
192 $form->format_amount(
194 $account{$category}{sublast} * $account{$category}{ml},
195 $form->{decimalplaces}, $dash
202 # totals for assets, liabilities
203 $form->{total_assets_this_period} =
204 $form->round_amount($form->{total_assets_this_period},
205 $form->{decimalplaces});
206 $form->{total_liabilities_this_period} =
207 $form->round_amount($form->{total_liabilities_this_period},
208 $form->{decimalplaces});
209 $form->{total_equity_this_period} =
210 $form->round_amount($form->{total_equity_this_period},
211 $form->{decimalplaces});
214 $form->{earnings_this_period} =
215 $form->{total_assets_this_period} -
216 $form->{total_liabilities_this_period} - $form->{total_equity_this_period};
218 push(@{ $form->{equity_this_period} },
219 $form->format_amount($myconfig,
220 $form->{earnings_this_period},
221 $form->{decimalplaces}, "- "
224 $form->{total_equity_this_period} =
226 $form->{total_equity_this_period} + $form->{earnings_this_period},
227 $form->{decimalplaces});
229 # add liability + equity
230 $form->{total_this_period} =
231 $form->format_amount(
233 $form->{total_liabilities_this_period} + $form->{total_equity_this_period},
234 $form->{decimalplaces},
239 # totals for assets, liabilities
240 $form->{total_assets_last_period} =
241 $form->round_amount($form->{total_assets_last_period},
242 $form->{decimalplaces});
243 $form->{total_liabilities_last_period} =
244 $form->round_amount($form->{total_liabilities_last_period},
245 $form->{decimalplaces});
246 $form->{total_equity_last_period} =
247 $form->round_amount($form->{total_equity_last_period},
248 $form->{decimalplaces});
250 # calculate retained earnings
251 $form->{earnings_last_period} =
252 $form->{total_assets_last_period} -
253 $form->{total_liabilities_last_period} -
254 $form->{total_equity_last_period};
256 push(@{ $form->{equity_last_period} },
257 $form->format_amount($myconfig,
258 $form->{earnings_last_period},
259 $form->{decimalplaces}, "- "
262 $form->{total_equity_last_period} =
264 $form->{total_equity_last_period} + $form->{earnings_last_period},
265 $form->{decimalplaces});
267 # add liability + equity
268 $form->{total_last_period} =
269 $form->format_amount($myconfig,
270 $form->{total_liabilities_last_period} +
271 $form->{total_equity_last_period},
272 $form->{decimalplaces},
277 $form->{total_liabilities_last_period} =
278 $form->format_amount($myconfig,
279 $form->{total_liabilities_last_period},
280 $form->{decimalplaces}, "- ")
281 if ($form->{total_liabilities_last_period} != 0);
283 $form->{total_equity_last_period} =
284 $form->format_amount($myconfig,
285 $form->{total_equity_last_period},
286 $form->{decimalplaces}, "- ")
287 if ($form->{total_equity_last_period} != 0);
289 $form->{total_assets_last_period} =
290 $form->format_amount($myconfig,
291 $form->{total_assets_last_period},
292 $form->{decimalplaces}, "- ")
293 if ($form->{total_assets_last_period} != 0);
295 $form->{total_assets_this_period} =
296 $form->format_amount($myconfig,
297 $form->{total_assets_this_period},
298 $form->{decimalplaces}, "- ");
300 $form->{total_liabilities_this_period} =
301 $form->format_amount($myconfig,
302 $form->{total_liabilities_this_period},
303 $form->{decimalplaces}, "- ");
305 $form->{total_equity_this_period} =
306 $form->format_amount($myconfig,
307 $form->{total_equity_this_period},
308 $form->{decimalplaces}, "- ");
310 $main::lxdebug->leave_sub();
314 $main::lxdebug->enter_sub();
316 my ($dbh, $last_period, $fromdate, $todate, $form, $categories) = @_;
318 my ($null, $department_id) = split /--/, $form->{department};
330 my $category = qq| AND (| . join(" OR ", map({ "(c.category = " . $dbh->quote($_) . ")" } @{$categories})) . qq|) |;
334 qq|SELECT c.accno, c.description, c.category
336 WHERE (c.charttype = 'H')
340 $sth = prepare_execute_query($form, $dbh, $query);
342 my @headingaccounts = ();
343 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
344 $form->{ $ref->{category} }{ $ref->{accno} }{description} =
345 "$ref->{description}";
346 $form->{ $ref->{category} }{ $ref->{accno} }{charttype} = "H";
347 $form->{ $ref->{category} }{ $ref->{accno} }{accno} = $ref->{accno};
349 push @headingaccounts, $ref->{accno};
355 $fromdate = conv_dateq($fromdate);
356 if ($form->{method} eq 'cash') {
357 $subwhere .= " AND (transdate >= $fromdate)";
358 $glwhere = " AND (ac.transdate >= $fromdate)";
360 $where .= " AND (ac.transdate >= $fromdate)";
365 $todate = conv_dateq($todate);
366 $where .= " AND (ac.transdate <= $todate)";
367 $subwhere .= " AND (transdate <= $todate)";
370 if ($department_id) {
371 $dpt_join = qq| JOIN department t ON (a.department_id = t.id) |;
372 $dpt_where = qq| AND (t.id = | . conv_i($department_id, 'NULL') . qq|)|;
375 if ($form->{project_id}) {
376 $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
379 if ($form->{method} eq 'cash') {
381 qq|SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
383 JOIN chart c ON (c.id = ac.chart_id)
384 JOIN ar a ON (a.id = ac.trans_id)
393 JOIN chart ON (chart_id = id)
394 WHERE (link LIKE '%AR_paid%')
398 GROUP BY c.accno, c.description, c.category
402 SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
404 JOIN chart c ON (c.id = ac.chart_id)
405 JOIN ap a ON (a.id = ac.trans_id)
414 JOIN chart ON (chart_id = id)
415 WHERE (link LIKE '%AP_paid%')
419 GROUP BY c.accno, c.description, c.category
423 SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
425 JOIN chart c ON (c.id = ac.chart_id)
426 JOIN gl a ON (a.id = ac.trans_id)
432 AND NOT ((c.link = 'AR') OR (c.link = 'AP'))
434 GROUP BY c.accno, c.description, c.category |;
436 if ($form->{project_id}) {
441 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount, c.description AS description, c.category
443 JOIN ar a ON (a.id = ac.trans_id)
444 JOIN parts p ON (ac.parts_id = p.id)
445 JOIN chart c on (p.income_accno_id = c.id)
447 -- use transdate from subwhere
448 WHERE (c.category = 'I')
455 JOIN chart ON (chart_id = id)
456 WHERE (link LIKE '%AR_paid%')
460 GROUP BY c.accno, c.description, c.category
464 SELECT c.accno AS accno, SUM(ac.sellprice) AS amount, c.description AS description, c.category
466 JOIN ap a ON (a.id = ac.trans_id)
467 JOIN parts p ON (ac.parts_id = p.id)
468 JOIN chart c on (p.expense_accno_id = c.id)
470 WHERE (c.category = 'E')
477 JOIN chart ON (chart_id = id)
478 WHERE link LIKE '%AP_paid%'
482 GROUP BY c.accno, c.description, c.category |;
485 } else { # if ($form->{method} eq 'cash')
486 if ($department_id) {
487 $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
488 $dpt_where = qq| AND t.department_id = $department_id |;
492 SELECT c.accno, sum(ac.amount) AS amount, c.description, c.category
494 JOIN chart c ON (c.id = ac.chart_id)
500 GROUP BY c.accno, c.description, c.category |;
502 if ($form->{project_id}) {
506 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount, c.description AS description, c.category
508 JOIN ar a ON (a.id = ac.trans_id)
509 JOIN parts p ON (ac.parts_id = p.id)
510 JOIN chart c on (p.income_accno_id = c.id)
512 -- use transdate from subwhere
513 WHERE (c.category = 'I')
517 GROUP BY c.accno, c.description, c.category
521 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) * -1 AS amount, c.description AS description, c.category
523 JOIN ap a ON (a.id = ac.trans_id)
524 JOIN parts p ON (ac.parts_id = p.id)
525 JOIN chart c on (p.expense_accno_id = c.id)
527 WHERE (c.category = 'E')
531 GROUP BY c.accno, c.description, c.category |;
539 my $sth = prepare_execute_query($form, $dbh, $query);
541 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
543 if ($ref->{category} eq 'C') {
544 $ref->{category} = 'A';
547 # get last heading account
548 @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
552 $form->{ $ref->{category} }{$accno}{last} += $ref->{amount};
554 $form->{ $ref->{category} }{$accno}{this} += $ref->{amount};
558 $form->{ $ref->{category} }{ $ref->{accno} }{accno} = $ref->{accno};
559 $form->{ $ref->{category} }{ $ref->{accno} }{description} =
561 $form->{ $ref->{category} }{ $ref->{accno} }{charttype} = "A";
564 $form->{ $ref->{category} }{ $ref->{accno} }{last} += $ref->{amount};
566 $form->{ $ref->{category} }{ $ref->{accno} }{this} += $ref->{amount};
571 # remove accounts with zero balance
572 foreach $category (@{$categories}) {
573 foreach $accno (keys %{ $form->{$category} }) {
574 $form->{$category}{$accno}{last} =
575 $form->round_amount($form->{$category}{$accno}{last},
576 $form->{decimalplaces});
577 $form->{$category}{$accno}{this} =
578 $form->round_amount($form->{$category}{$accno}{this},
579 $form->{decimalplaces});
581 delete $form->{$category}{$accno}
582 if ( $form->{$category}{$accno}{this} == 0
583 && $form->{$category}{$accno}{last} == 0);
587 $main::lxdebug->leave_sub();
591 $main::lxdebug->enter_sub();
593 my ($dbh, $last_period, $fromdate, $todate, $form, $category) = @_;
595 my ($null, $department_id) = split /--/, $form->{department};
608 $fromdate = conv_dateq($fromdate);
609 if ($form->{method} eq 'cash') {
610 $subwhere .= " AND (transdate >= $fromdate)";
611 $glwhere = " AND (ac.transdate >= $fromdate)";
612 $prwhere = " AND (ar.transdate >= $fromdate)";
614 $where .= " AND (ac.transdate >= $fromdate)";
619 $todate = conv_dateq($todate);
620 $subwhere .= " AND (transdate <= $todate)";
621 $where .= " AND (ac.transdate <= $todate)";
622 $prwhere .= " AND (ar.transdate <= $todate)";
625 if ($department_id) {
626 $dpt_join = qq| JOIN department t ON (a.department_id = t.id) |;
627 $dpt_where = qq| AND (t.id = | . conv_i($department_id, 'NULL') . qq|) |;
630 if ($form->{project_id}) {
631 $project = qq| AND (ac.project_id = | . conv_i($form->{project_id}) . qq|) |;
634 if ($form->{method} eq 'cash') {
637 SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
639 JOIN chart c ON (c.id = ac.chart_id)
640 JOIN ar a ON (a.id = ac.trans_id)
642 WHERE $where $dpt_where
643 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AR_paid%') $subwhere)
649 SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
651 JOIN chart c ON (c.id = ac.chart_id)
652 JOIN ap a ON (a.id = ac.trans_id)
654 WHERE $where $dpt_where
655 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AP_paid%') $subwhere)
661 SELECT SUM(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
663 JOIN chart c ON (c.id = ac.chart_id)
664 JOIN gl a ON (a.id = ac.trans_id)
666 WHERE $where $dpt_where $glwhere
667 AND NOT ((c.link = 'AR') OR (c.link = 'AP'))
674 if ($form->{project_id}) {
678 SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
680 JOIN ar a ON (a.id = ac.trans_id)
681 JOIN parts p ON (ac.parts_id = p.id)
682 JOIN chart c on (p.income_accno_id = c.id)
684 WHERE (c.category = 'I') $prwhere $dpt_where
685 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AR_paid%') $subwhere)
691 SELECT SUM(ac.sellprice * chart_category_to_sgn(c.category)) AS amount, c.$category
693 JOIN ap a ON (a.id = ac.trans_id)
694 JOIN parts p ON (ac.parts_id = p.id)
695 JOIN chart c on (p.expense_accno_id = c.id)
697 WHERE (c.category = 'E') $prwhere $dpt_where
698 AND ac.trans_id IN ( SELECT trans_id FROM acc_trans JOIN chart ON (chart_id = id) WHERE (link LIKE '%AP_paid%') $subwhere)
704 } else { # if ($form->{method} eq 'cash')
705 if ($department_id) {
706 $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
707 $dpt_where = qq| AND (t.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
711 SELECT sum(ac.amount * chart_category_to_sgn(c.category)) AS amount, c.$category
713 JOIN chart c ON (c.id = ac.chart_id)
718 GROUP BY c.$category |;
720 if ($form->{project_id}) {
724 SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
726 JOIN ar a ON (a.id = ac.trans_id)
727 JOIN parts p ON (ac.parts_id = p.id)
728 JOIN chart c on (p.income_accno_id = c.id)
730 WHERE (c.category = 'I')
738 SELECT SUM(ac.sellprice * ac.qty * chart_category_to_sgn(c.category)) AS amount, c.$category
740 JOIN ap a ON (a.id = ac.trans_id)
741 JOIN parts p ON (ac.parts_id = p.id)
742 JOIN chart c on (p.expense_accno_id = c.id)
744 WHERE (c.category = 'E')
748 GROUP BY c.$category |;
756 my $sth = prepare_execute_query($form, $dbh, $query);
758 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
759 if ($category eq "pos_bwa") {
761 $form->{ $ref->{$category} }{kumm} += $ref->{amount};
763 $form->{ $ref->{$category} }{jetzt} += $ref->{amount};
766 $form->{ $ref->{$category} } += $ref->{amount};
771 $main::lxdebug->leave_sub();
775 $main::lxdebug->enter_sub();
777 my ($self, $myconfig, $form) = @_;
779 my $dbh = $form->dbconnect($myconfig);
781 my ($query, $sth, $ref);
784 my ($null, $department_id) = split /--/, $form->{department};
785 my @headingaccounts = ();
791 my $invwhere = $where;
793 if ($department_id) {
794 $dpt_join = qq| JOIN dpt_trans t ON (ac.trans_id = t.trans_id) |;
795 $dpt_where = qq| AND (t.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
798 # project_id only applies to getting transactions
799 # it has nothing to do with a trial balance
800 # but we use the same function to collect information
802 if ($form->{project_id}) {
803 $project = qq| AND ac.project_id = | . conv_i($form->{project_id}, 'NULL') . qq|) |;
806 # get beginning balances
807 if ($form->{fromdate}) {
809 qq|SELECT c.accno, c.category, SUM(ac.amount) AS amount, c.description
811 JOIN chart c ON (ac.chart_id = c.id)
813 WHERE (ac.transdate < ?)
816 GROUP BY c.accno, c.category, c.description |;
818 $sth = prepare_execute_query($form, $dbh, $query, $form->{fromdate});
820 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
821 $balance{ $ref->{accno} } = $ref->{amount};
823 if ($ref->{amount} != 0 && $form->{all_accounts}) {
824 $trb{ $ref->{accno} }{description} = $ref->{description};
825 $trb{ $ref->{accno} }{charttype} = 'A';
826 $trb{ $ref->{accno} }{category} = $ref->{category};
836 qq|SELECT c.accno, c.description, c.category
838 WHERE c.charttype = 'H'
841 $sth = prepare_execute_query($form, $dbh, $query);
843 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
844 $trb{ $ref->{accno} }{description} = $ref->{description};
845 $trb{ $ref->{accno} }{charttype} = 'H';
846 $trb{ $ref->{accno} }{category} = $ref->{category};
848 push @headingaccounts, $ref->{accno};
856 if ($form->{fromdate} || $form->{todate}) {
857 if ($form->{fromdate}) {
858 my $fromdate = conv_dateq($form->{fromdate});
859 $tofrom .= " AND (ac.transdate >= $fromdate)";
860 $subwhere .= " AND (transdate >= $fromdate)";
861 $invwhere .= " AND (a.transdate >= $fromdate)";
862 $glwhere = " AND (ac.transdate >= $fromdate)";
864 if ($form->{todate}) {
865 my $todate = conv_dateq($form->{todate});
866 $tofrom .= " AND (ac.transdate <= $todate)";
867 $invwhere .= " AND (a.transdate <= $todate)";
868 $subwhere .= " AND (transdate <= $todate)";
869 $glwhere .= " AND (ac.transdate <= $todate)";
875 qq| AND ((ac.trans_id IN (SELECT id from ar) AND
880 JOIN chart ON (chart_id = id)
881 WHERE (link LIKE '%AR_paid%')
886 (ac.trans_id in (SELECT id from ap) AND
891 JOIN chart ON (chart_id = id)
892 WHERE (link LIKE '%AP_paid%')
897 (ac.trans_id in (SELECT id from gl)
905 SELECT c.accno, c.description, c.category, SUM(ac.amount) AS amount
907 JOIN chart c ON (c.id = ac.chart_id)
912 GROUP BY c.accno, c.description, c.category |;
914 if ($form->{project_id}) {
916 -- add project transactions from invoice
920 SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) AS amount
922 JOIN ar a ON (ac.trans_id = a.id)
923 JOIN parts p ON (ac.parts_id = p.id)
924 JOIN chart c ON (p.income_accno_id = c.id)
929 GROUP BY c.accno, c.description, c.category
933 SELECT c.accno, c.description, c.category, SUM(ac.sellprice * ac.qty) * -1 AS amount
935 JOIN ap a ON (ac.trans_id = a.id)
936 JOIN parts p ON (ac.parts_id = p.id)
937 JOIN chart c ON (p.expense_accno_id = c.id)
942 GROUP BY c.accno, c.description, c.category
946 $query .= qq| ORDER BY accno|;
948 $sth = prepare_execute_query($form, $dbh, $query);
950 # calculate the debit and credit in the period
951 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
952 $trb{ $ref->{accno} }{description} = $ref->{description};
953 $trb{ $ref->{accno} }{charttype} = 'A';
954 $trb{ $ref->{accno} }{category} = $ref->{category};
955 $trb{ $ref->{accno} }{amount} += $ref->{amount};
959 # prepare query for each account
960 my ($q_drcr, $drcr, $q_project_drcr, $project_drcr);
964 (SELECT SUM(ac.amount) * -1
966 JOIN chart c ON (c.id = ac.chart_id)
972 AND (c.accno = ?)) AS debit,
974 (SELECT SUM(ac.amount)
976 JOIN chart c ON (c.id = ac.chart_id)
982 AND c.accno = ?) AS credit |;
983 $drcr = prepare_query($form, $dbh, $q_drcr);
985 if ($form->{project_id}) {
986 # prepare query for each account
989 (SELECT SUM(ac.sellprice * ac.qty) * -1
991 JOIN parts p ON (ac.parts_id = p.id)
992 JOIN ap a ON (ac.trans_id = a.id)
993 JOIN chart c ON (p.expense_accno_id = c.id)
998 AND c.accno = ?) AS debit,
1000 (SELECT SUM(ac.sellprice * ac.qty)
1002 JOIN parts p ON (ac.parts_id = p.id)
1003 JOIN ar a ON (ac.trans_id = a.id)
1004 JOIN chart c ON (p.income_accno_id = c.id)
1009 AND c.accno = ?) AS credit |;
1011 $project_drcr = prepare_query($form, $dbh, $q_project_drcr);
1014 my ($debit, $credit);
1016 foreach my $accno (sort keys %trb) {
1019 $ref->{accno} = $accno;
1020 map { $ref->{$_} = $trb{$accno}{$_} }
1021 qw(description category charttype amount);
1023 $ref->{balance} = $form->round_amount($balance{ $ref->{accno} }, 2);
1025 if ($trb{$accno}{charttype} eq 'A') {
1028 do_statement($form, $drcr, $q_drcr, $ref->{accno}, $ref->{accno});
1030 ($debit, $credit) = (0, 0);
1031 while (($debit, $credit) = $drcr->fetchrow_array) {
1032 $ref->{debit} += $debit;
1033 $ref->{credit} += $credit;
1037 if ($form->{project_id}) {
1040 do_statement($form, $project_drcr, $q_project_drcr, $ref->{accno}, $ref->{accno});
1042 ($debit, $credit) = (0, 0);
1043 while (($debit, $credit) = $project_drcr->fetchrow_array) {
1044 $ref->{debit} += $debit;
1045 $ref->{credit} += $credit;
1047 $project_drcr->finish;
1050 $ref->{debit} = $form->round_amount($ref->{debit}, 2);
1051 $ref->{credit} = $form->round_amount($ref->{credit}, 2);
1056 @accno = grep { $_ le "$ref->{accno}" } @headingaccounts;
1057 $accno = pop @accno;
1059 $trb{$accno}{debit} += $ref->{debit};
1060 $trb{$accno}{credit} += $ref->{credit};
1063 push @{ $form->{TB} }, $ref;
1069 # debits and credits for headings
1070 foreach $accno (@headingaccounts) {
1071 foreach $ref (@{ $form->{TB} }) {
1072 if ($accno eq $ref->{accno}) {
1073 $ref->{debit} = $trb{$accno}{debit};
1074 $ref->{credit} = $trb{$accno}{credit};
1079 $main::lxdebug->leave_sub();
1083 $main::lxdebug->enter_sub();
1084 my ($self, $dbh, $form) = @_;
1085 my $arap = $form->{arap} eq "ar" ? "ar" : "ap";
1086 my $query = qq|SELECT invnumber FROM $arap WHERE invnumber LIKE "Storno zu "|;
1087 my $sth = $dbh->prepare($query);
1088 while(my $ref = $sth->fetchrow_hashref()) {
1089 $ref->{invnumer} =~ s/Storno zu //g;
1090 $form->{storno}{$ref->{invnumber}} = 1;
1092 $main::lxdebug->leave_sub();
1096 $main::lxdebug->enter_sub();
1098 my ($self, $myconfig, $form) = @_;
1100 # connect to database
1101 my $dbh = $form->dbconnect($myconfig);
1103 my ($invoice, $arap, $buysell, $ct, $ct_id);
1105 if ($form->{ct} eq "customer") {
1116 $ct_id = "${ct}_id";
1118 $form->{todate} = $form->current_date($myconfig) unless ($form->{todate});
1119 my $todate = conv_dateq($form->{todate});
1121 my $where = " 1 = 1 ";
1124 if ($form->{$ct_id}) {
1125 $where .= qq| AND (ct.id = | . conv_i($form->{$ct_id}) . qq|)|;
1126 } elsif ($form->{ $form->{ct} }) {
1127 $where .= qq| AND (ct.name ILIKE | . $dbh->quote('%' . $form->{$ct} . '%') . qq|)|;
1131 if ($form->{department}) {
1132 ($null, $department_id) = split /--/, $form->{department};
1133 $dpt_join = qq| JOIN department d ON (a.department_id = d.id) |;
1134 $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|)|;
1138 -- between 0-30 days
1140 SELECT ${ct}.id AS ctid, ${ct}.name,
1141 street, zipcode, city, country, contact, email,
1142 phone as customerphone, fax as customerfax, ${ct}number,
1143 "invnumber", "transdate",
1144 (amount - paid) as "c0", 0.00 as "c30", 0.00 as "c60", 0.00 as "c90",
1145 "duedate", invoice, ${arap}.id,
1148 WHERE (${arap}.curr = exchangerate.curr)
1149 AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate
1151 WHERE (paid != amount)
1152 AND (${arap}.storno IS FALSE)
1153 AND (${arap}.${ct}_id = ${ct}.id)
1155 AND (transdate <= (date $todate - interval '0 days'))
1156 AND (transdate >= (date $todate - interval '30 days'))
1160 -- between 31-60 days
1162 SELECT ${ct}.id AS ctid, ${ct}.name,
1163 street, zipcode, city, country, contact, email,
1164 phone as customerphone, fax as customerfax, ${ct}number,
1165 "invnumber", "transdate",
1166 0.00 as "c0", (amount - paid) as "c30", 0.00 as "c60", 0.00 as "c90",
1167 "duedate", invoice, ${arap}.id,
1170 WHERE (${arap}.curr = exchangerate.curr)
1171 AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate
1173 WHERE (paid != amount)
1174 AND (${arap}.storno IS FALSE)
1175 AND (${arap}.${ct}_id = ${ct}.id)
1177 AND (transdate < (date $todate - interval '30 days'))
1178 AND (transdate >= (date $todate - interval '60 days'))
1182 -- between 61-90 days
1184 SELECT ${ct}.id AS ctid, ${ct}.name,
1185 street, zipcode, city, country, contact, email,
1186 phone as customerphone, fax as customerfax, ${ct}number,
1187 "invnumber", "transdate",
1188 0.00 as "c0", 0.00 as "c30", (amount - paid) as "c60", 0.00 as "c90",
1189 "duedate", invoice, ${arap}.id,
1192 WHERE (${arap}.curr = exchangerate.curr)
1193 AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate
1195 WHERE (paid != amount)
1196 AND (${arap}.storno IS FALSE)
1197 AND (${arap}.${ct}_id = ${ct}.id)
1199 AND (transdate < (date $todate - interval '60 days'))
1200 AND (transdate >= (date $todate - interval '90 days'))
1206 SELECT ${ct}.id AS ctid, ${ct}.name,
1207 street, zipcode, city, country, contact, email,
1208 phone as customerphone, fax as customerfax, ${ct}number,
1209 "invnumber", "transdate",
1210 0.00 as "c0", 0.00 as "c30", 0.00 as "c60", (amount - paid) as "c90",
1211 "duedate", invoice, ${arap}.id,
1214 WHERE (${arap}.curr = exchangerate.curr)
1215 AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate
1217 WHERE (paid != amount)
1218 AND (${arap}.storno IS FALSE)
1219 AND (${arap}.${ct}_id = ${ct}.id)
1221 AND (transdate < (date $todate - interval '90 days'))
1223 ORDER BY ctid, transdate, invnumber |;
1225 my $sth_details = prepare_query($form, $dbh, $q_details);
1227 # select outstanding vendors or customers, depends on $ct
1229 qq|SELECT DISTINCT ct.id, ct.name
1230 FROM $ct ct, $arap a
1233 AND (a.${ct_id} = ct.id)
1234 AND (a.paid != a.amount)
1235 AND (a.transdate <= $todate)
1238 my $sth = prepare_execute_query($form, $dbh, $query);
1241 # for each company that has some stuff outstanding
1242 while (my ($id) = $sth->fetchrow_array) {
1243 do_statement($form, $sth_details, $q_details, $id, $id, $id, $id);
1245 while (my $ref = $sth_details->fetchrow_hashref(NAME_lc)) {
1246 $ref->{module} = ($ref->{invoice}) ? $invoice : $arap;
1247 $ref->{exchangerate} = 1 unless $ref->{exchangerate};
1248 push @{ $form->{AG} }, $ref;
1251 $sth_details->finish;
1260 $main::lxdebug->leave_sub();
1264 $main::lxdebug->enter_sub();
1266 my ($self, $myconfig, $form) = @_;
1268 # connect to database
1269 my $dbh = $form->dbconnect($myconfig);
1271 my $ct = $form->{ct} eq "customer" ? "customer" : "vendor";
1274 qq|SELECT ct.name, ct.email, ct.cc, ct.bcc
1277 ($form->{ $form->{ct} }, $form->{email}, $form->{cc}, $form->{bcc}) =
1278 selectrow_query($form, $dbh, $query, $form->{"${ct}_id"});
1281 $main::lxdebug->leave_sub();
1284 sub get_taxaccounts {
1285 $main::lxdebug->enter_sub();
1287 my ($self, $myconfig, $form) = @_;
1289 # connect to database
1290 my $dbh = $form->dbconnect($myconfig);
1294 qq|SELECT c.accno, c.description, t.rate
1296 WHERE (c.link LIKE '%CT_tax%') AND (c.id = t.chart_id)
1298 $form->{taxaccounts} = selectall_hashref_quert($form, $dbh, $query);
1302 $main::lxdebug->leave_sub();
1306 $main::lxdebug->enter_sub();
1308 my ($self, $myconfig, $form) = @_;
1310 # connect to database
1311 my $dbh = $form->dbconnect($myconfig);
1313 my ($null, $department_id) = split /--/, $form->{department};
1316 my $where = "1 = 1";
1318 if ($department_id) {
1319 $where .= qq| AND (a.department_id = | . conv_i($department_id, 'NULL') . qq|) |;
1324 if ($form->{accno}) {
1325 $accno = $form->{accno};
1326 $rate = $form->{"$form->{accno}_rate"};
1327 $accno = qq| AND (ch.accno = | . $dbh->quote($accno) . qq|)|;
1333 if ($form->{db} eq 'ar') {
1334 $table = "customer";
1341 my $arap = lc($ARAP);
1343 my $transdate = "a.transdate";
1345 if ($form->{method} eq 'cash') {
1346 $transdate = "a.datepaid";
1348 my $todate = conv_dateq($form->{todate} ? $form->{todate} : $form->current_date($myconfig));
1355 JOIN chart ON (chart_id = id)
1356 WHERE (link LIKE '%${ARAP}_paid%')
1357 AND (transdate <= $todate)
1362 # if there are any dates construct a where
1363 $where .= " AND ($transdate >= " . conv_dateq($form->{fromdate}) . ") " if ($form->{fromdate});
1364 $where .= " AND ($transdate <= " . conv_dateq($form->{todate}) . ") " if ($form->{todate});
1366 my $ml = ($form->{db} eq 'ar') ? 1 : -1;
1368 my $sortorder = join ', ', $form->sort_columns(qw(transdate invnumber name));
1369 $sortorder = $form->{sort} if ($form->{sort} && grep({ $_ eq $form->{sort} } qw(id transdate invnumber name netamount tax)));
1371 if ($form->{report} !~ /nontaxable/) {
1373 qq|SELECT a.id, '0' AS invoice, $transdate AS transdate, a.invnumber, n.name, a.netamount,
1374 ac.amount * $ml AS tax
1376 JOIN ${arap} a ON (a.id = ac.trans_id)
1377 JOIN chart ch ON (ch.id = ac.chart_id)
1378 JOIN $table n ON (n.id = a.${table}_id)
1382 AND (a.invoice = '0')
1386 SELECT a.id, '1' AS invoice, $transdate AS transdate, a.invnumber, n.name, i.sellprice * i.qty AS netamount,
1387 i.sellprice * i.qty * $rate * $ml AS tax
1389 JOIN ${arap} a ON (a.id = ac.trans_id)
1390 JOIN chart ch ON (ch.id = ac.chart_id)
1391 JOIN $table n ON (n.id = a.${table}_id)
1392 JOIN ${table}tax t ON (t.${table}_id = n.id)
1393 JOIN invoice i ON (i.trans_id = a.id)
1394 JOIN partstax p ON (p.parts_id = i.parts_id)
1398 AND (a.invoice = '1')
1399 ORDER BY $sortorder|;
1401 # only gather up non-taxable transactions
1403 qq|SELECT a.id, '0' AS invoice, $transdate AS transdate, a.invnumber, n.name, a.netamount
1405 JOIN ${arap} a ON (a.id = ac.trans_id)
1406 JOIN $table n ON (n.id = a.${table}_id)
1409 AND (a.invoice = '0')
1410 AND (a.netamount = a.amount)
1414 SELECT a.id, '1' AS invoice, $transdate AS transdate, a.invnumber, n.name, i.sellprice * i.qty AS netamount
1416 JOIN ${arap} a ON (a.id = ac.trans_id)
1417 JOIN $table n ON (n.id = a.${table}_id)
1418 JOIN invoice i ON (i.trans_id = a.id)
1421 AND (a.invoice = '1')
1423 a.${table}_id NOT IN (SELECT ${table}_id FROM ${table}tax t (${table}_id))
1425 i.parts_id NOT IN (SELECT parts_id FROM partstax p (parts_id))
1427 GROUP BY a.id, a.invnumber, $transdate, n.name, i.sellprice, i.qty
1428 ORDER by $sortorder|;
1431 $form->{TR} = selectall_hashref_query($form, $dbh, $query);
1435 $main::lxdebug->leave_sub();
1438 sub paymentaccounts {
1439 $main::lxdebug->enter_sub();
1441 my ($self, $myconfig, $form) = @_;
1443 # connect to database, turn AutoCommit off
1444 my $dbh = $form->dbconnect_noauto($myconfig);
1446 my $ARAP = $form->{db} eq "ar" ? "AR" : "AP";
1448 # get A(R|P)_paid accounts
1450 qq|SELECT accno, description
1452 WHERE link LIKE '%${ARAP}_paid%'|;
1453 $form->{PR} = selectall_hashref_query($form, $dbh, $query);
1457 $main::lxdebug->leave_sub();
1461 $main::lxdebug->enter_sub();
1463 my ($self, $myconfig, $form) = @_;
1465 # connect to database, turn AutoCommit off
1466 my $dbh = $form->dbconnect_noauto($myconfig);
1470 if ($form->{db} eq 'ar') {
1471 $table = 'customer';
1483 if ($form->{department_id}) {
1484 $dpt_join = qq| JOIN dpt_trans t ON (t.trans_id = ac.trans_id) |;
1485 $where = qq| AND (t.department_id = | . conv_i($form->{department_id}, 'NULL') . qq|) |;
1488 if ($form->{fromdate}) {
1489 $where .= " AND (ac.transdate >= " . $dbh->quote($form->{fromdate}) . ") ";
1491 if ($form->{todate}) {
1492 $where .= " AND (ac.transdate <= " . $dbh->quote($form->{todate}) . ") ";
1494 if (!$form->{fx_transaction}) {
1495 $where .= " AND ac.fx_transaction = '0'";
1500 if ($form->{reference}) {
1501 $reference = $dbh->quote('%' . $form->{reference} . '%');
1502 $invnumber = " AND (a.invnumber LIKE $reference)";
1503 $reference = " AND (g.reference LIKE $reference)";
1505 if ($form->{source}) {
1506 $where .= " AND (ac.source ILIKE " . $dbh->quote('%' . $form->{source} . '%') . ") ";
1508 if ($form->{memo}) {
1509 $where .= " AND (ac.memo ILIKE " . $dbh->quote('%' . $form->{memo} . '%') . ") ";
1512 my $sortorder = join(', ', qw(name invnumber ordnumber transdate source));
1513 $sortorder = $form->{sort} if ($form->{sort} && grep({ $_ eq $form->{sort} } qw(transdate invnumber name source memo)));
1515 $query = qq|SELECT id, accno, description FROM chart WHERE accno = ?|;
1516 my $sth = prepare_query($form, $dbh, $query);
1519 qq|SELECT c.name, a.invnumber, a.ordnumber,
1520 ac.transdate, ac.amount * $ml AS paid, ac.source,
1521 a.invoice, a.id, ac.memo, '${arap}' AS module
1523 JOIN $arap a ON (ac.trans_id = a.id)
1524 JOIN $table c ON (c.id = a.${table}_id)
1526 WHERE (ac.chart_id = ?)
1532 SELECT g.description, g.reference, NULL AS ordnumber,
1533 ac.transdate, ac.amount * $ml AS paid, ac.source,
1534 '0' as invoice, g.id, ac.memo, 'gl' AS module
1536 JOIN gl g ON (g.id = ac.trans_id)
1538 WHERE (ac.chart_id = ?)
1541 AND (ac.amount * $ml) > 0
1543 ORDER BY $sortorder|;
1544 my $sth_details = prepare_query($form, $dbh, $q_details);
1548 # cycle through each id
1549 foreach my $accno (split(/ /, $form->{paymentaccounts})) {
1550 do_statement($form, $sth, $query, $accno);
1551 my $ref = $sth->fetchrow_hashref();
1552 push(@{ $form->{PR} }, $ref);
1555 $form->{ $ref->{id} } = [] unless ($form->{ $ref->{id} });
1557 do_statement($form, $sth_details, $q_details, $ref->{id}, $ref->{id});
1558 while (my $pr = $sth_details->fetchrow_hashref()) {
1559 push(@{ $form->{ $ref->{id} } }, $pr);
1561 $sth_details->finish();
1566 $main::lxdebug->leave_sub();
1570 $main::lxdebug->enter_sub();
1572 my ($self, $myconfig, $form) = @_;
1574 # connect to database
1575 my $dbh = $form->dbconnect($myconfig);
1577 my $last_period = 0;
1580 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);
1582 $form->{decimalplaces} *= 1;
1584 &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate}, $form, "pos_bwa");
1586 # if there are any compare dates
1587 if ($form->{fromdate} || $form->{todate}) {
1589 if ($form->{fromdate}) {
1590 $form->{fromdate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
1593 $form->{todate} =~ /[0-9]*\.[0-9]*\.([0-9]*)/;
1596 $kummfromdate = $form->{comparefromdate};
1597 $kummtodate = $form->{comparetodate};
1598 &get_accounts_g($dbh, $last_period, $kummfromdate, $kummtodate, $form, "pos_bwa");
1601 @periods = qw(jetzt kumm);
1602 @gesamtleistung = qw(1 2 3);
1603 @gesamtkosten = qw (10 11 12 13 14 15 16 17 18 19 20);
1605 qw (rohertrag betriebrohertrag betriebsergebnis neutraleraufwand neutralerertrag ergebnisvorsteuern ergebnis gesamtleistung gesamtkosten);
1607 foreach $key (@periods) {
1608 $form->{ "$key" . "gesamtleistung" } = 0;
1609 $form->{ "$key" . "gesamtkosten" } = 0;
1611 foreach $category (@categories) {
1613 if (defined($form->{$category}{$key})) {
1614 $form->{"$key$category"} =
1615 $form->format_amount($myconfig,
1616 $form->round_amount($form->{$category}{$key}, 2
1618 $form->{decimalplaces},
1622 foreach $item (@gesamtleistung) {
1623 $form->{ "$key" . "gesamtleistung" } += $form->{$item}{$key};
1625 foreach $item (@gesamtkosten) {
1626 $form->{ "$key" . "gesamtkosten" } += $form->{$item}{$key};
1628 $form->{ "$key" . "rohertrag" } =
1629 $form->{ "$key" . "gesamtleistung" } - $form->{4}{$key};
1630 $form->{ "$key" . "betriebrohertrag" } =
1631 $form->{ "$key" . "rohertrag" } + $form->{5}{$key};
1632 $form->{ "$key" . "betriebsergebnis" } =
1633 $form->{ "$key" . "betriebrohertrag" } -
1634 $form->{ "$key" . "gesamtkosten" };
1635 $form->{ "$key" . "neutraleraufwand" } =
1636 $form->{30}{$key} + $form->{31}{$key};
1637 $form->{ "$key" . "neutralertrag" } =
1638 $form->{32}{$key} + $form->{33}{$key} + $form->{34}{$key};
1639 $form->{ "$key" . "ergebnisvorsteuern" } =
1640 $form->{ "$key" . "betriebsergebnis" } -
1641 $form->{ "$key" . "neutraleraufwand" } +
1642 $form->{ "$key" . "neutralertrag" };
1643 $form->{ "$key" . "ergebnis" } =
1644 $form->{ "$key" . "ergebnisvorsteuern" } + $form->{35}{$key};
1646 if ($form->{ "$key" . "gesamtleistung" } > 0) {
1647 foreach $category (@categories) {
1648 if (defined($form->{$category}{$key})) {
1649 $form->{ "$key" . "gl" . "$category" } =
1650 $form->format_amount(
1652 $form->round_amount(
1653 ($form->{$category}{$key} /
1654 $form->{ "$key" . "gesamtleistung" } * 100
1656 $form->{decimalplaces}
1658 $form->{decimalplaces},
1662 foreach $item (@ergebnisse) {
1663 $form->{ "$key" . "gl" . "$item" } =
1664 $form->format_amount($myconfig,
1665 $form->round_amount(
1666 ( $form->{ "$key" . "$item" } /
1667 $form->{ "$key" . "gesamtleistung" } * 100
1669 $form->{decimalplaces}
1671 $form->{decimalplaces},
1676 if ($form->{ "$key" . "gesamtkosten" } > 0) {
1677 foreach $category (@categories) {
1678 if (defined($form->{$category}{$key})) {
1679 $form->{ "$key" . "gk" . "$category" } =
1680 $form->format_amount($myconfig,
1681 $form->round_amount(
1682 ($form->{$category}{$key} /
1683 $form->{ "$key" . "gesamtkosten" } * 100
1685 $form->{decimalplaces}
1687 $form->{decimalplaces},
1691 foreach $item (@ergebnisse) {
1692 $form->{ "$key" . "gk" . "$item" } =
1693 $form->format_amount($myconfig,
1694 $form->round_amount(
1695 ($form->{ "$key" . "$item" } /
1696 $form->{ "$key" . "gesamtkosten" } * 100
1698 $form->{decimalplaces}
1700 $form->{decimalplaces},
1705 if ($form->{10}{$key} > 0) {
1706 foreach $category (@categories) {
1707 if (defined($form->{$category}{$key})) {
1708 $form->{ "$key" . "pk" . "$category" } =
1709 $form->format_amount(
1711 $form->round_amount(
1712 ($form->{$category}{$key} / $form->{10}{$key} * 100),
1713 $form->{decimalplaces}
1715 $form->{decimalplaces},
1719 foreach $item (@ergebnisse) {
1720 $form->{ "$key" . "pk" . "$item" } =
1721 $form->format_amount($myconfig,
1722 $form->round_amount(
1723 ($form->{ "$key" . "$item" } /
1724 $form->{10}{$key} * 100
1726 $form->{decimalplaces}
1728 $form->{decimalplaces},
1733 if ($form->{4}{$key} > 0) {
1734 foreach $category (@categories) {
1735 if (defined($form->{$category}{$key})) {
1736 $form->{ "$key" . "auf" . "$category" } =
1737 $form->format_amount(
1739 $form->round_amount(
1740 ($form->{$category}{$key} / $form->{4}{$key} * 100),
1741 $form->{decimalplaces}
1743 $form->{decimalplaces},
1747 foreach $item (@ergebnisse) {
1748 $form->{ "$key" . "auf" . "$item" } =
1749 $form->format_amount($myconfig,
1750 $form->round_amount(
1751 ($form->{ "$key" . "$item" } /
1752 $form->{4}{$key} * 100
1754 $form->{decimalplaces}
1756 $form->{decimalplaces},
1761 foreach $item (@ergebnisse) {
1762 $form->{ "$key" . "$item" } =
1763 $form->format_amount($myconfig,
1764 $form->round_amount($form->{ "$key" . "$item" },
1765 $form->{decimalplaces}
1767 $form->{decimalplaces},
1774 $main::lxdebug->leave_sub();
1778 $main::lxdebug->enter_sub();
1780 my ($self, $myconfig, $form) = @_;
1782 # connect to database
1783 my $dbh = $form->dbconnect($myconfig);
1785 my $last_period = 0;
1786 my @categories_cent = qw(51r 511 86r 861 97r 971 93r 931
1787 96 66 43 45 53 62 65 67);
1788 my @categories_euro = qw(48 51 86 91 97 93 94);
1789 $form->{decimalplaces} *= 1;
1791 foreach $item (@categories_cent) {
1792 $form->{"$item"} = 0;
1794 foreach $item (@categories_euro) {
1795 $form->{"$item"} = 0;
1798 &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate}, $form, "pos_ustva");
1800 # foreach $item (@categories_cent) {
1801 # if ($form->{$item}{"jetzt"} > 0) {
1802 # $form->{$item} = $form->{$item}{"jetzt"};
1803 # delete $form->{$item}{"jetzt"};
1806 # foreach $item (@categories_euro) {
1807 # if ($form->{$item}{"jetzt"} > 0) {
1808 # $form->{$item} = $form->{$item}{"jetzt"};
1809 # delete $form->{$item}{"jetzt"};
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"};
1826 # Berechnung der USTVA Formularfelder
1828 $form->{"51r"} = $form->{"511"};
1829 $form->{"86r"} = $form->{"861"};
1830 $form->{"97r"} = $form->{"971"};
1831 $form->{"93r"} = $form->{"931"};
1833 #$form->{"96"} = $form->{"94"} * 0.16;
1835 $form->{"51r"} + $form->{"86r"} + $form->{"97r"} + $form->{"93r"} +
1837 $form->{"45"} = $form->{"43"};
1838 $form->{"53"} = $form->{"43"};
1839 $form->{"62"} = $form->{"43"} - $form->{"66"};
1840 $form->{"65"} = $form->{"43"} - $form->{"66"};
1841 $form->{"67"} = $form->{"43"} - $form->{"66"};
1843 foreach $item (@categories_cent) {
1845 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2),
1849 foreach $item (@categories_euro) {
1851 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 0),
1857 $main::lxdebug->leave_sub();
1860 sub income_statement {
1861 $main::lxdebug->enter_sub();
1863 my ($self, $myconfig, $form) = @_;
1865 # connect to database
1866 my $dbh = $form->dbconnect($myconfig);
1868 my $last_period = 0;
1869 my @categories_einnahmen = qw(1 2 3 4 5 6 7);
1870 my @categories_ausgaben =
1871 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);
1873 my @ergebnisse = qw(sumeura sumeurb guvsumme);
1875 $form->{decimalplaces} *= 1;
1877 foreach $item (@categories_einnahmen) {
1880 foreach $item (@categories_ausgaben) {
1884 foreach $item (@ergebnisse) {
1888 &get_accounts_g($dbh, $last_period, $form->{fromdate}, $form->{todate},
1891 foreach $item (@categories_einnahmen) {
1892 $form->{"eur${item}"} =
1893 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2));
1894 $form->{"sumeura"} += $form->{$item};
1896 foreach $item (@categories_ausgaben) {
1897 $form->{"eur${item}"} =
1898 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2));
1899 $form->{"sumeurb"} += $form->{$item};
1902 $form->{"guvsumme"} = $form->{"sumeura"} - $form->{"sumeurb"};
1904 foreach $item (@ergebnisse) {
1906 $form->format_amount($myconfig, $form->round_amount($form->{$item}, 2));
1908 $main::lxdebug->leave_sub();