a58ac1e261a526c13293627e6fd7c9dc94034cf2
[kivitendo-erp.git] / bin / mozilla / ca.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 2001
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
29 #
30 # module for Chart of Accounts, Income Statement and Balance Sheet
31 # search and edit transactions posted by the GL, AR and AP
32 #
33 #======================================================================
34
35 use POSIX qw(strftime);
36
37 use SL::CA;
38 use SL::ReportGenerator;
39
40 require "bin/mozilla/reportgenerator.pl";
41
42 use strict;
43
44 1;
45
46 # end of main
47
48 # this is for our long dates
49 # $locale->text('January')
50 # $locale->text('February')
51 # $locale->text('March')
52 # $locale->text('April')
53 # $locale->text('May ')
54 # $locale->text('June')
55 # $locale->text('July')
56 # $locale->text('August')
57 # $locale->text('September')
58 # $locale->text('October')
59 # $locale->text('November')
60 # $locale->text('December')
61
62 # this is for our short month
63 # $locale->text('Jan')
64 # $locale->text('Feb')
65 # $locale->text('Mar')
66 # $locale->text('Apr')
67 # $locale->text('May')
68 # $locale->text('Jun')
69 # $locale->text('Jul')
70 # $locale->text('Aug')
71 # $locale->text('Sep')
72 # $locale->text('Oct')
73 # $locale->text('Nov')
74 # $locale->text('Dec')
75
76 sub chart_of_accounts {
77   $main::lxdebug->enter_sub();
78
79   my $form     = $main::form;
80   my %myconfig = %main::myconfig;
81   my $locale   = $main::locale;
82
83   $main::auth->assert('report');
84
85   $form->{title} = $locale->text('Chart of Accounts');
86
87   if ($main::eur) {
88     $form->{method} = "cash";
89   }
90
91   CA->all_accounts(\%myconfig, \%$form);
92
93   my @columns     = qw(accno description debit credit);
94   my %column_defs = (
95     'accno'       => { 'text' => $locale->text('Account'), },
96     'description' => { 'text' => $locale->text('Description'), },
97     'debit'       => { 'text' => $locale->text('Debit'), },
98     'credit'      => { 'text' => $locale->text('Credit'), },
99   );
100
101   my $report = SL::ReportGenerator->new(\%myconfig, $form);
102
103   $report->set_options('output_format'         => 'HTML',
104                        'title'                 => $form->{title},
105                        'attachment_basename'   => $locale->text('chart_of_accounts') . strftime('_%Y%m%d', localtime time),
106                        'std_column_visibility' => 1,
107     );
108   $report->set_options_from_form();
109
110   $report->set_columns(%column_defs);
111   $report->set_column_order(@columns);
112
113   $report->set_export_options('chart_of_accounts');
114
115   $report->set_sort_indicator($form->{sort}, 1);
116
117   my %totals = ('debit' => 0, 'credit' => 0);
118
119   foreach my $ca (@{ $form->{CA} }) {
120     next unless defined $ca->{amount};
121     my $row = { };
122
123     foreach (qw(debit credit)) {
124       $totals{$_} += $ca->{$_} * 1;
125       $ca->{$_}    = $form->format_amount(\%myconfig, $ca->{$_}, 2) if ($ca->{$_});
126     }
127
128     map { $row->{$_} = { 'data' => $ca->{$_} } } @columns;
129
130     map { $row->{$_}->{align} = 'right'       } qw(debit credit);
131     map { $row->{$_}->{class} = 'listheading' } @columns if ($ca->{charttype} eq "H");
132
133     $row->{accno}->{link} = build_std_url('action=list', 'accno=' . E($ca->{accno}), 'description=' . E($ca->{description}));
134
135     $report->add_data($row);
136   }
137
138   my $row = { map { $_ => { 'class' => 'listtotal', 'align' => 'right' } } @columns };
139   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals{$_}, 2) } qw(debit credit);
140
141   $report->add_separator();
142   $report->add_data($row);
143
144   $report->generate_with_headers();
145
146   $main::lxdebug->leave_sub();
147 }
148
149 sub list {
150   $main::lxdebug->enter_sub();
151
152   my $form     = $main::form;
153   my %myconfig = %main::myconfig;
154   my $locale   = $main::locale;
155
156   $main::auth->assert('report');
157
158   $form->{title} = $locale->text('List Transactions');
159   $form->{title} .= " - " . $locale->text('Account') . " $form->{accno}";
160   my $year = (localtime)[5] + 1900;
161
162   # get departments
163   $form->all_departments(\%myconfig);
164   if (@{ $form->{all_departments} || [] }) {
165     $form->{selectdepartment} = "<option>\n";
166
167     map {
168       $form->{selectdepartment} .=
169         "<option>$_->{description}--$_->{id}\n"
170     } (@{ $form->{all_departments} || [] });
171   }
172
173   my $department = qq|
174         <tr>
175           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
176           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
177         </tr>
178 | if $form->{selectdepartment};
179   my $accrual = ($main::eur) ? ""        : "checked";
180   my $cash    = ($main::eur) ? "checked" : "";
181
182   my $name_1    = "fromdate";
183   my $id_1      = "fromdate";
184   my $value_1   = "$form->{fromdate}";
185   my $trigger_1 = "trigger1";
186   my $name_2    = "todate";
187   my $id_2      = "todate";
188   my $value_2   = "";
189   my $trigger_2 = "trigger2";
190
191   my ($button1, $button1_2, $button2, $button2_2, $jsscript);
192
193   # with JavaScript Calendar
194   if ($form->{jsscript}) {
195     if ($name_1 eq "") {
196
197       $button1 = qq|
198          <input name=$name_2 id=$id_2 size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">|;
199       $button1_2 = qq|
200         <input type=button name=$name_2 id="$trigger_2" value=|
201         . $locale->text('button') . qq|>|;
202
203       #write Trigger
204       $jsscript =
205         Form->write_trigger(\%myconfig, "1", "$name_2", "BR", "$trigger_2");
206     } else {
207       $button1 = qq|
208          <input name=$name_1 id=$id_1 size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\" value="$value_1">|;
209       $button1_2 = qq|
210         <input type=button name=$name_1 id="$trigger_1" value=|
211         . $locale->text('button') . qq|>|;
212       $button2 = qq|
213          <input name=$name_2 id=$id_2 size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">|;
214       $button2_2 = qq|
215          <input type=button name=$name_2 id="$trigger_2" value=|
216         . $locale->text('button') . qq|>
217        |;
218
219       #write Trigger
220       $jsscript =
221         Form->write_trigger(\%myconfig, "2", "$name_1", "BR", "$trigger_1",
222                             "$name_2", "BL", "$trigger_2");
223     }
224   } else {
225
226     # without JavaScript Calendar
227     if ($name_1 eq "") {
228       $button1 =
229         qq|<input name=$name_2 id=$id_2 size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">|;
230     } else {
231       $button1 =
232         qq|<input name=$name_1 id=$id_1 size=11 title="$myconfig{dateformat}" value="$value_1" onBlur=\"check_right_date_format(this)\">|;
233       $button2 =
234         qq|<input name=$name_2 id=$id_2 size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">|;
235     }
236   }
237   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
238   $form->header;
239   my $onload = qq|focus()|;
240   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
241   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
242
243
244   $form->header;
245
246   $form->{description} =~ s/\"/&quot;/g;
247
248   print qq|
249 <body onLoad="$onload">
250
251 <form method=post action=$form->{script}>
252
253 <input type=hidden name=accno value=$form->{accno}>
254 <input type=hidden name=description value="$form->{description}">
255 <input type=hidden name=sort value=transdate>
256 <input type=hidden name=eur value=$main::eur>
257 <input type=hidden name=accounttype value=$form->{accounttype}>
258
259 <table border=0 width=100%>
260   <tr>
261     <th class=listtop>$form->{title}</th>
262   </tr>
263
264 </table>
265 <table>
266         <tr>
267           <th align=left><input name=reporttype class=radio type=radio value="custom" checked> |
268       . $locale->text('Customized Report') . qq|</th>
269         </tr>
270         <tr>
271           <th colspan=1>| . $locale->text('Year') . qq|</th>
272           <td><input name=year size=11 title="|
273       . $locale->text('YYYY') . qq|" value="$year"></td>
274         </tr>
275 |;
276
277     print qq|
278         <tr>
279                 <td align=right>
280 <b> | . $locale->text('Yearly') . qq|</b> </td>
281                 <th align=left>| . $locale->text('Quarterly') . qq|</th>
282                 <th align=left colspan=3>| . $locale->text('Monthly') . qq|</th>
283         </tr>
284         <tr>
285                 <td align=right>&nbsp; <input name=duetyp class=radio type=radio value="13"></td>
286                 <td><input name=duetyp class=radio type=radio value="A">&nbsp;1. | . $locale->text('Quarter') . qq|</td>
287                 <td><input name=duetyp class=radio type=radio value="1" "checked">&nbsp;| . $locale->text('January') . qq|</td>
288                 <td><input name=duetyp class=radio type=radio value="5" >&nbsp;| . $locale->text('May') . qq|</td>
289                 <td><input name=duetyp class=radio type=radio value="9" >&nbsp;| . $locale->text('September') . qq|</td>
290
291         </tr>
292         <tr>
293                 <td align= right>&nbsp;</td>
294                 <td><input name=duetyp class=radio type=radio value="B">&nbsp;2. | . $locale->text('Quarter') . qq|</td>
295                 <td><input name=duetyp class=radio type=radio value="2" >&nbsp;| . $locale->text('February') . qq|</td>
296                 <td><input name=duetyp class=radio type=radio value="6" >&nbsp;| . $locale->text('June') . qq|</td>
297                 <td><input name=duetyp class=radio type=radio value="10" >&nbsp;| . $locale->text('October') . qq|</td>
298         </tr>
299         <tr>
300                 <td> &nbsp;</td>
301                 <td><input name=duetyp class=radio type=radio value="C">&nbsp;3. | . $locale->text('Quarter') . qq|</td>
302                 <td><input name=duetyp class=radio type=radio value="3" >&nbsp;| . $locale->text('March') . qq|</td>
303                 <td><input name=duetyp class=radio type=radio value="7" >&nbsp;| . $locale->text('July') . qq|</td>
304                 <td><input name=duetyp class=radio type=radio value="11" >&nbsp;| . $locale->text('November') . qq|</td>
305
306         </tr>
307         <tr>
308                 <td> &nbsp;</td>
309                 <td><input name=duetyp class=radio type=radio value="D">&nbsp;4. | . $locale->text('Quarter') . qq|&nbsp;</td>
310                 <td><input name=duetyp class=radio type=radio value="4" >&nbsp;| . $locale->text('April') . qq|</td>
311                 <td><input name=duetyp class=radio type=radio value="8" >&nbsp;| . $locale->text('August') . qq|</td>
312                 <td><input name=duetyp class=radio type=radio value="12" >&nbsp;| . $locale->text('December') . qq|</td>
313
314         </tr>
315         <tr>
316                    <td colspan=5><hr size=3 noshade></td>
317         </tr>
318         <tr>
319           <th align=left><input name=reporttype class=radio type=radio value="free"> | . $locale->text('Free report period') . qq|</th>
320           <td align=left colspan=4>| . $locale->text('From') . qq|&nbsp;
321               $button1
322               $button1_2&nbsp;
323               | . $locale->text('Bis') . qq|&nbsp;
324               $button2
325               $button2_2
326           </td>
327         </tr>
328         <tr>
329                    <td colspan=5><hr size=3 noshade></td>
330         </tr>
331         <tr>
332           <th align=leftt>| . $locale->text('Method') . qq|</th>
333           <td colspan=3><input name=method class=radio type=radio value=accrual $accrual>| . $locale->text('Accrual') . qq|
334           &nbsp;<input name=method class=radio type=radio value=cash $cash>| . $locale->text('EUR') . qq|</td>
335         </tr>
336         <tr>
337          <th align=right colspan=4>| . $locale->text('Decimalplaces') . qq|</th>
338              <td><input name=decimalplaces size=3 value="2"></td>
339          </tr>
340          <tr>
341             <td><input name="subtotal" class=checkbox type=checkbox value=1> | . $locale->text('Subtotal') . qq|</td>
342          </tr>
343
344 $jsscript
345   <tr><td colspan=5 ><hr size=3 noshade></td></tr>
346 </table>
347
348 <br><input class=submit type=submit name=action value="|
349     . $locale->text('List Transactions') . qq|">
350 </form>
351
352 </body>
353 </html>
354 |;
355
356   $main::lxdebug->leave_sub();
357 }
358
359 sub format_debit_credit {
360   $main::lxdebug->enter_sub();
361
362   my $dc = shift;
363
364   my $form     = $main::form;
365   my %myconfig = %main::myconfig;
366   my $locale   = $main::locale;
367
368   my $formatted_dc  = $form->format_amount(\%myconfig, abs($dc), 2) . ' ';
369   $formatted_dc    .= ($dc > 0) ? $locale->text('Credit (one letter abbreviation)') : $locale->text('Debit (one letter abbreviation)');
370
371   $main::lxdebug->leave_sub();
372
373   return $formatted_dc;
374 }
375
376
377 sub list_transactions {
378   $main::lxdebug->enter_sub();
379
380   my $form     = $main::form;
381   my %myconfig = %main::myconfig;
382   my $locale   = $main::locale;
383
384   $main::auth->assert('report');
385
386   $form->{title} = $locale->text('Account') . " $form->{accno} - $form->{description}";
387
388   if ($form->{reporttype} eq "custom") {
389
390     #forgotten the year --> thisyear
391     if ($form->{year} !~ m/^\d\d\d\d$/) {
392       $locale->date(\%myconfig, $form->current_date(\%myconfig), 0) =~
393         /(\d\d\d\d)/;
394       $form->{year} = $1;
395     }
396
397     #yearly report
398     if ($form->{duetyp} eq "13") {
399       $form->{fromdate} = "1.1.$form->{year}";
400       $form->{todate}   = "31.12.$form->{year}";
401     }
402
403     #Quater reports
404     if ($form->{duetyp} eq "A") {
405       $form->{fromdate} = "1.1.$form->{year}";
406       $form->{todate}   = "31.3.$form->{year}";
407     }
408     if ($form->{duetyp} eq "B") {
409       $form->{fromdate} = "1.4.$form->{year}";
410       $form->{todate}   = "30.6.$form->{year}";
411     }
412     if ($form->{duetyp} eq "C") {
413       $form->{fromdate} = "1.7.$form->{year}";
414       $form->{todate}   = "30.9.$form->{year}";
415     }
416     if ($form->{duetyp} eq "D") {
417       $form->{fromdate} = "1.10.$form->{year}";
418       $form->{todate}   = "31.12.$form->{year}";
419     }
420
421     #Monthly reports
422   SWITCH: {
423       $form->{duetyp} eq "1" && do {
424         $form->{fromdate} = "1.1.$form->{year}";
425         $form->{todate}   = "31.1.$form->{year}";
426         last SWITCH;
427       };
428       $form->{duetyp} eq "2" && do {
429         $form->{fromdate} = "1.2.$form->{year}";
430
431         #this works from 1901 to 2099, 1900 and 2100 fail.
432         my $leap = ($form->{year} % 4 == 0) ? "29" : "28";
433         $form->{todate} = "$leap.2.$form->{year}";
434         last SWITCH;
435       };
436       $form->{duetyp} eq "3" && do {
437         $form->{fromdate} = "1.3.$form->{year}";
438         $form->{todate}   = "31.3.$form->{year}";
439         last SWITCH;
440       };
441       $form->{duetyp} eq "4" && do {
442         $form->{fromdate} = "1.4.$form->{year}";
443         $form->{todate}   = "30.4.$form->{year}";
444         last SWITCH;
445       };
446       $form->{duetyp} eq "5" && do {
447         $form->{fromdate} = "1.5.$form->{year}";
448         $form->{todate}   = "31.5.$form->{year}";
449         last SWITCH;
450       };
451       $form->{duetyp} eq "6" && do {
452         $form->{fromdate} = "1.6.$form->{year}";
453         $form->{todate}   = "30.6.$form->{year}";
454         last SWITCH;
455       };
456       $form->{duetyp} eq "7" && do {
457         $form->{fromdate} = "1.7.$form->{year}";
458         $form->{todate}   = "31.7.$form->{year}";
459         last SWITCH;
460       };
461       $form->{duetyp} eq "8" && do {
462         $form->{fromdate} = "1.8.$form->{year}";
463         $form->{todate}   = "31.8.$form->{year}";
464         last SWITCH;
465       };
466       $form->{duetyp} eq "9" && do {
467         $form->{fromdate} = "1.9.$form->{year}";
468         $form->{todate}   = "30.9.$form->{year}";
469         last SWITCH;
470       };
471       $form->{duetyp} eq "10" && do {
472         $form->{fromdate} = "1.10.$form->{year}";
473         $form->{todate}   = "31.10.$form->{year}";
474         last SWITCH;
475       };
476       $form->{duetyp} eq "11" && do {
477         $form->{fromdate} = "1.11.$form->{year}";
478         $form->{todate}   = "30.11.$form->{year}";
479         last SWITCH;
480       };
481       $form->{duetyp} eq "12" && do {
482         $form->{fromdate} = "1.12.$form->{year}";
483         $form->{todate}   = "31.12.$form->{year}";
484         last SWITCH;
485       };
486     }
487   }
488
489   CA->all_transactions(\%myconfig, \%$form);
490
491   $form->{saldo_old} += $form->{beginning_balance};
492   $form->{saldo_new} += $form->{beginning_balance};
493   my $saldo_old = format_debit_credit($form->{saldo_old});
494   my $eb_string = format_debit_credit($form->{beginning_balance});
495   $form->{balance} = $form->{saldo_old};
496
497   my @options;
498   if ($form->{department}) {
499     my ($department) = split /--/, $form->{department};
500     push @options, $locale->text('Department') . " : $department";
501   }
502   if ($form->{projectnumber}) {
503     push @options, $locale->text('Project Number') . " : $form->{projectnumber}<br>";
504   }
505
506   my $period;
507   if ($form->{fromdate} || $form->{todate}) {
508     my ($fromdate, $todate);
509
510     if ($form->{fromdate}) {
511       $fromdate = $locale->date(\%myconfig, $form->{fromdate}, 1);
512     }
513     if ($form->{todate}) {
514       $todate = $locale->date(\%myconfig, $form->{todate}, 1);
515     }
516
517     $period = "$fromdate - $todate";
518
519   } else {
520     $period = $locale->date(\%myconfig, $form->current_date(\%myconfig), 1);
521   }
522
523   push @options, $period;
524
525   $form->{print_date} = $locale->text('Create Date') . " " . $locale->date(\%myconfig, $form->current_date(\%myconfig), 0);
526   push (@options, $form->{print_date});
527
528   $form->{company} = $locale->text('Company') . " " . $myconfig{company};
529   push (@options, $form->{company});
530
531   my @columns     = qw(transdate reference description gegenkonto debit credit ustkonto ustrate balance);
532   my %column_defs = (
533     'transdate'   => { 'text' => $locale->text('Date'), },
534     'reference'   => { 'text' => $locale->text('Reference'), },
535     'description' => { 'text' => $locale->text('Description'), },
536     'debit'       => { 'text' => $locale->text('Debit'), },
537     'credit'      => { 'text' => $locale->text('Credit'), },
538     'gegenkonto'  => { 'text' => $locale->text('Gegenkonto'), },
539     'ustkonto'    => { 'text' => $locale->text('USt-Konto'), },
540     'balance'     => { 'text' => $locale->text('Balance'), },
541     'ustrate'     => { 'text' => $locale->text('Satz %'), },
542  );
543
544   my @hidden_variables = qw(accno fromdate todate description accounttype l_heading subtotal department projectnumber project_id sort);
545
546   my $link = build_std_url('action=list_transactions', grep { $form->{$_} } @hidden_variables);
547
548   $form->{callback} = $link . '&sort=' . E($form->{sort});
549
550   my %column_alignment = map { $_ => 'right' } qw(debit credit);
551
552   my @custom_headers = ();
553  # Zeile 1:
554  push @custom_headers, [
555    { 'text' => 'Letzte Buchung', },
556    { 'text' => 'EB-Wert', },
557    { 'text' => 'Saldo alt', 'colspan' => 2, },
558    { 'text' => 'Jahresverkehrszahlen alt', 'colspan' => 2, },
559    { 'text' => '', 'colspan' => 2, },
560  ];
561  push @custom_headers, [
562    { 'text' => $form->{last_transaction}, },
563    { 'text' => $eb_string, },
564    { 'text' => $saldo_old, 'colspan' => 2, },
565    { 'text' => $form->format_amount(\%myconfig, abs($form->{old_balance_debit}), 2) . " S", },
566    { 'text' => $form->format_amount(\%myconfig, $form->{old_balance_credit}, 2) . " H", },
567    { 'text' => '', 'colspan' => 2, },
568  ];
569  # Zeile 2:
570  push @custom_headers, [
571    { 'text' => $locale->text('Date'), 'link' => $link . "&sort=transdate", },
572    { 'text' => $locale->text('Reference'), 'link' => $link . "&sort=reference",  },
573    { 'text' => $locale->text('Description'), 'link' => $link . "&sort=description",  },
574    { 'text' => $locale->text('Gegenkonto'), },
575    { 'text' => $locale->text('Debit'), },
576    { 'text' => $locale->text('Credit'), },
577    { 'text' => $locale->text('USt-Konto'), },
578    { 'text' => $locale->text('Satz %'), },
579    { 'text' => $locale->text('Balance'), },
580  ];
581
582
583
584
585
586   my $report = SL::ReportGenerator->new(\%myconfig, $form);
587   $report->set_custom_headers(@custom_headers);
588
589   $report->set_options('top_info_text'         => join("\n", @options),
590                        'output_format'         => 'HTML',
591                        'title'                 => $form->{title},
592                        'attachment_basename'   => $locale->text('list_of_transactions') . strftime('_%Y%m%d', localtime time),
593                        'std_column_visibility' => 1,
594     );
595   $report->set_options_from_form();
596
597   $report->set_columns(%column_defs);
598   $report->set_column_order(@columns);
599
600   $report->set_export_options('list_transactions', @hidden_variables);
601
602   $report->set_sort_indicator($form->{sort}, 1);
603
604   $column_defs{balance}->{visible} = 1;
605
606   my $ml = ($form->{category} =~ /(A|E)/) ? -1 : 1;
607
608
609   my $idx       = 0;
610   my %totals    = ( 'debit' => 0, 'credit' => 0 );
611   my %subtotals = ( 'debit' => 0, 'credit' => 0 );
612   my ($previous_index, $row_set);
613
614   foreach my $ca (@{ $form->{CA} }) {
615
616     foreach (qw(debit credit)) {
617       $subtotals{$_} += $ca->{$_};
618       $totals{$_}    += $ca->{$_};
619       if ($_ =~ /debit.*/) {
620         $ml = -1;
621       } else {
622         $ml = 1;
623       }
624       $form->{balance}= $form->{balance} + $ca->{$_} * $ml;
625       $ca->{$_}       = $form->format_amount(\%myconfig, $ca->{$_}, 2) if ($ca->{$_} != 0);
626     }
627
628     my $do_subtotal = 0;
629     if (($form->{subtotal})
630         && (($idx == scalar @{ $form->{CA} } - 1)
631             || ($ca->{$form->{sort}} ne $form->{CA}->[$idx + 1]->{$form->{sort}}))) {
632       $do_subtotal = 1;
633     }
634
635     my $row = { };
636
637     $ca->{ustrate} = $form->format_amount(\%myconfig, $ca->{ustrate} * 100, 2) if ($ca->{ustrate} != 0);
638
639     if ($ca->{memo} ne "") {
640       $ca->{description} .= " \n " . $ca->{memo};
641     }
642
643
644
645     foreach my $gegenkonto (@{ $ca->{GEGENKONTO} }) {
646       if ($ca->{gegenkonto} eq "") {
647         $ca->{gegenkonto} = $gegenkonto->{accno};
648       } else {
649         $ca->{gegenkonto} .= ", " . $gegenkonto->{accno};
650       }
651     }
652
653     foreach (@columns) {
654       $row->{$_} = {
655         'data'  => $ca->{$_},
656         'align' => $column_alignment{$_},
657       };
658     }
659
660     $row->{balance}->{data}        = $form->format_amount(\%myconfig, $form->{balance}, 2, 'DRCR');
661
662     if ($ca->{index} ne $previous_index) {
663 #       $report->add_data($row_set) if ($row_set);
664
665 #       $row_set         = [ ];
666       $previous_index  = $ca->{index};
667
668       $row->{reference}->{link} = build_std_url("script=$ca->{module}.pl", 'action=edit', 'id=' . E($ca->{id}), 'callback');
669
670     } elsif ($ca->{index} eq $previous_index) {
671       map { $row->{$_}->{data} = '' } qw(reference description);
672       $row->{transdate}->{data} = '' if ($form->{sort} eq 'transdate');
673     }
674
675     my $row_set = [];
676
677     push @{ $row_set }, $row;
678
679     push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, 'listsubtotal') if ($do_subtotal);
680
681
682     $idx++;
683     $report->add_data($row_set);
684
685   }
686
687   $report->add_data($row_set) if ($row_set);
688
689   $report->add_separator();
690
691   my $row = create_subtotal_row(\%totals, \@columns, \%column_alignment, 'listtotal');
692
693
694   $row->{balance}->{data}        = $form->format_amount(\%myconfig, $form->{balance}, 2, 'DRCR');
695
696   $report->add_data($row);
697
698
699   $report->add_separator();
700   $row = {
701      'transdate' => {
702        'data'    => "",
703        'class' => 'listtotal',
704      },
705      'reference' => {
706        'data'    => $locale->text('EB-Wert'),
707        'class' => 'listtotal',
708      },
709      'description'      => {
710        'data'    => $locale->text('Saldo neu'),
711        'colspan' => 2,
712        'class' => 'listtotal',
713      },
714      'debit'      => {
715        'data'    => $locale->text('Jahresverkehrszahlen neu'),
716        'colspan' => 2,
717        'align' => 'left',
718        'class' => 'listtotal',
719     },
720      'ustkonto'      => {
721        'data'    => '',
722        'colspan' => 2,
723        'align' => 'left',
724        'class' => 'listtotal',
725     },
726   };
727
728   $report->add_data($row);
729   my $saldo_new = format_debit_credit($form->{saldo_new});
730   $row = {
731      'transdate' => {
732        'data'    => "",
733        'class' => 'listtotal',
734      },
735      'reference' => {
736        'data'    => $eb_string,
737        'class' => 'listtotal',
738      },
739      'description'      => {
740        'data'    => $saldo_new,
741        'colspan' => 2,
742        'class' => 'listtotal',
743      },
744      'debit'      => {
745        'data'    => $form->format_amount(\%myconfig, abs($form->{current_balance_debit}) , 2) . " S",
746        'class' => 'listtotal',
747      },
748       'credit'      => {
749        'data'    => $form->format_amount(\%myconfig, $form->{current_balance_credit}, 2) . " H",
750        'class' => 'listtotal',
751      },
752       'ustkonto'      => {
753        'data'    => "",
754        'colspan' => 2,
755        'class' => 'listtotal',
756      },
757   };
758
759   $report->add_data($row);
760
761   $report->generate_with_headers();
762
763   $main::lxdebug->leave_sub();
764 }
765
766 sub create_subtotal_row {
767   $main::lxdebug->enter_sub();
768
769   my $form     = $main::form;
770   my %myconfig = %main::myconfig;
771
772   my ($totals, $columns, $column_alignment, $class) = @_;
773
774   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
775
776   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } qw(credit debit);
777
778   map { $totals->{$_} = 0 } qw(debit credit);
779
780   $main::lxdebug->leave_sub();
781
782   return $row;
783 }