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;
 
  44 use SL::DB::BankTransactionAccTrans;
 
  51 use SL::DB::RecordTemplate;
 
  53 use SL::Helper::Flash qw(flash);
 
  54 use SL::Locale::String qw(t8);
 
  55 use SL::Presenter::Tag;
 
  56 use SL::Presenter::Chart;
 
  57 use SL::ReportGenerator;
 
  59 require "bin/mozilla/common.pl";
 
  60 require "bin/mozilla/reportgenerator.pl";
 
  65 # this is for our long dates
 
  66 # $locale->text('January')
 
  67 # $locale->text('February')
 
  68 # $locale->text('March')
 
  69 # $locale->text('April')
 
  70 # $locale->text('May ')
 
  71 # $locale->text('June')
 
  72 # $locale->text('July')
 
  73 # $locale->text('August')
 
  74 # $locale->text('September')
 
  75 # $locale->text('October')
 
  76 # $locale->text('November')
 
  77 # $locale->text('December')
 
  79 # this is for our short month
 
  80 # $locale->text('Jan')
 
  81 # $locale->text('Feb')
 
  82 # $locale->text('Mar')
 
  83 # $locale->text('Apr')
 
  84 # $locale->text('May')
 
  85 # $locale->text('Jun')
 
  86 # $locale->text('Jul')
 
  87 # $locale->text('Aug')
 
  88 # $locale->text('Sep')
 
  89 # $locale->text('Oct')
 
  90 # $locale->text('Nov')
 
  91 # $locale->text('Dec')
 
  93 sub _may_view_or_edit_this_invoice {
 
  94   return 1 if  $::auth->assert('ar_transactions', 1); # may edit all invoices
 
  95   return 0 if !$::form->{id};                         # creating new invoices isn't allowed without invoice_edit
 
  96   return 0 if !$::form->{globalproject_id};           # existing records without a project ID are not allowed
 
  97   return SL::DB::Project->new(id => $::form->{globalproject_id})->load->may_employee_view_project_invoices(SL::DB::Manager::Employee->current);
 
 101   my $cache = $::request->cache('ar.pl::_assert_access');
 
 103   $cache->{_may_view_or_edit_this_invoice} = _may_view_or_edit_this_invoice()                              if !exists $cache->{_may_view_or_edit_this_invoice};
 
 104   $::form->show_generic_error($::locale->text("You do not have the permissions to access this function.")) if !       $cache->{_may_view_or_edit_this_invoice};
 
 107 sub load_record_template {
 
 108   $::auth->assert('ar_transactions');
 
 110   # Load existing template and verify that its one for this module.
 
 111   my $template = SL::DB::RecordTemplate
 
 112     ->new(id => $::form->{id})
 
 114       with_object => [ qw(customer payment currency record_items record_items.chart) ],
 
 117   die "invalid template type" unless $template->template_type eq 'ar_transaction';
 
 119   $template->substitute_variables;
 
 121   # Clean the current $::form before rebuilding it from the template.
 
 122   my $form_defaults = delete $::form->{form_defaults};
 
 123   delete @{ $::form }{ grep { !m{^(?:script|login)$}i } keys %{ $::form } };
 
 125   # Fill $::form from the template.
 
 126   my $today                   = DateTime->today_local;
 
 127   $::form->{title}            = "Add";
 
 128   $::form->{currency}         = $template->currency->name;
 
 129   $::form->{direct_debit}     = $template->direct_debit;
 
 130   $::form->{globalproject_id} = $template->project_id;
 
 131   $::form->{AR_chart_id}      = $template->ar_ap_chart_id;
 
 132   $::form->{transdate}        = $today->to_kivitendo;
 
 133   $::form->{duedate}          = $today->to_kivitendo;
 
 134   $::form->{rowcount}         = @{ $template->items };
 
 135   $::form->{paidaccounts}     = 1;
 
 136   $::form->{$_}               = $template->$_ for qw(department_id ordnumber taxincluded employee_id notes);
 
 138   if ($template->customer) {
 
 139     $::form->{customer_id} = $template->customer_id;
 
 140     $::form->{customer}    = $template->customer->name;
 
 141     $::form->{duedate}     = $template->customer->payment->calc_date(reference_date => $today)->to_kivitendo if $template->customer->payment;
 
 145   foreach my $item (@{ $template->items }) {
 
 148     my $active_taxkey = $item->chart->get_active_taxkey;
 
 149     my $taxes         = SL::DB::Manager::Tax->get_all(
 
 150       where   => [ chart_categories => { like => '%' . $item->chart->category . '%' }],
 
 151       sort_by => 'taxkey, rate',
 
 154     my $tax   = first { $item->tax_id          == $_->id } @{ $taxes };
 
 155     $tax    //= first { $active_taxkey->tax_id == $_->id } @{ $taxes };
 
 156     $tax    //= $taxes->[0];
 
 163     $::form->{"AR_amount_chart_id_${row}"}          = $item->chart_id;
 
 164     $::form->{"previous_AR_amount_chart_id_${row}"} = $item->chart_id;
 
 165     $::form->{"amount_${row}"}                      = $::form->format_amount(\%::myconfig, $item->amount1, 2);
 
 166     $::form->{"taxchart_${row}"}                    = $item->tax_id . '--' . $tax->rate;
 
 167     $::form->{"project_id_${row}"}                  = $item->project_id;
 
 170   $::form->{$_} = $form_defaults->{$_} for keys %{ $form_defaults // {} };
 
 172   flash('info', $::locale->text("The record template '#1' has been loaded.", $template->template_name));
 
 175     keep_rows_without_amount => 1,
 
 176     dont_add_new_row         => 1,
 
 180 sub save_record_template {
 
 181   $::auth->assert('ar_transactions');
 
 183   my $template = $::form->{record_template_id} ? SL::DB::RecordTemplate->new(id => $::form->{record_template_id})->load : SL::DB::RecordTemplate->new;
 
 184   my $js       = SL::ClientJS->new(controller => SL::Controller::Base->new);
 
 185   my $new_name = $template->template_name_to_use($::form->{record_template_new_template_name});
 
 187   $js->dialog->close('#record_template_dialog');
 
 190     $_->{chart_id} && (($_->{tax_id} // '') ne '')
 
 192     +{ chart_id   => $::form->{"AR_amount_chart_id_${_}"},
 
 193        amount1    => $::form->parse_amount(\%::myconfig, $::form->{"amount_${_}"}),
 
 194        tax_id     => (split m{--}, $::form->{"taxchart_${_}"})[0],
 
 195        project_id => $::form->{"project_id_${_}"} || undef,
 
 197   } (1..($::form->{rowcount} || 1));
 
 199   $template->assign_attributes(
 
 200     template_type  => 'ar_transaction',
 
 201     template_name  => $new_name,
 
 203     currency_id    => SL::DB::Manager::Currency->find_by(name => $::form->{currency})->id,
 
 204     ar_ap_chart_id => $::form->{AR_chart_id}      || undef,
 
 205     customer_id    => $::form->{customer_id}      || undef,
 
 206     department_id  => $::form->{department_id}    || undef,
 
 207     project_id     => $::form->{globalproject_id} || undef,
 
 208     employee_id    => $::form->{employee_id}      || undef,
 
 209     taxincluded    => $::form->{taxincluded}  ? 1 : 0,
 
 210     direct_debit   => $::form->{direct_debit} ? 1 : 0,
 
 211     ordnumber      => $::form->{ordnumber},
 
 212     notes          => $::form->{notes},
 
 222       ->flash('error', $::locale->text("Saving the record template '#1' failed.", $new_name))
 
 227     ->flash('info', $::locale->text("The record template '#1' has been saved.", $new_name))
 
 232   $main::lxdebug->enter_sub();
 
 234   $main::auth->assert('ar_transactions');
 
 236   my $form     = $main::form;
 
 237   my %myconfig = %main::myconfig;
 
 240   if(!exists $form->{addition} && ($form->{id} ne "")) {
 
 241     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 242     $form->{addition} = "ADDED";
 
 245   # /saving the history
 
 247   $form->{title}    = "Add";
 
 248   $form->{callback} = "ar.pl?action=add" unless $form->{callback};
 
 250   AR->get_transdate(\%myconfig, $form);
 
 251   $form->{initial_transdate} = $form->{transdate};
 
 252   create_links(dont_save => 1);
 
 253   $form->{transdate} = $form->{initial_transdate};
 
 255   if ($form->{customer_id}) {
 
 256     my $last_used_ar_chart = SL::DB::Customer->load_cached($form->{customer_id})->last_used_ar_chart;
 
 257     $form->{"AR_amount_chart_id_1"} = $last_used_ar_chart->id if $last_used_ar_chart;
 
 261   $main::lxdebug->leave_sub();
 
 265   $main::lxdebug->enter_sub();
 
 267   # Delay access check to after the invoice's been loaded in
 
 268   # "create_links" so that project-specific invoice rights can be
 
 271   my $form     = $main::form;
 
 273   # show history button
 
 274   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 275   #/show hhistory button
 
 276   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
 277   $form->{title} = "Edit";
 
 282   $main::lxdebug->leave_sub();
 
 286   $main::lxdebug->enter_sub();
 
 290   my $form     = $main::form;
 
 295   $main::lxdebug->leave_sub();
 
 298 sub _retrieve_invoice_object {
 
 299   return undef if !$::form->{id};
 
 300   return $::form->{invoice_obj} if $::form->{invoice_obj} && $::form->{invoice_obj}->id == $::form->{id};
 
 301   return SL::DB::Invoice->new(id => $::form->{id})->load;
 
 305   $main::lxdebug->enter_sub();
 
 307   # Delay access check to after the invoice's been loaded so that
 
 308   # project-specific invoice rights can be evaluated.
 
 311   my $form     = $main::form;
 
 312   my %myconfig = %main::myconfig;
 
 314   $form->create_links("AR", \%myconfig, "customer");
 
 315   $form->{invoice_obj} = _retrieve_invoice_object();
 
 320   if (!$params{dont_save}) {
 
 321     %saved = map { ($_ => $form->{$_}) } qw(direct_debit id taxincluded);
 
 322     $saved{duedate} = $form->{duedate} if $form->{duedate};
 
 323     $saved{currency} = $form->{currency} if $form->{currency};
 
 326   IS->get_customer(\%myconfig, \%$form);
 
 328   $form->{$_}          = $saved{$_} for keys %saved;
 
 329   $form->{rowcount}    = 1;
 
 330   $form->{AR_chart_id} = $form->{acc_trans} && $form->{acc_trans}->{AR} ? $form->{acc_trans}->{AR}->[0]->{chart_id} : $::instance_conf->get_ar_chart_id || $form->{AR_links}->{AR}->[0]->{chart_id};
 
 333   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 335   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 337   # build the popup menus
 
 338   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
 
 340   AR->setup_form($form);
 
 343     ($form->datetonum($form->{transdate}, \%myconfig) <=
 
 344      $form->datetonum($form->{closedto}, \%myconfig));
 
 346   $main::lxdebug->leave_sub();
 
 350   $main::lxdebug->enter_sub();
 
 354   my $form     = $main::form;
 
 355   my %myconfig = %main::myconfig;
 
 356   my $locale   = $main::locale;
 
 357   my $cgi      = $::request->{cgi};
 
 359   $form->{invoice_obj} = _retrieve_invoice_object();
 
 361   my ($title, $readonly, $exchangerate, $rows);
 
 362   my ($notes, $amount, $project);
 
 364   $form->{initial_focus} = !($form->{amount_1} * 1) ? 'customer_id' : 'row_' . $form->{rowcount};
 
 366   $title = $form->{title};
 
 367   # $locale->text('Add Accounts Receivables Transaction')
 
 368   # $locale->text('Edit Accounts Receivables Transaction')
 
 369   $form->{title} = $locale->text("$title Accounts Receivables Transaction");
 
 371   $readonly = ($form->{id}) ? "readonly" : "";
 
 373   $form->{radier} = ($::instance_conf->get_ar_changeable == 2)
 
 374                       ? ($form->current_date(\%myconfig) eq $form->{gldate})
 
 375                       : ($::instance_conf->get_ar_changeable == 1);
 
 376   $readonly = ($form->{radier}) ? "" : $readonly;
 
 378   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 379   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 381   $rows = max 2, $form->numtextrows($form->{notes}, 50);
 
 383   my @old_project_ids = grep { $_ } map { $form->{"project_id_$_"} } 1..$form->{rowcount};
 
 385   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
 
 387                                     "old_id"    => \@old_project_ids },
 
 388                    "charts"    => { "key"       => "ALL_CHARTS",
 
 389                                     "transdate" => $form->{transdate} },
 
 392   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 394   $_->{link_split} = { map { $_ => 1 } split/:/, $_->{link} } for @{ $form->{ALL_CHARTS} };
 
 396   my %project_labels = map { $_->{id} => $_->{projectnumber} } @{ $form->{"ALL_PROJECTS"} };
 
 398   my (@AR_paid_values, %AR_paid_labels);
 
 399   my $default_ar_amount_chart_id;
 
 401   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 402     if ($item->{link_split}{AR_amount}) {
 
 403       $default_ar_amount_chart_id //= $item->{id};
 
 405     } elsif ($item->{link_split}{AR_paid}) {
 
 406       push(@AR_paid_values, $item->{accno});
 
 407       $AR_paid_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
 
 411   my $follow_up_vc         = $form->{customer_id} ? SL::DB::Customer->load_cached($form->{customer_id})->name : '';
 
 412   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
 
 414   $::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", "kivi.Validator.js");
 
 415   # get the correct date for tax
 
 416   my $transdate    = $::form->{transdate}    ? DateTime->from_kivitendo($::form->{transdate})    : DateTime->today_local;
 
 417   my $deliverydate = $::form->{deliverydate} ? DateTime->from_kivitendo($::form->{deliverydate}) : undef;
 
 418   my $taxdate      = $deliverydate ? $deliverydate : $transdate;
 
 423   for my $i (1 .. $form->{rowcount}) {
 
 425       amount     => $form->{"amount_$i"},
 
 426       tax        => $form->{"tax_$i"},
 
 427       project_id => ($i==$form->{rowcount}) ? $form->{globalproject_id} : $form->{"project_id_$i"},
 
 430     my (%taxchart_labels, @taxchart_values, $default_taxchart, $taxchart_to_use);
 
 431     my $amount_chart_id = $form->{"AR_amount_chart_id_$i"} // $default_ar_amount_chart_id;
 
 434     if ( $form->{"taxchart_$i"} ) {
 
 435       ($used_tax_id) = split(/--/, $form->{"taxchart_$i"});
 
 437     foreach my $item ( GL->get_active_taxes_for_chart($amount_chart_id, $taxdate, $used_tax_id) ) {
 
 438       my $key             = $item->id . "--" . $item->rate;
 
 439       $first_taxchart   //= $item;
 
 440       $default_taxchart   = $item if $item->{is_default};
 
 441       $taxchart_to_use    = $item if $key eq $form->{"taxchart_$i"};
 
 443       push(@taxchart_values, $key);
 
 444       $taxchart_labels{$key} = $item->taxkey . " - " . $item->taxdescription . " " . $item->rate * 100 . ' %';
 
 447     $taxchart_to_use    //= $default_taxchart // $first_taxchart;
 
 448     my $selected_taxchart = $taxchart_to_use->id . '--' . $taxchart_to_use->rate;
 
 450     $transaction->{selectAR_amount} =
 
 451         SL::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" : ""))
 
 452       . SL::Presenter::Tag::hidden_tag("previous_AR_amount_chart_id_$i", $amount_chart_id);
 
 454     $transaction->{taxchart} =
 
 455       NTI($cgi->popup_menu('-name' => "taxchart_$i",
 
 456                            '-id' => "taxchart_$i",
 
 457                            '-style' => 'width:200px',
 
 458                            '-values' => \@taxchart_values,
 
 459                            '-labels' => \%taxchart_labels,
 
 460                            '-default' => $selected_taxchart));
 
 462     push @transactions, $transaction;
 
 465   $form->{invtotal_unformatted} = $form->{invtotal};
 
 467   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 469   my $now = $form->current_date(\%myconfig);
 
 472   for my $i (1 .. $form->{paidaccounts}) {
 
 474       paid             => $form->{"paid_$i"},
 
 475       exchangerate     => $form->{"exchangerate_$i"} || '',
 
 476       gldate           => $form->{"gldate_$i"},
 
 477       acc_trans_id     => $form->{"acc_trans_id_$i"},
 
 478       source           => $form->{"source_$i"},
 
 479       memo             => $form->{"memo_$i"},
 
 480       AR_paid          => $form->{"AR_paid_$i"},
 
 481       forex            => $form->{"forex_$i"},
 
 482       datepaid         => $form->{"datepaid_$i"},
 
 483       paid_project_id  => $form->{"paid_project_id_$i"},
 
 484       gldate           => $form->{"gldate_$i"},
 
 487     # default account for current assets (i.e. 1801 - SKR04) if no account is selected
 
 488     $form->{accno_arap} = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
 
 490     $payment->{selectAR_paid} =
 
 491       NTI($cgi->popup_menu('-name' => "AR_paid_$i",
 
 492                            '-id' => "AR_paid_$i",
 
 493                            '-values' => \@AR_paid_values,
 
 494                            '-labels' => \%AR_paid_labels,
 
 495                            '-default' => $payment->{AR_paid} || $form->{accno_arap}));
 
 499     $payment->{changeable} =
 
 500         SL::DB::Default->get->payments_changeable == 0 ? !$payment->{acc_trans_id} # never
 
 501       : SL::DB::Default->get->payments_changeable == 2 ? $payment->{gldate} eq '' || $payment->{gldate} eq $now
 
 504     #deaktivieren von gebuchten Zahlungen ausserhalb der Bücherkontrolle, vorher prüfen ob heute eingegeben
 
 505     if ($form->date_closed($payment->{"gldate_$i"})) {
 
 506         $payment->{changeable} = 0;
 
 509     push @payments, $payment;
 
 512   my @empty = grep { $_->{paid} eq '' } @payments;
 
 514     (sort_by { DateTime->from_kivitendo($_->{datepaid}) } grep { $_->{paid} ne '' } @payments),
 
 518   $form->{totalpaid} = sum map { $_->{paid} } @payments;
 
 520   my $employees = SL::DB::Manager::Employee->get_all_sorted(
 
 523         (id     => $::form->{employee_id}) x !!$::form->{employee_id},
 
 530   setup_ar_form_header_action_bar();
 
 533   print $::form->parse_html_template('ar/form_header', {
 
 534     paid_missing         => $::form->{invtotal} - $::form->{totalpaid},
 
 535     show_exch            => ($::form->{defaultcurrency} && ($::form->{currency} ne $::form->{defaultcurrency})),
 
 536     payments             => \@payments,
 
 537     transactions         => \@transactions,
 
 538     project_labels       => \%project_labels,
 
 540     AR_chart_id          => $form->{AR_chart_id},
 
 542     follow_up_trans_info => $follow_up_trans_info,
 
 543     today                => DateTime->today,
 
 544     currencies           => scalar(SL::DB::Manager::Currency->get_all_sorted),
 
 545     employees            => $employees,
 
 548   $main::lxdebug->leave_sub();
 
 552   $main::lxdebug->enter_sub();
 
 556   my $form     = $main::form;
 
 557   my %myconfig = %main::myconfig;
 
 558   my $locale   = $main::locale;
 
 559   my $cgi      = $::request->{cgi};
 
 562     my $follow_ups = FU->follow_ups('trans_id' => $form->{id}, 'not_done' => 1);
 
 563     if ( @{ $follow_ups} ) {
 
 564       $form->{follow_up_length} = scalar(@{$follow_ups});
 
 565       $form->{follow_up_due_length} = sum(map({ $_->{due} * 1 } @{ $follow_ups }));
 
 569   print $::form->parse_html_template('ar/form_footer');
 
 571   $main::lxdebug->leave_sub();
 
 575   $::auth->assert('ar_transactions');
 
 577   SL::DB::Invoice->new(id => $::form->{id})->load->mark_as_paid;
 
 578   $::form->redirect($::locale->text("Marked as paid"));
 
 582   $::form->{transdate} = DateTime->today_local->to_kivitendo if !$::form->{transdate};
 
 583   $::form->{gldate}    = $::form->{transdate} if !$::form->{gldate};
 
 589   $main::lxdebug->enter_sub();
 
 591   $main::auth->assert('ar_transactions');
 
 593   my $form     = $main::form;
 
 594   my %myconfig = %main::myconfig;
 
 598   my ($totaltax, $exchangerate);
 
 600   $form->{invtotal} = 0;
 
 602   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
 
 604   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 605     qw(exchangerate creditlimit creditremaining);
 
 607   my @flds  = qw(amount AR_amount_chart_id projectnumber oldprojectnumber project_id taxchart tax);
 
 611   for my $i (1 .. $form->{rowcount}) {
 
 612     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
 
 613     if ($form->{"amount_$i"} || $params{keep_rows_without_amount}) {
 
 616       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 619       ($tmpnetamount,$form->{"tax_$i"}) = $form->calculate_tax($form->{"amount_$i"},$rate,$form->{taxincluded},2);
 
 621       $totaltax += $form->{"tax_$i"};
 
 622       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 627   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 628   $form->{rowcount} = $count + ($params{dont_add_new_row} ? 0 : 1);
 
 629   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
 
 631   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 632   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 634   $form->{invdate} = $form->{transdate};
 
 636   if (($form->{previous_customer_id} || $form->{customer_id}) != $form->{customer_id}) {
 
 637     IS->get_customer(\%myconfig, $form);
 
 638     if (($form->{rowcount} == 1) && ($form->{amount_1} == 0)) {
 
 639       my $last_used_ar_chart = SL::DB::Customer->load_cached($form->{customer_id})->last_used_ar_chart;
 
 640       $form->{"AR_amount_chart_id_1"} = $last_used_ar_chart->id if $last_used_ar_chart;
 
 645     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
 
 647   for my $i (1 .. $form->{paidaccounts}) {
 
 648     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 651           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 652       } qw(paid exchangerate);
 
 654       $form->{totalpaid} += $form->{"paid_$i"};
 
 656       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
 657       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 661   $form->{creditremaining} -=
 
 662     ($form->{invtotal} - $form->{totalpaid} + $form->{oldtotalpaid} -
 
 663      $form->{oldinvtotal});
 
 664   $form->{oldinvtotal}  = $form->{invtotal};
 
 665   $form->{oldtotalpaid} = $form->{totalpaid};
 
 669   $main::lxdebug->leave_sub();
 
 673 # ToDO: fix $closedto and $invdate
 
 676   $main::lxdebug->enter_sub();
 
 678   $main::auth->assert('ar_transactions');
 
 680   my $form     = $main::form;
 
 681   my %myconfig = %main::myconfig;
 
 682   my $locale   = $main::locale;
 
 684   $form->mtime_ischanged('ar');
 
 685   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 687   my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 689   for my $i (1 .. $form->{paidaccounts}) {
 
 691     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 692       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 694       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 696       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 697         if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 699       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 700       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 701       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 702         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 704       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 705 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
 
 706         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 711   ($form->{AR})      = split /--/, $form->{AR};
 
 712   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
 713   if (AR->post_payment(\%myconfig, \%$form)) {
 
 714     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 715     $form->{what_done} = 'invoice';
 
 716     $form->{addition}  = "PAYMENT POSTED";
 
 718     $form->redirect($locale->text('Payment posted!'))
 
 720     $form->error($locale->text('Cannot post payment!'));
 
 723   $main::lxdebug->leave_sub();
 
 728   $main::auth->assert('ar_transactions');
 
 730   my $form     = $main::form;
 
 737   $main::lxdebug->enter_sub();
 
 739   $main::auth->assert('ar_transactions');
 
 741   my $form     = $main::form;
 
 742   my %myconfig = %main::myconfig;
 
 743   my $locale   = $main::locale;
 
 747   $form->mtime_ischanged('ar');
 
 751   # check if there is an invoice number, invoice and due date
 
 752   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
 
 753   $form->isblank("duedate",   $locale->text('Due Date missing!'));
 
 754   $form->isblank("customer_id", $locale->text('Customer missing!'));
 
 756   if ($myconfig{mandatory_departments} && !$form->{department_id}) {
 
 757     $form->{saved_message} = $::locale->text('You have to specify a department.');
 
 762   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 763   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 765   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 766     if ($form->date_max_future($transdate, \%myconfig));
 
 768   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
 
 770   $form->error($locale->text('Zero amount posting!'))
 
 771     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
 
 773   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
 774     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
 
 778   for my $i (1 .. $form->{paidaccounts}) {
 
 779     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 780       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 782       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 784       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 785         if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 787       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 788       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 789       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 790         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 792       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 793         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
 
 794         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 799   # if oldcustomer ne customer redo form
 
 800   if (($form->{previous_customer_id} || $form->{customer_id}) != $form->{customer_id}) {
 
 802     $::dispatcher->end_request;
 
 805   $form->{AR}{receivables} = $form->{ARselected};
 
 808   $form->{id} = 0 if $form->{postasnew};
 
 809   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
 
 812   if(!exists $form->{addition} && $form->{id} ne "") {
 
 813     $form->{snumbers}  = "invnumber_$form->{invnumber}";
 
 814     $form->{what_done} = "invoice";
 
 815     $form->{addition}  = "POSTED";
 
 818   # /saving the history
 
 820   $form->redirect($locale->text('AR transaction posted.') . ' ' . $locale->text('ID') . ': ' . $form->{id}) unless $inline;
 
 822   $main::lxdebug->leave_sub();
 
 826   $main::lxdebug->enter_sub();
 
 828   $main::auth->assert('ar_transactions');
 
 830   my $form     = $main::form;
 
 831   my %myconfig = %main::myconfig;
 
 833   $form->{postasnew} = 1;
 
 835   if(!exists $form->{addition} && $form->{id} ne "") {
 
 836     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 837     $form->{what_done} = "invoice";
 
 838     $form->{addition}  = "POSTED AS NEW";
 
 841   # /saving the history
 
 844   $main::lxdebug->leave_sub();
 
 848   $main::lxdebug->enter_sub();
 
 850   $main::auth->assert('ar_transactions');
 
 852   my $form     = $main::form;
 
 853   my %myconfig = %main::myconfig;
 
 855   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);
 
 856   $form->{paidaccounts} = 1;
 
 859   my $today          = DateTime->today_local;
 
 860   $form->{transdate} = $today->to_kivitendo;
 
 861   $form->{duedate}   = $form->{transdate};
 
 863   if ($form->{customer_id}) {
 
 864     my $payment_terms = SL::DB::Customer->load_cached($form->{customer_id})->payment;
 
 865     $form->{duedate}  = $payment_terms->calc_date(reference_date => $today)->to_kivitendo if $payment_terms;
 
 870   $main::lxdebug->leave_sub();
 
 874   $::auth->assert('ar_transactions');
 
 876   my $form     = $main::form;
 
 877   my %myconfig = %main::myconfig;
 
 878   my $locale   = $main::locale;
 
 880   if (AR->delete_transaction(\%myconfig, \%$form)) {
 
 882     if(!exists $form->{addition}) {
 
 883       $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 884       $form->{what_done} = "invoice";
 
 885       $form->{addition}  = "DELETED";
 
 888     # /saving the history
 
 889     $form->redirect($locale->text('Transaction deleted!'));
 
 891   $form->error($locale->text('Cannot delete transaction!'));
 
 894 sub setup_ar_search_action_bar {
 
 897   for my $bar ($::request->layout->get('actionbar')) {
 
 900         $::locale->text('Search'),
 
 901         submit    => [ '#form' ],
 
 902         checks    => [ 'kivi.validate_form' ],
 
 903         accesskey => 'enter',
 
 907   $::request->layout->add_javascripts('kivi.Validator.js');
 
 910 sub setup_ar_transactions_action_bar {
 
 912   my $may_edit_create = $::auth->assert('invoice_edit', 1);
 
 914   for my $bar ($::request->layout->get('actionbar')) {
 
 917         $::locale->text('Print'),
 
 918         call     => [ 'kivi.MassInvoiceCreatePrint.showMassPrintOptionsOrDownloadDirectly' ],
 
 919         disabled => !$may_edit_create  ? t8('You do not have the permissions to access this function.')
 
 920                   : !$params{num_rows} ? $::locale->text('The report doesn\'t contain entries.')
 
 925         action => [ $::locale->text('Create new') ],
 
 927           $::locale->text('AR Transaction'),
 
 928           submit   => [ '#create_new_form', { action => 'ar_transaction' } ],
 
 929           disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
 
 932           $::locale->text('Sales Invoice'),
 
 933           submit   => [ '#create_new_form', { action => 'sales_invoice' } ],
 
 934           disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
 
 936       ], # end of combobox "Create new"
 
 942   $main::lxdebug->enter_sub();
 
 944   my $form     = $main::form;
 
 945   my %myconfig = %main::myconfig;
 
 946   my $locale   = $main::locale;
 
 947   my $cgi      = $::request->{cgi};
 
 949   $form->{title} = $locale->text('Invoices, Credit Notes & AR Transactions');
 
 951   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 952   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 953   $form->{ALL_BUSINESS_TYPES} = SL::DB::Manager::Business->get_all_sorted;
 
 955   $form->{CT_CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
 
 956   ($form->{CT_CUSTOM_VARIABLES_FILTER_CODE},
 
 957    $form->{CT_CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CT_CUSTOM_VARIABLES},
 
 958                                                                               'include_prefix' => 'l_',
 
 959                                                                               'include_value'  => 'Y');
 
 961   # constants and subs for template
 
 962   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 964   $::request->layout->add_javascripts("autocomplete_project.js");
 
 966   setup_ar_search_action_bar();
 
 969   print $form->parse_html_template('ar/search', { %myconfig });
 
 971   $main::lxdebug->leave_sub();
 
 974 sub create_subtotal_row {
 
 975   $main::lxdebug->enter_sub();
 
 977   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
 979   my $form     = $main::form;
 
 980   my %myconfig = %main::myconfig;
 
 982   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
 984   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
 986   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
 988   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
 990   $main::lxdebug->leave_sub();
 
 995 sub ar_transactions {
 
 996   $main::lxdebug->enter_sub();
 
 998   my $form     = $main::form;
 
 999   my %myconfig = %main::myconfig;
 
1000   my $locale   = $main::locale;
 
1002   my ($callback, $href, @columns);
 
1004   report_generator_set_default_sort('transdate', 1);
 
1006   AR->ar_transactions(\%myconfig, \%$form);
 
1008   $form->{title} = $locale->text('Invoices, Credit Notes & AR Transactions');
 
1010   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
1013     qw(ids transdate id type invnumber ordnumber cusordnumber donumber deliverydate name netamount tax amount paid
 
1014        datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
 
1015        marge_total marge_percent globalprojectnumber customernumber country ustid taxzone
 
1016        payment_terms charts customertype direct_debit dunning_description department);
 
1018   my $ct_cvar_configs                 = CVar->get_configs('module' => 'CT');
 
1019   my @ct_includeable_custom_variables = grep { $_->{includeable} } @{ $ct_cvar_configs };
 
1020   my @ct_searchable_custom_variables  = grep { $_->{searchable} }  @{ $ct_cvar_configs };
 
1022   my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @ct_includeable_custom_variables;
 
1023   push @columns, map { "cvar_$_->{name}" } @ct_includeable_custom_variables;
 
1025   my @hidden_variables = map { "l_${_}" } @columns;
 
1026   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber cusordnumber transaction_description notes project_id transdatefrom transdateto duedatefrom duedateto
 
1027                                            employee_id salesman_id business_id parts_partnumber parts_description department_id show_marked_as_closed show_not_mailed);
 
1028   push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables;
 
1030   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
 
1033     'ids'                     => { raw_header_data => SL::Presenter::Tag::checkbox_tag("", id => "check_all", checkall => "[data-checkall=1]"), align => 'center' },
 
1034     'transdate'               => { 'text' => $locale->text('Date'), },
 
1035     'id'                      => { 'text' => $locale->text('ID'), },
 
1036     'type'                    => { 'text' => $locale->text('Type'), },
 
1037     'invnumber'               => { 'text' => $locale->text('Invoice'), },
 
1038     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
1039     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
 
1040     'donumber'                => { 'text' => $locale->text('Delivery Order'), },
 
1041     'deliverydate'            => { 'text' => $locale->text('Delivery Date'), },
 
1042     'name'                    => { 'text' => $locale->text('Customer'), },
 
1043     'netamount'               => { 'text' => $locale->text('Amount'), },
 
1044     'tax'                     => { 'text' => $locale->text('Tax'), },
 
1045     'amount'                  => { 'text' => $locale->text('Total'), },
 
1046     'paid'                    => { 'text' => $locale->text('Paid'), },
 
1047     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
 
1048     'due'                     => { 'text' => $locale->text('Amount Due'), },
 
1049     'duedate'                 => { 'text' => $locale->text('Due Date'), },
 
1050     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
1051     'notes'                   => { 'text' => $locale->text('Notes'), },
 
1052     'salesman'                => { 'text' => $locale->text('Salesperson'), },
 
1053     'employee'                => { 'text' => $locale->text('Employee'), },
 
1054     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
 
1055     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
 
1056     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
 
1057     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
 
1058     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
 
1059     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
 
1060     'country'                 => { 'text' => $locale->text('Country'), },
 
1061     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
 
1062     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
 
1063     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
 
1064     'charts'                  => { 'text' => $locale->text('Chart'), },
 
1065     'customertype'            => { 'text' => $locale->text('Customer type'), },
 
1066     'direct_debit'            => { 'text' => $locale->text('direct debit'), },
 
1067     'department'              => { 'text' => $locale->text('Department'), },
 
1068     dunning_description       => { 'text' => $locale->text('Dunning level'), },
 
1072   foreach my $name (qw(id transdate duedate invnumber ordnumber cusordnumber donumber deliverydate name datepaid employee shippingpoint shipvia transaction_description direct_debit department)) {
 
1073     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
1074     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
1077   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
 
1079   $form->{"l_type"} = "Y";
 
1080   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
1082   $column_defs{ids}->{visible} = 'HTML';
 
1084   $report->set_columns(%column_defs);
 
1085   $report->set_column_order(@columns);
 
1087   $report->set_export_options('ar_transactions', @hidden_variables, qw(sort sortdir));
 
1089   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
1091   CVar->add_custom_variables_to_report('module'         => 'CT',
 
1092                                        'trans_id_field' => 'customer_id',
 
1093                                        'configs'        => $ct_cvar_configs,
 
1094                                        'column_defs'    => \%column_defs,
 
1095                                        'data'           => $form->{AR});
 
1098   if ($form->{customer}) {
 
1099     push @options, $locale->text('Customer') . " : $form->{customer}";
 
1101   if ($form->{cp_name}) {
 
1102     push @options, $locale->text('Contact Person') . " : $form->{cp_name}";
 
1105   if ($form->{department_id}) {
 
1106     my $department = SL::DB::Manager::Department->find_by( id => $form->{department_id} );
 
1107     push @options, $locale->text('Department') . " : " . $department->description;
 
1109   if ($form->{invnumber}) {
 
1110     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
 
1112   if ($form->{ordnumber}) {
 
1113     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
 
1115   if ($form->{cusordnumber}) {
 
1116     push @options, $locale->text('Customer Order Number') . " : $form->{cusordnumber}";
 
1118   if ($form->{notes}) {
 
1119     push @options, $locale->text('Notes') . " : $form->{notes}";
 
1121   if ($form->{transaction_description}) {
 
1122     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
 
1124   if ($form->{parts_partnumber}) {
 
1125     push @options, $locale->text('Part Number') . " : $form->{parts_partnumber}";
 
1127   if ($form->{parts_description}) {
 
1128     push @options, $locale->text('Part Description') . " : $form->{parts_description}";
 
1130   if ($form->{transdatefrom}) {
 
1131     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
 
1133   if ($form->{transdateto}) {
 
1134     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
 
1136   if ($form->{open}) {
 
1137     push @options, $locale->text('Open');
 
1139   if ($form->{employee_id}) {
 
1140     my $employee = SL::DB::Employee->new(id => $form->{employee_id})->load;
 
1141     push @options, $locale->text('Employee') . ' : ' . $employee->name;
 
1143   if ($form->{salesman_id}) {
 
1144     my $salesman = SL::DB::Employee->new(id => $form->{salesman_id})->load;
 
1145     push @options, $locale->text('Salesman') . ' : ' . $salesman->name;
 
1147   if ($form->{closed}) {
 
1148     push @options, $locale->text('Closed');
 
1151   $form->{ALL_PRINTERS} = SL::DB::Manager::Printer->get_all_sorted;
 
1153   $report->set_options('top_info_text'        => join("\n", @options),
 
1154                        'raw_top_info_text'    => $form->parse_html_template('ar/ar_transactions_header'),
 
1155                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
 
1156                        'output_format'        => 'HTML',
 
1157                        'title'                => $form->{title},
 
1158                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
 
1160   $report->set_options_from_form();
 
1161   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
1163   # add sort and escape callback, this one we use for the add sub
 
1164   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1166   # escape callback for href
 
1167   $callback = $form->escape($href);
 
1169   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
 
1171   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1172   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1176   foreach my $ar (@{ $form->{AR} }) {
 
1177     $ar->{tax} = $ar->{amount} - $ar->{netamount};
 
1178     $ar->{due} = $ar->{amount} - $ar->{paid};
 
1180     map { $subtotals{$_} += $ar->{$_};
 
1181           $totals{$_}    += $ar->{$_} } @subtotal_columns;
 
1183     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
 
1184     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
 
1186     my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
 
1187     my $has_storno = $ar->{storno} && !$ar->{storno_id};
 
1190       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
 
1191       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
 
1192       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
 
1193       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
 
1194                           $locale->text("AR Transaction (abbreviation)");
 
1196     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
 
1198     $ar->{direct_debit} = $ar->{direct_debit} ? $::locale->text('yes') : $::locale->text('no');
 
1202     foreach my $column (@columns) {
 
1204         'data'  => $ar->{$column},
 
1205         'align' => $column_alignment{$column},
 
1209     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
 
1210       . "&id=" . E($ar->{id}) . "&callback=${callback}";
 
1213       raw_data =>  SL::Presenter::Tag::checkbox_tag("id[]", value => $ar->{id}, "data-checkall" => 1),
 
1218     my $row_set = [ $row ];
 
1220     if (($form->{l_subtotal} eq 'Y')
 
1221         && (($idx == (scalar @{ $form->{AR} } - 1))
 
1222             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
 
1223       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1226     $report->add_data($row_set);
 
1231   $report->add_separator();
 
1232   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1234   $::request->layout->add_javascripts('kivi.MassInvoiceCreatePrint.js');
 
1235   setup_ar_transactions_action_bar(num_rows => scalar(@{ $form->{AR} }));
 
1237   $report->generate_with_headers();
 
1239   $main::lxdebug->leave_sub();
 
1243   $main::lxdebug->enter_sub();
 
1245   $main::auth->assert('ar_transactions');
 
1247   my $form     = $main::form;
 
1248   my %myconfig = %main::myconfig;
 
1249   my $locale   = $main::locale;
 
1251   # don't cancel cancelled transactions
 
1252   if (IS->has_storno(\%myconfig, $form, 'ar')) {
 
1253     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
 
1254     $form->error($locale->text("Transaction has already been cancelled!"));
 
1257   AR->storno($form, \%myconfig, $form->{id});
 
1259   # saving the history
 
1260   if(!exists $form->{addition} && $form->{id} ne "") {
 
1261     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
1262     $form->{addition}  = "STORNO";
 
1263     $form->{what_done} = "invoice";
 
1264     $form->save_history;
 
1266   # /saving the history
 
1268   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
 
1270   $main::lxdebug->leave_sub();
 
1273 sub setup_ar_form_header_action_bar {
 
1274   my $transdate               = $::form->datetonum($::form->{transdate}, \%::myconfig);
 
1275   my $closedto                = $::form->datetonum($::form->{closedto},  \%::myconfig);
 
1276   my $is_closed               = $transdate <= $closedto;
 
1278   my $change_never            = $::instance_conf->get_ar_changeable == 0;
 
1279   my $change_on_same_day_only = $::instance_conf->get_ar_changeable == 2 && ($::form->current_date(\%::myconfig) ne $::form->{gldate});
 
1281   my $is_storno               = IS->is_storno(\%::myconfig, $::form, 'ar', $::form->{id});
 
1282   my $has_storno              = IS->has_storno(\%::myconfig, $::form, 'ar');
 
1283   my $may_edit_create         = $::auth->assert('ar_transactions', 1);
 
1285   my $is_linked_bank_transaction;
 
1287       && SL::DB::Default->get->payments_changeable != 0
 
1288       && SL::DB::Manager::BankTransactionAccTrans->find_by(ar_id => $::form->{id})) {
 
1290     $is_linked_bank_transaction = 1;
 
1292   for my $bar ($::request->layout->get('actionbar')) {
 
1296         submit    => [ '#form', { action => "update" } ],
 
1297         id        => 'update_button',
 
1298         checks    => [ 'kivi.validate_form' ],
 
1299         disabled  => !$may_edit_create ? t8('You must not change this AR transaction.') : undef,
 
1300         accesskey => 'enter',
 
1306           submit   => [ '#form', { action => "post" } ],
 
1307           checks   => [ 'kivi.validate_form', 'kivi.AR.check_fields_before_posting' ],
 
1308           disabled => !$may_edit_create                           ? t8('You must not change this AR transaction.')
 
1309                     : $is_closed                                  ? t8('The billing period has already been locked.')
 
1310                     : $is_storno                                  ? t8('A canceled invoice cannot be posted.')
 
1311                     : ($::form->{id} && $change_never)            ? t8('Changing invoices has been disabled in the configuration.')
 
1312                     : ($::form->{id} && $change_on_same_day_only) ? t8('Invoices can only be changed on the day they are posted.')
 
1313                     : $is_linked_bank_transaction                 ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
 
1318           submit   => [ '#form', { action => "post_payment" } ],
 
1319           disabled => !$may_edit_create           ? t8('You must not change this AR transaction.')
 
1320                     : !$::form->{id}              ? t8('This invoice has not been posted yet.')
 
1321                     : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
 
1324         action => [ t8('Mark as paid'),
 
1325           submit   => [ '#form', { action => "mark_as_paid" } ],
 
1326           confirm  => t8('This will remove the invoice from showing as unpaid even if the unpaid amount does not match the amount. Proceed?'),
 
1327           disabled => !$may_edit_create ? t8('You must not change this AR transaction.')
 
1328                     : !$::form->{id}    ? t8('This invoice has not been posted yet.')
 
1330           only_if  => $::instance_conf->get_is_show_mark_as_paid,
 
1332       ], # end of combobox "Post"
 
1335         action => [ t8('Storno'),
 
1336           submit   => [ '#form', { action => "storno" } ],
 
1337           checks   => [ 'kivi.validate_form', 'kivi.AR.check_fields_before_posting' ],
 
1338           confirm  => t8('Do you really want to cancel this invoice?'),
 
1339           disabled => !$may_edit_create    ? t8('You must not change this AR transaction.')
 
1340                     : !$::form->{id}       ? t8('This invoice has not been posted yet.')
 
1341                     : $has_storno          ? t8('This invoice has been canceled already.')
 
1342                     : $is_storno           ? t8('Reversal invoices cannot be canceled.')
 
1343                     : $::form->{totalpaid} ? t8('Invoices with payments cannot be canceled.')
 
1346         action => [ t8('Delete'),
 
1347           submit   => [ '#form', { action => "delete" } ],
 
1348           confirm  => t8('Do you really want to delete this object?'),
 
1349           disabled => !$may_edit_create        ? t8('You must not change this AR transaction.')
 
1350                     : !$::form->{id}           ? t8('This invoice has not been posted yet.')
 
1351                     : $change_never            ? t8('Changing invoices has been disabled in the configuration.')
 
1352                     : $change_on_same_day_only ? t8('Invoices can only be changed on the day they are posted.')
 
1353                     : $is_closed               ? t8('The billing period has already been locked.')
 
1356       ], # end of combobox "Storno"
 
1361         action => [ t8('Workflow') ],
 
1364           submit   => [ '#form', { action => "use_as_new" } ],
 
1365           checks   => [ 'kivi.validate_form' ],
 
1366           disabled => !$may_edit_create ? t8('You must not change this AR transaction.')
 
1367                     : !$::form->{id} ? t8('This invoice has not been posted yet.')
 
1370       ], # end of combobox "Workflow"
 
1373         action => [ t8('more') ],
 
1376           call     => [ 'set_history_window', $::form->{id} * 1, 'glid' ],
 
1377           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1381           call     => [ 'follow_up_window' ],
 
1382           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1385           t8('Record templates'),
 
1386           call     => [ 'kivi.RecordTemplate.popup', 'ar_transaction' ],
 
1387           disabled => !$may_edit_create ? t8('You must not change this AR transaction.') : undef,
 
1391           call     => [ 'kivi.Draft.popup', 'ar', 'invoice', $::form->{draft_id}, $::form->{draft_description} ],
 
1392           disabled => !$may_edit_create ? t8('You must not change this AR transaction.')
 
1393                     : $::form->{id}     ? t8('This invoice has already been posted.')
 
1394                     : $is_closed        ? t8('The billing period has already been locked.')
 
1397       ], # end of combobox "more"
 
1400   $::request->layout->add_javascripts('kivi.Validator.js');