1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
  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 #======================================================================
 
  30 # Accounts Receivables
 
  32 #======================================================================
 
  34 use POSIX qw(strftime);
 
  35 use List::Util qw(sum first max);
 
  42 use SL::ReportGenerator;
 
  44 require "bin/mozilla/arap.pl";
 
  45 require "bin/mozilla/common.pl";
 
  46 require "bin/mozilla/drafts.pl";
 
  47 require "bin/mozilla/reportgenerator.pl";
 
  52 # this is for our long dates
 
  53 # $locale->text('January')
 
  54 # $locale->text('February')
 
  55 # $locale->text('March')
 
  56 # $locale->text('April')
 
  57 # $locale->text('May ')
 
  58 # $locale->text('June')
 
  59 # $locale->text('July')
 
  60 # $locale->text('August')
 
  61 # $locale->text('September')
 
  62 # $locale->text('October')
 
  63 # $locale->text('November')
 
  64 # $locale->text('December')
 
  66 # this is for our short month
 
  67 # $locale->text('Jan')
 
  68 # $locale->text('Feb')
 
  69 # $locale->text('Mar')
 
  70 # $locale->text('Apr')
 
  71 # $locale->text('May')
 
  72 # $locale->text('Jun')
 
  73 # $locale->text('Jul')
 
  74 # $locale->text('Aug')
 
  75 # $locale->text('Sep')
 
  76 # $locale->text('Oct')
 
  77 # $locale->text('Nov')
 
  78 # $locale->text('Dec')
 
  81   $main::lxdebug->enter_sub();
 
  83   $main::auth->assert('general_ledger');
 
  85   my $form     = $main::form;
 
  86   my %myconfig = %main::myconfig;
 
  88   return $main::lxdebug->leave_sub() if (load_draft_maybe());
 
  91   if(!exists $form->{addition} && ($form->{id} ne "")) {
 
  92     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
  93     $form->{addition} = "ADDED";
 
  98   $form->{title}    = "Add";
 
  99   $form->{callback} = "ar.pl?action=add&DONT_LOAD_DRAFT=1" unless $form->{callback};
 
 101   AR->get_transdate(\%myconfig, $form);
 
 102   $form->{initial_transdate} = $form->{transdate};
 
 103   create_links(dont_save => 1);
 
 104   $form->{transdate} = $form->{initial_transdate};
 
 106   $main::lxdebug->leave_sub();
 
 110   $main::lxdebug->enter_sub();
 
 112   $main::auth->assert('general_ledger');
 
 114   my $form     = $main::form;
 
 116   # show history button
 
 117   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 118   #/show hhistory button
 
 119   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
 120   $form->{title} = "Edit";
 
 125   $main::lxdebug->leave_sub();
 
 129   $main::lxdebug->enter_sub();
 
 131   $main::auth->assert('general_ledger');
 
 133   my $form     = $main::form;
 
 138   $main::lxdebug->leave_sub();
 
 142   $main::lxdebug->enter_sub();
 
 144   $main::auth->assert('general_ledger');
 
 147   my $form     = $main::form;
 
 148   my %myconfig = %main::myconfig;
 
 150   $form->create_links("AR", \%myconfig, "customer");
 
 153   if (!$params{dont_save}) {
 
 154     %saved = map { ($_ => $form->{$_}) } qw(direct_debit id taxincluded);
 
 155     $saved{duedate} = $form->{duedate} if $form->{duedate};
 
 158   IS->get_customer(\%myconfig, \%$form);
 
 160   $form->{$_}          = $saved{$_} for keys %saved;
 
 161   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
 
 162   $form->{rowcount}    = 1;
 
 165   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 167   map { $form->{selectcurrency} .= "<option>$_\n" } $form->get_all_currencies(\%myconfig);
 
 170   if (@{ $form->{all_customer} || [] }) {
 
 171     $form->{customer} = "$form->{customer}--$form->{customer_id}";
 
 172     map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
 
 173       (@{ $form->{all_customer} });
 
 177   if (@{ $form->{all_departments} || [] }) {
 
 178     $form->{selectdepartment} = "<option>\n";
 
 179     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 182       $form->{selectdepartment} .=
 
 183         "<option>$_->{description}--$_->{id}\n"
 
 184     } (@{ $form->{all_departments} || [] });
 
 187   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 190   if (@{ $form->{all_employees} || [] }) {
 
 191     $form->{selectemployee} = "";
 
 192     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
 
 193       (@{ $form->{all_employees} || [] });
 
 196   # build the popup menus
 
 197   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
 
 199   AR->setup_form($form);
 
 202     ($form->datetonum($form->{transdate}, \%myconfig) <=
 
 203      $form->datetonum($form->{closedto}, \%myconfig));
 
 205   $main::lxdebug->leave_sub();
 
 209   $main::lxdebug->enter_sub();
 
 211   $main::auth->assert('general_ledger');
 
 213   my $form     = $main::form;
 
 214   my %myconfig = %main::myconfig;
 
 215   my $locale   = $main::locale;
 
 216   my $cgi      = $::request->{cgi};
 
 218   my ($title, $readonly, $exchangerate, $rows);
 
 219   my ($notes, $department, $customer, $employee, $amount, $project);
 
 223   $title = $form->{title};
 
 224   # $locale->text('Add Accounts Receivables Transaction')
 
 225   # $locale->text('Edit Accounts Receivables Transaction')
 
 226   $form->{title} = $locale->text("$title Accounts Receivables Transaction");
 
 228   $form->{javascript} = qq|<script type="text/javascript">
 
 230   function setTaxkey(accno, row) {
 
 231     var taxkey = accno.options[accno.selectedIndex].value;
 
 232     var reg = /--([0-9]*)/;
 
 233     var found = reg.exec(taxkey);
 
 234     var index = found[1];
 
 235     index = parseInt(index);
 
 236     var tax = 'taxchart_' + row;
 
 237     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
 
 238       var reg2 = new RegExp("^"+ index, "");
 
 239       if (reg2.exec(document.getElementById(tax).options[i].value)) {
 
 240         document.getElementById(tax).options[i].selected = true;
 
 247   # show history button js
 
 248   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 249   #/show history button js
 
 250   $readonly = ($form->{id}) ? "readonly" : "";
 
 252   $form->{radier} = ($::instance_conf->get_ar_changeable == 2)
 
 253                       ? ($form->current_date(\%myconfig) eq $form->{gldate})
 
 254                       : ($::instance_conf->get_ar_changeable == 1);
 
 255   $readonly = ($form->{radier}) ? "" : $readonly;
 
 257   # set option selected
 
 258   foreach my $item (qw(customer currency department employee)) {
 
 259     $form->{"select$item"} =~ s/ selected//;
 
 260     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 263   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 264   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 266   $rows = max 2, $form->numtextrows($form->{notes}, 50);
 
 268   my @old_project_ids = grep { $_ } map { $form->{"project_id_$_"} } 1..$form->{rowcount};
 
 270   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
 
 272                                     "old_id"    => \@old_project_ids },
 
 273                    "charts"    => { "key"       => "ALL_CHARTS",
 
 274                                     "transdate" => $form->{transdate} },
 
 275                    "taxcharts" => { "key"       => "ALL_TAXCHARTS",
 
 276                                     "module"    => "AR" },);
 
 278   $_->{link_split} = { map { $_ => 1 } split/:/, $_->{link} } for @{ $form->{ALL_CHARTS} };
 
 280   my %project_labels = map { $_->{id} => $_->{projectnumber} } @{ $form->{"ALL_PROJECTS"} };
 
 282   my (@AR_amount_values);
 
 284   my (@AR_paid_values);
 
 289   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 290     if ($item->{link_split}{AR_amount}) {
 
 291       $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
 
 292       my $key = "$item->{accno}--$item->{tax_id}";
 
 293       push(@AR_amount_values, $key);
 
 294     } elsif ($item->{link_split}{AR}) {
 
 295       push(@AR_values, $item->{accno});
 
 296     } elsif ($item->{link_split}{AR_paid}) {
 
 297       push(@AR_paid_values, $item->{accno});
 
 300     # weirdness for AR_amount
 
 301     $chart_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
 
 302     $chart_labels{"$item->{accno}--$item->{tax_id}"} = "$item->{accno}--$item->{description}";
 
 304     $charts{$item->{accno}} = $item;
 
 307   my %taxchart_labels = ();
 
 308   my @taxchart_values = ();
 
 310   foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
 
 311     my $key = "$item->{id}--$item->{rate}";
 
 312     $taxchart_init = $key if ($taxchart_init eq $item->{id});
 
 313     push(@taxchart_values, $key);
 
 314     $taxchart_labels{$key} = "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
 
 315     $taxcharts{$item->{id}} = $item;
 
 318   my $follow_up_vc         =  $form->{customer};
 
 319   $follow_up_vc            =~ s/--.*?//;
 
 320   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
 
 322   $form->{javascript} .=
 
 323     qq|<script type="text/javascript" src="js/show_vc_details.js"></script>| .
 
 324     qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
 
 326 #  $amount  = $locale->text('Amount');
 
 327 #  $project = $locale->text('Project');
 
 330   for my $i (1 .. $form->{rowcount}) {
 
 332       amount     => $form->{"amount_$i"},
 
 333       tax        => $form->{"tax_$i"},
 
 334       project_id => ($i==$form->{rowcount}) ? $form->{globalproject_id} : $form->{"project_id_$i"},
 
 337     my $selected_accno_full;
 
 338     my ($accno_row) = split(/--/, $form->{"AR_amount_$i"});
 
 339     my $item = $charts{$accno_row};
 
 340     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
 
 342     my $selected_taxchart = $form->{"taxchart_$i"};
 
 343     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
 
 344     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AR_amount_$i"});
 
 346     if ($previous_accno &&
 
 347         ($previous_accno eq $selected_accno) &&
 
 348         ($previous_tax_id ne $selected_tax_id)) {
 
 349       my $item = $taxcharts{$selected_tax_id};
 
 350       $selected_taxchart = "$item->{id}--$item->{rate}";
 
 353     if (!$form->{"taxchart_$i"}) {
 
 354       if ($form->{"AR_amount_$i"} =~ m/.--./) {
 
 355         $selected_taxchart = join '--', map { ($_->{id}, $_->{rate}) } first { $_->{id} == $item->{tax_id} } @{ $form->{ALL_TAXCHARTS} };
 
 357         $selected_taxchart = $taxchart_init;
 
 361     $transaction->{selectAR_amount} =
 
 362       NTI($cgi->popup_menu('-name' => "AR_amount_$i",
 
 363                            '-id' => "AR_amount_$i",
 
 364                            '-style' => 'width:400px',
 
 365                            '-onChange' => "setTaxkey(this, $i)",
 
 366                            '-values' => \@AR_amount_values,
 
 367                            '-labels' => \%chart_labels,
 
 368                            '-default' => $selected_accno_full))
 
 369       . $cgi->hidden('-name' => "previous_AR_amount_$i",
 
 370                      '-default' => $selected_accno_full);
 
 372     $transaction->{taxchart} =
 
 373       NTI($cgi->popup_menu('-name' => "taxchart_$i",
 
 374                            '-id' => "taxchart_$i",
 
 375                            '-style' => 'width:200px',
 
 376                            '-values' => \@taxchart_values,
 
 377                            '-labels' => \%taxchart_labels,
 
 378                            '-default' => $selected_taxchart));
 
 380     push @transactions, $transaction;
 
 383   $form->{invtotal_unformatted} = $form->{invtotal};
 
 386     NTI($cgi->popup_menu('-name' => "ARselected", '-id' => "ARselected",
 
 387                          '-style' => 'width:400px',
 
 388                          '-values' => \@AR_values, '-labels' => \%chart_labels,
 
 389                          '-default' => $form->{ARselected}));
 
 392   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 394   my $now = $form->current_date(\%myconfig);
 
 397   for my $i (1 .. $form->{paidaccounts}) {
 
 399       paid             => $form->{"paid_$i"},
 
 400       exchangerate     => $form->{"exchangerate_$i"} || '',
 
 401       gldate           => $form->{"gldate_$i"},
 
 402       acc_trans_id     => $form->{"acc_trans_id_$i"},
 
 403       source           => $form->{"source_$i"},
 
 404       memo             => $form->{"memo_$i"},
 
 405       AR_paid          => $form->{"AR_paid_$i"},
 
 406       forex            => $form->{"forex_$i"},
 
 407       datepaid         => $form->{"datepaid_$i"},
 
 408       paid_project_id  => $form->{"paid_project_id_$i"},
 
 409       gldate           => $form->{"gldate_$i"},
 
 412   # default account for current assets (i.e. 1801 - SKR04) if no account is selected
 
 413   $form->{accno_arap} = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
 
 415     $payment->{selectAR_paid} =
 
 416       NTI($cgi->popup_menu('-name' => "AR_paid_$i",
 
 417                            '-id' => "AR_paid_$i",
 
 418                            '-values' => \@AR_paid_values,
 
 419                            '-labels' => \%chart_labels,
 
 420                            '-default' => $payment->{AR_paid} || $form->{accno_arap}));
 
 424     $payment->{changeable} =
 
 425         SL::DB::Default->get->payments_changeable == 0 ? !$payment->{acc_trans_id} # never
 
 426       : SL::DB::Default->get->payments_changeable == 2 ? $payment->{gldate} eq '' || $payment->{gldate} eq $now
 
 429     push @payments, $payment;
 
 432   $form->{totalpaid} = sum map { $_->{paid} } @payments;
 
 435   print $::form->parse_html_template('ar/form_header', {
 
 436     paid_missing         => $::form->{invtotal} - $::form->{totalpaid},
 
 437     show_exch            => ($::form->{defaultcurrency} && ($::form->{currency} ne $::form->{defaultcurrency})),
 
 438     payments             => \@payments,
 
 439     transactions         => \@transactions,
 
 440     project_labels       => \%project_labels,
 
 442     ARselected           => $ARselected,
 
 444     follow_up_trans_info => $follow_up_trans_info,
 
 447   $main::lxdebug->leave_sub();
 
 451   $main::lxdebug->enter_sub();
 
 453   $main::auth->assert('general_ledger');
 
 455   my $form     = $main::form;
 
 456   my %myconfig = %main::myconfig;
 
 457   my $locale   = $main::locale;
 
 458   my $cgi      = $::request->{cgi};
 
 461     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
 
 462     if ( @{ $follow_ups} ) {
 
 463       $form->{follow_up_length} = scalar(@{$follow_ups});
 
 464       $form->{follow_up_due_length} = sum(map({ $_->{due} * 1 } @{ $follow_ups }));
 
 468   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 469   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 471   $form->{is_closed} = $transdate <= $closedto;
 
 473   # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
 
 474   $form->{show_storno_button} =
 
 476     !IS->has_storno(\%myconfig, $form, 'ar') &&
 
 477     !IS->is_storno(\%myconfig, $form, 'ar') &&
 
 478     ($form->{totalpaid} == 0 || $form->{totalpaid} eq "");
 
 480   $form->{show_mark_as_paid_button} = $form->{id} && $::instance_conf->get_ar_show_mark_as_paid();
 
 482   print $::form->parse_html_template('ar/form_footer');
 
 484   $main::lxdebug->leave_sub();
 
 488   $main::lxdebug->enter_sub();
 
 490   $main::auth->assert('general_ledger');
 
 492   my $form     = $main::form;
 
 493   my %myconfig = %main::myconfig;
 
 495   &mark_as_paid_common(\%myconfig,"ar");
 
 497   $main::lxdebug->leave_sub();
 
 501   $main::lxdebug->enter_sub();
 
 503   $main::auth->assert('general_ledger');
 
 505   my $form     = $main::form;
 
 506   my %myconfig = %main::myconfig;
 
 510   my ($totaltax, $exchangerate);
 
 512   $form->{invtotal} = 0;
 
 514   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
 
 516   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 517     qw(exchangerate creditlimit creditremaining);
 
 519   my @flds  = qw(amount AR_amount projectnumber oldprojectnumber project_id);
 
 523   for my $i (1 .. $form->{rowcount}) {
 
 524     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
 
 525     if ($form->{"amount_$i"}) {
 
 528       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 531       ($tmpnetamount,$form->{"tax_$i"}) = $form->calculate_tax($form->{"amount_$i"},$rate,$form->{taxincluded},2);
 
 533       $totaltax += $form->{"tax_$i"};
 
 534       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 539   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 540   $form->{rowcount} = $count + 1;
 
 541   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
 
 543   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 544   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 546   $form->{invdate} = $form->{transdate};
 
 548   $form->{invdate} = $form->{transdate};
 
 550   my %saved_variables = map +( $_ => $form->{$_} ), qw(AR AR_amount_1 taxchart_1 customer_id notes);
 
 552   &check_name("customer");
 
 554   $form->{AR} = $saved_variables{AR};
 
 555   if ($saved_variables{AR_amount_1} =~ m/.--./) {
 
 556     map { $form->{$_} = $saved_variables{$_} } qw(AR_amount_1 taxchart_1);
 
 558     delete $form->{taxchart_1};
 
 562     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
 
 564   for my $i (1 .. $form->{paidaccounts}) {
 
 565     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 568           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 569       } qw(paid exchangerate);
 
 571       $form->{totalpaid} += $form->{"paid_$i"};
 
 573       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
 574       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 578   $form->{creditremaining} -=
 
 579     ($form->{invtotal} - $form->{totalpaid} + $form->{oldtotalpaid} -
 
 580      $form->{oldinvtotal});
 
 581   $form->{oldinvtotal}  = $form->{invtotal};
 
 582   $form->{oldtotalpaid} = $form->{totalpaid};
 
 586   $main::lxdebug->leave_sub();
 
 590 # ToDO: fix $closedto and $invdate
 
 593   $main::lxdebug->enter_sub();
 
 595   $main::auth->assert('general_ledger');
 
 597   my $form     = $main::form;
 
 598   my %myconfig = %main::myconfig;
 
 599   my $locale   = $main::locale;
 
 601   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 603   my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 605   for my $i (1 .. $form->{paidaccounts}) {
 
 607     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 608       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 610       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 612       $form->error($locale->text('Cannot post payment for a closed period!')) if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
 614       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 615 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
 
 616         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 621   ($form->{AR})      = split /--/, $form->{AR};
 
 622   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
 623   $form->redirect($locale->text('Payment posted!')) if (AR->post_payment(\%myconfig, \%$form));
 
 624   $form->error($locale->text('Cannot post payment!'));
 
 626   $main::lxdebug->leave_sub();
 
 631   $main::auth->assert('general_ledger');
 
 633   my $form     = $main::form;
 
 640   $main::lxdebug->enter_sub();
 
 642   $main::auth->assert('general_ledger');
 
 644   my $form     = $main::form;
 
 645   my %myconfig = %main::myconfig;
 
 646   my $locale   = $main::locale;
 
 652   # check if there is an invoice number, invoice and due date
 
 653   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
 
 654   $form->isblank("duedate",   $locale->text('Due Date missing!'));
 
 655   $form->isblank("customer",  $locale->text('Customer missing!'));
 
 657   if ($myconfig{mandatory_departments} && !$form->{department}) {
 
 658     $form->{saved_message} = $::locale->text('You have to specify a department.');
 
 663   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 664   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 666   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 667     if ($form->date_max_future($transdate, \%myconfig));
 
 668   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
 
 670   $form->error($locale->text('Zero amount posting!'))
 
 671     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
 
 673   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
 674     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
 
 678   for my $i (1 .. $form->{paidaccounts}) {
 
 679     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 680       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 682       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 684       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 685         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
 687       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 688         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
 
 689         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 694   # if oldcustomer ne customer redo form
 
 695   my ($customer) = split /--/, $form->{customer};
 
 696   if ($form->{oldcustomer} ne "$customer--$form->{customer_id}") {
 
 701   $form->{AR}{receivables} = $form->{ARselected};
 
 704   $form->{id} = 0 if $form->{postasnew};
 
 705   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
 
 708   if(!exists $form->{addition} && $form->{id} ne "") {
 
 709     $form->{snumbers} = "invnumber_$form->{invnumber}";
 
 710     $form->{addition} = "POSTED";
 
 713   # /saving the history
 
 714   remove_draft() if $form->{remove_draft};
 
 716   $form->redirect($locale->text('Transaction posted!')) unless $inline;
 
 718   $main::lxdebug->leave_sub();
 
 722   $main::lxdebug->enter_sub();
 
 724   $main::auth->assert('general_ledger');
 
 726   my $form     = $main::form;
 
 727   my %myconfig = %main::myconfig;
 
 729   $form->{postasnew} = 1;
 
 731   if(!exists $form->{addition} && $form->{id} ne "") {
 
 732     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 733     $form->{addition} = "POSTED AS NEW";
 
 736   # /saving the history
 
 739   $main::lxdebug->leave_sub();
 
 743   $main::lxdebug->enter_sub();
 
 745   $main::auth->assert('general_ledger');
 
 747   my $form     = $main::form;
 
 748   my %myconfig = %main::myconfig;
 
 750   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 gldate_1 acc_trans_id_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
 
 751   $form->{paidaccounts} = 1;
 
 753   $form->{invdate} = $form->current_date(\%myconfig);
 
 756   $main::lxdebug->leave_sub();
 
 760   $main::lxdebug->enter_sub();
 
 762   $main::auth->assert('general_ledger');
 
 764   my $form     = $main::form;
 
 765   my $locale   = $main::locale;
 
 767   $form->{title} = $locale->text('Confirm!');
 
 771   delete $form->{header};
 
 774 <form method=post action=$form->{script}>
 
 777   foreach my $key (keys %$form) {
 
 778     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
 779     $form->{$key} =~ s/\"/"/g;
 
 780     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
 784 <h2 class=confirm>$form->{title}</h2>
 
 787     . $locale->text('Are you sure you want to delete Transaction')
 
 788     . qq| $form->{invnumber}</h4>
 
 790 <input name=action class=submit type=submit value="|
 
 791     . $locale->text('Yes') . qq|">
 
 795   $main::lxdebug->leave_sub();
 
 799   $main::lxdebug->enter_sub();
 
 801   $main::auth->assert('general_ledger');
 
 803   my $form     = $main::form;
 
 804   my %myconfig = %main::myconfig;
 
 805   my $locale   = $main::locale;
 
 807   if (AR->delete_transaction(\%myconfig, \%$form)) {
 
 809     if(!exists $form->{addition}) {
 
 810       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 811       $form->{addition} = "DELETED";
 
 814     # /saving the history
 
 815     $form->redirect($locale->text('Transaction deleted!'));
 
 817   $form->error($locale->text('Cannot delete transaction!'));
 
 819   $main::lxdebug->leave_sub();
 
 823   $main::lxdebug->enter_sub();
 
 825   $main::auth->assert('invoice_edit');
 
 827   my $form     = $main::form;
 
 828   my %myconfig = %main::myconfig;
 
 829   my $locale   = $main::locale;
 
 830   my $cgi      = $::request->{cgi};
 
 832   # setup customer selection
 
 833   $form->all_vc(\%myconfig, "customer", "AR");
 
 835   $form->{title}    = $locale->text('AR Transactions');
 
 837   # Auch in Rechnungsübersicht nach Kundentyp filtern - jan
 
 838   $form->get_lists("projects"       => { "key" => "ALL_PROJECTS", "all" => 1 },
 
 839                    "departments"    => "ALL_DEPARTMENTS",
 
 840                    "customers"      => "ALL_VC",
 
 841                    "business_types" => "ALL_BUSINESS_TYPES");
 
 842   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 843   $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
 
 845   # constants and subs for template
 
 846   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 849   print $form->parse_html_template('ar/search', { %myconfig });
 
 851   $main::lxdebug->leave_sub();
 
 854 sub create_subtotal_row {
 
 855   $main::lxdebug->enter_sub();
 
 857   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
 859   my $form     = $main::form;
 
 860   my %myconfig = %main::myconfig;
 
 862   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
 864   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
 866   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
 868   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
 870   $main::lxdebug->leave_sub();
 
 875 sub ar_transactions {
 
 876   $main::lxdebug->enter_sub();
 
 878   $main::auth->assert('invoice_edit');
 
 880   my $form     = $main::form;
 
 881   my %myconfig = %main::myconfig;
 
 882   my $locale   = $main::locale;
 
 884   my ($callback, $href, @columns);
 
 886   ($form->{customer}, $form->{customer_id}) = split(/--/, $form->{customer});
 
 888   report_generator_set_default_sort('transdate', 1);
 
 890   AR->ar_transactions(\%myconfig, \%$form);
 
 892   $form->{title} = $locale->text('AR Transactions');
 
 894   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 897     qw(transdate id type invnumber ordnumber cusordnumber name netamount tax amount paid
 
 898        datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
 
 899        marge_total marge_percent globalprojectnumber customernumber country ustid taxzone payment_terms charts customertype);
 
 901   my @hidden_variables = map { "l_${_}" } @columns;
 
 902   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto employee_id salesman_id business_id);
 
 904   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
 
 907     'transdate'               => { 'text' => $locale->text('Date'), },
 
 908     'id'                      => { 'text' => $locale->text('ID'), },
 
 909     'type'                    => { 'text' => $locale->text('Type'), },
 
 910     'invnumber'               => { 'text' => $locale->text('Invoice'), },
 
 911     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
 912     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
 
 913     'name'                    => { 'text' => $locale->text('Customer'), },
 
 914     'netamount'               => { 'text' => $locale->text('Amount'), },
 
 915     'tax'                     => { 'text' => $locale->text('Tax'), },
 
 916     'amount'                  => { 'text' => $locale->text('Total'), },
 
 917     'paid'                    => { 'text' => $locale->text('Paid'), },
 
 918     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
 
 919     'due'                     => { 'text' => $locale->text('Amount Due'), },
 
 920     'duedate'                 => { 'text' => $locale->text('Due Date'), },
 
 921     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
 922     'notes'                   => { 'text' => $locale->text('Notes'), },
 
 923     'salesman'                => { 'text' => $locale->text('Salesperson'), },
 
 924     'employee'                => { 'text' => $locale->text('Employee'), },
 
 925     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
 
 926     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
 
 927     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
 
 928     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
 
 929     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
 
 930     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
 
 931     'country'                 => { 'text' => $locale->text('Country'), },
 
 932     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
 
 933     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
 
 934     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
 
 935     'charts'                  => { 'text' => $locale->text('Buchungskonto'), },
 
 936     'customertype'            => { 'text' => $locale->text('Customer type'), },
 
 939   foreach my $name (qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
 
 940     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
 941     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
 944   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
 
 946   $form->{"l_type"} = "Y";
 
 947   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 949   $report->set_columns(%column_defs);
 
 950   $report->set_column_order(@columns);
 
 952   $report->set_export_options('ar_transactions', @hidden_variables, qw(sort sortdir));
 
 954   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
 957   if ($form->{customer}) {
 
 958     push @options, $locale->text('Customer') . " : $form->{customer}";
 
 960   if ($form->{cp_name}) {
 
 961     push @options, $locale->text('Contact Person') . " : $form->{cp_name}";
 
 963   if ($form->{department}) {
 
 964     my ($department) = split /--/, $form->{department};
 
 965     push @options, $locale->text('Department') . " : $department";
 
 967   if ($form->{department_id}) {
 
 968     push @options, $locale->text('Department Id') . " : $form->{department_id}";
 
 970   if ($form->{invnumber}) {
 
 971     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
 
 973   if ($form->{ordnumber}) {
 
 974     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
 
 976   if ($form->{cusordnumber}) {
 
 977     push @options, $locale->text('Customer Order Number') . " : $form->{cusordnumber}";
 
 979   if ($form->{notes}) {
 
 980     push @options, $locale->text('Notes') . " : $form->{notes}";
 
 982   if ($form->{transaction_description}) {
 
 983     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
 
 985   if ($form->{transdatefrom}) {
 
 986     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
 
 988   if ($form->{transdateto}) {
 
 989     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
 
 992     push @options, $locale->text('Open');
 
 994   if ($form->{employee_id}) {
 
 995     my $employee = SL::DB::Employee->new(id => $form->{employee_id})->load;
 
 996     push @options, $locale->text('Employee') . ' : ' . $employee->name;
 
 998   if ($form->{salesman_id}) {
 
 999     my $salesman = SL::DB::Employee->new(id => $form->{salesman_id})->load;
 
1000     push @options, $locale->text('Salesman') . ' : ' . $salesman->name;
 
1002   if ($form->{closed}) {
 
1003     push @options, $locale->text('Closed');
 
1006   $report->set_options('top_info_text'        => join("\n", @options),
 
1007                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
 
1008                        'output_format'        => 'HTML',
 
1009                        'title'                => $form->{title},
 
1010                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
 
1012   $report->set_options_from_form();
 
1013   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
1015   # add sort and escape callback, this one we use for the add sub
 
1016   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1018   # escape callback for href
 
1019   $callback = $form->escape($href);
 
1021   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
 
1023   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1024   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1028   foreach my $ar (@{ $form->{AR} }) {
 
1029     $ar->{tax} = $ar->{amount} - $ar->{netamount};
 
1030     $ar->{due} = $ar->{amount} - $ar->{paid};
 
1032     map { $subtotals{$_} += $ar->{$_};
 
1033           $totals{$_}    += $ar->{$_} } @subtotal_columns;
 
1035     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
 
1036     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
 
1038     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
 
1040     my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
 
1041     my $has_storno = $ar->{storno} && !$ar->{storno_id};
 
1044       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
 
1045       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
 
1046       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
 
1047       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
 
1048                           $locale->text("AR Transaction (abbreviation)");
 
1052     foreach my $column (@columns) {
 
1054         'data'  => $ar->{$column},
 
1055         'align' => $column_alignment{$column},
 
1059     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
 
1060       . "&id=" . E($ar->{id}) . "&callback=${callback}";
 
1062     my $row_set = [ $row ];
 
1064     if (($form->{l_subtotal} eq 'Y')
 
1065         && (($idx == (scalar @{ $form->{AR} } - 1))
 
1066             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
 
1067       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1070     $report->add_data($row_set);
 
1075   $report->add_separator();
 
1076   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1078   $report->generate_with_headers();
 
1080   $main::lxdebug->leave_sub();
 
1084   $main::lxdebug->enter_sub();
 
1086   $main::auth->assert('general_ledger');
 
1088   my $form     = $main::form;
 
1089   my %myconfig = %main::myconfig;
 
1090   my $locale   = $main::locale;
 
1092   # don't cancel cancelled transactions
 
1093   if (IS->has_storno(\%myconfig, $form, 'ar')) {
 
1094     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
 
1095     $form->error($locale->text("Transaction has already been cancelled!"));
 
1098   AR->storno($form, \%myconfig, $form->{id});
 
1100   # saving the history
 
1101   if(!exists $form->{addition} && $form->{id} ne "") {
 
1102     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1103     $form->{addition} = "STORNO";
 
1104     $form->save_history;
 
1106   # /saving the history
 
1108   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
 
1110   $main::lxdebug->leave_sub();