Vorgangsbezeichnung in Dialogbuchungs-Vorlage: Speichern und Laden
[kivitendo-erp.git] / bin / mozilla / gl.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) 1998-2002
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., 51 Franklin Street, Fifth Floor, Boston,
28 # MA 02110-1335, USA.
29 #======================================================================
30 #
31 # Genereal Ledger
32 #
33 #======================================================================
34
35 use utf8;
36 use strict;
37
38 use POSIX qw(strftime);
39 use List::Util qw(first sum);
40
41 use SL::DB::ApGl;
42 use SL::DB::RecordTemplate;
43 use SL::DB::BankTransactionAccTrans;
44 use SL::DB::Tax;
45 use SL::FU;
46 use SL::GL;
47 use SL::Helper::Flash qw(flash flash_later);
48 use SL::IS;
49 use SL::ReportGenerator;
50 use SL::DBUtils qw(selectrow_query selectall_hashref_query);
51 use SL::Webdav;
52 use SL::Locale::String qw(t8);
53 use SL::Helper::GlAttachments qw(count_gl_attachments);
54 use SL::Presenter::Tag;
55 use SL::Presenter::Chart;
56 require "bin/mozilla/common.pl";
57 require "bin/mozilla/reportgenerator.pl";
58
59 # this is for our long dates
60 # $locale->text('January')
61 # $locale->text('February')
62 # $locale->text('March')
63 # $locale->text('April')
64 # $locale->text('May ')
65 # $locale->text('June')
66 # $locale->text('July')
67 # $locale->text('August')
68 # $locale->text('September')
69 # $locale->text('October')
70 # $locale->text('November')
71 # $locale->text('December')
72
73 # this is for our short month
74 # $locale->text('Jan')
75 # $locale->text('Feb')
76 # $locale->text('Mar')
77 # $locale->text('Apr')
78 # $locale->text('May')
79 # $locale->text('Jun')
80 # $locale->text('Jul')
81 # $locale->text('Aug')
82 # $locale->text('Sep')
83 # $locale->text('Oct')
84 # $locale->text('Nov')
85 # $locale->text('Dec')
86
87 sub load_record_template {
88   $::auth->assert('gl_transactions');
89
90   # Load existing template and verify that its one for this module.
91   my $template = SL::DB::RecordTemplate
92     ->new(id => $::form->{id})
93     ->load(
94       with_object => [ qw(customer payment currency record_items record_items.chart) ],
95     );
96
97   die "invalid template type" unless $template->template_type eq 'gl_transaction';
98
99   $template->substitute_variables;
100   my $payment_suggestion =  $::form->{form_defaults}->{amount_1};
101
102   # Clean the current $::form before rebuilding it from the template.
103   my $form_defaults = delete $::form->{form_defaults};
104   delete @{ $::form }{ grep { !m{^(?:script|login)$}i } keys %{ $::form } };
105
106   my $dummy_form = {};
107   GL->transaction(\%::myconfig, $dummy_form);
108
109   # Fill $::form from the template.
110   my $today                   = DateTime->today_local;
111   $::form->{title}            = "Add";
112   $::form->{transdate}        = $today->to_kivitendo;
113   $::form->{duedate}          = $today->to_kivitendo;
114   $::form->{rowcount}         = @{ $template->items };
115   $::form->{paidaccounts}     = 1;
116   $::form->{$_}               = $template->$_     for qw(department_id taxincluded ob_transaction cb_transaction reference description show_details transaction_description);
117   $::form->{$_}               = $dummy_form->{$_} for qw(closedto revtrans previous_id previous_gldate);
118
119   my $row = 0;
120   foreach my $item (@{ $template->items }) {
121     $row++;
122
123     my $active_taxkey = $item->chart->get_active_taxkey;
124     my $taxes         = SL::DB::Manager::Tax->get_all(
125       where   => [ chart_categories => { like => '%' . $item->chart->category . '%' }],
126       sort_by => 'taxkey, rate',
127     );
128
129     my $tax   = first { $item->tax_id          == $_->id } @{ $taxes };
130     $tax    //= first { $active_taxkey->tax_id == $_->id } @{ $taxes };
131     $tax    //= $taxes->[0];
132
133     if (!$tax) {
134       $row--;
135       next;
136     }
137
138     $::form->{"accno_id_${row}"}          = $item->chart_id;
139     $::form->{"previous_accno_id_${row}"} = $item->chart_id;
140     $::form->{"debit_${row}"}             = $::form->format_amount(\%::myconfig, ($payment_suggestion ? $payment_suggestion : $item->amount1), 2) if $item->amount1 * 1;
141     $::form->{"credit_${row}"}            = $::form->format_amount(\%::myconfig, ($payment_suggestion ? $payment_suggestion : $item->amount2), 2) if $item->amount2 * 1;
142     $::form->{"taxchart_${row}"}          = $item->tax_id . '--' . $tax->rate;
143     $::form->{"${_}_${row}"}              = $item->$_ for qw(source memo project_id);
144   }
145
146   $::form->{$_} = $form_defaults->{$_} for keys %{ $form_defaults // {} };
147
148   flash('info', $::locale->text("The record template '#1' has been loaded.", $template->template_name));
149
150   update(
151     keep_rows_without_amount => 1,
152     dont_add_new_row         => 1,
153   );
154 }
155
156 sub save_record_template {
157   $::auth->assert('gl_transactions');
158
159   my $template = $::form->{record_template_id} ? SL::DB::RecordTemplate->new(id => $::form->{record_template_id})->load : SL::DB::RecordTemplate->new;
160   my $js       = SL::ClientJS->new(controller => SL::Controller::Base->new);
161   my $new_name = $template->template_name_to_use($::form->{record_template_new_template_name});
162   $js->dialog->close('#record_template_dialog');
163
164
165   # bank transactions need amounts for assignment
166   my $can_save = 0;
167   $can_save    = 1 if ($::form->{credit_1} > 0 && $::form->{debit_2} > 0 && $::form->{credit_2} == 0 && $::form->{debit_1} == 0);
168   $can_save    = 1 if ($::form->{credit_2} > 0 && $::form->{debit_1} > 0 && $::form->{credit_1} == 0 && $::form->{debit_2} == 0);
169   return $js->flash('error', t8('Can only save template if amounts,i.e. 1 for debit and credit are set.'))->render unless $can_save;
170
171   my @items = grep {
172     $_->{chart_id} && (($_->{tax_id} // '') ne '')
173   } map {
174     +{ chart_id   => $::form->{"accno_id_${_}"},
175        amount1    => $::form->parse_amount(\%::myconfig, $::form->{"debit_${_}"}),
176        amount2    => $::form->parse_amount(\%::myconfig, $::form->{"credit_${_}"}),
177        tax_id     => (split m{--}, $::form->{"taxchart_${_}"})[0],
178        project_id => $::form->{"project_id_${_}"} || undef,
179        source     => $::form->{"source_${_}"},
180        memo       => $::form->{"memo_${_}"},
181      }
182   } (1..($::form->{rowcount} || 1));
183
184   $template->assign_attributes(
185     template_type  => 'gl_transaction',
186     template_name  => $new_name,
187
188     currency_id    => $::instance_conf->get_currency_id,
189     department_id  => $::form->{department_id}    || undef,
190     project_id     => $::form->{globalproject_id} || undef,
191     taxincluded    => $::form->{taxincluded}     ? 1 : 0,
192     ob_transaction => $::form->{ob_transaction}  ? 1 : 0,
193     cb_transaction => $::form->{cb_transaction}  ? 1 : 0,
194     reference      => $::form->{reference},
195     description    => $::form->{description},
196     show_details   => $::form->{show_details},
197     transaction_description => $::form->{transaction_description},
198
199     items          => \@items,
200   );
201
202   eval {
203     $template->save;
204     1;
205   } or do {
206     return $js
207       ->flash('error', $::locale->text("Saving the record template '#1' failed.", $new_name))
208       ->render;
209   };
210
211   return $js
212     ->flash('info', $::locale->text("The record template '#1' has been saved.", $new_name))
213     ->render;
214 }
215
216 sub add {
217   $main::lxdebug->enter_sub();
218
219   $main::auth->assert('gl_transactions');
220
221   my $form     = $main::form;
222   my %myconfig = %main::myconfig;
223
224   $form->{title} = "Add";
225
226   $form->{callback} = "gl.pl?action=add" unless $form->{callback};
227
228   # we use this only to set a default date
229   # yep. aber er holt hier auch schon ALL_CHARTS. Aufwand / Nutzen? jb
230   GL->transaction(\%myconfig, \%$form);
231
232   $form->{rowcount}  = 2;
233
234   $form->{debit}  = 0;
235   $form->{credit} = 0;
236   $form->{tax}    = 0;
237
238   $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
239
240   $form->{show_details} = $myconfig{show_form_details} unless defined $form->{show_details};
241
242   &display_form(1);
243   $main::lxdebug->leave_sub();
244
245 }
246
247 sub prepare_transaction {
248   $main::lxdebug->enter_sub();
249
250   $main::auth->assert('gl_transactions');
251
252   my $form     = $main::form;
253   my %myconfig = %main::myconfig;
254
255   GL->transaction(\%myconfig, \%$form);
256
257   $form->{amount} = $form->format_amount(\%myconfig, $form->{amount}, 2);
258
259   $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
260
261   my $i        = 1;
262   my $tax      = 0;
263   my $taxaccno = "";
264   foreach my $ref (@{ $form->{GL} }) {
265     my $j = $i - 1;
266     if ($tax && ($ref->{accno} eq $taxaccno)) {
267       $form->{"tax_$j"}      = abs($ref->{amount});
268       $form->{"taxchart_$j"} = $ref->{id} . "--" . $ref->{taxrate};
269       if ($form->{taxincluded}) {
270         if ($ref->{amount} < 0) {
271           $form->{"debit_$j"} += $form->{"tax_$j"};
272         } else {
273           $form->{"credit_$j"} += $form->{"tax_$j"};
274         }
275       }
276       $form->{"project_id_$j"} = $ref->{project_id};
277
278     } else {
279       $form->{"accno_id_$i"} = $ref->{chart_id};
280       for (qw(fx_transaction source memo)) { $form->{"${_}_$i"} = $ref->{$_} }
281       if ($ref->{amount} < 0) {
282         $form->{totaldebit} -= $ref->{amount};
283         $form->{"debit_$i"} = $ref->{amount} * -1;
284       } else {
285         $form->{totalcredit} += $ref->{amount};
286         $form->{"credit_$i"} = $ref->{amount};
287       }
288       $form->{"taxchart_$i"} = $ref->{id}."--0.00000";
289       $form->{"project_id_$i"} = $ref->{project_id};
290       $i++;
291     }
292     if ($ref->{taxaccno} && !$tax) {
293       $taxaccno = $ref->{taxaccno};
294       $tax      = 1;
295     } else {
296       $taxaccno = "";
297       $tax      = 0;
298     }
299   }
300
301   $form->{rowcount} = $i;
302   $form->{locked}   =
303     ($form->datetonum($form->{transdate}, \%myconfig) <=
304      $form->datetonum($form->{closedto}, \%myconfig));
305
306   $main::lxdebug->leave_sub();
307 }
308
309 sub edit {
310   $main::lxdebug->enter_sub();
311
312   $main::auth->assert('gl_transactions');
313
314   my $form     = $main::form;
315   my %myconfig = %main::myconfig;
316
317   prepare_transaction();
318
319   $form->{title} = "Edit";
320
321   $form->{show_details} = $myconfig{show_form_details} unless defined $form->{show_details};
322
323   if ($form->{id} && $::instance_conf->get_webdav) {
324     my $webdav = SL::Webdav->new(
325       type     => 'general_ledger',
326       number   => $form->{id},
327     );
328     my @all_objects = $webdav->get_all_objects;
329     @{ $form->{WEBDAV} } = map { { name => $_->filename,
330                                    type => t8('File'),
331                                    link => File::Spec->catfile($_->full_filedescriptor),
332                                } } @all_objects;
333   }
334   form_header();
335   display_rows();
336   form_footer();
337
338   $main::lxdebug->leave_sub();
339 }
340
341
342 sub search {
343   $::lxdebug->enter_sub;
344   $::auth->assert('general_ledger | gl_transactions');
345
346   $::form->get_lists(
347     projects  => { key => "ALL_PROJECTS", all => 1 },
348   );
349   $::form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
350   $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
351
352   setup_gl_search_action_bar();
353
354   $::form->header;
355   print $::form->parse_html_template('gl/search', {
356     employee_label => sub { "$_[0]{id}--$_[0]{name}" },
357   });
358
359   $::lxdebug->leave_sub;
360 }
361
362 sub create_subtotal_row {
363   $main::lxdebug->enter_sub();
364
365   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
366
367   my $form     = $main::form;
368   my %myconfig = %main::myconfig;
369
370   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
371
372   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
373
374   map { $totals->{$_} = 0 } @{ $subtotal_columns };
375
376   $main::lxdebug->leave_sub();
377
378   return $row;
379 }
380
381 sub generate_report {
382   $main::lxdebug->enter_sub();
383
384   $main::auth->assert('general_ledger | gl_transactions');
385
386   my $form     = $main::form;
387   my %myconfig = %main::myconfig;
388   my $locale   = $main::locale;
389
390   # generate_report wird beim ersten Aufruf per Weiter-Knopf und POST mit der hidden Variablen sort mit Wert "datesort" (früher "transdate" als Defaultsortiervariable) Ã¼bertragen
391
392   # <form method=post action=gl.pl>
393   # <input type=hidden name=sort value=datesort>    # form->{sort} setzen
394   # <input type=hidden name=nextsub value=generate_report>
395
396   # anhand von neuer Variable datesort wird jetzt $form->{sort} auf transdate oder gldate gesetzt
397   # damit ist die Hidden Variable "sort" wahrscheinlich sogar Ã¼berflüssig
398
399   # Ã¤ndert man die Sortierreihenfolge per Klick auf eine der Ãœberschriften wird die Variable "sort" per GET Ã¼bergeben, z.B. id,transdate, gldate, ...
400   # gl.pl?action=generate_report&employee=18383--Jan%20B%c3%bcren&datesort=transdate&category=X&l_transdate=Y&l_gldate=Y&l_id=Y&l_reference=Y&l_description=Y&l_source=Y&l_debit=Y&l_credit=Y&sort=gldate&sortdir=0
401
402   if ( $form->{sort} eq 'datesort' ) {   # sollte bei einem Post (Aufruf aus Suchmaske) immer wahr sein
403       # je nachdem ob in Suchmaske "transdate" oder "gldate" ausgesucht wurde erstes Suchergebnis entsprechend sortieren
404       $form->{sort} = $form->{datesort};
405   };
406
407   # was passiert hier?
408   report_generator_set_default_sort("$form->{datesort}", 1);
409 #  report_generator_set_default_sort('transdate', 1);
410
411   GL->all_transactions(\%myconfig, \%$form);
412
413   my %acctype = ('A' => $locale->text('Asset'),
414                  'C' => $locale->text('Contra'),
415                  'L' => $locale->text('Liability'),
416                  'Q' => $locale->text('Equity'),
417                  'I' => $locale->text('Revenue'),
418                  'E' => $locale->text('Expense'),);
419
420   $form->{title} = $locale->text('Journal');
421   if ($form->{category} ne 'X') {
422     $form->{title} .= " : " . $locale->text($acctype{ $form->{category} });
423   }
424
425   $form->{landscape} = 1;
426
427   my $ml = ($form->{ml} =~ /(A|E|Q)/) ? -1 : 1;
428
429   my @columns = qw(
430     transdate      gldate   id      reference      description
431     notes          source   doccnt  debit          debit_accno
432     credit         credit_accno     debit_tax      debit_tax_accno
433     credit_tax     credit_tax_accno balance        projectnumbers
434     department     employee
435   );
436
437   # add employee here, so that variable is still known and passed in url when choosing a different sort order in resulting table
438   my @hidden_variables = qw(accno source reference description notes project_id datefrom dateto employee_id datesort category l_subtotal department_id);
439   push @hidden_variables, map { "l_${_}" } @columns;
440
441   my $employee = $form->{employee_id} ? SL::DB::Employee->new(id => $form->{employee_id})->load->name : '';
442
443   my (@options, @date_options);
444   push @options,      $locale->text('Account')     . " : $form->{accno} $form->{account_description}" if ($form->{accno});
445   push @options,      $locale->text('Source')      . " : $form->{source}"                             if ($form->{source});
446   push @options,      $locale->text('Reference')   . " : $form->{reference}"                          if ($form->{reference});
447   push @options,      $locale->text('Description') . " : $form->{description}"                        if ($form->{description});
448   push @options,      $locale->text('Notes')       . " : $form->{notes}"                              if ($form->{notes});
449   push @options,      $locale->text('Employee')    . " : $employee"                                   if $employee;
450   my $datesorttext = $form->{datesort} eq 'transdate' ? $locale->text('Transdate') :  $locale->text('Gldate');
451   push @date_options,      "$datesorttext"                              if ($form->{datesort} and ($form->{datefrom} or $form->{dateto}));
452   push @date_options, $locale->text('From'), $locale->date(\%myconfig, $form->{datefrom}, 1)          if ($form->{datefrom});
453   push @date_options, $locale->text('Bis'),  $locale->date(\%myconfig, $form->{dateto},   1)          if ($form->{dateto});
454   push @options,      join(' ', @date_options)                                                        if (scalar @date_options);
455
456   if ($form->{department_id}) {
457     my $department = SL::DB::Manager::Department->find_by( id => $form->{department_id} );
458     push @options, $locale->text('Department') . " : " . $department->description;
459   }
460
461   my $callback = build_std_url('action=generate_report', grep { $form->{$_} } @hidden_variables);
462
463   $form->{l_credit_accno}     = 'Y';
464   $form->{l_debit_accno}      = 'Y';
465   $form->{l_credit_tax}       = 'Y';
466   $form->{l_debit_tax}        = 'Y';
467 #  $form->{l_gldate}           = 'Y';  # Spalte mit gldate immer anzeigen
468   $form->{l_credit_tax_accno} = 'Y';
469   $form->{l_datesort} = 'Y';
470   $form->{l_debit_tax_accno}  = 'Y';
471   $form->{l_balance}          = $form->{accno} ? 'Y' : '';
472   $form->{l_doccnt}           = $form->{l_source} ? 'Y' : '';
473
474   my %column_defs = (
475     'id'               => { 'text' => $locale->text('ID'), },
476     'transdate'        => { 'text' => $locale->text('Transdate'), },
477     'gldate'           => { 'text' => $locale->text('Gldate'), },
478     'reference'        => { 'text' => $locale->text('Reference'), },
479     'source'           => { 'text' => $locale->text('Source'), },
480     'doccnt'           => { 'text' => $locale->text('Document Count'), },
481     'description'      => { 'text' => $locale->text('Description'), },
482     'notes'            => { 'text' => $locale->text('Notes'), },
483     'debit'            => { 'text' => $locale->text('Debit'), },
484     'debit_accno'      => { 'text' => $locale->text('Debit Account'), },
485     'credit'           => { 'text' => $locale->text('Credit'), },
486     'credit_accno'     => { 'text' => $locale->text('Credit Account'), },
487     'debit_tax'        => { 'text' => $locale->text('Debit Tax'), },
488     'debit_tax_accno'  => { 'text' => $locale->text('Debit Tax Account'), },
489     'credit_tax'       => { 'text' => $locale->text('Credit Tax'), },
490     'credit_tax_accno' => { 'text' => $locale->text('Credit Tax Account'), },
491     'balance'          => { 'text' => $locale->text('Balance'), },
492     'projectnumbers'   => { 'text' => $locale->text('Project Numbers'), },
493     'department'       => { 'text' => $locale->text('Department'), },
494     'employee'         => { 'text' => $locale->text('Employee'), },
495   );
496
497   foreach my $name (qw(id transdate gldate reference description debit_accno credit_accno debit_tax_accno credit_tax_accno department)) {
498     my $sortname                = $name =~ m/accno/ ? 'accno' : $name;
499     my $sortdir                 = $sortname eq $form->{sort} ? 1 - $form->{sortdir} : $form->{sortdir};
500     $column_defs{$name}->{link} = $callback . "&sort=$sortname&sortdir=$sortdir";
501   }
502
503   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
504   map { $column_defs{$_}->{visible} = 0 } qw(debit_accno credit_accno debit_tax_accno credit_tax_accno) if $form->{accno};
505
506   my %column_alignment;
507   map { $column_alignment{$_}     = 'right'  } qw(balance id debit credit debit_tax credit_tax balance);
508   map { $column_alignment{$_}     = 'center' } qw(transdate gldate reference debit_accno credit_accno debit_tax_accno credit_tax_accno);
509   map { $column_alignment{$_}     = 'left' } qw(description source notes);
510   map { $column_defs{$_}->{align} = $column_alignment{$_} } keys %column_alignment;
511
512   my $report = SL::ReportGenerator->new(\%myconfig, $form);
513
514   $report->set_columns(%column_defs);
515   $report->set_column_order(@columns);
516
517   $form->{l_attachments} = 'Y';
518   $report->set_export_options('generate_report', @hidden_variables, qw(sort sortdir l_attachments));
519
520   $report->set_sort_indicator($form->{sort} eq 'accno' ? 'debit_accno' : $form->{sort}, $form->{sortdir});
521
522   $report->set_options('top_info_text'        => join("\n", @options),
523                        'output_format'        => 'HTML',
524                        'title'                => $form->{title},
525                        'attachment_basename'  => $locale->text('general_ledger_list') . strftime('_%Y%m%d', localtime time),
526     );
527   $report->set_options_from_form();
528   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
529
530   # add sort to callback
531   $form->{callback} = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir});
532
533
534   my @totals_columns = qw(debit credit debit_tax credit_tax);
535   my %subtotals      = map { $_ => 0 } @totals_columns;
536   my %totals         = map { $_ => 0 } @totals_columns;
537   my $idx            = 0;
538
539   foreach my $ref (@{ $form->{GL} }) {
540
541     my %rows;
542
543     foreach my $key (qw(debit credit debit_tax credit_tax)) {
544       $rows{$key} = [];
545       foreach my $idx (sort keys(%{ $ref->{$key} })) {
546         my $value         = $ref->{$key}->{$idx};
547         $subtotals{$key} += $value;
548         $totals{$key}    += $value;
549         if ($key =~ /debit.*/) {
550           $ml = -1;
551         } else {
552           $ml = 1;
553         }
554         $form->{balance}  = $form->{balance} + $value * $ml;
555         push @{ $rows{$key} }, $form->format_amount(\%myconfig, $value, 2);
556       }
557     }
558
559     foreach my $key (qw(debit_accno credit_accno debit_tax_accno credit_tax_accno ac_transdate source)) {
560       my $col = $key eq 'ac_transdate' ? 'transdate' : $key;
561       $rows{$col} = [ map { $ref->{$key}->{$_} } sort keys(%{ $ref->{$key} }) ];
562     }
563
564     my $row = { };
565     map { $row->{$_} = { 'data' => '', 'align' => $column_alignment{$_} } } @columns;
566
567     if ( $form->{l_doccnt} ) {
568       $row->{doccnt}->{data} = SL::Helper::GlAttachments->count_gl_pdf_attachments($ref->{id},$ref->{type});
569     }
570
571     my $sh = "";
572     if ($form->{balance} < 0) {
573       $sh = " S";
574       $ml = -1;
575     } elsif ($form->{balance} > 0) {
576       $sh = " H";
577       $ml = 1;
578     }
579     my $data = $form->format_amount(\%myconfig, ($form->{balance} * $ml), 2);
580     $data .= $sh;
581
582     $row->{balance}->{data}        = $data;
583     $row->{projectnumbers}->{data} = join ", ", sort { lc($a) cmp lc($b) } keys %{ $ref->{projectnumbers} };
584
585     map { $row->{$_}->{data} = $ref->{$_} } qw(id reference description notes gldate employee department);
586
587     map { $row->{$_}->{data} = \@{ $rows{$_} }; } qw(transdate debit credit debit_accno credit_accno debit_tax_accno credit_tax_accno source);
588
589     foreach my $col (qw(debit_accno credit_accno debit_tax_accno credit_tax_accno)) {
590       $row->{$col}->{link} = [ map { "${callback}&accno=" . E($_) } @{ $rows{$col} } ];
591     }
592
593     map { $row->{$_}->{data} = \@{ $rows{$_} } if ($ref->{"${_}_accno"} ne "") } qw(debit_tax credit_tax);
594
595     $row->{reference}->{link} = build_std_url("script=$ref->{module}.pl", 'action=edit', 'id=' . E($ref->{id}), 'callback');
596
597     my $row_set = [ $row ];
598
599     if ( ($form->{l_subtotal} eq 'Y' && !$form->{report_generator_csv_options_for_import} )
600         && (($idx == (scalar @{ $form->{GL} } - 1))
601             || ($ref->{ $form->{sort} } ne $form->{GL}->[$idx + 1]->{ $form->{sort} }))) {
602       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, [ qw(debit credit) ], 'listsubtotal');
603     }
604
605     $report->add_data($row_set);
606
607     $idx++;
608   }
609
610   # = 0 for balanced ledger
611   my $balanced_ledger = $totals{debit} + $totals{debit_tax} - $totals{credit} - $totals{credit_tax};
612
613   my $row = create_subtotal_row(\%totals, \@columns, \%column_alignment, [ qw(debit credit debit_tax credit_tax) ], 'listtotal');
614
615   my $sh = "";
616   if ($form->{balance} < 0) {
617     $sh = " S";
618     $ml = -1;
619   } elsif ($form->{balance} > 0) {
620     $sh = " H";
621     $ml = 1;
622   }
623   my $data = $form->format_amount(\%myconfig, ($form->{balance} * $ml), 2);
624   $data .= $sh;
625
626   $row->{balance}->{data}        = $data;
627
628   if ( !$form->{report_generator_csv_options_for_import} ) {
629     $report->add_separator();
630     $report->add_data($row);
631   }
632
633   my $raw_bottom_info_text;
634
635   if (!$form->{accno} && (abs($balanced_ledger) >  0.001)) {
636     $raw_bottom_info_text .=
637         '<p><span class="unbalanced_ledger">'
638       . $locale->text('Unbalanced Ledger')
639       . ': '
640       . $form->format_amount(\%myconfig, $balanced_ledger, 3)
641       . '</span></p> ';
642   }
643
644   $raw_bottom_info_text .= $form->parse_html_template('gl/generate_report_bottom');
645
646   $report->set_options('raw_bottom_info_text' => $raw_bottom_info_text);
647
648   setup_gl_transactions_action_bar();
649
650   $report->generate_with_headers();
651
652   $main::lxdebug->leave_sub();
653 }
654
655 sub show_draft {
656   $::form->{transdate} = DateTime->today_local->to_kivitendo if !$::form->{transdate};
657   $::form->{gldate}    = $::form->{transdate} if !$::form->{gldate};
658   update();
659 }
660
661 sub update {
662   my %params = @_;
663
664   $main::lxdebug->enter_sub();
665
666   $main::auth->assert('gl_transactions');
667
668   my $form     = $main::form;
669   my %myconfig = %main::myconfig;
670
671   $form->{oldtransdate} = $form->{transdate};
672
673   my @a           = ();
674   my $count       = 0;
675   my $debittax    = 0;
676   my $credittax   = 0;
677   my $debitcount  = 0;
678   my $creditcount = 0;
679   my ($debitcredit, $amount);
680
681   my $dbh = SL::DB->client->dbh;
682   my ($notax_id) = selectrow_query($form, $dbh, "SELECT id FROM tax WHERE taxkey = 0 LIMIT 1", );
683   my $zerotaxes  = selectall_hashref_query($form, $dbh, "SELECT id FROM tax WHERE rate = 0", );
684
685   my @flds =
686     qw(accno_id debit credit projectnumber fx_transaction source memo tax taxchart);
687
688   for my $i (1 .. $form->{rowcount}) {
689     $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) for qw(debit credit tax);
690
691     next if !$form->{"debit_$i"} && !$form->{"credit_$i"} && !$params{keep_rows_without_amount};
692
693     push @a, {};
694     $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
695     if ($debitcredit) {
696       $debitcount++;
697     } else {
698       $creditcount++;
699     }
700
701     if (($debitcount >= 2) && ($creditcount == 2)) {
702       $form->{"credit_$i"} = 0;
703       $form->{"tax_$i"}    = 0;
704       $creditcount--;
705       $form->{creditlock} = 1;
706     }
707     if (($creditcount >= 2) && ($debitcount == 2)) {
708       $form->{"debit_$i"} = 0;
709       $form->{"tax_$i"}   = 0;
710       $debitcount--;
711       $form->{debitlock} = 1;
712     }
713     if (($creditcount == 1) && ($debitcount == 2)) {
714       $form->{creditlock} = 1;
715     }
716     if (($creditcount == 2) && ($debitcount == 1)) {
717       $form->{debitlock} = 1;
718     }
719     if ($debitcredit && $credittax) {
720       $form->{"taxchart_$i"} = "$notax_id--0.00000";
721     }
722     if (!$debitcredit && $debittax) {
723       $form->{"taxchart_$i"} = "$notax_id--0.00000";
724     }
725     $amount =
726       ($form->{"debit_$i"} == 0)
727       ? $form->{"credit_$i"}
728       : $form->{"debit_$i"};
729     my $j = $#a;
730     if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
731       $form->{"taxchart_$i"} = "$notax_id--0.00000";
732       $form->{"tax_$i"}      = 0;
733     }
734     my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
735     my $iswithouttax = grep { $_->{id} == $taxkey } @{ $zerotaxes };
736     if (!$iswithouttax) {
737       if ($debitcredit) {
738         $debittax = 1;
739       } else {
740         $credittax = 1;
741       }
742     };
743     my ($tmpnetamount,$tmpdiff);
744     ($tmpnetamount,$form->{"tax_$i"},$tmpdiff) = $form->calculate_tax($amount,$rate,$form->{taxincluded} *= 1,2);
745
746     for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
747     $count++;
748   }
749
750   for my $i (1 .. $count) {
751     my $j = $i - 1;
752     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
753   }
754
755   for my $i ($count + 1 .. $form->{rowcount}) {
756     for (@flds) { delete $form->{"${_}_$i"} }
757   }
758
759   $form->{rowcount} = $count + ($params{dont_add_new_row} ? 0 : 1);
760
761   display_form();
762   $main::lxdebug->leave_sub();
763
764 }
765
766 sub display_form {
767   my ($init) = @_;
768   $main::lxdebug->enter_sub();
769
770   $main::auth->assert('gl_transactions');
771
772   my $form     = $main::form;
773   my %myconfig = %main::myconfig;
774
775   &form_header($init);
776
777   #   for $i (1 .. $form->{rowcount}) {
778   #     $form->{totaldebit} += $form->parse_amount(\%myconfig, $form->{"debit_$i"});
779   #     $form->{totalcredit} += $form->parse_amount(\%myconfig, $form->{"credit_$i"});
780   #
781   #     &form_row($i);
782   #   }
783   &display_rows($init);
784   &form_footer;
785   $main::lxdebug->leave_sub();
786
787 }
788
789 sub display_rows {
790   my ($init) = @_;
791   $main::lxdebug->enter_sub();
792
793   $main::auth->assert('gl_transactions');
794
795   my $form     = $main::form;
796   my %myconfig = %main::myconfig;
797   my $cgi      = $::request->{cgi};
798
799   my %balances = GL->get_chart_balances(map { $_->{id} } @{ $form->{ALL_CHARTS} });
800
801   $form->{debit_1}     = 0 if !$form->{"debit_1"};
802   $form->{totaldebit}  = 0;
803   $form->{totalcredit} = 0;
804
805   my %charts_by_id  = map { ($_->{id} => $_) } @{ $::form->{ALL_CHARTS} };
806   my $default_chart = $::form->{ALL_CHARTS}[0];
807   my $transdate     = $::form->{transdate} ? DateTime->from_kivitendo($::form->{transdate}) : DateTime->today_local;
808   my $deliverydate  = $::form->{deliverydate} ? DateTime->from_kivitendo($::form->{deliverydate}) : undef;
809
810   my ($source, $memo, $source_hidden, $memo_hidden);
811   for my $i (1 .. $form->{rowcount}) {
812     if ($form->{show_details}) {
813       $source = qq|
814       <td><input name="source_$i" value="$form->{"source_$i"}" size="16"></td>|;
815       $memo = qq|
816       <td><input name="memo_$i" value="$form->{"memo_$i"}" size="16"></td>|;
817     } else {
818       $source_hidden = qq|
819       <input type="hidden" name="source_$i" value="$form->{"source_$i"}" size="16">|;
820       $memo_hidden = qq|
821       <input type="hidden" name="memo_$i" value="$form->{"memo_$i"}" size="16">|;
822     }
823
824     my %taxchart_labels = ();
825     my @taxchart_values = ();
826
827     my $accno_id = $::form->{"accno_id_$i"};
828     my $chart    = $charts_by_id{$accno_id} // $default_chart;
829     $accno_id    = $chart->{id};
830     my ($first_taxchart, $default_taxchart, $taxchart_to_use);
831
832     my $used_tax_id;
833     if ( $form->{"taxchart_$i"} ) {
834       ($used_tax_id) = split(/--/, $form->{"taxchart_$i"});
835     }
836
837     my $taxdate = $deliverydate ? $deliverydate : $transdate;
838     foreach my $item ( GL->get_active_taxes_for_chart($accno_id, $taxdate, $used_tax_id) ) {
839       my $key             = $item->id . "--" . $item->rate;
840       $first_taxchart   //= $item;
841       $default_taxchart   = $item if $item->{is_default};
842       $taxchart_to_use    = $item if $key eq $form->{"taxchart_$i"};
843
844       push(@taxchart_values, $key);
845       $taxchart_labels{$key} = $item->taxkey . " - " . $item->taxdescription . " " . $item->rate * 100 . ' %';
846     }
847
848     $taxchart_to_use    //= $default_taxchart // $first_taxchart;
849     my $selected_taxchart = $taxchart_to_use->id . '--' . $taxchart_to_use->rate;
850
851     my $accno = qq|<td>| .
852       SL::Presenter::Chart::picker("accno_id_$i", $accno_id, style => "width: 300px") .
853       SL::Presenter::Tag::hidden_tag("previous_accno_id_$i", $accno_id)
854       . qq|</td>|;
855     my $tax_ddbox = qq|<td>| .
856       NTI($cgi->popup_menu('-name' => "taxchart_$i",
857             '-id' => "taxchart_$i",
858             '-style' => 'width:200px',
859             '-values' => \@taxchart_values,
860             '-labels' => \%taxchart_labels,
861             '-default' => $selected_taxchart))
862       . qq|</td>|;
863
864     my ($fx_transaction, $checked);
865     if ($init) {
866       if ($form->{transfer}) {
867         $fx_transaction = qq|
868         <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
869     |;
870       }
871
872     } else {
873       if ($form->{"debit_$i"} != 0) {
874         $form->{totaldebit} += $form->{"debit_$i"};
875         if (!$form->{taxincluded}) {
876           $form->{totaldebit} += $form->{"tax_$i"};
877         }
878       } else {
879         $form->{totalcredit} += $form->{"credit_$i"};
880         if (!$form->{taxincluded}) {
881           $form->{totalcredit} += $form->{"tax_$i"};
882         }
883       }
884
885       for (qw(debit credit tax)) {
886         $form->{"${_}_$i"} =
887           ($form->{"${_}_$i"})
888           ? $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
889           : "";
890       }
891
892       if ($i < $form->{rowcount}) {
893         if ($form->{transfer}) {
894           $checked = ($form->{"fx_transaction_$i"}) ? "1" : "";
895           my $x = ($checked) ? "x" : "";
896           $fx_transaction = qq|
897       <td><input type=hidden name="fx_transaction_$i" value="$checked">$x</td>
898     |;
899         }
900         $form->hide_form("accno_$i");
901
902       } else {
903         if ($form->{transfer}) {
904           $fx_transaction = qq|
905       <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
906     |;
907         }
908       }
909     }
910     my $debitreadonly  = "";
911     my $creditreadonly = "";
912     if ($i == $form->{rowcount}) {
913       if ($form->{debitlock}) {
914         $debitreadonly = "readonly";
915       } elsif ($form->{creditlock}) {
916         $creditreadonly = "readonly";
917       }
918     }
919
920     my $projectnumber = SL::Presenter::Project::picker("project_id_$i", $form->{"project_id_$i"});
921     my $projectnumber_hidden = SL::Presenter::Tag::hidden_tag("project_id_$i", $form->{"project_id_$i"});
922
923     my $copy2credit = $i == 1 ? 'onkeyup="copy_debit_to_credit()"' : '';
924     my $balance     = $form->format_amount(\%::myconfig, $balances{$accno_id} // 0, 2, 'DRCR');
925
926     # if we have a bt_chart_id we disallow changing the amount of the bank account
927     if ($form->{bt_chart_id}) {
928       $debitreadonly = $creditreadonly = "readonly" if ($form->{"accno_id_$i"} eq $form->{bt_chart_id});
929       $copy2credit   = '' if $i == 1;   # and disallow copy2credit
930     }
931
932     print qq|<tr valign=top>
933     $accno
934     <td id="chart_balance_$i" align="right">${balance}</td>
935     $fx_transaction
936     <td><input name="debit_$i" size="8" value="$form->{"debit_$i"}" accesskey=$i $copy2credit $debitreadonly></td>
937     <td><input name="credit_$i" size=8 value="$form->{"credit_$i"}" $creditreadonly></td>
938     <td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
939     $tax_ddbox|;
940
941     if ($form->{show_details}) {
942       print qq|
943     $source
944     $memo
945     <td>$projectnumber</td>
946 |;
947     } else {
948     print qq|
949     $source_hidden
950     $memo_hidden
951     $projectnumber_hidden
952     |;
953     }
954     print qq|
955   </tr>
956 |;
957   }
958
959   $form->hide_form(qw(rowcount selectaccno));
960
961   $main::lxdebug->leave_sub();
962
963 }
964
965 sub _get_radieren {
966   return ($::instance_conf->get_gl_changeable == 2) ? ($::form->current_date(\%::myconfig) eq $::form->{gldate}) : ($::instance_conf->get_gl_changeable == 1);
967 }
968
969 sub setup_gl_action_bar {
970   my %params = @_;
971   my $form   = $::form;
972   my $change_never            = $::instance_conf->get_gl_changeable == 0;
973   my $change_on_same_day_only = $::instance_conf->get_gl_changeable == 2 && ($form->current_date(\%::myconfig) ne $form->{gldate});
974   my ($is_linked_bank_transaction, $is_linked_ap_transaction);
975
976   if ($form->{id} && SL::DB::Manager::BankTransactionAccTrans->find_by(gl_id => $form->{id})) {
977     $is_linked_bank_transaction = 1;
978   }
979   if ($form->{id} && SL::DB::Manager::ApGl->find_by(gl_id => $form->{id})) {
980     $is_linked_ap_transaction = 1;
981   }
982
983
984   my $create_post_action = sub {
985     # $_[0]: description
986     # $_[1]: after_action
987     action => [
988       $_[0],
989       submit   => [ '#form', { action => 'post', after_action => $_[1] } ],
990       disabled => $form->{locked}                           ? t8('The billing period has already been locked.')
991                 : $form->{storno}                           ? t8('A canceled general ledger transaction cannot be posted.')
992                 : ($form->{id} && $change_never)            ? t8('Changing general ledger transaction has been disabled in the configuration.')
993                 : ($form->{id} && $change_on_same_day_only) ? t8('General ledger transactions can only be changed on the day they are posted.')
994                 : $is_linked_bank_transaction               ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
995                 : $is_linked_ap_transaction                 ? t8('This transaction is linked with a AP transaction. Please undo and redo the AP transaction booking if needed.')
996                 : undef,
997     ],
998   };
999
1000   my %post_entry;
1001   if ($::instance_conf->get_gl_add_doc && $::instance_conf->get_doc_storage) {
1002     %post_entry = (combobox => [ $create_post_action->(t8('Post'), 'doc-tab'),
1003                                  $create_post_action->(t8('Post and new booking')) ]);
1004   } elsif ($::instance_conf->get_doc_storage) {
1005     %post_entry = (combobox => [ $create_post_action->(t8('Post')),
1006                                  $create_post_action->(t8('Post and upload document'), 'doc-tab') ]);
1007   } else {
1008     %post_entry = $create_post_action->(t8('Post'));
1009   }
1010
1011   for my $bar ($::request->layout->get('actionbar')) {
1012     $bar->add(
1013       action => [
1014         t8('Update'),
1015         submit    => [ '#form', { action => 'update' } ],
1016         id        => 'update_button',
1017         accesskey => 'enter',
1018       ],
1019       %post_entry,
1020       combobox => [
1021         action => [ t8('Storno'),
1022           submit   => [ '#form', { action => 'storno' } ],
1023           confirm  => t8('Do you really want to cancel this general ledger transaction?'),
1024           disabled => !$form->{id}                ? t8('This general ledger transaction has not been posted yet.')
1025                     : $form->{storno}             ? t8('A canceled general ledger transaction cannot be canceled again.')
1026                     : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
1027                     : $is_linked_ap_transaction   ? t8('This transaction is linked with a AP transaction. Please undo and redo the AP transaction booking if needed.')
1028                     : undef,
1029         ],
1030         action => [ t8('Delete'),
1031           submit   => [ '#form', { action => 'delete' } ],
1032           confirm  => t8('Do you really want to delete this object?'),
1033           disabled => !$form->{id}             ? t8('This invoice has not been posted yet.')
1034                     : $form->{locked}          ? t8('The billing period has already been locked.')
1035                     : $change_never            ? t8('Changing invoices has been disabled in the configuration.')
1036                     : $change_on_same_day_only ? t8('Invoices can only be changed on the day they are posted.')
1037                     : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
1038                     : $is_linked_ap_transaction   ? t8('This transaction is linked with a AP transaction. Please undo and redo the AP transaction booking if needed.')
1039                     : $form->{storno}             ? t8('A canceled general ledger transaction cannot be deleted.')
1040                     : undef,
1041         ],
1042       ], # end of combobox "Storno"
1043
1044       combobox => [
1045         action => [ t8('more') ],
1046         action => [
1047           t8('History'),
1048           call     => [ 'set_history_window', $form->{id} * 1, 'glid' ],
1049           disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef,
1050         ],
1051         action => [
1052           t8('Follow-Up'),
1053           call     => [ 'follow_up_window' ],
1054           disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef,
1055         ],
1056         action => [
1057           t8('Record templates'),
1058           call => [ 'kivi.RecordTemplate.popup', 'gl_transaction' ],
1059         ],
1060         action => [
1061           t8('Drafts'),
1062           call     => [ 'kivi.Draft.popup', 'gl', 'unknown', $form->{draft_id}, $form->{draft_description} ],
1063           disabled => $form->{id}     ? t8('This invoice has already been posted.')
1064                     : $form->{locked} ? t8('The billing period has already been locked.')
1065                     : undef,
1066         ],
1067       ], # end of combobox "more"
1068     );
1069   }
1070 }
1071
1072 sub setup_gl_search_action_bar {
1073   my %params = @_;
1074
1075   for my $bar ($::request->layout->get('actionbar')) {
1076     $bar->add(
1077       action => [
1078         t8('Search'),
1079         submit    => [ '#form', { action => 'continue', nextsub => 'generate_report' } ],
1080         accesskey => 'enter',
1081       ],
1082     );
1083   }
1084 }
1085
1086 sub setup_gl_transactions_action_bar {
1087   my %params = @_;
1088
1089   for my $bar ($::request->layout->get('actionbar')) {
1090     $bar->add(
1091       combobox => [
1092         action => [ $::locale->text('Create new') ],
1093         action => [
1094           $::locale->text('GL Transaction'),
1095           submit => [ '#create_new_form', { action => 'gl_transaction' } ],
1096         ],
1097         action => [
1098           $::locale->text('AR Transaction'),
1099           submit => [ '#create_new_form', { action => 'ar_transaction' } ],
1100         ],
1101         action => [
1102           $::locale->text('AP Transaction'),
1103           submit => [ '#create_new_form', { action => 'ap_transaction' } ],
1104         ],
1105         action => [
1106           $::locale->text('Sales Invoice'),
1107           submit => [ '#create_new_form', { action => 'sales_invoice'  } ],
1108         ],
1109         action => [
1110           $::locale->text('Vendor Invoice'),
1111           submit => [ '#create_new_form', { action => 'vendor_invoice' } ],
1112         ],
1113       ], # end of combobox "Create new"
1114     );
1115   }
1116 }
1117
1118 sub form_header {
1119   $::lxdebug->enter_sub;
1120   $::auth->assert('gl_transactions');
1121
1122   my ($init) = @_;
1123
1124   $::request->layout->add_javascripts("autocomplete_chart.js", "autocomplete_project.js", "kivi.File.js", "kivi.GL.js", "kivi.RecordTemplate.js", "kivi.Validator.js", "show_history.js");
1125
1126   my @old_project_ids     = grep { $_ } map{ $::form->{"project_id_$_"} } 1..$::form->{rowcount};
1127   my @conditions          = @old_project_ids ? (id => \@old_project_ids) : ();
1128   $::form->{ALL_PROJECTS} = SL::DB::Manager::Project->get_all_sorted(query => [ or => [ active => 1, @conditions ]]);
1129
1130   $::form->get_lists(
1131     "charts"    => { "key" => "ALL_CHARTS", "transdate" => $::form->{transdate} },
1132   );
1133
1134   # we cannot book on charttype header
1135   @{ $::form->{ALL_CHARTS} } = grep { $_->{charttype} ne 'H' }  @{ $::form->{ALL_CHARTS} };
1136   $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
1137
1138   my $title      = $::form->{title};
1139   $::form->{title} = $::locale->text("$title General Ledger Transaction");
1140   # $locale->text('Add General Ledger Transaction')
1141   # $locale->text('Edit General Ledger Transaction')
1142
1143   map { $::form->{$_} =~ s/\"/&quot;/g }
1144     qw(chart taxchart);
1145
1146   if ($init) {
1147     $::request->{layout}->focus("#reference");
1148     $::form->{taxincluded} = "1";
1149   } else {
1150     $::request->{layout}->focus("#accno_id_$::form->{rowcount}_name");
1151   }
1152
1153   $::form->{previous_id}     ||= "--";
1154   $::form->{previous_gldate} ||= "--";
1155
1156   setup_gl_action_bar();
1157
1158   $::form->header;
1159   print $::form->parse_html_template('gl/form_header', {
1160     hide_title => $title,
1161     readonly   => $::form->{id} && ($::form->{locked} || !_get_radieren()),
1162   });
1163
1164   $::lxdebug->leave_sub;
1165
1166 }
1167
1168 sub form_footer {
1169   $::lxdebug->enter_sub;
1170   $::auth->assert('gl_transactions');
1171
1172   my ($follow_ups, $follow_ups_due);
1173
1174   if ($::form->{id}) {
1175     $follow_ups     = FU->follow_ups('trans_id' => $::form->{id}, 'not_done' => 1);
1176     $follow_ups_due = sum map { $_->{due} * 1 } @{ $follow_ups || [] };
1177   }
1178
1179   print $::form->parse_html_template('gl/form_footer', {
1180     radieren       => _get_radieren(),
1181     follow_ups     => $follow_ups,
1182     follow_ups_due => $follow_ups_due,
1183   });
1184
1185   $::lxdebug->leave_sub;
1186 }
1187
1188 sub delete {
1189   $main::lxdebug->enter_sub();
1190
1191   my $form     = $main::form;
1192   my %myconfig = %main::myconfig;
1193   my $locale   = $main::locale;
1194
1195   if (GL->delete_transaction(\%myconfig, \%$form)){
1196     # saving the history
1197       if(!exists $form->{addition} && $form->{id} ne "") {
1198         $form->{snumbers} = qq|gltransaction_| . $form->{id};
1199         $form->{addition} = "DELETED";
1200         $form->{what_done} = "gl_transaction";
1201         $form->save_history;
1202       }
1203     # /saving the history
1204     $form->redirect($locale->text('Transaction deleted!'))
1205   }
1206   $form->error($locale->text('Cannot delete transaction!'));
1207   $main::lxdebug->leave_sub();
1208
1209 }
1210
1211 sub post_transaction {
1212   $main::lxdebug->enter_sub();
1213
1214   my $form     = $main::form;
1215   my %myconfig = %main::myconfig;
1216   my $locale   = $main::locale;
1217
1218   # check if there is something in reference and date
1219   $form->isblank("reference",   $locale->text('Reference missing!'));
1220   $form->isblank("transdate",   $locale->text('Transaction Date missing!'));
1221   $form->isblank("description", $locale->text('Description missing!'));
1222   $form->isblank("transaction_description", $locale->text('A transaction description is required.')) if $::instance_conf->get_require_transaction_description_ps;
1223
1224   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
1225   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
1226
1227   my @a           = ();
1228   my $count       = 0;
1229   my $debittax    = 0;
1230   my $credittax   = 0;
1231   my $debitcount  = 0;
1232   my $creditcount = 0;
1233   my $debitcredit;
1234   my %split_safety = ();
1235
1236   my $dbh = SL::DB->client->dbh;
1237   my ($notax_id) = selectrow_query($form, $dbh, "SELECT id FROM tax WHERE taxkey = 0 LIMIT 1", );
1238   my $zerotaxes  = selectall_hashref_query($form, $dbh, "SELECT id FROM tax WHERE rate = 0", );
1239
1240   my @flds = qw(accno_id debit credit projectnumber fx_transaction source memo tax taxchart);
1241
1242   for my $i (1 .. $form->{rowcount}) {
1243     next if $form->{"debit_$i"} eq "" && $form->{"credit_$i"} eq "";
1244
1245     for (qw(debit credit tax)) {
1246       $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
1247     }
1248
1249     push @a, {};
1250     $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
1251
1252     $split_safety{   $form->{"debit_$i"}  <=> 0 }++;
1253     $split_safety{ - $form->{"credit_$i"} <=> 0 }++;
1254
1255     if ($debitcredit) {
1256       $debitcount++;
1257     } else {
1258       $creditcount++;
1259     }
1260
1261     if (($debitcount >= 2) && ($creditcount == 2)) {
1262       $form->{"credit_$i"} = 0;
1263       $form->{"tax_$i"}    = 0;
1264       $creditcount--;
1265       $form->{creditlock} = 1;
1266     }
1267     if (($creditcount >= 2) && ($debitcount == 2)) {
1268       $form->{"debit_$i"} = 0;
1269       $form->{"tax_$i"}   = 0;
1270       $debitcount--;
1271       $form->{debitlock} = 1;
1272     }
1273     if (($creditcount == 1) && ($debitcount == 2)) {
1274       $form->{creditlock} = 1;
1275     }
1276     if (($creditcount == 2) && ($debitcount == 1)) {
1277       $form->{debitlock} = 1;
1278     }
1279     if ($debitcredit && $credittax) {
1280       $form->{"taxchart_$i"} = "$notax_id--0.00000";
1281     }
1282     if (!$debitcredit && $debittax) {
1283       $form->{"taxchart_$i"} = "$notax_id--0.00000";
1284     }
1285     my $amount = ($form->{"debit_$i"} == 0)
1286             ? $form->{"credit_$i"}
1287             : $form->{"debit_$i"};
1288     my $j = $#a;
1289     if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
1290       $form->{"taxchart_$i"} = "$notax_id--0.00000";
1291       $form->{"tax_$i"}      = 0;
1292     }
1293     my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
1294     my $iswithouttax = grep { $_->{id} == $taxkey } @{ $zerotaxes };
1295     if (!$iswithouttax) {
1296       if ($debitcredit) {
1297         $debittax = 1;
1298       } else {
1299         $credittax = 1;
1300       }
1301
1302       my ($tmpnetamount,$tmpdiff);
1303       ($tmpnetamount,$form->{"tax_$i"},$tmpdiff) = $form->calculate_tax($amount,$rate,$form->{taxincluded} *= 1,2);
1304       if ($debitcredit) {
1305         $form->{"debit_$i"} = $tmpnetamount;
1306       } else {
1307         $form->{"credit_$i"} = $tmpnetamount;
1308       }
1309
1310     } else {
1311       $form->{"tax_$i"} = 0;
1312     }
1313
1314     for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
1315     $count++;
1316   }
1317
1318   if ($split_safety{-1} > 1 && $split_safety{1} > 1) {
1319     $::form->error($::locale->text("Split entry detected. The values you have entered will result in an entry with more than one position on both debit and credit. " .
1320                                    "Due to known problems involving accounting software kivitendo does not allow these."));
1321   }
1322
1323   for my $i (1 .. $count) {
1324     my $j = $i - 1;
1325     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
1326   }
1327
1328   for my $i ($count + 1 .. $form->{rowcount}) {
1329     for (@flds) { delete $form->{"${_}_$i"} }
1330   }
1331
1332   my ($debit, $credit, $taxtotal);
1333   for my $i (1 .. $form->{rowcount}) {
1334     my $dr  = $form->{"debit_$i"};
1335     my $cr  = $form->{"credit_$i"};
1336     my $tax = $form->{"tax_$i"};
1337     if ($dr && $cr) {
1338       $form->error($locale->text('Cannot post transaction with a debit and credit entry for the same account!'));
1339     }
1340     $debit    += $dr + $tax if $dr;
1341     $credit   += $cr + $tax if $cr;
1342     $taxtotal += $tax if $form->{taxincluded}
1343   }
1344
1345   $form->{taxincluded} = 0 if !$taxtotal;
1346
1347   # this is just for the wise guys
1348
1349   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
1350     if ($form->date_max_future($form->{"transdate"}, \%myconfig));
1351   $form->error($locale->text('Cannot post transaction for a closed period!'))
1352     if ($form->date_closed($form->{"transdate"}, \%myconfig));
1353   if ($form->round_amount($debit, 2) != $form->round_amount($credit, 2)) {
1354     $form->error($locale->text('Out of balance transaction!'));
1355   }
1356
1357   if ($form->round_amount($debit, 2) + $form->round_amount($credit, 2) == 0) {
1358     $form->error($locale->text('Empty transaction!'));
1359   }
1360
1361
1362   # start transaction (post + history + (optional) banktrans)
1363   SL::DB->client->with_transaction(sub {
1364
1365     if ((my $errno = GL->post_transaction(\%myconfig, \%$form)) <= -1) {
1366       $errno *= -1;
1367       my @err;
1368       $err[1] = $locale->text('Cannot have a value in both Debit and Credit!');
1369       $err[2] = $locale->text('Debit and credit out of balance!');
1370       $err[3] = $locale->text('Cannot post a transaction without a value!');
1371
1372       die $err[$errno];
1373     }
1374     # saving the history
1375     if(!exists $form->{addition} && $form->{id} ne "") {
1376       $form->{snumbers} = qq|gltransaction_| . $form->{id};
1377       $form->{addition} = "POSTED";
1378       $form->{what_done} = "gl transaction";
1379       $form->save_history;
1380     }
1381
1382     # Case BankTransaction: update RecordLink and BankTransaction
1383     if ($form->{callback} =~ /BankTransaction/ && $form->{bt_id}) {
1384       # set invoice_amount - we only rely on bt_id in form, do all other stuff ui independent
1385       # die if we have a unlogic or NYI case and abort the whole transaction
1386       my ($bt, $chart_id, $payment);
1387       require SL::DB::Manager::BankTransaction;
1388
1389       $bt = SL::DB::Manager::BankTransaction->find_by(id => $::form->{bt_id});
1390       die "No bank transaction found" unless $bt;
1391
1392       $chart_id = SL::DB::Manager::BankAccount->find_by(id => $bt->local_bank_account_id)->chart_id;
1393       die "no chart id" unless $chart_id;
1394
1395       $payment = SL::DB::Manager::AccTransaction->get_all(where => [ trans_id => $::form->{id},
1396                                                                      chart_link => { like => '%_paid%' },
1397                                                                      chart_id => $chart_id                  ]);
1398       die "guru meditation error: Can only assign amount to one bank account booking" if scalar @{ $payment } > 1;
1399
1400       # credit/debit * -1 matches the sign for bt.amount and bt.invoice_amount
1401
1402       die "Can only assign the full (partial) bank amount to a single general ledger booking: " . $bt->not_assigned_amount . " " .  ($payment->[0]->amount * -1)
1403         unless (abs($bt->not_assigned_amount - ($payment->[0]->amount * -1)) < 0.001);
1404
1405       $bt->update_attributes(invoice_amount => $bt->invoice_amount + ($payment->[0]->amount * -1));
1406
1407       # create record_link
1408       my %props = (
1409         from_table => 'bank_transactions',
1410         from_id    => $::form->{bt_id},
1411         to_table   => 'gl',
1412         to_id      => $::form->{id},
1413       );
1414       SL::DB::RecordLink->new(%props)->save;
1415       # and tighten holy acc_trans_id for this bank_transaction
1416       my  %props_acc = (
1417         acc_trans_id        => $payment->[0]->acc_trans_id,
1418         bank_transaction_id => $bt->id,
1419         gl_id               => $payment->[0]->trans_id,
1420       );
1421       my $bta = SL::DB::BankTransactionAccTrans->new(%props_acc);
1422       $bta->save;
1423
1424     }
1425     1;
1426   }) or do { die SL::DB->client->error };
1427
1428   $main::lxdebug->leave_sub();
1429 }
1430
1431 sub post {
1432   $main::lxdebug->enter_sub();
1433
1434   $main::auth->assert('gl_transactions');
1435
1436   my $form     = $main::form;
1437   my $locale   = $main::locale;
1438
1439   if ($::myconfig{mandatory_departments} && !$form->{department_id}) {
1440     $form->error($locale->text('You have to specify a department.'));
1441   }
1442
1443   $form->{title}  = $locale->text("$form->{title} General Ledger Transaction");
1444   $form->{storno} = 0;
1445
1446   post_transaction();
1447   if ($::instance_conf->get_webdav) {
1448     SL::Webdav->new(type     => 'general_ledger',
1449                     number   => $form->{id},
1450                    )->webdav_path;
1451   }
1452
1453   my $msg = $::locale->text("General ledger transaction '#1' posted (ID: #2)", $form->{reference}, $form->{id});
1454   if ($form->{callback} =~ /BankTransaction/ && $form->{bt_id}) {
1455     $form->redirect($msg);
1456
1457   } elsif ('doc-tab' eq $form->{after_action}) {
1458     # Redirect with callback containing a fragment does not work (by now)
1459     # because the callback info is stored in the session an parsing the
1460     # callback parameters does not support fragments (see SL::Form::redirect).
1461     # So use flash_later for the message and redirect_headers for redirecting.
1462     my $add_doc_url = build_std_url("script=gl.pl", 'action=edit', 'id=' . E($form->{id}), 'fragment=ui-tabs-docs');
1463     SL::Helper::Flash::flash_later('info', $msg);
1464     print $form->redirect_header($add_doc_url);
1465     $::dispatcher->end_request;
1466
1467   } else {
1468     $form->{callback} = build_std_url("action=add", "show_details");
1469     $form->redirect($msg);
1470   }
1471
1472   $main::lxdebug->leave_sub();
1473 }
1474
1475 sub post_as_new {
1476   $main::lxdebug->enter_sub();
1477
1478   $main::auth->assert('gl_transactions');
1479
1480   my $form     = $main::form;
1481
1482   $form->{id} = 0;
1483   &add;
1484   $main::lxdebug->leave_sub();
1485
1486 }
1487
1488 sub storno {
1489   $main::lxdebug->enter_sub();
1490
1491   $main::auth->assert('gl_transactions');
1492
1493   my $form     = $main::form;
1494   my %myconfig = %main::myconfig;
1495   my $locale   = $main::locale;
1496
1497   # don't cancel cancelled transactions
1498   if (IS->has_storno(\%myconfig, $form, 'gl')) {
1499     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
1500     $form->error($locale->text("Transaction has already been cancelled!"));
1501   }
1502
1503   GL->storno($form, \%myconfig, $form->{id});
1504
1505   # saving the history
1506   if(!exists $form->{addition} && $form->{id} ne "") {
1507     $form->{snumbers} = qq|gltransaction_| . $form->{id};
1508     $form->{addition} = "STORNO";
1509     $form->{what_done} = "gl_transaction";
1510     $form->save_history;
1511   }
1512   # /saving the history
1513
1514   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
1515
1516   $main::lxdebug->leave_sub();
1517 }
1518
1519 sub continue {
1520   call_sub($main::form->{nextsub});
1521 }
1522
1523 sub get_tax_dropdown {
1524   my $transdate    = $::form->{transdate}    ? DateTime->from_kivitendo($::form->{transdate}) : DateTime->today_local;
1525   my $deliverydate = $::form->{deliverydate} ? DateTime->from_kivitendo($::form->{deliverydate}) : undef;
1526   my @tax_accounts = GL->get_active_taxes_for_chart($::form->{accno_id}, $deliverydate // $transdate);
1527   my $html         = $::form->parse_html_template("gl/update_tax_accounts", { TAX_ACCOUNTS => \@tax_accounts });
1528
1529   print $::form->ajax_response_header, $html;
1530 }
1531
1532 sub get_chart_balance {
1533   my %balances = GL->get_chart_balances($::form->{accno_id});
1534   my $balance  = $::form->format_amount(\%::myconfig, $balances{ $::form->{accno_id} }, 2, 'DRCR');
1535
1536   print $::form->ajax_response_header, $balance;
1537 }
1538
1539 1;