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., 51 Franklin Street, Fifth Floor, Boston,
 
  29 #======================================================================
 
  31 # Accounts Receivables
 
  33 #======================================================================
 
  35 use POSIX qw(strftime);
 
  36 use List::Util qw(sum first max);
 
  37 use List::UtilsBy qw(sort_by);
 
  40 use SL::Controller::Base;
 
  50 use SL::DB::RecordTemplate;
 
  52 use SL::Helper::Flash qw(flash);
 
  53 use SL::Locale::String qw(t8);
 
  54 use SL::ReportGenerator;
 
  56 require "bin/mozilla/common.pl";
 
  57 require "bin/mozilla/reportgenerator.pl";
 
  62 # this is for our long dates
 
  63 # $locale->text('January')
 
  64 # $locale->text('February')
 
  65 # $locale->text('March')
 
  66 # $locale->text('April')
 
  67 # $locale->text('May ')
 
  68 # $locale->text('June')
 
  69 # $locale->text('July')
 
  70 # $locale->text('August')
 
  71 # $locale->text('September')
 
  72 # $locale->text('October')
 
  73 # $locale->text('November')
 
  74 # $locale->text('December')
 
  76 # this is for our short month
 
  77 # $locale->text('Jan')
 
  78 # $locale->text('Feb')
 
  79 # $locale->text('Mar')
 
  80 # $locale->text('Apr')
 
  81 # $locale->text('May')
 
  82 # $locale->text('Jun')
 
  83 # $locale->text('Jul')
 
  84 # $locale->text('Aug')
 
  85 # $locale->text('Sep')
 
  86 # $locale->text('Oct')
 
  87 # $locale->text('Nov')
 
  88 # $locale->text('Dec')
 
  90 sub load_record_template {
 
  91   $::auth->assert('ar_transactions');
 
  93   # Load existing template and verify that its one for this module.
 
  94   my $template = SL::DB::RecordTemplate
 
  95     ->new(id => $::form->{id})
 
  97       with_object => [ qw(customer payment currency record_items record_items.chart) ],
 
 100   die "invalid template type" unless $template->template_type eq 'ar_transaction';
 
 102   $template->substitute_variables;
 
 104   # Clean the current $::form before rebuilding it from the template.
 
 105   my $form_defaults = delete $::form->{form_defaults};
 
 106   delete @{ $::form }{ grep { !m{^(?:script|login)$}i } keys %{ $::form } };
 
 108   # Fill $::form from the template.
 
 109   my $today                   = DateTime->today_local;
 
 110   $::form->{title}            = "Add";
 
 111   $::form->{currency}         = $template->currency->name;
 
 112   $::form->{direct_debit}     = $template->direct_debit;
 
 113   $::form->{globalproject_id} = $template->project_id;
 
 114   $::form->{AR_chart_id}      = $template->ar_ap_chart_id;
 
 115   $::form->{transdate}        = $today->to_kivitendo;
 
 116   $::form->{duedate}          = $today->to_kivitendo;
 
 117   $::form->{rowcount}         = @{ $template->items };
 
 118   $::form->{paidaccounts}     = 1;
 
 119   $::form->{$_}               = $template->$_ for qw(department_id ordnumber taxincluded employee_id notes);
 
 121   if ($template->customer) {
 
 122     $::form->{customer_id} = $template->customer_id;
 
 123     $::form->{customer}    = $template->customer->name;
 
 124     $::form->{duedate}     = $template->customer->payment->calc_date(reference_date => $today)->to_kivitendo if $template->customer->payment;
 
 128   foreach my $item (@{ $template->items }) {
 
 131     my $active_taxkey = $item->chart->get_active_taxkey;
 
 132     my $taxes         = SL::DB::Manager::Tax->get_all(
 
 133       where   => [ chart_categories => { like => '%' . $item->chart->category . '%' }],
 
 134       sort_by => 'taxkey, rate',
 
 137     my $tax   = first { $item->tax_id          == $_->id } @{ $taxes };
 
 138     $tax    //= first { $active_taxkey->tax_id == $_->id } @{ $taxes };
 
 139     $tax    //= $taxes->[0];
 
 146     $::form->{"AR_amount_chart_id_${row}"}          = $item->chart_id;
 
 147     $::form->{"previous_AR_amount_chart_id_${row}"} = $item->chart_id;
 
 148     $::form->{"amount_${row}"}                      = $::form->format_amount(\%::myconfig, $item->amount1, 2);
 
 149     $::form->{"taxchart_${row}"}                    = $item->tax_id . '--' . $tax->rate;
 
 150     $::form->{"project_id_${row}"}                  = $item->project_id;
 
 153   $::form->{$_} = $form_defaults->{$_} for keys %{ $form_defaults // {} };
 
 155   flash('info', $::locale->text("The record template '#1' has been loaded.", $template->template_name));
 
 158     keep_rows_without_amount => 1,
 
 159     dont_add_new_row         => 1,
 
 163 sub save_record_template {
 
 164   $::auth->assert('ar_transactions');
 
 166   my $template = $::form->{record_template_id} ? SL::DB::RecordTemplate->new(id => $::form->{record_template_id})->load : SL::DB::RecordTemplate->new;
 
 167   my $js       = SL::ClientJS->new(controller => SL::Controller::Base->new);
 
 168   my $new_name = $template->template_name_to_use($::form->{record_template_new_template_name});
 
 170   $js->dialog->close('#record_template_dialog');
 
 173     $_->{chart_id} && (($_->{tax_id} // '') ne '')
 
 175     +{ chart_id   => $::form->{"AR_amount_chart_id_${_}"},
 
 176        amount1    => $::form->parse_amount(\%::myconfig, $::form->{"amount_${_}"}),
 
 177        tax_id     => (split m{--}, $::form->{"taxchart_${_}"})[0],
 
 178        project_id => $::form->{"project_id_${_}"} || undef,
 
 180   } (1..($::form->{rowcount} || 1));
 
 182   $template->assign_attributes(
 
 183     template_type  => 'ar_transaction',
 
 184     template_name  => $new_name,
 
 186     currency_id    => SL::DB::Manager::Currency->find_by(name => $::form->{currency})->id,
 
 187     ar_ap_chart_id => $::form->{AR_chart_id}      || undef,
 
 188     customer_id    => $::form->{customer_id}      || undef,
 
 189     department_id  => $::form->{department_id}    || undef,
 
 190     project_id     => $::form->{globalproject_id} || undef,
 
 191     employee_id    => $::form->{employee_id}      || undef,
 
 192     taxincluded    => $::form->{taxincluded}  ? 1 : 0,
 
 193     direct_debit   => $::form->{direct_debit} ? 1 : 0,
 
 194     ordnumber      => $::form->{ordnumber},
 
 195     notes          => $::form->{notes},
 
 205       ->flash('error', $::locale->text("Saving the record template '#1' failed.", $new_name))
 
 210     ->flash('info', $::locale->text("The record template '#1' has been saved.", $new_name))
 
 215   $main::lxdebug->enter_sub();
 
 217   $main::auth->assert('ar_transactions');
 
 219   my $form     = $main::form;
 
 220   my %myconfig = %main::myconfig;
 
 223   if(!exists $form->{addition} && ($form->{id} ne "")) {
 
 224     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 225     $form->{addition} = "ADDED";
 
 228   # /saving the history
 
 230   $form->{title}    = "Add";
 
 231   $form->{callback} = "ar.pl?action=add" unless $form->{callback};
 
 233   AR->get_transdate(\%myconfig, $form);
 
 234   $form->{initial_transdate} = $form->{transdate};
 
 235   create_links(dont_save => 1);
 
 236   $form->{transdate} = $form->{initial_transdate};
 
 238   if ($form->{customer_id}) {
 
 239     my $last_used_ar_chart = SL::DB::Customer->load_cached($form->{customer_id})->last_used_ar_chart;
 
 240     $form->{"AR_amount_chart_id_1"} = $last_used_ar_chart->id if $last_used_ar_chart;
 
 244   $main::lxdebug->leave_sub();
 
 248   $main::lxdebug->enter_sub();
 
 250   $main::auth->assert('ar_transactions');
 
 252   my $form     = $main::form;
 
 254   # show history button
 
 255   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 256   #/show hhistory button
 
 257   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
 258   $form->{title} = "Edit";
 
 263   $main::lxdebug->leave_sub();
 
 267   $main::lxdebug->enter_sub();
 
 269   $main::auth->assert('ar_transactions');
 
 271   my $form     = $main::form;
 
 276   $main::lxdebug->leave_sub();
 
 279 sub _retrieve_invoice_object {
 
 280   return undef if !$::form->{id};
 
 281   return $::form->{invoice_obj} if $::form->{invoice_obj} && $::form->{invoice_obj}->id == $::form->{id};
 
 282   return SL::DB::Invoice->new(id => $::form->{id})->load;
 
 286   $main::lxdebug->enter_sub();
 
 288   $main::auth->assert('ar_transactions');
 
 291   my $form     = $main::form;
 
 292   my %myconfig = %main::myconfig;
 
 294   $form->create_links("AR", \%myconfig, "customer");
 
 295   $form->{invoice_obj} = _retrieve_invoice_object();
 
 298   if (!$params{dont_save}) {
 
 299     %saved = map { ($_ => $form->{$_}) } qw(direct_debit id taxincluded);
 
 300     $saved{duedate} = $form->{duedate} if $form->{duedate};
 
 301     $saved{currency} = $form->{currency} if $form->{currency};
 
 304   IS->get_customer(\%myconfig, \%$form);
 
 306   $form->{$_}          = $saved{$_} for keys %saved;
 
 307   $form->{rowcount}    = 1;
 
 308   $form->{AR_chart_id} = $form->{acc_trans} && $form->{acc_trans}->{AR} ? $form->{acc_trans}->{AR}->[0]->{chart_id} : $form->{AR_links}->{AR}->[0]->{chart_id};
 
 311   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 313   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all;
 
 315   # build the popup menus
 
 316   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
 
 318   AR->setup_form($form);
 
 321     ($form->datetonum($form->{transdate}, \%myconfig) <=
 
 322      $form->datetonum($form->{closedto}, \%myconfig));
 
 324   $main::lxdebug->leave_sub();
 
 328   $main::lxdebug->enter_sub();
 
 330   $main::auth->assert('ar_transactions');
 
 332   my $form     = $main::form;
 
 333   my %myconfig = %main::myconfig;
 
 334   my $locale   = $main::locale;
 
 335   my $cgi      = $::request->{cgi};
 
 337   $form->{invoice_obj} = _retrieve_invoice_object();
 
 339   my ($title, $readonly, $exchangerate, $rows);
 
 340   my ($notes, $amount, $project);
 
 342   $form->{initial_focus} = !($form->{amount_1} * 1) ? 'customer_id' : 'row_' . $form->{rowcount};
 
 344   $title = $form->{title};
 
 345   # $locale->text('Add Accounts Receivables Transaction')
 
 346   # $locale->text('Edit Accounts Receivables Transaction')
 
 347   $form->{title} = $locale->text("$title Accounts Receivables Transaction");
 
 349   $readonly = ($form->{id}) ? "readonly" : "";
 
 351   $form->{radier} = ($::instance_conf->get_ar_changeable == 2)
 
 352                       ? ($form->current_date(\%myconfig) eq $form->{gldate})
 
 353                       : ($::instance_conf->get_ar_changeable == 1);
 
 354   $readonly = ($form->{radier}) ? "" : $readonly;
 
 356   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 357   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 359   # format exchangerate
 
 360   $form->{exchangerate}    = $form->{exchangerate} ? $form->format_amount(\%myconfig, $form->{exchangerate}) : '';
 
 362   $rows = max 2, $form->numtextrows($form->{notes}, 50);
 
 364   my @old_project_ids = grep { $_ } map { $form->{"project_id_$_"} } 1..$form->{rowcount};
 
 366   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
 
 368                                     "old_id"    => \@old_project_ids },
 
 369                    "charts"    => { "key"       => "ALL_CHARTS",
 
 370                                     "transdate" => $form->{transdate} },
 
 371                    "taxcharts" => { "key"       => "ALL_TAXCHARTS",
 
 372                                     "module"    => "AR" },);
 
 374   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all;
 
 376   $_->{link_split} = { map { $_ => 1 } split/:/, $_->{link} } for @{ $form->{ALL_CHARTS} };
 
 378   my %project_labels = map { $_->{id} => $_->{projectnumber} } @{ $form->{"ALL_PROJECTS"} };
 
 380   my (@AR_paid_values, %AR_paid_labels);
 
 381   my $default_ar_amount_chart_id;
 
 383   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 384     if ($item->{link_split}{AR_amount}) {
 
 385       $default_ar_amount_chart_id //= $item->{id};
 
 387     } elsif ($item->{link_split}{AR_paid}) {
 
 388       push(@AR_paid_values, $item->{accno});
 
 389       $AR_paid_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
 
 393   my $follow_up_vc         = $form->{customer_id} ? SL::DB::Customer->load_cached($form->{customer_id})->name : '';
 
 394   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
 
 396   $::request->layout->add_javascripts("autocomplete_chart.js", "show_vc_details.js", "show_history.js", "follow_up.js", "kivi.Draft.js", "kivi.GL.js", "kivi.File.js", "kivi.RecordTemplate.js", "kivi.AR.js", "kivi.CustomerVendor.js");
 
 398   my $transdate = $::form->{transdate} ? DateTime->from_kivitendo($::form->{transdate}) : DateTime->today_local;
 
 402   for my $i (1 .. $form->{rowcount}) {
 
 404       amount     => $form->{"amount_$i"},
 
 405       tax        => $form->{"tax_$i"},
 
 406       project_id => ($i==$form->{rowcount}) ? $form->{globalproject_id} : $form->{"project_id_$i"},
 
 409     my (%taxchart_labels, @taxchart_values, $default_taxchart, $taxchart_to_use);
 
 410     my $amount_chart_id = $form->{"AR_amount_chart_id_$i"} // $default_ar_amount_chart_id;
 
 412     foreach my $item ( GL->get_active_taxes_for_chart($amount_chart_id, $transdate) ) {
 
 413       my $key             = $item->id . "--" . $item->rate;
 
 414       $first_taxchart   //= $item;
 
 415       $default_taxchart   = $item if $item->{is_default};
 
 416       $taxchart_to_use    = $item if $key eq $form->{"taxchart_$i"};
 
 418       push(@taxchart_values, $key);
 
 419       $taxchart_labels{$key} = $item->taxdescription . " " . $item->rate * 100 . ' %';
 
 422     $taxchart_to_use    //= $default_taxchart // $first_taxchart;
 
 423     my $selected_taxchart = $taxchart_to_use->id . '--' . $taxchart_to_use->rate;
 
 425     $transaction->{selectAR_amount} =
 
 426         $::request->presenter->chart_picker("AR_amount_chart_id_$i", $amount_chart_id, style => "width: 400px", type => "AR_amount", class => ($form->{initial_focus} eq "row_$i" ? "initial_focus" : ""))
 
 427       . $::request->presenter->hidden_tag("previous_AR_amount_chart_id_$i", $amount_chart_id);
 
 429     $transaction->{taxchart} =
 
 430       NTI($cgi->popup_menu('-name' => "taxchart_$i",
 
 431                            '-id' => "taxchart_$i",
 
 432                            '-style' => 'width:200px',
 
 433                            '-values' => \@taxchart_values,
 
 434                            '-labels' => \%taxchart_labels,
 
 435                            '-default' => $selected_taxchart));
 
 437     push @transactions, $transaction;
 
 440   $form->{invtotal_unformatted} = $form->{invtotal};
 
 442   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 444   my $now = $form->current_date(\%myconfig);
 
 447   for my $i (1 .. $form->{paidaccounts}) {
 
 449       paid             => $form->{"paid_$i"},
 
 450       exchangerate     => $form->{"exchangerate_$i"} || '',
 
 451       gldate           => $form->{"gldate_$i"},
 
 452       acc_trans_id     => $form->{"acc_trans_id_$i"},
 
 453       source           => $form->{"source_$i"},
 
 454       memo             => $form->{"memo_$i"},
 
 455       AR_paid          => $form->{"AR_paid_$i"},
 
 456       forex            => $form->{"forex_$i"},
 
 457       datepaid         => $form->{"datepaid_$i"},
 
 458       paid_project_id  => $form->{"paid_project_id_$i"},
 
 459       gldate           => $form->{"gldate_$i"},
 
 462     # default account for current assets (i.e. 1801 - SKR04) if no account is selected
 
 463     $form->{accno_arap} = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
 
 465     $payment->{selectAR_paid} =
 
 466       NTI($cgi->popup_menu('-name' => "AR_paid_$i",
 
 467                            '-id' => "AR_paid_$i",
 
 468                            '-values' => \@AR_paid_values,
 
 469                            '-labels' => \%AR_paid_labels,
 
 470                            '-default' => $payment->{AR_paid} || $form->{accno_arap}));
 
 474     $payment->{changeable} =
 
 475         SL::DB::Default->get->payments_changeable == 0 ? !$payment->{acc_trans_id} # never
 
 476       : SL::DB::Default->get->payments_changeable == 2 ? $payment->{gldate} eq '' || $payment->{gldate} eq $now
 
 479     #deaktivieren von gebuchten Zahlungen ausserhalb der Bücherkontrolle, vorher prüfen ob heute eingegeben
 
 480     if ($form->date_closed($payment->{"gldate_$i"})) {
 
 481         $payment->{changeable} = 0;
 
 484     push @payments, $payment;
 
 487   my @empty = grep { $_->{paid} eq '' } @payments;
 
 489     (sort_by { DateTime->from_kivitendo($_->{datepaid}) } grep { $_->{paid} ne '' } @payments),
 
 493   $form->{totalpaid} = sum map { $_->{paid} } @payments;
 
 495   my $employees = SL::DB::Manager::Employee->get_all_sorted(
 
 498         (id     => $::form->{employee_id}) x !!$::form->{employee_id},
 
 505   setup_ar_form_header_action_bar();
 
 508   print $::form->parse_html_template('ar/form_header', {
 
 509     paid_missing         => $::form->{invtotal} - $::form->{totalpaid},
 
 510     show_exch            => ($::form->{defaultcurrency} && ($::form->{currency} ne $::form->{defaultcurrency})),
 
 511     payments             => \@payments,
 
 512     transactions         => \@transactions,
 
 513     project_labels       => \%project_labels,
 
 515     AR_chart_id          => $form->{AR_chart_id},
 
 517     follow_up_trans_info => $follow_up_trans_info,
 
 518     today                => DateTime->today,
 
 519     currencies           => scalar(SL::DB::Manager::Currency->get_all_sorted),
 
 520     employees            => $employees,
 
 523   $main::lxdebug->leave_sub();
 
 527   $main::lxdebug->enter_sub();
 
 529   $main::auth->assert('ar_transactions');
 
 531   my $form     = $main::form;
 
 532   my %myconfig = %main::myconfig;
 
 533   my $locale   = $main::locale;
 
 534   my $cgi      = $::request->{cgi};
 
 537     my $follow_ups = FU->follow_ups('trans_id' => $form->{id}, 'not_done' => 1);
 
 538     if ( @{ $follow_ups} ) {
 
 539       $form->{follow_up_length} = scalar(@{$follow_ups});
 
 540       $form->{follow_up_due_length} = sum(map({ $_->{due} * 1 } @{ $follow_ups }));
 
 544   print $::form->parse_html_template('ar/form_footer');
 
 546   $main::lxdebug->leave_sub();
 
 550   $::auth->assert('ar_transactions');
 
 552   SL::DB::Invoice->new(id => $::form->{id})->load->mark_as_paid;
 
 553   $::form->redirect($::locale->text("Marked as paid"));
 
 557   $::form->{transdate} = DateTime->today_local->to_kivitendo if !$::form->{transdate};
 
 558   $::form->{gldate}    = $::form->{transdate} if !$::form->{gldate};
 
 564   $main::lxdebug->enter_sub();
 
 566   $main::auth->assert('ar_transactions');
 
 568   my $form     = $main::form;
 
 569   my %myconfig = %main::myconfig;
 
 573   my ($totaltax, $exchangerate);
 
 575   $form->{invtotal} = 0;
 
 577   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
 
 579   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 580     qw(exchangerate creditlimit creditremaining);
 
 582   my @flds  = qw(amount AR_amount projectnumber oldprojectnumber project_id);
 
 586   for my $i (1 .. $form->{rowcount}) {
 
 587     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
 
 588     if ($form->{"amount_$i"} || $params{keep_rows_without_amount}) {
 
 591       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 594       ($tmpnetamount,$form->{"tax_$i"}) = $form->calculate_tax($form->{"amount_$i"},$rate,$form->{taxincluded},2);
 
 596       $totaltax += $form->{"tax_$i"};
 
 597       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 602   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 603   $form->{rowcount} = $count + ($params{dont_add_new_row} ? 0 : 1);
 
 604   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
 
 606   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 607   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 609   $form->{invdate} = $form->{transdate};
 
 611   if (($form->{previous_customer_id} || $form->{customer_id}) != $form->{customer_id}) {
 
 612     IS->get_customer(\%myconfig, $form);
 
 613     if (($form->{rowcount} == 1) && ($form->{amount_1} == 0)) {
 
 614       my $last_used_ar_chart = SL::DB::Customer->load_cached($form->{customer_id})->last_used_ar_chart;
 
 615       $form->{"AR_amount_chart_id_1"} = $last_used_ar_chart->id if $last_used_ar_chart;
 
 620     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
 
 622   for my $i (1 .. $form->{paidaccounts}) {
 
 623     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 626           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 627       } qw(paid exchangerate);
 
 629       $form->{totalpaid} += $form->{"paid_$i"};
 
 631       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
 632       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 636   $form->{creditremaining} -=
 
 637     ($form->{invtotal} - $form->{totalpaid} + $form->{oldtotalpaid} -
 
 638      $form->{oldinvtotal});
 
 639   $form->{oldinvtotal}  = $form->{invtotal};
 
 640   $form->{oldtotalpaid} = $form->{totalpaid};
 
 644   $main::lxdebug->leave_sub();
 
 648 # ToDO: fix $closedto and $invdate
 
 651   $main::lxdebug->enter_sub();
 
 653   $main::auth->assert('ar_transactions');
 
 655   my $form     = $main::form;
 
 656   my %myconfig = %main::myconfig;
 
 657   my $locale   = $main::locale;
 
 659   $form->mtime_ischanged('ar');
 
 660   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 662   my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 664   for my $i (1 .. $form->{paidaccounts}) {
 
 666     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 667       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 669       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 671       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 672         if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 674       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 675       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 676       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 677         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 679       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 680 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
 
 681         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 686   ($form->{AR})      = split /--/, $form->{AR};
 
 687   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
 688   if (AR->post_payment(\%myconfig, \%$form)) {
 
 689     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 690     $form->{what_done} = 'invoice';
 
 691     $form->{addition}  = "PAYMENT POSTED";
 
 693     $form->redirect($locale->text('Payment posted!'))
 
 695     $form->error($locale->text('Cannot post payment!'));
 
 698   $main::lxdebug->leave_sub();
 
 703   $main::auth->assert('ar_transactions');
 
 705   my $form     = $main::form;
 
 712   $main::lxdebug->enter_sub();
 
 714   $main::auth->assert('ar_transactions');
 
 716   my $form     = $main::form;
 
 717   my %myconfig = %main::myconfig;
 
 718   my $locale   = $main::locale;
 
 722   $form->mtime_ischanged('ar');
 
 726   # check if there is an invoice number, invoice and due date
 
 727   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
 
 728   $form->isblank("duedate",   $locale->text('Due Date missing!'));
 
 729   $form->isblank("customer_id", $locale->text('Customer missing!'));
 
 731   if ($myconfig{mandatory_departments} && !$form->{department_id}) {
 
 732     $form->{saved_message} = $::locale->text('You have to specify a department.');
 
 737   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 738   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 740   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 741     if ($form->date_max_future($transdate, \%myconfig));
 
 743   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
 
 745   $form->error($locale->text('Zero amount posting!'))
 
 746     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
 
 748   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
 749     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
 
 753   for my $i (1 .. $form->{paidaccounts}) {
 
 754     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 755       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 757       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 759       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 760         if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 762       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 763       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 764       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 765         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 767       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 768         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
 
 769         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 774   # if oldcustomer ne customer redo form
 
 775   if (($form->{previous_customer_id} || $form->{customer_id}) != $form->{customer_id}) {
 
 777     $::dispatcher->end_request;
 
 780   $form->{AR}{receivables} = $form->{ARselected};
 
 783   $form->{id} = 0 if $form->{postasnew};
 
 784   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
 
 787   if(!exists $form->{addition} && $form->{id} ne "") {
 
 788     $form->{snumbers}  = "invnumber_$form->{invnumber}";
 
 789     $form->{what_done} = "invoice";
 
 790     $form->{addition}  = "POSTED";
 
 793   # /saving the history
 
 795   $form->redirect($locale->text('AR transaction posted.') . ' ' . $locale->text('ID') . ': ' . $form->{id}) unless $inline;
 
 797   $main::lxdebug->leave_sub();
 
 801   $main::lxdebug->enter_sub();
 
 803   $main::auth->assert('ar_transactions');
 
 805   my $form     = $main::form;
 
 806   my %myconfig = %main::myconfig;
 
 808   $form->{postasnew} = 1;
 
 810   if(!exists $form->{addition} && $form->{id} ne "") {
 
 811     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 812     $form->{what_done} = "invoice";
 
 813     $form->{addition}  = "POSTED AS NEW";
 
 816   # /saving the history
 
 819   $main::lxdebug->leave_sub();
 
 823   $main::lxdebug->enter_sub();
 
 825   $main::auth->assert('ar_transactions');
 
 827   my $form     = $main::form;
 
 828   my %myconfig = %main::myconfig;
 
 830   map { delete $form->{$_} } qw(printed emailed queued invnumber deliverydate id datepaid_1 gldate_1 acc_trans_id_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
 
 831   $form->{paidaccounts} = 1;
 
 834   my $today          = DateTime->today_local;
 
 835   $form->{transdate} = $today->to_kivitendo;
 
 836   $form->{duedate}   = $form->{transdate};
 
 838   if ($form->{customer_id}) {
 
 839     my $payment_terms = SL::DB::Customer->load_cached($form->{customer_id})->payment;
 
 840     $form->{duedate}  = $payment_terms->calc_date(reference_date => $today)->to_kivitendo if $payment_terms;
 
 845   $main::lxdebug->leave_sub();
 
 849   $::auth->assert('ar_transactions');
 
 851   my $form     = $main::form;
 
 852   my %myconfig = %main::myconfig;
 
 853   my $locale   = $main::locale;
 
 855   if (AR->delete_transaction(\%myconfig, \%$form)) {
 
 857     if(!exists $form->{addition}) {
 
 858       $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 859       $form->{what_done} = "invoice";
 
 860       $form->{addition}  = "DELETED";
 
 863     # /saving the history
 
 864     $form->redirect($locale->text('Transaction deleted!'));
 
 866   $form->error($locale->text('Cannot delete transaction!'));
 
 869 sub setup_ar_search_action_bar {
 
 872   for my $bar ($::request->layout->get('actionbar')) {
 
 875         $::locale->text('Search'),
 
 876         submit    => [ '#form' ],
 
 877         accesskey => 'enter',
 
 883 sub setup_ar_transactions_action_bar {
 
 886   for my $bar ($::request->layout->get('actionbar')) {
 
 889         $::locale->text('Print'),
 
 890         call     => [ 'kivi.MassInvoiceCreatePrint.showMassPrintOptionsOrDownloadDirectly' ],
 
 891         disabled => !$params{num_rows} ? $::locale->text('The report doesn\'t contain entries.') : undef,
 
 895         action => [ $::locale->text('Create new') ],
 
 897           $::locale->text('AR Transaction'),
 
 898           submit => [ '#create_new_form', { action => 'ar_transaction' } ],
 
 901           $::locale->text('Sales Invoice'),
 
 902           submit => [ '#create_new_form', { action => 'sales_invoice' } ],
 
 904       ], # end of combobox "Create new"
 
 910   $main::lxdebug->enter_sub();
 
 912   $main::auth->assert('invoice_edit');
 
 914   my $form     = $main::form;
 
 915   my %myconfig = %main::myconfig;
 
 916   my $locale   = $main::locale;
 
 917   my $cgi      = $::request->{cgi};
 
 919   $form->{title} = $locale->text('Invoices, Credit Notes & AR Transactions');
 
 921   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 922   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 923   $form->{ALL_BUSINESS_TYPES} = SL::DB::Manager::Business->get_all_sorted;
 
 925   $form->{CT_CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
 
 926   ($form->{CT_CUSTOM_VARIABLES_FILTER_CODE},
 
 927    $form->{CT_CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CT_CUSTOM_VARIABLES},
 
 928                                                                               'include_prefix' => 'l_',
 
 929                                                                               'include_value'  => 'Y');
 
 931   # constants and subs for template
 
 932   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 934   $::request->layout->add_javascripts("autocomplete_project.js");
 
 936   setup_ar_search_action_bar();
 
 939   print $form->parse_html_template('ar/search', { %myconfig });
 
 941   $main::lxdebug->leave_sub();
 
 944 sub create_subtotal_row {
 
 945   $main::lxdebug->enter_sub();
 
 947   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
 949   my $form     = $main::form;
 
 950   my %myconfig = %main::myconfig;
 
 952   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
 954   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
 956   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
 958   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
 960   $main::lxdebug->leave_sub();
 
 965 sub ar_transactions {
 
 966   $main::lxdebug->enter_sub();
 
 968   $main::auth->assert('invoice_edit');
 
 970   my $form     = $main::form;
 
 971   my %myconfig = %main::myconfig;
 
 972   my $locale   = $main::locale;
 
 974   my ($callback, $href, @columns);
 
 976   report_generator_set_default_sort('transdate', 1);
 
 978   AR->ar_transactions(\%myconfig, \%$form);
 
 980   $form->{title} = $locale->text('Invoices, Credit Notes & AR Transactions');
 
 982   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 985     qw(ids transdate id type invnumber ordnumber cusordnumber name netamount tax amount paid
 
 986        datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
 
 987        marge_total marge_percent globalprojectnumber customernumber country ustid taxzone
 
 988        payment_terms charts customertype direct_debit dunning_description department);
 
 990   my $ct_cvar_configs                 = CVar->get_configs('module' => 'CT');
 
 991   my @ct_includeable_custom_variables = grep { $_->{includeable} } @{ $ct_cvar_configs };
 
 992   my @ct_searchable_custom_variables  = grep { $_->{searchable} }  @{ $ct_cvar_configs };
 
 994   my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @ct_includeable_custom_variables;
 
 995   push @columns, map { "cvar_$_->{name}" } @ct_includeable_custom_variables;
 
 997   my @hidden_variables = map { "l_${_}" } @columns;
 
 998   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto duedatefrom duedateto
 
 999                                            employee_id salesman_id business_id parts_partnumber parts_description department_id show_marked_as_closed);
 
1000   push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables;
 
1002   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
 
1005     'ids'                     => { raw_header_data => $::request->presenter->checkbox_tag("", id => "check_all", checkall => "[data-checkall=1]"), align => 'center' },
 
1006     'transdate'               => { 'text' => $locale->text('Date'), },
 
1007     'id'                      => { 'text' => $locale->text('ID'), },
 
1008     'type'                    => { 'text' => $locale->text('Type'), },
 
1009     'invnumber'               => { 'text' => $locale->text('Invoice'), },
 
1010     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
1011     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
 
1012     'name'                    => { 'text' => $locale->text('Customer'), },
 
1013     'netamount'               => { 'text' => $locale->text('Amount'), },
 
1014     'tax'                     => { 'text' => $locale->text('Tax'), },
 
1015     'amount'                  => { 'text' => $locale->text('Total'), },
 
1016     'paid'                    => { 'text' => $locale->text('Paid'), },
 
1017     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
 
1018     'due'                     => { 'text' => $locale->text('Amount Due'), },
 
1019     'duedate'                 => { 'text' => $locale->text('Due Date'), },
 
1020     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
1021     'notes'                   => { 'text' => $locale->text('Notes'), },
 
1022     'salesman'                => { 'text' => $locale->text('Salesperson'), },
 
1023     'employee'                => { 'text' => $locale->text('Employee'), },
 
1024     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
 
1025     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
 
1026     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
 
1027     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
 
1028     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
 
1029     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
 
1030     'country'                 => { 'text' => $locale->text('Country'), },
 
1031     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
 
1032     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
 
1033     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
 
1034     'charts'                  => { 'text' => $locale->text('Chart'), },
 
1035     'customertype'            => { 'text' => $locale->text('Customer type'), },
 
1036     'direct_debit'            => { 'text' => $locale->text('direct debit'), },
 
1037     'department'              => { 'text' => $locale->text('Department'), },
 
1038     dunning_description       => { 'text' => $locale->text('Dunning level'), },
 
1042   foreach my $name (qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description direct_debit)) {
 
1043     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
1044     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
1047   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
 
1049   $form->{"l_type"} = "Y";
 
1050   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
1052   $column_defs{ids}->{visible} = 'HTML';
 
1054   $report->set_columns(%column_defs);
 
1055   $report->set_column_order(@columns);
 
1057   $report->set_export_options('ar_transactions', @hidden_variables, qw(sort sortdir));
 
1059   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
1061   CVar->add_custom_variables_to_report('module'         => 'CT',
 
1062                                        'trans_id_field' => 'customer_id',
 
1063                                        'configs'        => $ct_cvar_configs,
 
1064                                        'column_defs'    => \%column_defs,
 
1065                                        'data'           => $form->{AR});
 
1068   if ($form->{customer}) {
 
1069     push @options, $locale->text('Customer') . " : $form->{customer}";
 
1071   if ($form->{cp_name}) {
 
1072     push @options, $locale->text('Contact Person') . " : $form->{cp_name}";
 
1075   if ($form->{department_id}) {
 
1076     my $department = SL::DB::Manager::Department->find_by( id => $form->{department_id} );
 
1077     push @options, $locale->text('Department') . " : " . $department->description;
 
1079   if ($form->{invnumber}) {
 
1080     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
 
1082   if ($form->{ordnumber}) {
 
1083     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
 
1085   if ($form->{cusordnumber}) {
 
1086     push @options, $locale->text('Customer Order Number') . " : $form->{cusordnumber}";
 
1088   if ($form->{notes}) {
 
1089     push @options, $locale->text('Notes') . " : $form->{notes}";
 
1091   if ($form->{transaction_description}) {
 
1092     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
 
1094   if ($form->{parts_partnumber}) {
 
1095     push @options, $locale->text('Part Number') . " : $form->{parts_partnumber}";
 
1097   if ($form->{parts_description}) {
 
1098     push @options, $locale->text('Part Description') . " : $form->{parts_description}";
 
1100   if ($form->{transdatefrom}) {
 
1101     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
 
1103   if ($form->{transdateto}) {
 
1104     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
 
1106   if ($form->{open}) {
 
1107     push @options, $locale->text('Open');
 
1109   if ($form->{employee_id}) {
 
1110     my $employee = SL::DB::Employee->new(id => $form->{employee_id})->load;
 
1111     push @options, $locale->text('Employee') . ' : ' . $employee->name;
 
1113   if ($form->{salesman_id}) {
 
1114     my $salesman = SL::DB::Employee->new(id => $form->{salesman_id})->load;
 
1115     push @options, $locale->text('Salesman') . ' : ' . $salesman->name;
 
1117   if ($form->{closed}) {
 
1118     push @options, $locale->text('Closed');
 
1121   $form->{ALL_PRINTERS} = SL::DB::Manager::Printer->get_all_sorted;
 
1123   $report->set_options('top_info_text'        => join("\n", @options),
 
1124                        'raw_top_info_text'    => $form->parse_html_template('ar/ar_transactions_header'),
 
1125                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
 
1126                        'output_format'        => 'HTML',
 
1127                        'title'                => $form->{title},
 
1128                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
 
1130   $report->set_options_from_form();
 
1131   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
1133   # add sort and escape callback, this one we use for the add sub
 
1134   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1136   # escape callback for href
 
1137   $callback = $form->escape($href);
 
1139   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
 
1141   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1142   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1146   foreach my $ar (@{ $form->{AR} }) {
 
1147     $ar->{tax} = $ar->{amount} - $ar->{netamount};
 
1148     $ar->{due} = $ar->{amount} - $ar->{paid};
 
1150     map { $subtotals{$_} += $ar->{$_};
 
1151           $totals{$_}    += $ar->{$_} } @subtotal_columns;
 
1153     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
 
1154     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
 
1156     my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
 
1157     my $has_storno = $ar->{storno} && !$ar->{storno_id};
 
1160       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
 
1161       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
 
1162       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
 
1163       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
 
1164                           $locale->text("AR Transaction (abbreviation)");
 
1166     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
 
1168     $ar->{direct_debit} = $ar->{direct_debit} ? $::locale->text('yes') : $::locale->text('no');
 
1172     foreach my $column (@columns) {
 
1174         'data'  => $ar->{$column},
 
1175         'align' => $column_alignment{$column},
 
1179     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
 
1180       . "&id=" . E($ar->{id}) . "&callback=${callback}";
 
1183       raw_data =>  $::request->presenter->checkbox_tag("id[]", value => $ar->{id}, "data-checkall" => 1),
 
1188     my $row_set = [ $row ];
 
1190     if (($form->{l_subtotal} eq 'Y')
 
1191         && (($idx == (scalar @{ $form->{AR} } - 1))
 
1192             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
 
1193       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1196     $report->add_data($row_set);
 
1201   $report->add_separator();
 
1202   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1204   $::request->layout->add_javascripts('kivi.MassInvoiceCreatePrint.js');
 
1205   setup_ar_transactions_action_bar(num_rows => scalar(@{ $form->{AR} }));
 
1207   $report->generate_with_headers();
 
1209   $main::lxdebug->leave_sub();
 
1213   $main::lxdebug->enter_sub();
 
1215   $main::auth->assert('ar_transactions');
 
1217   my $form     = $main::form;
 
1218   my %myconfig = %main::myconfig;
 
1219   my $locale   = $main::locale;
 
1221   # don't cancel cancelled transactions
 
1222   if (IS->has_storno(\%myconfig, $form, 'ar')) {
 
1223     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
 
1224     $form->error($locale->text("Transaction has already been cancelled!"));
 
1227   AR->storno($form, \%myconfig, $form->{id});
 
1229   # saving the history
 
1230   if(!exists $form->{addition} && $form->{id} ne "") {
 
1231     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
1232     $form->{addition}  = "STORNO";
 
1233     $form->{what_done} = "invoice";
 
1234     $form->save_history;
 
1236   # /saving the history
 
1238   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
 
1240   $main::lxdebug->leave_sub();
 
1243 sub setup_ar_form_header_action_bar {
 
1244   my $transdate               = $::form->datetonum($::form->{transdate}, \%::myconfig);
 
1245   my $closedto                = $::form->datetonum($::form->{closedto},  \%::myconfig);
 
1246   my $is_closed               = $transdate <= $closedto;
 
1248   my $change_never            = $::instance_conf->get_ar_changeable == 0;
 
1249   my $change_on_same_day_only = $::instance_conf->get_ar_changeable == 2 && ($::form->current_date(\%::myconfig) ne $::form->{gldate});
 
1251   my $is_storno               = IS->is_storno(\%::myconfig, $::form, 'ar', $::form->{id});
 
1252   my $has_storno              = IS->has_storno(\%::myconfig, $::form, 'ar');
 
1254   for my $bar ($::request->layout->get('actionbar')) {
 
1258         submit    => [ '#form', { action => "update" } ],
 
1259         id        => 'update_button',
 
1260         accesskey => 'enter',
 
1266           submit   => [ '#form', { action => "post" } ],
 
1267           checks   => [ 'kivi.AR.check_fields_before_posting' ],
 
1268           disabled => $is_closed                                  ? t8('The billing period has already been locked.')
 
1269                     : $is_storno                                  ? t8('A canceled invoice cannot be posted.')
 
1270                     : ($::form->{id} && $change_never)            ? t8('Changing invoices has been disabled in the configuration.')
 
1271                     : ($::form->{id} && $change_on_same_day_only) ? t8('Invoices can only be changed on the day they are posted.')
 
1276           submit   => [ '#form', { action => "post_payment" } ],
 
1277           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1279         action => [ t8('Mark as paid'),
 
1280           submit   => [ '#form', { action => "mark_as_paid" } ],
 
1281           confirm  => t8('This will remove the invoice from showing as unpaid even if the unpaid amount does not match the amount. Proceed?'),
 
1282           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1283           only_if  => $::instance_conf->get_is_show_mark_as_paid,
 
1285       ], # end of combobox "Post"
 
1288         action => [ t8('Storno'),
 
1289           submit   => [ '#form', { action => "storno" } ],
 
1290           checks   => [ 'kivi.AR.check_fields_before_posting' ],
 
1291           confirm  => t8('Do you really want to cancel this invoice?'),
 
1292           disabled => !$::form->{id}         ? t8('This invoice has not been posted yet.')
 
1293                       : $has_storno          ? t8('This invoice has been canceled already.')
 
1294                       : $is_storno           ? t8('Reversal invoices cannot be canceled.')
 
1295                       : $::form->{totalpaid} ? t8('Invoices with payments cannot be canceled.')
 
1298         action => [ t8('Delete'),
 
1299           submit   => [ '#form', { action => "delete" } ],
 
1300           confirm  => t8('Do you really want to delete this object?'),
 
1301           disabled => !$::form->{id}           ? t8('This invoice has not been posted yet.')
 
1302                     : $change_never            ? t8('Changing invoices has been disabled in the configuration.')
 
1303                     : $change_on_same_day_only ? t8('Invoices can only be changed on the day they are posted.')
 
1304                     : $is_closed               ? t8('The billing period has already been locked.')
 
1307       ], # end of combobox "Storno"
 
1312         action => [ t8('Workflow') ],
 
1315           submit   => [ '#form', { action => "use_as_new" } ],
 
1316           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1318       ], # end of combobox "Workflow"
 
1321         action => [ t8('more') ],
 
1324           call     => [ 'set_history_window', $::form->{id} * 1, 'glid' ],
 
1325           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1329           call     => [ 'follow_up_window' ],
 
1330           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1333           t8('Record templates'),
 
1334           call => [ 'kivi.RecordTemplate.popup', 'ar_transaction' ],
 
1338           call     => [ 'kivi.Draft.popup', 'ar', 'invoice', $::form->{draft_id}, $::form->{draft_description} ],
 
1339           disabled => $::form->{id} ? t8('This invoice has already been posted.')
 
1340                     : $is_closed    ? t8('The billing period has already been locked.')
 
1343       ], # end of combobox "more"