da3bfb029fc846e13170d28b6478bbafde39c1c5
[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 ( $::instance_conf->get_accounting_method eq 'cash' ) {
88     # $form->{method} can probably be made redundant now that we have get_accounting_method
89     $form->{method} = "cash";
90   }
91
92   CA->all_accounts(\%myconfig, \%$form);
93
94   my @columns     = qw(accno description debit credit);
95   my %column_defs = (
96     'accno'       => { 'text' => $locale->text('Account'), },
97     'description' => { 'text' => $locale->text('Description'), },
98     'debit'       => { 'text' => $locale->text('Debit'), },
99     'credit'      => { 'text' => $locale->text('Credit'), },
100   );
101
102   my $report = SL::ReportGenerator->new(\%myconfig, $form);
103
104   $report->set_options('output_format'         => 'HTML',
105                        'title'                 => $form->{title},
106                        'attachment_basename'   => $locale->text('chart_of_accounts') . strftime('_%Y%m%d', localtime time),
107                        'std_column_visibility' => 1,
108     );
109   $report->set_options_from_form();
110   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
111
112   $report->set_columns(%column_defs);
113   $report->set_column_order(@columns);
114
115   $report->set_export_options('chart_of_accounts');
116
117   $report->set_sort_indicator($form->{sort}, 1);
118
119   my %totals = ('debit' => 0, 'credit' => 0);
120
121   foreach my $ca (@{ $form->{CA} }) {
122     next unless defined $ca->{amount};
123     my $row = { };
124
125     foreach (qw(debit credit)) {
126       $totals{$_} += $ca->{$_} * 1;
127       $ca->{$_}    = $form->format_amount(\%myconfig, $ca->{$_}, 2) if ($ca->{$_});
128     }
129
130     map { $row->{$_} = { 'data' => $ca->{$_} } } @columns;
131
132     map { $row->{$_}->{align} = 'right'       } qw(debit credit);
133     map { $row->{$_}->{class} = 'listheading' } @columns if ($ca->{charttype} eq "H");
134
135     $row->{accno}->{link} = build_std_url('action=list', 'accno=' . E($ca->{accno}), 'description=' . E($ca->{description}));
136
137     $report->add_data($row);
138   }
139
140   my $row = { map { $_ => { 'class' => 'listtotal', 'align' => 'right' } } @columns };
141   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals{$_}, 2) } qw(debit credit);
142
143   $report->add_separator();
144   $report->add_data($row);
145
146   $report->generate_with_headers();
147
148   $main::lxdebug->leave_sub();
149 }
150
151 sub list {
152   $::lxdebug->enter_sub;
153   $::auth->assert('report');
154
155   $::form->{title} = $::locale->text('List Transactions') . " - " . $::locale->text('Account') . " $::form->{accno}";
156
157   $::form->header;
158   print $::form->parse_html_template('ca/list', {
159     year => DateTime->today->year,
160   });
161
162   $::lxdebug->leave_sub;
163 }
164
165 sub format_debit_credit {
166   $main::lxdebug->enter_sub();
167
168   my $dc = shift;
169
170   my $form     = $main::form;
171   my %myconfig = %main::myconfig;
172   my $locale   = $main::locale;
173
174   my $formatted_dc  = $form->format_amount(\%myconfig, abs($dc), 2) . ' ';
175   $formatted_dc    .= ($dc > 0) ? $locale->text('Credit (one letter abbreviation)') : $locale->text('Debit (one letter abbreviation)');
176
177   $main::lxdebug->leave_sub();
178
179   return $formatted_dc;
180 }
181
182
183 sub list_transactions {
184   $main::lxdebug->enter_sub();
185
186   my $form     = $main::form;
187   my %myconfig = %main::myconfig;
188   my $locale   = $main::locale;
189
190   $main::auth->assert('report');
191
192   $form->{title} = $locale->text('Account') . " $form->{accno} - $form->{description}";
193
194   if ($form->{reporttype} eq "custom") {
195
196     #forgotten the year --> thisyear
197     if ($form->{year} !~ m/^\d\d\d\d$/) {
198       $locale->date(\%myconfig, $form->current_date(\%myconfig), 0) =~
199         /(\d\d\d\d)/;
200       $form->{year} = $1;
201     }
202
203     #yearly report
204     if ($form->{duetyp} eq "13") {
205       $form->{fromdate} = "1.1.$form->{year}";
206       $form->{todate}   = "31.12.$form->{year}";
207     }
208
209     #Quater reports
210     if ($form->{duetyp} eq "A") {
211       $form->{fromdate} = "1.1.$form->{year}";
212       $form->{todate}   = "31.3.$form->{year}";
213     }
214     if ($form->{duetyp} eq "B") {
215       $form->{fromdate} = "1.4.$form->{year}";
216       $form->{todate}   = "30.6.$form->{year}";
217     }
218     if ($form->{duetyp} eq "C") {
219       $form->{fromdate} = "1.7.$form->{year}";
220       $form->{todate}   = "30.9.$form->{year}";
221     }
222     if ($form->{duetyp} eq "D") {
223       $form->{fromdate} = "1.10.$form->{year}";
224       $form->{todate}   = "31.12.$form->{year}";
225     }
226
227     #Monthly reports
228   SWITCH: {
229       $form->{duetyp} eq "1" && do {
230         $form->{fromdate} = "1.1.$form->{year}";
231         $form->{todate}   = "31.1.$form->{year}";
232         last SWITCH;
233       };
234       $form->{duetyp} eq "2" && do {
235         $form->{fromdate} = "1.2.$form->{year}";
236
237         #this works from 1901 to 2099, 1900 and 2100 fail.
238         my $leap = ($form->{year} % 4 == 0) ? "29" : "28";
239         $form->{todate} = "$leap.2.$form->{year}";
240         last SWITCH;
241       };
242       $form->{duetyp} eq "3" && do {
243         $form->{fromdate} = "1.3.$form->{year}";
244         $form->{todate}   = "31.3.$form->{year}";
245         last SWITCH;
246       };
247       $form->{duetyp} eq "4" && do {
248         $form->{fromdate} = "1.4.$form->{year}";
249         $form->{todate}   = "30.4.$form->{year}";
250         last SWITCH;
251       };
252       $form->{duetyp} eq "5" && do {
253         $form->{fromdate} = "1.5.$form->{year}";
254         $form->{todate}   = "31.5.$form->{year}";
255         last SWITCH;
256       };
257       $form->{duetyp} eq "6" && do {
258         $form->{fromdate} = "1.6.$form->{year}";
259         $form->{todate}   = "30.6.$form->{year}";
260         last SWITCH;
261       };
262       $form->{duetyp} eq "7" && do {
263         $form->{fromdate} = "1.7.$form->{year}";
264         $form->{todate}   = "31.7.$form->{year}";
265         last SWITCH;
266       };
267       $form->{duetyp} eq "8" && do {
268         $form->{fromdate} = "1.8.$form->{year}";
269         $form->{todate}   = "31.8.$form->{year}";
270         last SWITCH;
271       };
272       $form->{duetyp} eq "9" && do {
273         $form->{fromdate} = "1.9.$form->{year}";
274         $form->{todate}   = "30.9.$form->{year}";
275         last SWITCH;
276       };
277       $form->{duetyp} eq "10" && do {
278         $form->{fromdate} = "1.10.$form->{year}";
279         $form->{todate}   = "31.10.$form->{year}";
280         last SWITCH;
281       };
282       $form->{duetyp} eq "11" && do {
283         $form->{fromdate} = "1.11.$form->{year}";
284         $form->{todate}   = "30.11.$form->{year}";
285         last SWITCH;
286       };
287       $form->{duetyp} eq "12" && do {
288         $form->{fromdate} = "1.12.$form->{year}";
289         $form->{todate}   = "31.12.$form->{year}";
290         last SWITCH;
291       };
292     }
293   }
294
295   CA->all_transactions(\%myconfig, \%$form);
296
297   $form->{saldo_old} += $form->{beginning_balance};
298   $form->{saldo_new} += $form->{beginning_balance};
299   my $saldo_old = format_debit_credit($form->{saldo_old});
300   my $eb_string = format_debit_credit($form->{beginning_balance});
301   $form->{balance} = $form->{saldo_old};
302
303   my @options;
304   if ($form->{department}) {
305     my ($department) = split /--/, $form->{department};
306     push @options, $locale->text('Department') . " : $department";
307   }
308   if ($form->{projectnumber}) {
309     push @options, $locale->text('Project Number') . " : $form->{projectnumber}<br>";
310   }
311
312   my $period;
313   if ($form->{fromdate} || $form->{todate}) {
314     my ($fromdate, $todate);
315
316     if ($form->{fromdate}) {
317       $fromdate = $locale->date(\%myconfig, $form->{fromdate}, 1);
318     }
319     if ($form->{todate}) {
320       $todate = $locale->date(\%myconfig, $form->{todate}, 1);
321     }
322
323     $period = "$fromdate - $todate";
324
325   } else {
326     $period = $locale->date(\%myconfig, $form->current_date(\%myconfig), 1);
327   }
328
329   push @options, $period;
330
331   $form->{print_date} = $locale->text('Create Date') . " " . $locale->date(\%myconfig, $form->current_date(\%myconfig), 0);
332   push (@options, $form->{print_date});
333
334   $form->{company} = $locale->text('Company') . " " . $myconfig{company};
335   push (@options, $form->{company});
336
337   my @columns     = qw(transdate reference description gegenkonto debit credit ustkonto ustrate balance);
338   my %column_defs = (
339     'transdate'   => { 'text' => $locale->text('Date'), },
340     'reference'   => { 'text' => $locale->text('Reference'), },
341     'description' => { 'text' => $locale->text('Description'), },
342     'debit'       => { 'text' => $locale->text('Debit'), },
343     'credit'      => { 'text' => $locale->text('Credit'), },
344     'gegenkonto'  => { 'text' => $locale->text('Gegenkonto'), },
345     'ustkonto'    => { 'text' => $locale->text('USt-Konto'), },
346     'balance'     => { 'text' => $locale->text('Balance'), },
347     'ustrate'     => { 'text' => $locale->text('Satz %'), },
348  );
349
350   my @hidden_variables = qw(accno fromdate todate description accounttype l_heading subtotal department projectnumber project_id sort method);
351
352   my $link = build_std_url('action=list_transactions', grep { $form->{$_} } @hidden_variables);
353
354   $form->{callback} = $link . '&sort=' . E($form->{sort});
355
356   my %column_alignment = map { $_ => 'right' } qw(debit credit balance);
357
358   my @custom_headers = ();
359  # Zeile 1:
360  push @custom_headers, [
361    { 'text' => 'Letzte Buchung', },
362    { 'text' => 'EB-Wert', },
363    { 'text' => 'Saldo alt', 'colspan' => 2, },
364    { 'text' => 'Jahresverkehrszahlen alt', 'colspan' => 2, },
365    { 'text' => '', 'colspan' => 2, },
366  ];
367  push @custom_headers, [
368    { 'text' => $form->{last_transaction}, },
369    { 'text' => $eb_string, },
370    { 'text' => $saldo_old, 'colspan' => 2, },
371    { 'text' => $form->format_amount(\%myconfig, abs($form->{old_balance_debit}), 2) . " S", },
372    { 'text' => $form->format_amount(\%myconfig, $form->{old_balance_credit}, 2) . " H", },
373    { 'text' => '', 'colspan' => 2, },
374  ];
375  # Zeile 2:
376  push @custom_headers, [
377    { 'text' => $locale->text('Date'), 'link' => $link . "&sort=transdate", },
378    { 'text' => $locale->text('Reference'), 'link' => $link . "&sort=reference",  },
379    { 'text' => $locale->text('Description'), 'link' => $link . "&sort=description",  },
380    { 'text' => $locale->text('Gegenkonto'), },
381    { 'text' => $locale->text('Debit'), },
382    { 'text' => $locale->text('Credit'), },
383    { 'text' => $locale->text('USt-Konto'), },
384    { 'text' => $locale->text('Satz %'), },
385    { 'text' => $locale->text('Balance'), },
386  ];
387
388
389
390
391
392   my $report = SL::ReportGenerator->new(\%myconfig, $form);
393   $report->set_custom_headers(@custom_headers);
394
395   $report->set_options('top_info_text'         => join("\n", @options),
396                        'output_format'         => 'HTML',
397                        'title'                 => $form->{title},
398                        'attachment_basename'   => $locale->text('list_of_transactions') . strftime('_%Y%m%d', localtime time),
399                        'std_column_visibility' => 1,
400     );
401   $report->set_options_from_form();
402   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
403
404   $report->set_columns(%column_defs);
405   $report->set_column_order(@columns);
406
407   $report->set_export_options('list_transactions', @hidden_variables);
408
409   $report->set_sort_indicator($form->{sort}, 1);
410
411   $column_defs{balance}->{visible} = 1;
412
413   my $ml = ($form->{category} =~ /(A|E)/) ? -1 : 1;
414
415
416   my $idx       = 0;
417   my %totals    = ( 'debit' => 0, 'credit' => 0 );
418   my %subtotals = ( 'debit' => 0, 'credit' => 0 );
419   my ($previous_index, $row_set);
420
421   foreach my $ca (@{ $form->{CA} }) {
422
423     foreach (qw(debit credit)) {
424       $subtotals{$_} += $ca->{$_};
425       $totals{$_}    += $ca->{$_};
426       if ($_ =~ /debit.*/) {
427         $ml = -1;
428       } else {
429         $ml = 1;
430       }
431       $form->{balance}= $form->{balance} + $ca->{$_} * $ml;
432       $ca->{$_}       = $form->format_amount(\%myconfig, $ca->{$_}, 2) if ($ca->{$_} != 0);
433     }
434
435     my $do_subtotal = 0;
436     if (($form->{subtotal})
437         && (($idx == scalar @{ $form->{CA} } - 1)
438             || ($ca->{$form->{sort}} ne $form->{CA}->[$idx + 1]->{$form->{sort}}))) {
439       $do_subtotal = 1;
440     }
441
442     my $row = { };
443
444     $ca->{ustrate} = $form->format_amount(\%myconfig, $ca->{ustrate} * 100, 2) if ($ca->{ustrate} != 0);
445
446     if ($ca->{memo} ne "") {
447       $ca->{description} .= " \n " . $ca->{memo};
448     }
449
450
451
452     foreach my $gegenkonto (@{ $ca->{GEGENKONTO} }) {
453       if ($ca->{gegenkonto} eq "") {
454         $ca->{gegenkonto} = $gegenkonto->{accno};
455       } else {
456         $ca->{gegenkonto} .= ", " . $gegenkonto->{accno};
457       }
458     }
459
460     foreach (@columns) {
461       $row->{$_} = {
462         'data'  => $ca->{$_},
463         'align' => $column_alignment{$_},
464       };
465     }
466
467     $row->{balance}->{data}        = $form->format_amount(\%myconfig, $form->{balance}, 2, 'DRCR');
468
469     if ($ca->{index} ne $previous_index) {
470 #       $report->add_data($row_set) if ($row_set);
471
472 #       $row_set         = [ ];
473       $previous_index  = $ca->{index};
474
475       $row->{reference}->{link} = build_std_url("script=$ca->{module}.pl", 'action=edit', 'id=' . E($ca->{id}), 'callback');
476
477     } elsif ($ca->{index} eq $previous_index) {
478       map { $row->{$_}->{data} = '' } qw(reference description);
479       $row->{transdate}->{data} = '' if ($form->{sort} eq 'transdate');
480     }
481
482     my $row_set = [];
483
484     push @{ $row_set }, $row;
485
486     push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, 'listsubtotal') if ($do_subtotal);
487
488
489     $idx++;
490     $report->add_data($row_set);
491
492   }
493
494   $report->add_data($row_set) if ($row_set);
495
496   $report->add_separator();
497
498   my $row = create_subtotal_row(\%totals, \@columns, \%column_alignment, 'listtotal');
499
500
501   $row->{balance}->{data}        = $form->format_amount(\%myconfig, $form->{balance}, 2, 'DRCR');
502
503   $report->add_data($row);
504
505
506   $report->add_separator();
507   $row = {
508      'transdate' => {
509        'data'    => "",
510        'class' => 'listtotal',
511      },
512      'reference' => {
513        'data'    => $locale->text('EB-Wert'),
514        'class' => 'listtotal',
515      },
516      'description'      => {
517        'data'    => $locale->text('Saldo neu'),
518        'colspan' => 2,
519        'class' => 'listtotal',
520      },
521      'debit'      => {
522        'data'    => $locale->text('Jahresverkehrszahlen neu'),
523        'colspan' => 2,
524        'align' => 'left',
525        'class' => 'listtotal',
526     },
527      'ustkonto'      => {
528        'data'    => '',
529        'colspan' => 2,
530        'align' => 'left',
531        'class' => 'listtotal',
532     },
533   };
534
535   $report->add_data($row);
536   my $saldo_new = format_debit_credit($form->{saldo_new});
537   $row = {
538      'transdate' => {
539        'data'    => "",
540        'class' => 'listtotal',
541      },
542      'reference' => {
543        'data'    => $eb_string,
544        'class' => 'listtotal',
545      },
546      'description'      => {
547        'data'    => $saldo_new,
548        'colspan' => 2,
549        'class' => 'listtotal',
550      },
551      'debit'      => {
552        'data'    => $form->format_amount(\%myconfig, abs($form->{current_balance_debit}) , 2) . " S",
553        'class' => 'listtotal',
554      },
555       'credit'      => {
556        'data'    => $form->format_amount(\%myconfig, $form->{current_balance_credit}, 2) . " H",
557        'class' => 'listtotal',
558      },
559       'ustkonto'      => {
560        'data'    => "",
561        'colspan' => 2,
562        'class' => 'listtotal',
563      },
564   };
565
566   $report->add_data($row);
567
568   $report->generate_with_headers();
569
570   $main::lxdebug->leave_sub();
571 }
572
573 sub create_subtotal_row {
574   $main::lxdebug->enter_sub();
575
576   my $form     = $main::form;
577   my %myconfig = %main::myconfig;
578
579   my ($totals, $columns, $column_alignment, $class) = @_;
580
581   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
582
583   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } qw(credit debit);
584
585   map { $totals->{$_} = 0 } qw(debit credit);
586
587   $main::lxdebug->leave_sub();
588
589   return $row;
590 }