1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (c) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  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.
 
  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 #======================================================================
 
  32 #======================================================================
 
  37 use POSIX qw(strftime);
 
  38 use List::Util qw(sum);
 
  44 use SL::ReportGenerator;
 
  45 use SL::DBUtils qw(selectrow_query selectall_hashref_query);
 
  47 require "bin/mozilla/common.pl";
 
  48 require "bin/mozilla/reportgenerator.pl";
 
  50 # this is for our long dates
 
  51 # $locale->text('January')
 
  52 # $locale->text('February')
 
  53 # $locale->text('March')
 
  54 # $locale->text('April')
 
  55 # $locale->text('May ')
 
  56 # $locale->text('June')
 
  57 # $locale->text('July')
 
  58 # $locale->text('August')
 
  59 # $locale->text('September')
 
  60 # $locale->text('October')
 
  61 # $locale->text('November')
 
  62 # $locale->text('December')
 
  64 # this is for our short month
 
  65 # $locale->text('Jan')
 
  66 # $locale->text('Feb')
 
  67 # $locale->text('Mar')
 
  68 # $locale->text('Apr')
 
  69 # $locale->text('May')
 
  70 # $locale->text('Jun')
 
  71 # $locale->text('Jul')
 
  72 # $locale->text('Aug')
 
  73 # $locale->text('Sep')
 
  74 # $locale->text('Oct')
 
  75 # $locale->text('Nov')
 
  76 # $locale->text('Dec')
 
  79   $main::lxdebug->enter_sub();
 
  81   $main::auth->assert('general_ledger');
 
  83   my $form     = $main::form;
 
  84   my %myconfig = %main::myconfig;
 
  86   $form->{title} = "Add";
 
  88   $form->{callback} = "gl.pl?action=add" unless $form->{callback};
 
  90   # we use this only to set a default date
 
  91   # yep. aber er holt hier auch schon ALL_CHARTS. Aufwand / Nutzen? jb
 
  92   GL->transaction(\%myconfig, \%$form);
 
  94   $form->{rowcount}  = 2;
 
 101   $form->all_departments(\%myconfig);
 
 102   if (@{ $form->{all_departments} || [] }) {
 
 103     $form->{selectdepartment} = "<option>\n";
 
 106       $form->{selectdepartment} .=
 
 107         "<option>$_->{description}--$_->{id}\n"
 
 108     } (@{ $form->{all_departments} || [] });
 
 111   $form->{show_details} = $myconfig{show_form_details} unless defined $form->{show_details};
 
 114   $main::lxdebug->leave_sub();
 
 118 sub prepare_transaction {
 
 119   $main::lxdebug->enter_sub();
 
 121   $main::auth->assert('general_ledger');
 
 123   my $form     = $main::form;
 
 124   my %myconfig = %main::myconfig;
 
 126   GL->transaction(\%myconfig, \%$form);
 
 128   $form->{amount} = $form->format_amount(\%myconfig, $form->{amount}, 2);
 
 131   $form->all_departments(\%myconfig);
 
 132   if (@{ $form->{all_departments} || [] }) {
 
 133     $form->{selectdepartment} = "<option>\n";
 
 136       $form->{selectdepartment} .=
 
 137         "<option>$_->{description}--$_->{id}\n"
 
 138     } (@{ $form->{all_departments} || [] });
 
 144   foreach my $ref (@{ $form->{GL} }) {
 
 146     if ($tax && ($ref->{accno} eq $taxaccno)) {
 
 147       $form->{"tax_$j"}      = abs($ref->{amount});
 
 148       $form->{"taxchart_$j"} = $ref->{id} . "--" . $ref->{taxrate};
 
 149       if ($form->{taxincluded}) {
 
 150         if ($ref->{amount} < 0) {
 
 151           $form->{"debit_$j"} += $form->{"tax_$j"};
 
 153           $form->{"credit_$j"} += $form->{"tax_$j"};
 
 156       $form->{"project_id_$j"} = $ref->{project_id};
 
 159       $form->{"accno_$i"} = "$ref->{accno}--$ref->{tax_id}";
 
 160       for (qw(fx_transaction source memo)) { $form->{"${_}_$i"} = $ref->{$_} }
 
 161       if ($ref->{amount} < 0) {
 
 162         $form->{totaldebit} -= $ref->{amount};
 
 163         $form->{"debit_$i"} = $ref->{amount} * -1;
 
 165         $form->{totalcredit} += $ref->{amount};
 
 166         $form->{"credit_$i"} = $ref->{amount};
 
 168       $form->{"taxchart_$i"} = $ref->{id}."--0.00000";
 
 169       $form->{"project_id_$i"} = $ref->{project_id};
 
 172     if ($ref->{taxaccno} && !$tax) {
 
 173       $taxaccno = $ref->{taxaccno};
 
 181   $form->{rowcount} = $i;
 
 183     ($form->datetonum($form->{transdate}, \%myconfig) <=
 
 184      $form->datetonum($form->{closedto}, \%myconfig));
 
 186   $main::lxdebug->leave_sub();
 
 190   $main::lxdebug->enter_sub();
 
 192   $main::auth->assert('general_ledger');
 
 194   my $form     = $main::form;
 
 195   my %myconfig = %main::myconfig;
 
 197   prepare_transaction();
 
 199   $form->{title} = "Edit";
 
 201   $form->{show_details} = $myconfig{show_form_details} unless defined $form->{show_details};
 
 207   $main::lxdebug->leave_sub();
 
 212   $::lxdebug->enter_sub;
 
 213   $::auth->assert('general_ledger');
 
 215   $::form->all_departments(\%::myconfig);
 
 217     projects  => { key => "ALL_PROJECTS", all => 1 },
 
 219   $::form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 222   print $::form->parse_html_template('gl/search', {
 
 223     department_label => sub { ("$_[0]{description}--$_[0]{id}")x2 },
 
 224     employee_label => sub { "$_[0]{id}--$_[0]{name}" },
 
 227   $::lxdebug->leave_sub;
 
 230 sub create_subtotal_row {
 
 231   $main::lxdebug->enter_sub();
 
 233   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
 235   my $form     = $main::form;
 
 236   my %myconfig = %main::myconfig;
 
 238   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
 240   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
 242   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
 244   $main::lxdebug->leave_sub();
 
 249 sub generate_report {
 
 250   $main::lxdebug->enter_sub();
 
 252   $main::auth->assert('general_ledger');
 
 254   my $form     = $main::form;
 
 255   my %myconfig = %main::myconfig;
 
 256   my $locale   = $main::locale;
 
 258   # 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
 
 260   # <form method=post action=gl.pl>
 
 261   # <input type=hidden name=sort value=datesort>    # form->{sort} setzen
 
 262   # <input type=hidden name=nextsub value=generate_report>
 
 264   # anhand von neuer Variable datesort wird jetzt $form->{sort} auf transdate oder gldate gesetzt
 
 265   # damit ist die Hidden Variable "sort" wahrscheinlich sogar überflüssig
 
 267   # ändert man die Sortierreihenfolge per Klick auf eine der Überschriften wird die Variable "sort" per GET übergeben, z.B. id,transdate, gldate, ...
 
 268   # 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
 
 270   if ( $form->{sort} eq 'datesort' ) {   # sollte bei einem Post (Aufruf aus Suchmaske) immer wahr sein
 
 271       # je nachdem ob in Suchmaske "transdate" oder "gldate" ausgesucht wurde erstes Suchergebnis entsprechend sortieren
 
 272       $form->{sort} = $form->{datesort};
 
 276   report_generator_set_default_sort("$form->{datesort}", 1);
 
 277 #  report_generator_set_default_sort('transdate', 1);
 
 279   GL->all_transactions(\%myconfig, \%$form);
 
 281   my %acctype = ('A' => $locale->text('Asset'),
 
 282                  'C' => $locale->text('Contra'),
 
 283                  'L' => $locale->text('Liability'),
 
 284                  'Q' => $locale->text('Equity'),
 
 285                  'I' => $locale->text('Revenue'),
 
 286                  'E' => $locale->text('Expense'),);
 
 288   $form->{title} = $locale->text('Journal');
 
 289   if ($form->{category} ne 'X') {
 
 290     $form->{title} .= " : " . $locale->text($acctype{ $form->{category} });
 
 293   $form->{landscape} = 1;
 
 295   my $ml = ($form->{ml} =~ /(A|E|Q)/) ? -1 : 1;
 
 298     gldate         transdate        id             reference      description
 
 299     notes          source           debit          debit_accno
 
 300     credit         credit_accno     debit_tax      debit_tax_accno
 
 301     credit_tax     credit_tax_accno projectnumbers balance employee
 
 304   # add employee here, so that variable is still known and passed in url when choosing a different sort order in resulting table
 
 305   my @hidden_variables = qw(accno source reference department description notes project_id datefrom dateto employee_id datesort category l_subtotal);
 
 306   push @hidden_variables, map { "l_${_}" } @columns;
 
 308   my $employee = $form->{employee_id} ? SL::DB::Employee->new(id => $form->{employee_id})->load->name : '';
 
 310   my (@options, @date_options);
 
 311   push @options,      $locale->text('Account')     . " : $form->{accno} $form->{account_description}" if ($form->{accno});
 
 312   push @options,      $locale->text('Source')      . " : $form->{source}"                             if ($form->{source});
 
 313   push @options,      $locale->text('Reference')   . " : $form->{reference}"                          if ($form->{reference});
 
 314   push @options,      $locale->text('Description') . " : $form->{description}"                        if ($form->{description});
 
 315   push @options,      $locale->text('Notes')       . " : $form->{notes}"                              if ($form->{notes});
 
 316   push @options,      $locale->text('Employee')    . " : $employee"                                   if $employee;
 
 317   my $datesorttext = $form->{datesort} eq 'transdate' ? $locale->text('Invoice Date') :  $locale->text('Booking Date');
 
 318   push @date_options,      "$datesorttext"                              if ($form->{datesort} and ($form->{datefrom} or $form->{dateto}));
 
 319   push @date_options, $locale->text('From'), $locale->date(\%myconfig, $form->{datefrom}, 1)          if ($form->{datefrom});
 
 320   push @date_options, $locale->text('Bis'),  $locale->date(\%myconfig, $form->{dateto},   1)          if ($form->{dateto});
 
 321   push @options,      join(' ', @date_options)                                                        if (scalar @date_options);
 
 323   if ($form->{department}) {
 
 324     my ($department) = split /--/, $form->{department};
 
 325     push @options, $locale->text('Department') . " : $department";
 
 329   my $callback = build_std_url('action=generate_report', grep { $form->{$_} } @hidden_variables);
 
 331   $form->{l_credit_accno}     = 'Y';
 
 332   $form->{l_debit_accno}      = 'Y';
 
 333   $form->{l_credit_tax}       = 'Y';
 
 334   $form->{l_debit_tax}        = 'Y';
 
 335 #  $form->{l_gldate}           = 'Y';  # Spalte mit gldate immer anzeigen
 
 336   $form->{l_credit_tax_accno} = 'Y';
 
 337   $form->{l_datesort} = 'Y';
 
 338   $form->{l_debit_tax_accno}  = 'Y';
 
 339   $form->{l_balance}          = $form->{accno} ? 'Y' : '';
 
 342     'id'               => { 'text' => $locale->text('ID'), },
 
 343     'transdate'        => { 'text' => $locale->text('Invoice Date'), },
 
 344     'gldate'           => { 'text' => $locale->text('Booking Date'), },
 
 345     'reference'        => { 'text' => $locale->text('Reference'), },
 
 346     'source'           => { 'text' => $locale->text('Source'), },
 
 347     'description'      => { 'text' => $locale->text('Description'), },
 
 348     'notes'            => { 'text' => $locale->text('Notes'), },
 
 349     'debit'            => { 'text' => $locale->text('Debit'), },
 
 350     'debit_accno'      => { 'text' => $locale->text('Debit Account'), },
 
 351     'credit'           => { 'text' => $locale->text('Credit'), },
 
 352     'credit_accno'     => { 'text' => $locale->text('Credit Account'), },
 
 353     'debit_tax'        => { 'text' => $locale->text('Debit Tax'), },
 
 354     'debit_tax_accno'  => { 'text' => $locale->text('Debit Tax Account'), },
 
 355     'credit_tax'       => { 'text' => $locale->text('Credit Tax'), },
 
 356     'credit_tax_accno' => { 'text' => $locale->text('Credit Tax Account'), },
 
 357     'balance'          => { 'text' => $locale->text('Balance'), },
 
 358     'projectnumbers'   => { 'text' => $locale->text('Project Numbers'), },
 
 359     'employee'         => { 'text' => $locale->text('Employee'), },
 
 362   foreach my $name (qw(id transdate gldate reference description debit_accno credit_accno debit_tax_accno credit_tax_accno)) {
 
 363     my $sortname                = $name =~ m/accno/ ? 'accno' : $name;
 
 364     my $sortdir                 = $sortname eq $form->{sort} ? 1 - $form->{sortdir} : $form->{sortdir};
 
 365     $column_defs{$name}->{link} = $callback . "&sort=$sortname&sortdir=$sortdir";
 
 368   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 369   map { $column_defs{$_}->{visible} = 0 } qw(debit_accno credit_accno debit_tax_accno credit_tax_accno) if $form->{accno};
 
 371   my %column_alignment;
 
 372   map { $column_alignment{$_}     = 'right'  } qw(balance id debit credit debit_tax credit_tax balance);
 
 373   map { $column_alignment{$_}     = 'center' } qw(transdate gldate reference debit_accno credit_accno debit_tax_accno credit_tax_accno);
 
 374   map { $column_alignment{$_}     = 'left' } qw(description source notes);
 
 375   map { $column_defs{$_}->{align} = $column_alignment{$_} } keys %column_alignment;
 
 377   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 379   $report->set_columns(%column_defs);
 
 380   $report->set_column_order(@columns);
 
 382   $report->set_export_options('generate_report', @hidden_variables, qw(sort sortdir));
 
 384   $report->set_sort_indicator($form->{sort} eq 'accno' ? 'debit_accno' : $form->{sort}, $form->{sortdir});
 
 386   $report->set_options('top_info_text'        => join("\n", @options),
 
 387                        'output_format'        => 'HTML',
 
 388                        'title'                => $form->{title},
 
 389                        'attachment_basename'  => $locale->text('general_ledger_list') . strftime('_%Y%m%d', localtime time),
 
 391   $report->set_options_from_form();
 
 392   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
 394   # add sort to callback
 
 395   $form->{callback} = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir});
 
 398   my @totals_columns = qw(debit credit debit_tax credit_tax);
 
 399   my %subtotals      = map { $_ => 0 } @totals_columns;
 
 400   my %totals         = map { $_ => 0 } @totals_columns;
 
 403   foreach my $ref (@{ $form->{GL} }) {
 
 407     foreach my $key (qw(debit credit debit_tax credit_tax)) {
 
 409       foreach my $idx (sort keys(%{ $ref->{$key} })) {
 
 410         my $value         = $ref->{$key}->{$idx};
 
 411         $subtotals{$key} += $value;
 
 412         $totals{$key}    += $value;
 
 413         if ($key =~ /debit.*/) {
 
 418         $form->{balance}  = $form->{balance} + $value * $ml;
 
 419         push @{ $rows{$key} }, $form->format_amount(\%myconfig, $value, 2);
 
 423     foreach my $key (qw(debit_accno credit_accno debit_tax_accno credit_tax_accno ac_transdate source)) {
 
 424       my $col = $key eq 'ac_transdate' ? 'transdate' : $key;
 
 425       $rows{$col} = [ map { $ref->{$key}->{$_} } sort keys(%{ $ref->{$key} }) ];
 
 429     map { $row->{$_} = { 'data' => '', 'align' => $column_alignment{$_} } } @columns;
 
 432     if ($form->{balance} < 0) {
 
 435     } elsif ($form->{balance} > 0) {
 
 439     my $data = $form->format_amount(\%myconfig, ($form->{balance} * $ml), 2);
 
 442     $row->{balance}->{data}        = $data;
 
 443     $row->{projectnumbers}->{data} = join ", ", sort { lc($a) cmp lc($b) } keys %{ $ref->{projectnumbers} };
 
 445     map { $row->{$_}->{data} = $ref->{$_} } qw(id reference description notes gldate employee);
 
 447     map { $row->{$_}->{data} = \@{ $rows{$_} }; } qw(transdate debit credit debit_accno credit_accno debit_tax_accno credit_tax_accno source);
 
 449     foreach my $col (qw(debit_accno credit_accno debit_tax_accno credit_tax_accno)) {
 
 450       $row->{$col}->{link} = [ map { "${callback}&accno=" . E($_) } @{ $rows{$col} } ];
 
 453     map { $row->{$_}->{data} = \@{ $rows{$_} } if ($ref->{"${_}_accno"} ne "") } qw(debit_tax credit_tax);
 
 455     $row->{reference}->{link} = build_std_url("script=$ref->{module}.pl", 'action=edit', 'id=' . E($ref->{id}), 'callback');
 
 457     my $row_set = [ $row ];
 
 459     if ( ($form->{l_subtotal} eq 'Y' && !$form->{report_generator_csv_options_for_import} )
 
 460         && (($idx == (scalar @{ $form->{GL} } - 1))
 
 461             || ($ref->{ $form->{sort} } ne $form->{GL}->[$idx + 1]->{ $form->{sort} }))) {
 
 462       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, [ qw(debit credit) ], 'listsubtotal');
 
 465     $report->add_data($row_set);
 
 470   # = 0 for balanced ledger
 
 471   my $balanced_ledger = $totals{debit} + $totals{debit_tax} - $totals{credit} - $totals{credit_tax};
 
 473   my $row = create_subtotal_row(\%totals, \@columns, \%column_alignment, [ qw(debit credit debit_tax credit_tax) ], 'listtotal');
 
 476   if ($form->{balance} < 0) {
 
 479   } elsif ($form->{balance} > 0) {
 
 483   my $data = $form->format_amount(\%myconfig, ($form->{balance} * $ml), 2);
 
 486   $row->{balance}->{data}        = $data;
 
 488   if ( !$form->{report_generator_csv_options_for_import} ) {
 
 489     $report->add_separator();
 
 490     $report->add_data($row);
 
 493   my $raw_bottom_info_text;
 
 495   if (!$form->{accno} && (abs($balanced_ledger) >  0.001)) {
 
 496     $raw_bottom_info_text .=
 
 497         '<p><span class="unbalanced_ledger">'
 
 498       . $locale->text('Unbalanced Ledger')
 
 500       . $form->format_amount(\%myconfig, $balanced_ledger, 3)
 
 504   $raw_bottom_info_text .= $form->parse_html_template('gl/generate_report_bottom');
 
 506   $report->set_options('raw_bottom_info_text' => $raw_bottom_info_text);
 
 508   $report->generate_with_headers();
 
 510   $main::lxdebug->leave_sub();
 
 514   $main::lxdebug->enter_sub();
 
 516   $main::auth->assert('general_ledger');
 
 518   my $form     = $main::form;
 
 519   my %myconfig = %main::myconfig;
 
 521   $form->{oldtransdate} = $form->{transdate};
 
 529   my ($debitcredit, $amount);
 
 531   my $dbh = $form->dbconnect_noauto(\%myconfig);
 
 532   my ($notax_id) = selectrow_query($form, $dbh, "SELECT id FROM tax WHERE taxkey = 0 LIMIT 1", );
 
 533   my $zerotaxes  = selectall_hashref_query($form, $dbh, "SELECT id FROM tax WHERE rate = 0", );
 
 537     qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
 
 539   for my $i (1 .. $form->{rowcount}) {
 
 541     unless (($form->{"debit_$i"} eq "") && ($form->{"credit_$i"} eq "")) {
 
 542       for (qw(debit credit tax)) {
 
 544           $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
 
 548       $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
 
 555       if (($debitcount >= 2) && ($creditcount == 2)) {
 
 556         $form->{"credit_$i"} = 0;
 
 557         $form->{"tax_$i"}    = 0;
 
 559         $form->{creditlock} = 1;
 
 561       if (($creditcount >= 2) && ($debitcount == 2)) {
 
 562         $form->{"debit_$i"} = 0;
 
 563         $form->{"tax_$i"}   = 0;
 
 565         $form->{debitlock} = 1;
 
 567       if (($creditcount == 1) && ($debitcount == 2)) {
 
 568         $form->{creditlock} = 1;
 
 570       if (($creditcount == 2) && ($debitcount == 1)) {
 
 571         $form->{debitlock} = 1;
 
 573       if ($debitcredit && $credittax) {
 
 574         $form->{"taxchart_$i"} = "$notax_id--0.00";
 
 576       if (!$debitcredit && $debittax) {
 
 577         $form->{"taxchart_$i"} = "$notax_id--0.00";
 
 580         ($form->{"debit_$i"} == 0)
 
 581         ? $form->{"credit_$i"}
 
 582         : $form->{"debit_$i"};
 
 584       if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
 
 585         $form->{"taxchart_$i"} = "$notax_id--0.00";
 
 586         $form->{"tax_$i"}      = 0;
 
 588       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 589       my $iswithouttax = grep { $_->{id} == $taxkey } @{ $zerotaxes };
 
 590       if (!$iswithouttax) {
 
 597       my ($tmpnetamount,$tmpdiff);
 
 598       ($tmpnetamount,$form->{"tax_$i"},$tmpdiff) = $form->calculate_tax($amount,$rate,$form->{taxincluded} *= 1,2);
 
 600       for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
 
 605   for my $i (1 .. $count) {
 
 607     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
 
 610   for my $i ($count + 1 .. $form->{rowcount}) {
 
 611     for (@flds) { delete $form->{"${_}_$i"} }
 
 614   $form->{rowcount} = $count + 1;
 
 617   $main::lxdebug->leave_sub();
 
 623   $main::lxdebug->enter_sub();
 
 625   $main::auth->assert('general_ledger');
 
 627   my $form     = $main::form;
 
 628   my %myconfig = %main::myconfig;
 
 632   #   for $i (1 .. $form->{rowcount}) {
 
 633   #     $form->{totaldebit} += $form->parse_amount(\%myconfig, $form->{"debit_$i"});
 
 634   #     $form->{totalcredit} += $form->parse_amount(\%myconfig, $form->{"credit_$i"});
 
 638   &display_rows($init);
 
 640   $main::lxdebug->leave_sub();
 
 646   $main::lxdebug->enter_sub();
 
 648   $main::auth->assert('general_ledger');
 
 650   my $form     = $main::form;
 
 651   my %myconfig = %main::myconfig;
 
 652   my $cgi      = $::request->{cgi};
 
 654   $form->{debit_1}     = 0 if !$form->{"debit_1"};
 
 655   $form->{totaldebit}  = 0;
 
 656   $form->{totalcredit} = 0;
 
 658   my %project_labels = ();
 
 659   my @project_values = ("");
 
 660   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 661     push(@project_values, $item->{"id"});
 
 662     $project_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 665   my %chart_labels = ();
 
 666   my @chart_values = ();
 
 669   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 670     if ($item->{charttype} eq 'H'){ #falls ÃŒberschrift
 
 671       next;                         #ÃŒberspringen (Bug 1150)
 
 673     my $key = $item->{accno} . "--" . $item->{tax_id};
 
 674     $taxchart_init = $item->{tax_id} unless (@chart_values);
 
 675     push(@chart_values, $key);
 
 676     $chart_labels{$key} = $item->{accno} . "--" . $item->{description};
 
 677     $charts{$item->{accno}} = $item;
 
 680   my ($source, $memo, $source_hidden, $memo_hidden);
 
 681   for my $i (1 .. $form->{rowcount}) {
 
 682     if ($form->{show_details}) {
 
 684       <td><input name="source_$i" value="$form->{"source_$i"}" size="16"></td>|;
 
 686       <td><input name="memo_$i" value="$form->{"memo_$i"}" size="16"></td>|;
 
 689       <input type="hidden" name="source_$i" value="$form->{"source_$i"}" size="16">|;
 
 691       <input type="hidden" name="memo_$i" value="$form->{"memo_$i"}" size="16">|;
 
 694     my $selected_accno_full;
 
 695     my ($accno_row) = split(/--/, $form->{"accno_$i"});
 
 696     my $item = $charts{$accno_row};
 
 697     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
 
 699     my $selected_taxchart = $form->{"taxchart_$i"};
 
 700     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
 
 701     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_accno_$i"});
 
 703     my %taxchart_labels = ();
 
 704     my @taxchart_values = ();
 
 707     $filter_accno = $::form->{ALL_CHARTS}[0]->{accno};
 
 708     $filter_accno = $selected_accno if (!$init and $i < $form->{rowcount});
 
 709     foreach my $item ( GL->get_tax_dropdown($filter_accno) ) {
 
 710       my $key = $item->{id} . "--" . $item->{rate};
 
 711       $taxchart_init = $key if ($taxchart_init == $item->{id});
 
 712       push(@taxchart_values, $key);
 
 713       $taxchart_labels{$key} = $item->{taxdescription} . " " . $item->{rate} * 100 . ' %';
 
 714       $taxcharts{$item->{id}} = $item;
 
 717     if ($previous_accno &&
 
 718         ($previous_accno eq $selected_accno) &&
 
 719         ($previous_tax_id ne $selected_tax_id)) {
 
 720       my $item = $taxcharts{$selected_tax_id};
 
 721       $selected_taxchart = "$item->{id}--$item->{rate}";
 
 724     $selected_accno      = '' if ($init);
 
 725     $selected_taxchart ||= $taxchart_init;
 
 727     my $accno = qq|<td>| .
 
 728       NTI($cgi->popup_menu('-name' => "accno_$i",
 
 730                            '-onChange' => "updateTaxes($i);",
 
 731                            '-style' => 'width:200px',
 
 732                            '-values' => \@chart_values,
 
 733                            '-labels' => \%chart_labels,
 
 734                            '-default' => $selected_accno_full))
 
 735       . $cgi->hidden('-name' => "previous_accno_$i",
 
 736                      '-default' => $selected_accno_full)
 
 738     my $tax_ddbox = qq|<td>| .
 
 739       NTI($cgi->popup_menu('-name' => "taxchart_$i",
 
 740             '-id' => "taxchart_$i",
 
 741             '-style' => 'width:200px',
 
 742             '-values' => \@taxchart_values,
 
 743             '-labels' => \%taxchart_labels,
 
 744             '-default' => $selected_taxchart))
 
 747     my ($fx_transaction, $checked);
 
 749       if ($form->{transfer}) {
 
 750         $fx_transaction = qq|
 
 751         <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
 
 756       if ($form->{"debit_$i"} != 0) {
 
 757         $form->{totaldebit} += $form->{"debit_$i"};
 
 758         if (!$form->{taxincluded}) {
 
 759           $form->{totaldebit} += $form->{"tax_$i"};
 
 762         $form->{totalcredit} += $form->{"credit_$i"};
 
 763         if (!$form->{taxincluded}) {
 
 764           $form->{totalcredit} += $form->{"tax_$i"};
 
 768       for (qw(debit credit tax)) {
 
 771           ? $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
 
 775       if ($i < $form->{rowcount}) {
 
 776         if ($form->{transfer}) {
 
 777           $checked = ($form->{"fx_transaction_$i"}) ? "1" : "";
 
 778           my $x = ($checked) ? "x" : "";
 
 779           $fx_transaction = qq|
 
 780       <td><input type=hidden name="fx_transaction_$i" value="$checked">$x</td>
 
 783         $form->hide_form("accno_$i");
 
 786         if ($form->{transfer}) {
 
 787           $fx_transaction = qq|
 
 788       <td><input name="fx_transaction_$i" class=checkbox type=checkbox value=1></td>
 
 793     my $debitreadonly  = "";
 
 794     my $creditreadonly = "";
 
 795     if ($i == $form->{rowcount}) {
 
 796       if ($form->{debitlock}) {
 
 797         $debitreadonly = "readonly";
 
 798       } elsif ($form->{creditlock}) {
 
 799         $creditreadonly = "readonly";
 
 804       NTI($cgi->popup_menu('-name' => "project_id_$i",
 
 805                            '-values' => \@project_values,
 
 806                            '-labels' => \%project_labels,
 
 807                            '-default' => $form->{"project_id_$i"} ));
 
 808     my $projectnumber_hidden = qq|
 
 809     <input type="hidden" name="project_id_$i" value="$form->{"project_id_$i"}">|;
 
 811     my $copy2credit = $i == 1 ? 'onkeyup="copy_debit_to_credit()"' : '';
 
 813     print qq|<tr valign=top>
 
 815     <td id="chart_balance_$i" align="right"> </td>
 
 817     <td><input name="debit_$i" size="8" value="$form->{"debit_$i"}" accesskey=$i $copy2credit $debitreadonly></td>
 
 818     <td><input name="credit_$i" size=8 value="$form->{"credit_$i"}" $creditreadonly></td>
 
 819     <td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
 
 822     if ($form->{show_details}) {
 
 826     <td>$projectnumber</td>
 
 832     $projectnumber_hidden
 
 840   $form->hide_form(qw(rowcount selectaccno));
 
 842   $main::lxdebug->leave_sub();
 
 847   return ($::instance_conf->get_gl_changeable == 2) ? ($::form->current_date(\%::myconfig) eq $::form->{gldate}) : ($::instance_conf->get_gl_changeable == 1);
 
 851   $::lxdebug->enter_sub;
 
 852   $::auth->assert('general_ledger');
 
 856   my @old_project_ids = grep { $_ } map{ $::form->{"project_id_$_"} } 1..$::form->{rowcount};
 
 858   $::form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
 
 860                                     "old_id"    => \@old_project_ids },
 
 861                    "charts"    => { "key"       => "ALL_CHARTS",
 
 862                                     "transdate" => $::form->{transdate} });
 
 864   GL->get_chart_balances('charts' => $::form->{ALL_CHARTS});
 
 866   my $title      = $::form->{title};
 
 867   $::form->{title} = $::locale->text("$title General Ledger Transaction");
 
 868   # $locale->text('Add General Ledger Transaction')
 
 869   # $locale->text('Edit General Ledger Transaction')
 
 871   map { $::form->{$_} =~ s/\"/"/g }
 
 874   $::form->{selectdepartment} =~ s/ selected//;
 
 875   $::form->{selectdepartment} =~
 
 876     s/option>\Q$::form->{department}\E/option selected>$::form->{department}/;
 
 879     $::request->{layout}->focus("#reference");
 
 880     $::form->{taxincluded} = "1";
 
 882     $::request->{layout}->focus("#accno_$::form->{rowcount}");
 
 885   $::form->{previous_id}     ||= "--";
 
 886   $::form->{previous_gldate} ||= "--";
 
 889   print $::form->parse_html_template('gl/form_header', {
 
 890     hide_title => $title,
 
 891     readonly   => $::form->{id} && ($::form->{locked} || !_get_radieren()),
 
 894   $::lxdebug->leave_sub;
 
 899   $::lxdebug->enter_sub;
 
 900   $::auth->assert('general_ledger');
 
 902   my ($follow_ups, $follow_ups_due);
 
 905     $follow_ups     = FU->follow_ups('trans_id' => $::form->{id}, 'not_done' => 1);
 
 906     $follow_ups_due = sum map { $_->{due} * 1 } @{ $follow_ups || [] };
 
 909   print $::form->parse_html_template('gl/form_footer', {
 
 910     radieren       => _get_radieren(),
 
 911     follow_ups     => $follow_ups,
 
 912     follow_ups_due => $follow_ups_due,
 
 915   $::lxdebug->leave_sub;
 
 919   $main::lxdebug->enter_sub();
 
 921   my $form     = $main::form;
 
 922   my $locale   = $main::locale;
 
 927 <form method=post action=gl.pl>
 
 930   map { $form->{$_} =~ s/\"/"/g } qw(reference description);
 
 932   delete $form->{header};
 
 934   foreach my $key (keys %$form) {
 
 935     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
 936     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
 
 940 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
 943     . $locale->text('Are you sure you want to delete Transaction')
 
 944     . qq| $form->{reference}</h4>
 
 946 <input name=action class=submit type=submit value="|
 
 947     . $locale->text('Yes') . qq|">
 
 950   $main::lxdebug->leave_sub();
 
 955   $main::lxdebug->enter_sub();
 
 957   my $form     = $main::form;
 
 958   my %myconfig = %main::myconfig;
 
 959   my $locale   = $main::locale;
 
 961   if (GL->delete_transaction(\%myconfig, \%$form)){
 
 963       if(!exists $form->{addition} && $form->{id} ne "") {
 
 964         $form->{snumbers} = qq|gltransaction_| . $form->{id};
 
 965         $form->{addition} = "DELETED";
 
 966         $form->{what_done} = "gl_transaction";
 
 969     # /saving the history
 
 970     $form->redirect($locale->text('Transaction deleted!'))
 
 972   $form->error($locale->text('Cannot delete transaction!'));
 
 973   $main::lxdebug->leave_sub();
 
 977 sub post_transaction {
 
 978   $main::lxdebug->enter_sub();
 
 980   my $form     = $main::form;
 
 981   my %myconfig = %main::myconfig;
 
 982   my $locale   = $main::locale;
 
 984   # check if there is something in reference and date
 
 985   $form->isblank("reference",   $locale->text('Reference missing!'));
 
 986   $form->isblank("transdate",   $locale->text('Transaction Date missing!'));
 
 987   $form->isblank("description", $locale->text('Description missing!'));
 
 989   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 990   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 999   my %split_safety = ();
 
1001   my $dbh = $form->dbconnect_noauto(\%myconfig);
 
1002   my ($notax_id) = selectrow_query($form, $dbh, "SELECT id FROM tax WHERE taxkey = 0 LIMIT 1", );
 
1003   my $zerotaxes  = selectall_hashref_query($form, $dbh, "SELECT id FROM tax WHERE rate = 0", );
 
1006   my @flds = qw(accno debit credit projectnumber fx_transaction source memo tax taxchart);
 
1008   for my $i (1 .. $form->{rowcount}) {
 
1009     next if $form->{"debit_$i"} eq "" && $form->{"credit_$i"} eq "";
 
1011     for (qw(debit credit tax)) {
 
1012       $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"});
 
1016     $debitcredit = ($form->{"debit_$i"} == 0) ? "0" : "1";
 
1018     $split_safety{   $form->{"debit_$i"}  <=> 0 }++;
 
1019     $split_safety{ - $form->{"credit_$i"} <=> 0 }++;
 
1027     if (($debitcount >= 2) && ($creditcount == 2)) {
 
1028       $form->{"credit_$i"} = 0;
 
1029       $form->{"tax_$i"}    = 0;
 
1031       $form->{creditlock} = 1;
 
1033     if (($creditcount >= 2) && ($debitcount == 2)) {
 
1034       $form->{"debit_$i"} = 0;
 
1035       $form->{"tax_$i"}   = 0;
 
1037       $form->{debitlock} = 1;
 
1039     if (($creditcount == 1) && ($debitcount == 2)) {
 
1040       $form->{creditlock} = 1;
 
1042     if (($creditcount == 2) && ($debitcount == 1)) {
 
1043       $form->{debitlock} = 1;
 
1045     if ($debitcredit && $credittax) {
 
1046       $form->{"taxchart_$i"} = "$notax_id--0.00";
 
1048     if (!$debitcredit && $debittax) {
 
1049       $form->{"taxchart_$i"} = "$notax_id--0.00";
 
1051     my $amount = ($form->{"debit_$i"} == 0)
 
1052             ? $form->{"credit_$i"}
 
1053             : $form->{"debit_$i"};
 
1055     if (($debitcredit && $credittax) || (!$debitcredit && $debittax)) {
 
1056       $form->{"taxchart_$i"} = "$notax_id--0.00";
 
1057       $form->{"tax_$i"}      = 0;
 
1059     my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
1060     my $iswithouttax = grep { $_->{id} == $taxkey } @{ $zerotaxes };
 
1061     if (!$iswithouttax) {
 
1068       my ($tmpnetamount,$tmpdiff);
 
1069       ($tmpnetamount,$form->{"tax_$i"},$tmpdiff) = $form->calculate_tax($amount,$rate,$form->{taxincluded} *= 1,2);
 
1071         $form->{"debit_$i"} = $tmpnetamount;
 
1073         $form->{"credit_$i"} = $tmpnetamount;
 
1077       $form->{"tax_$i"} = 0;
 
1080     for (@flds) { $a[$j]->{$_} = $form->{"${_}_$i"} }
 
1084   if ($split_safety{-1} > 1 && $split_safety{1} > 1) {
 
1085     $::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. " .
 
1086                                    "Due to known problems involving accounting software kivitendo does not allow these."));
 
1089   for my $i (1 .. $count) {
 
1091     for (@flds) { $form->{"${_}_$i"} = $a[$j]->{$_} }
 
1094   for my $i ($count + 1 .. $form->{rowcount}) {
 
1095     for (@flds) { delete $form->{"${_}_$i"} }
 
1098   my ($debit, $credit, $taxtotal);
 
1099   for my $i (1 .. $form->{rowcount}) {
 
1100     my $dr  = $form->{"debit_$i"};
 
1101     my $cr  = $form->{"credit_$i"};
 
1102     my $tax = $form->{"tax_$i"};
 
1104       $form->error($locale->text('Cannot post transaction with a debit and credit entry for the same account!'));
 
1106     $debit    += $dr + $tax if $dr;
 
1107     $credit   += $cr + $tax if $cr;
 
1108     $taxtotal += $tax if $form->{taxincluded}
 
1111   $form->{taxincluded} = 0 if !$taxtotal;
 
1113   # this is just for the wise guys
 
1115   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
1116     if ($form->date_max_future($form->{"transdate"}, \%myconfig));
 
1117   $form->error($locale->text('Cannot post transaction for a closed period!'))
 
1118     if ($form->date_closed($form->{"transdate"}, \%myconfig));
 
1119   if ($form->round_amount($debit, 2) != $form->round_amount($credit, 2)) {
 
1120     $form->error($locale->text('Out of balance transaction!'));
 
1123   if ($form->round_amount($debit, 2) + $form->round_amount($credit, 2) == 0) {
 
1124     $form->error($locale->text('Empty transaction!'));
 
1127   if ((my $errno = GL->post_transaction(\%myconfig, \%$form)) <= -1) {
 
1130     $err[1] = $locale->text('Cannot have a value in both Debit and Credit!');
 
1131     $err[2] = $locale->text('Debit and credit out of balance!');
 
1132     $err[3] = $locale->text('Cannot post a transaction without a value!');
 
1134     $form->error($err[$errno]);
 
1136   undef($form->{callback});
 
1137   # saving the history
 
1138   if(!exists $form->{addition} && $form->{id} ne "") {
 
1139     $form->{snumbers} = qq|gltransaction_| . $form->{id};
 
1140     $form->{addition} = "POSTED";
 
1141     $form->{what_done} = "gl transaction";
 
1142     $form->save_history;
 
1144   # /saving the history
 
1146   $main::lxdebug->leave_sub();
 
1150   $main::lxdebug->enter_sub();
 
1152   $main::auth->assert('general_ledger');
 
1154   my $form     = $main::form;
 
1155   my $locale   = $main::locale;
 
1157   if ($::myconfig{mandatory_departments} && !$form->{department}) {
 
1158     $form->{saved_message} = $::locale->text('You have to specify a department.');
 
1163   $form->{title}  = $locale->text("$form->{title} General Ledger Transaction");
 
1164   $form->{storno} = 0;
 
1168   $form->{callback} = build_std_url("action=add", "show_details");
 
1169   $form->redirect($form->{callback});
 
1171   $main::lxdebug->leave_sub();
 
1175   $main::lxdebug->enter_sub();
 
1177   $main::auth->assert('general_ledger');
 
1179   my $form     = $main::form;
 
1183   $main::lxdebug->leave_sub();
 
1188   $main::lxdebug->enter_sub();
 
1190   $main::auth->assert('general_ledger');
 
1192   my $form     = $main::form;
 
1193   my %myconfig = %main::myconfig;
 
1194   my $locale   = $main::locale;
 
1196   # don't cancel cancelled transactions
 
1197   if (IS->has_storno(\%myconfig, $form, 'gl')) {
 
1198     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
 
1199     $form->error($locale->text("Transaction has already been cancelled!"));
 
1202   GL->storno($form, \%myconfig, $form->{id});
 
1204   # saving the history
 
1205   if(!exists $form->{addition} && $form->{id} ne "") {
 
1206     $form->{snumbers} = qq|gltransaction_| . $form->{id};
 
1207     $form->{addition} = "STORNO";
 
1208     $form->{what_done} = "gl_transaction";
 
1209     $form->save_history;
 
1211   # /saving the history
 
1213   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
 
1215   $main::lxdebug->leave_sub();
 
1219   call_sub($main::form->{nextsub});
 
1222 sub get_tax_dropdown {
 
1223   $main::lxdebug->enter_sub();
 
1225   my $form = $main::form;
 
1226   my @tax_accounts = GL->get_tax_dropdown($form->{accno});
 
1228   foreach my $item (@tax_accounts) {
 
1229     $item->{taxdescription} = $::locale->{iconv_utf8}->convert($item->{taxdescription});
 
1230     $item->{taxdescription} .= ' ' . $form->round_amount($item->{rate} * 100);
 
1233   $form->{TAX_ACCOUNTS} = [ @tax_accounts ];
 
1235   print $form->ajax_response_header, $form->parse_html_template("gl/update_tax_accounts");
 
1237   $main::lxdebug->leave_sub();