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 #======================================================================
 
  33 #======================================================================
 
  35 use POSIX qw(strftime);
 
  36 use List::Util qw(first max sum);
 
  37 use List::UtilsBy qw(sort_by);
 
  42 use SL::Helper::Flash qw(flash);
 
  45 use SL::ReportGenerator;
 
  46 use SL::DB::BankTransactionAccTrans;
 
  51 use SL::DB::PaymentTerm;
 
  52 use SL::DB::PurchaseInvoice;
 
  53 use SL::DB::RecordTemplate;
 
  56 use SL::Locale::String qw(t8);
 
  58 require "bin/mozilla/common.pl";
 
  59 require "bin/mozilla/reportgenerator.pl";
 
  67 # this is for our long dates
 
  68 # $locale->text('January')
 
  69 # $locale->text('February')
 
  70 # $locale->text('March')
 
  71 # $locale->text('April')
 
  72 # $locale->text('May ')
 
  73 # $locale->text('June')
 
  74 # $locale->text('July')
 
  75 # $locale->text('August')
 
  76 # $locale->text('September')
 
  77 # $locale->text('October')
 
  78 # $locale->text('November')
 
  79 # $locale->text('December')
 
  81 # this is for our short month
 
  82 # $locale->text('Jan')
 
  83 # $locale->text('Feb')
 
  84 # $locale->text('Mar')
 
  85 # $locale->text('Apr')
 
  86 # $locale->text('May')
 
  87 # $locale->text('Jun')
 
  88 # $locale->text('Jul')
 
  89 # $locale->text('Aug')
 
  90 # $locale->text('Sep')
 
  91 # $locale->text('Oct')
 
  92 # $locale->text('Nov')
 
  93 # $locale->text('Dec')
 
  95 sub _may_view_or_edit_this_invoice {
 
  96   return 1 if  $::auth->assert('ap_transactions', 1); # may edit all invoices
 
  97   return 0 if !$::form->{id};                         # creating new invoices isn't allowed without invoice_edit
 
  98   return 0 if !$::form->{globalproject_id};           # existing records without a project ID are not allowed
 
  99   return SL::DB::Project->new(id => $::form->{globalproject_id})->load->may_employee_view_project_invoices(SL::DB::Manager::Employee->current);
 
 103   my $cache = $::request->cache('ap.pl::_assert_access');
 
 105   $cache->{_may_view_or_edit_this_invoice} = _may_view_or_edit_this_invoice()                              if !exists $cache->{_may_view_or_edit_this_invoice};
 
 106   $::form->show_generic_error($::locale->text("You do not have the permissions to access this function.")) if !       $cache->{_may_view_or_edit_this_invoice};
 
 109 sub load_record_template {
 
 110   $::auth->assert('ap_transactions');
 
 112   # Load existing template and verify that its one for this module.
 
 113   my $template = SL::DB::RecordTemplate
 
 114     ->new(id => $::form->{id})
 
 116       with_object => [ qw(customer payment currency record_items record_items.chart) ],
 
 119   die "invalid template type" unless $template->template_type eq 'ap_transaction';
 
 121   $template->substitute_variables;
 
 123   # Clean the current $::form before rebuilding it from the template.
 
 124   my $form_defaults = delete $::form->{form_defaults};
 
 125   delete @{ $::form }{ grep { !m{^(?:script|login)$}i } keys %{ $::form } };
 
 127   # Fill $::form from the template.
 
 128   my $today                   = DateTime->today_local;
 
 129   $::form->{title}            = "Add";
 
 130   $::form->{currency}         = $template->currency->name;
 
 131   $::form->{direct_debit}     = $template->direct_debit;
 
 132   $::form->{globalproject_id} = $template->project_id;
 
 133   $::form->{payment_id}       = $template->payment_id;
 
 134   $::form->{AP_chart_id}      = $template->ar_ap_chart_id;
 
 135   $::form->{transdate}        = $today->to_kivitendo;
 
 136   $::form->{duedate}          = $today->to_kivitendo;
 
 137   $::form->{rowcount}         = @{ $template->items };
 
 138   $::form->{paidaccounts}     = 1;
 
 139   $::form->{$_}               = $template->$_ for qw(department_id ordnumber taxincluded notes);
 
 141   if ($template->vendor) {
 
 142     $::form->{vendor_id} = $template->vendor_id;
 
 143     $::form->{vendor}    = $template->vendor->name;
 
 144     $::form->{duedate}     = $template->vendor->payment->calc_date(reference_date => $today)->to_kivitendo if $template->vendor->payment;
 
 148   foreach my $item (@{ $template->items }) {
 
 151     my $active_taxkey = $item->chart->get_active_taxkey;
 
 152     my $taxes         = SL::DB::Manager::Tax->get_all(
 
 153       where   => [ chart_categories => { like => '%' . $item->chart->category . '%' }],
 
 154       sort_by => 'taxkey, rate',
 
 157     my $tax   = first { $item->tax_id          == $_->id } @{ $taxes };
 
 158     $tax    //= first { $active_taxkey->tax_id == $_->id } @{ $taxes };
 
 159     $tax    //= $taxes->[0];
 
 166     $::form->{"AP_amount_chart_id_${row}"}          = $item->chart_id;
 
 167     $::form->{"previous_AP_amount_chart_id_${row}"} = $item->chart_id;
 
 168     $::form->{"amount_${row}"}                      = $::form->format_amount(\%::myconfig, $item->amount1, 2);
 
 169     $::form->{"taxchart_${row}"}                    = $item->tax_id . '--' . $tax->rate;
 
 170     $::form->{"project_id_${row}"}                  = $item->project_id;
 
 173   $::form->{$_} = $form_defaults->{$_} for keys %{ $form_defaults // {} };
 
 175   flash('info', $::locale->text("The record template '#1' has been loaded.", $template->template_name));
 
 176   flash('info', $::locale->text("Payment bookings disallowed. After the booking this record may be " .
 
 177                                 "suggested with the amount of '#1' or otherwise has to be choosen manually." .
 
 178                                 " No automatic payment booking will be done to chart '#2'.",
 
 179                                   $form_defaults->{paid_1_suggestion},
 
 180                                   $form_defaults->{AP_paid_1_suggestion},
 
 181                                 )) if $::form->{no_payment_bookings};
 
 184     keep_rows_without_amount => 1,
 
 185     dont_add_new_row         => 1,
 
 189 sub save_record_template {
 
 190   $::auth->assert('ap_transactions');
 
 192   my $template = $::form->{record_template_id} ? SL::DB::RecordTemplate->new(id => $::form->{record_template_id})->load : SL::DB::RecordTemplate->new;
 
 193   my $js       = SL::ClientJS->new(controller => SL::Controller::Base->new);
 
 194   my $new_name = $template->template_name_to_use($::form->{record_template_new_template_name});
 
 196   $js->dialog->close('#record_template_dialog');
 
 199     $_->{chart_id} && (($_->{tax_id} // '') ne '')
 
 201     +{ chart_id   => $::form->{"AP_amount_chart_id_${_}"},
 
 202        amount1    => $::form->parse_amount(\%::myconfig, $::form->{"amount_${_}"}),
 
 203        tax_id     => (split m{--}, $::form->{"taxchart_${_}"})[0],
 
 204        project_id => $::form->{"project_id_${_}"} || undef,
 
 206   } (1..($::form->{rowcount} || 1));
 
 208   $template->assign_attributes(
 
 209     template_type  => 'ap_transaction',
 
 210     template_name  => $new_name,
 
 212     currency_id    => SL::DB::Manager::Currency->find_by(name => $::form->{currency})->id,
 
 213     ar_ap_chart_id => $::form->{AP_chart_id}      || undef,
 
 214     vendor_id      => $::form->{vendor_id}        || undef,
 
 215     department_id  => $::form->{department_id}    || undef,
 
 216     project_id     => $::form->{globalproject_id} || undef,
 
 217     payment_id     => $::form->{payment_id}       || undef,
 
 218     taxincluded    => $::form->{taxincluded}  ? 1 : 0,
 
 219     direct_debit   => $::form->{direct_debit} ? 1 : 0,
 
 220     ordnumber      => $::form->{ordnumber},
 
 221     notes          => $::form->{notes},
 
 231       ->flash('error', $::locale->text("Saving the record template '#1' failed.", $new_name))
 
 236     ->flash('info', $::locale->text("The record template '#1' has been saved.", $new_name))
 
 241   $main::lxdebug->enter_sub();
 
 243   my $form     = $main::form;
 
 244   my %myconfig = %main::myconfig;
 
 246   $main::auth->assert('ap_transactions');
 
 248   $form->{title} = "Add";
 
 250   $form->{callback} = "ap.pl?action=add" unless $form->{callback};
 
 252   AP->get_transdate(\%myconfig, $form);
 
 253   $form->{initial_transdate} = $form->{transdate};
 
 254   create_links(dont_save => 1);
 
 255   $form->{transdate} = $form->{initial_transdate};
 
 257   if ($form->{vendor_id}) {
 
 258     my $vendor = SL::DB::Vendor->load_cached($form->{vendor_id});
 
 260     # set initial payment terms
 
 261     $form->{payment_id} = $vendor->payment_id;
 
 263     my $last_used_ap_chart = $vendor->last_used_ap_chart;
 
 264     $form->{"AP_amount_chart_id_1"} = $last_used_ap_chart->id if $last_used_ap_chart;
 
 269   $main::lxdebug->leave_sub();
 
 273   $main::lxdebug->enter_sub();
 
 275   # Delay access check to after the invoice's been loaded in
 
 276   # "create_links" so that project-specific invoice rights can be
 
 279   my $form     = $main::form;
 
 281   $form->{title} = "Edit";
 
 286   $main::lxdebug->leave_sub();
 
 290   $main::lxdebug->enter_sub();
 
 294   my $form     = $main::form;
 
 296   # get all files stored in the webdav folder
 
 297   if ($form->{invnumber} && $::instance_conf->get_webdav) {
 
 298     my $webdav = SL::Webdav->new(
 
 299       type     => 'accounts_payable',
 
 300       number   => $form->{invnumber},
 
 302     my @all_objects = $webdav->get_all_objects;
 
 303     @{ $form->{WEBDAV} } = map { { name => $_->filename,
 
 305                                    link => File::Spec->catfile($_->full_filedescriptor),
 
 311   $main::lxdebug->leave_sub();
 
 315   $main::lxdebug->enter_sub();
 
 317   # Delay access check to after the invoice's been loaded so that
 
 318   # project-specific invoice rights can be evaluated.
 
 322   my $form     = $main::form;
 
 323   my %myconfig = %main::myconfig;
 
 325   $form->create_links("AP", \%myconfig, "vendor");
 
 330   if (!$params{dont_save}) {
 
 331     %saved = map { ($_ => $form->{$_}) } qw(direct_debit taxincluded);
 
 332     $saved{duedate} = $form->{duedate} if $form->{duedate};
 
 333     $saved{currency} = $form->{currency} if $form->{currency};
 
 334     $saved{taxincluded} = $form->{taxincluded} if $form->{taxincluded};
 
 337   IR->get_vendor(\%myconfig, \%$form);
 
 339   $form->{$_}        = $saved{$_} for keys %saved;
 
 340   $form->{rowcount}  = 1;
 
 341   $form->{AP_chart_id} = $form->{acc_trans} && $form->{acc_trans}->{AP} ? $form->{acc_trans}->{AP}->[0]->{chart_id} : $::instance_conf->get_ap_chart_id || $form->{AP_links}->{AP}->[0]->{chart_id};
 
 343   # build the popup menus
 
 344   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
 
 347   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 349   $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 351   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 353   AP->setup_form($form);
 
 355   $main::lxdebug->leave_sub();
 
 359   my @fields   = qw(acc_trans_id gldate datepaid source memo paid AP_paid paid_project_id);
 
 361     grep { $_->{paid} != 0 }
 
 364       +{ map { ($_ => delete($::form->{"${_}_${idx}"})) } @fields }
 
 365     } (1..$::form->{paidaccounts});
 
 367   @payments = sort_by { DateTime->from_kivitendo($_->{datepaid}) } @payments;
 
 369   $::form->{paidaccounts} = max scalar(@payments), 1;
 
 371   foreach my $idx (1 .. scalar(@payments)) {
 
 372     my $payment = $payments[$idx - 1];
 
 373     $::form->{"${_}_${idx}"} = $payment->{$_} for @fields;
 
 378   $main::lxdebug->enter_sub();
 
 382   my $form     = $main::form;
 
 383   my %myconfig = %main::myconfig;
 
 384   my $locale   = $main::locale;
 
 385   my $cgi      = $::request->{cgi};
 
 387   $::form->{invoice_obj} = SL::DB::PurchaseInvoice->new(id => $::form->{id})->load if $::form->{id};
 
 389   $form->{initial_focus} = !($form->{amount_1} * 1) ? 'vendor_id' : 'row_' . $form->{rowcount};
 
 391   $form->{title_} = $form->{title};
 
 392   $form->{title} = $form->{title} eq 'Add' ? $locale->text('Add Accounts Payables Transaction') : $locale->text('Edit Accounts Payables Transaction');
 
 394   # type=submit $locale->text('Add Accounts Payables Transaction')
 
 395   # type=submit $locale->text('Edit Accounts Payables Transaction')
 
 397   my $readonly = $form->{id} ? "readonly" : "";
 
 399   $form->{radier} = ($::instance_conf->get_ap_changeable == 2)
 
 400                       ? ($form->current_date(\%myconfig) eq $form->{gldate})
 
 401                       : ($::instance_conf->get_ap_changeable == 1);
 
 402   $readonly       = $form->{radier} ? "" : $readonly;
 
 404   $form->{readonly} = $readonly;
 
 406   $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
 
 407   if ( $form->{forex} ) {
 
 408     $form->{exchangerate} = $form->{forex};
 
 412   $form->{exchangerate}    = $form->{exchangerate} ? $form->format_amount(\%myconfig, $form->{exchangerate}) : '';
 
 413   $form->{creditlimit}     = $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 414   $form->{creditremaining} = $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 417   if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
 
 420   $form->{textarea_rows} = $rows;
 
 422   $form->{creditremaining_plus} = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 424   $form->get_lists("charts"    => { "key"       => "ALL_CHARTS",
 
 425                                     "transdate" => $form->{transdate} },
 
 429     { $_->{link_split} = [ split(/:/, $_->{link}) ]; }
 
 430     @{ $form->{ALL_CHARTS} }
 
 433   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 435   my %project_labels = map { $_->id => $_->projectnumber }  @{ SL::DB::Manager::Project->get_all };
 
 438   my $default_ap_amount_chart_id;
 
 440   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 441     if ( grep({ $_ eq 'AP_amount' } @{ $item->{link_split} }) ) {
 
 442       $default_ap_amount_chart_id //= $item->{id};
 
 444     } elsif ( grep({ $_ eq 'AP_paid' } @{ $item->{link_split} }) ) {
 
 445       push(@{ $form->{ALL_CHARTS_AP_paid} }, $item);
 
 448     $charts{$item->{accno}} = $item;
 
 451   my $follow_up_vc         = $form->{vendor_id} ? SL::DB::Vendor->load_cached($form->{vendor_id})->name : '';
 
 452   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
 
 454   $::request->layout->add_javascripts("autocomplete_chart.js", "show_vc_details.js", "show_history.js", "follow_up.js", "kivi.Draft.js", "kivi.GL.js", "kivi.RecordTemplate.js", "kivi.File.js", "kivi.AP.js", "kivi.CustomerVendor.js", "kivi.Validator.js", "autocomplete_project.js");
 
 455   # $form->{totalpaid} is used by the action bar setup to determine
 
 456   # whether or not canceling is allowed. Therefore it must be
 
 457   # calculated prior to the action bar setup.
 
 458   $form->{totalpaid} = sum map { $form->{"paid_${_}"} } (1..$form->{paidaccounts});
 
 460   setup_ap_display_form_action_bar();
 
 463   # get the correct date for tax
 
 464   my $transdate    = $::form->{transdate}    ? DateTime->from_kivitendo($::form->{transdate})    : DateTime->today_local;
 
 465   my $deliverydate = $::form->{deliverydate} ? DateTime->from_kivitendo($::form->{deliverydate}) : undef;
 
 466   my $taxdate      = $deliverydate ? $deliverydate : $transdate;
 
 470   for my $i (1 .. $form->{rowcount}) {
 
 473     $form->{"amount_$i"} = $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
 
 474     $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
 
 476     my ($default_taxchart, $taxchart_to_use);
 
 478     if ( $form->{"taxchart_$i"} ) {
 
 479       ($used_tax_id) = split(/--/, $form->{"taxchart_$i"});
 
 481     my $amount_chart_id = $form->{"AP_amount_chart_id_$i"} || $default_ap_amount_chart_id;
 
 483     my @taxcharts       = GL->get_active_taxes_for_chart($amount_chart_id, $taxdate, $used_tax_id);
 
 484     foreach my $item (@taxcharts) {
 
 485       my $key             = $item->id . "--" . $item->rate;
 
 486       $first_taxchart   //= $item;
 
 487       $default_taxchart   = $item if $item->{is_default};
 
 488       $taxchart_to_use    = $item if $key eq $form->{"taxchart_$i"};
 
 491     $taxchart_to_use               //= $default_taxchart // $first_taxchart;
 
 492     my $selected_taxchart            = $taxchart_to_use->id . '--' . $taxchart_to_use->rate;
 
 493     $form->{"selected_taxchart_$i"}  = $selected_taxchart;
 
 494     $form->{"AP_amount_chart_id_$i"} = $amount_chart_id;
 
 495     $form->{"taxcharts_$i"}          = \@taxcharts;
 
 498   $form->{taxchart_value_title_sub} = sub {
 
 501       $item->{id} .'--'. $item->{rate},
 
 502       $item->{taxkey} . ' - ' . $item->{taxdescription} .' '. ($item->{rate} * 100) .' %',
 
 506   $form->{AP_paid_value_title_sub} = sub {
 
 510       $item->{accno} .'--'. $item->{description}
 
 514   $form->{invtotal_unformatted} = $form->{invtotal};
 
 515   $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
 
 519   if ( $form->{'paid_'. $form->{paidaccounts}} ) {
 
 520     $form->{paidaccounts}++;
 
 523   # default account for current assets (i.e. 1801 - SKR04)
 
 524   $form->{accno_arap} = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
 
 526   for my $i (1 .. $form->{paidaccounts}) {
 
 528     if ($form->{"paid_$i"}) {
 
 529       $form->{"paid_$i"} = $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
 531     if ($form->{"exchangerate_$i"} == 0) {
 
 532       $form->{"exchangerate_$i"} = "";
 
 534       $form->{"exchangerate_$i"} =
 
 535         $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
 539     if (SL::DB::Default->get->payments_changeable == 0) {
 
 541       $changeable = ($form->{"acc_trans_id_$i"})? 0 : 1;
 
 543     if (SL::DB::Default->get->payments_changeable == 2) {
 
 545       $changeable = (($form->{"gldate_$i"} eq '') || $form->current_date(\%myconfig) eq $form->{"gldate_$i"});
 
 548     #deaktivieren von gebuchten Zahlungen ausserhalb der Bücherkontrolle, vorher prüfen ob heute eingegeben
 
 549     if ($form->date_closed($form->{"gldate_$i"})) {
 
 553     $form->{'paidaccount_changeable_'. $i} = $changeable;
 
 555     $form->{'labelpaid_project_id_'. $i} = $project_labels{$form->{'paid_project_id_'. $i}};
 
 556     # accno and description as info text
 
 557     $form->{'AP_paid_readonly_desc_' . $i} =  $form->{'AP_paid_' . $i} ?
 
 558        $form->{'AP_paid_' . $i} . " " . SL::DB::Manager::Chart->find_by(accno => $form->{'AP_paid_' . $i})->description
 
 562   $form->{paid_missing} = $form->{invtotal_unformatted} - $form->{totalpaid};
 
 564   print $form->parse_html_template('ap/form_header', {
 
 565     today => DateTime->today,
 
 566     currencies => SL::DB::Manager::Currency->get_all_sorted,
 
 567     payment_terms => SL::DB::Manager::PaymentTerm->get_all_sorted(query => [ or => [ obsolete => 0, id => $::form->{payment_id}*1 ]]),
 
 570   $main::lxdebug->leave_sub();
 
 574   $::lxdebug->enter_sub;
 
 581     my $follow_ups = FU->follow_ups('trans_id' => $::form->{id}, 'not_done' => 1);
 
 583     if (@{ $follow_ups }) {
 
 584       $num_due        = sum map { $_->{due} * 1 } @{ $follow_ups };
 
 585       $num_follow_ups = scalar @{ $follow_ups }
 
 589   my $transdate = $::form->datetonum($::form->{transdate}, \%::myconfig);
 
 590   my $closedto  = $::form->datetonum($::form->{closedto},  \%::myconfig);
 
 592   my $storno = $::form->{id}
 
 593             && !IS->has_storno(\%::myconfig, $::form, 'ap')
 
 594             && !IS->is_storno( \%::myconfig, $::form, 'ap', $::form->{id})
 
 595             && ($::form->{totalpaid} == 0 || $::form->{totalpaid} eq '');
 
 598   print $::form->parse_html_template('ap/form_footer', {
 
 600     num_follow_ups    => $num_follow_ups,
 
 603   $::lxdebug->leave_sub;
 
 607   $::auth->assert('ap_transactions');
 
 609   SL::DB::PurchaseInvoice->new(id => $::form->{id})->load->mark_as_paid;
 
 611   $::form->redirect($::locale->text("Marked as paid"));
 
 615   $::form->{transdate} = DateTime->today_local->to_kivitendo if !$::form->{transdate};
 
 616   $::form->{gldate}    = $::form->{transdate} if !$::form->{gldate};
 
 623   $main::lxdebug->enter_sub();
 
 625   my $form     = $main::form;
 
 626   my %myconfig = %main::myconfig;
 
 628   $main::auth->assert('ap_transactions');
 
 632   $form->{invtotal} = 0;
 
 634   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
 
 636   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 637     qw(exchangerate creditlimit creditremaining);
 
 639   my @flds  = qw(amount AP_amount_chart_id projectnumber oldprojectnumber project_id taxchart tax);
 
 641   my (@a, $j, $totaltax);
 
 642   for my $i (1 .. $form->{rowcount}) {
 
 643     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
 
 644     if ($form->{"amount_$i"} || $params{keep_rows_without_amount}) {
 
 647       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 649       # calculate tax exactly the same way as AP in post_transaction via form->calculate_tax
 
 651       ($tmpnetamount,$form->{"tax_$i"}) = $form->calculate_tax($form->{"amount_$i"},$rate,$form->{taxincluded},2);
 
 652       $totaltax += $form->{"tax_$i"};
 
 653       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 657   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 659   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
 
 661   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
 
 662   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 664   $form->{invdate} = $form->{transdate};
 
 666   if (($form->{previous_vendor_id} || $form->{vendor_id}) != $form->{vendor_id}) {
 
 667     IR->get_vendor(\%::myconfig, $form);
 
 669     my $vendor = SL::DB::Vendor->load_cached($form->{vendor_id});
 
 671     # reset payment to new vendor
 
 672     $form->{payment_id} = $vendor->payment_id;
 
 674     if (($form->{rowcount} == 1) && ($form->{amount_1} == 0)) {
 
 675       my $last_used_ap_chart = $vendor->last_used_ap_chart;
 
 676       $form->{"AP_amount_chart_id_1"} = $last_used_ap_chart->id if $last_used_ap_chart;
 
 680   $form->{rowcount} = $count + ($params{dont_add_new_row} ? 0 : 1);
 
 683     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
 
 686   for my $i (1 .. $form->{paidaccounts}) {
 
 687     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 690           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 691       } qw(paid exchangerate);
 
 693       $totalpaid += $form->{"paid_$i"};
 
 695       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
 
 696       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 700   $form->{creditremaining} -=
 
 701     ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
 
 702      $form->{oldinvtotal});
 
 703   $form->{oldinvtotal}  = $form->{invtotal};
 
 704   $form->{oldtotalpaid} = $totalpaid;
 
 708   $main::lxdebug->leave_sub();
 
 713   $main::lxdebug->enter_sub();
 
 715   my $form     = $main::form;
 
 716   my %myconfig = %main::myconfig;
 
 717   my $locale   = $main::locale;
 
 719   $main::auth->assert('ap_transactions');
 
 720   $form->mtime_ischanged('ap');
 
 722   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 724   my $invdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 726   for my $i (1 .. $form->{paidaccounts}) {
 
 727     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 728       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 730       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 732       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 733         if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 735       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 736       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 737       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 738         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 740       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 741         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
 742           if ($invdate == $datepaid);
 
 743         $form->isblank("exchangerate_$i",
 
 744                        $locale->text('Exchangerate for payment missing!'));
 
 749   ($form->{AP})      = split /--/, $form->{AP};
 
 750   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
 751   if (AP->post_payment(\%myconfig, \%$form)) {
 
 752     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 753     $form->{what_done} = 'invoice';
 
 754     $form->{addition}  = "PAYMENT POSTED";
 
 756     $form->redirect($locale->text('Payment posted!'))
 
 758     $form->error($locale->text('Cannot post payment!'));
 
 762   $main::lxdebug->leave_sub();
 
 767   $main::lxdebug->enter_sub();
 
 769   my $form     = $main::form;
 
 770   my %myconfig = %main::myconfig;
 
 771   my $locale   = $main::locale;
 
 773   $main::auth->assert('ap_transactions');
 
 774   $form->mtime_ischanged('ap');
 
 778   # check if there is a vendor, invoice, due date and invnumber
 
 779   $form->isblank("transdate",   $locale->text("Invoice Date missing!"));
 
 780   $form->isblank("duedate",     $locale->text("Due Date missing!"));
 
 781   $form->isblank("vendor_id",   $locale->text('Vendor missing!'));
 
 782   $form->isblank("invnumber",   $locale->text('Invoice Number missing!'));
 
 783   $form->isblank("AP_chart_id", $locale->text('No contra account selected!'));
 
 785   if ($myconfig{mandatory_departments} && !$form->{department_id}) {
 
 786     $form->{saved_message} = $::locale->text('You have to specify a department.');
 
 791   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 792   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 794   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 795     if ($form->date_max_future($form->{"transdate"}, \%myconfig));
 
 796   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
 
 798   my $zero_amount_posting = 1;
 
 799   for my $i (1 .. $form->{rowcount}) {
 
 800     if ($form->parse_amount(\%myconfig, $form->{"amount_$i"})) {
 
 801       $zero_amount_posting = 0;
 
 806   $form->error($locale->text('Zero amount posting!')) if $zero_amount_posting;
 
 808   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
 809     if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency}));
 
 812   for my $i (1 .. $form->{paidaccounts}) {
 
 813     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 814       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 816       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 818       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 819       if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 821       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 822       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 823       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 824         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 826       if ($form->{defaultcurrency} && ($form->{currency} ne $form->{defaultcurrency})) {
 
 827         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
 828           if ($transdate == $datepaid);
 
 829         $form->isblank("exchangerate_$i",
 
 830                        $locale->text('Exchangerate for payment missing!'));
 
 836   # if old vendor ne vendor redo form
 
 837   if (($form->{previous_customer_id} || $form->{customer_id}) != $form->{customer_id}) {
 
 839     $::dispatcher->end_request;
 
 843   $form->{id} = 0 if $form->{postasnew};
 
 845   if (AP->post_transaction(\%myconfig, \%$form)) {
 
 846     # create webdav folder
 
 847     if ($::instance_conf->get_webdav) {
 
 848       SL::Webdav->new(type     => 'accounts_payable',
 
 849                       number   => $form->{invnumber},
 
 853     if(!exists $form->{addition} && $form->{id} ne "") {
 
 854       $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 855       $form->{addition}  = "POSTED";
 
 856       $form->{what_done} = "invoice";
 
 859     # no restore_from_session_id needed. we like to have a newly generated
 
 860     # list of invoices for bank transactions
 
 861     print $form->redirect_header($form->{callback}) if ($form->{callback} =~ /BankTransaction/);
 
 862     $form->redirect($locale->text('AP transaction posted.') . ' ' . $locale->text('ID') . ': ' . $form->{id}) unless $inline;
 
 863     # TODO Add callback/return flag in myconfig
 
 864     # With version 3.5 we can add documents, but only after posting. there should be a flag in myconfig for the user
 
 865     # $form->{callback} ||= 'ap.pl?action=edit&id=' . $form->{id} if $myconfig{no_reset_arap};
 
 868     $form->error($locale->text('Cannot post transaction!'));
 
 871   $main::lxdebug->leave_sub();
 
 875   $main::lxdebug->enter_sub();
 
 877   my $form     = $main::form;
 
 878   my %myconfig = %main::myconfig;
 
 880   $main::auth->assert('ap_transactions');
 
 882   $form->{postasnew} = 1;
 
 884   if(!exists $form->{addition} && $form->{id} ne "") {
 
 885     # does this work? post_as_new for ap doesn't immediately save the
 
 886     # invoice, because the invnumber has to be entered by hand.
 
 887     # And the value of $form->{postasnew} isn't checked when calling post
 
 888     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 889     $form->{addition}  = "POSTED AS NEW";
 
 890     $form->{what_done} = "invoice";
 
 893   # /saving the history
 
 896   $main::lxdebug->leave_sub();
 
 900   $main::lxdebug->enter_sub();
 
 902   my $form     = $main::form;
 
 903   my %myconfig = %main::myconfig;
 
 905   $main::auth->assert('ap_transactions');
 
 907   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 convert_from_oe_id);
 
 908   $form->{paidaccounts} = 1;
 
 911   my $today          = DateTime->today_local;
 
 912   $form->{transdate} = $today->to_kivitendo;
 
 913   $form->{duedate}   = $form->{transdate};
 
 915   if ($form->{vendor_id}) {
 
 916     my $payment_terms = SL::DB::Vendor->load_cached($form->{vendor_id})->payment;
 
 917     $form->{duedate}  = $payment_terms->calc_date(reference_date => $today)->to_kivitendo if $payment_terms;
 
 922   $main::lxdebug->leave_sub();
 
 926   my $form     = $main::form;
 
 927   my %myconfig = %main::myconfig;
 
 928   my $locale   = $main::locale;
 
 930   $main::auth->assert('ap_transactions');
 
 932   if (AP->delete_transaction(\%myconfig, \%$form)) {
 
 934     if(!exists $form->{addition}) {
 
 935       $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 936       $form->{addition}  = "DELETED";
 
 937       $form->{what_done} = "invoice";
 
 940     # /saving the history
 
 941     $form->redirect($locale->text('Transaction deleted!'));
 
 943   $form->error($locale->text('Cannot delete transaction!'));
 
 947   $main::lxdebug->enter_sub();
 
 949   my $form     = $main::form;
 
 950   my %myconfig = %main::myconfig;
 
 951   my $locale   = $main::locale;
 
 953   $form->{title} = $locale->text('Vendor Invoices & AP Transactions');
 
 955   $::form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 956   # constants and subs for template
 
 957   $form->{vc_keys}   = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 959   $::request->layout->add_javascripts("autocomplete_project.js");
 
 961   setup_ap_search_action_bar();
 
 964   print $form->parse_html_template('ap/search', { %myconfig });
 
 966   $main::lxdebug->leave_sub();
 
 969 sub create_subtotal_row {
 
 970   $main::lxdebug->enter_sub();
 
 972   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
 974   my $form     = $main::form;
 
 975   my %myconfig = %main::myconfig;
 
 977   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
 979   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
 981   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
 983   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
 985   $main::lxdebug->leave_sub();
 
 990 sub ap_transactions {
 
 991   $main::lxdebug->enter_sub();
 
 993   my $form     = $main::form;
 
 994   my %myconfig = %main::myconfig;
 
 995   my $locale   = $main::locale;
 
 997   report_generator_set_default_sort('transdate', 1);
 
 999   AP->ap_transactions(\%myconfig, \%$form);
 
1001   $form->{title} = $locale->text('Vendor Invoices & AP Transactions');
 
1003   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
1006     qw(transdate id type invnumber ordnumber name netamount tax amount paid datepaid
 
1007        due duedate transaction_description notes employee globalprojectnumber department
 
1008        vendornumber country ustid taxzone payment_terms charts direct_debit);
 
1010   my @hidden_variables = map { "l_${_}" } @columns;
 
1011   push @hidden_variables, "l_subtotal", qw(open closed vendor invnumber ordnumber transaction_description notes project_id transdatefrom transdateto
 
1012                                            parts_partnumber parts_description department_id);
 
1014   my $href = build_std_url('action=ap_transactions', grep { $form->{$_} } @hidden_variables);
 
1017     'transdate'               => { 'text' => $locale->text('Date'), },
 
1018     'id'                      => { 'text' => $locale->text('ID'), },
 
1019     'type'                    => { 'text' => $locale->text('Type'), },
 
1020     'invnumber'               => { 'text' => $locale->text('Invoice'), },
 
1021     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
1022     'name'                    => { 'text' => $locale->text('Vendor'), },
 
1023     'netamount'               => { 'text' => $locale->text('Amount'), },
 
1024     'tax'                     => { 'text' => $locale->text('Tax'), },
 
1025     'amount'                  => { 'text' => $locale->text('Total'), },
 
1026     'paid'                    => { 'text' => $locale->text('Paid'), },
 
1027     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
 
1028     'due'                     => { 'text' => $locale->text('Amount Due'), },
 
1029     'duedate'                 => { 'text' => $locale->text('Due Date'), },
 
1030     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
1031     'notes'                   => { 'text' => $locale->text('Notes'), },
 
1032     'employee'                => { 'text' => $locale->text('Employee'), },
 
1033     'globalprojectnumber'     => { 'text' => $locale->text('Document Project Number'), },
 
1034     'department'              => { 'text' => $locale->text('Department'), },
 
1035     'vendornumber'            => { 'text' => $locale->text('Vendor Number'), },
 
1036     'country'                 => { 'text' => $locale->text('Country'), },
 
1037     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
 
1038     'taxzone'                 => { 'text' => $locale->text('Tax rate'), },
 
1039     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
 
1040     'charts'                  => { 'text' => $locale->text('Chart'), },
 
1041     'direct_debit'            => { 'text' => $locale->text('direct debit'), },
 
1044   foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description direct_debit department)) {
 
1045     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
1046     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
1049   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
 
1051   $form->{"l_type"} = "Y";
 
1052   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
1054   $report->set_columns(%column_defs);
 
1055   $report->set_column_order(@columns);
 
1057   $report->set_export_options('ap_transactions', @hidden_variables, qw(sort sortdir));
 
1059   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
1061   my $department_description;
 
1062   $department_description = SL::DB::Manager::Department->find_by(id => $form->{department_id})->description if $form->{department_id};
 
1065   push @options, $locale->text('Vendor')                  . " : $form->{vendor}"                         if ($form->{vendor});
 
1066   push @options, $locale->text('Contact Person')          . " : $form->{cp_name}"                        if ($form->{cp_name});
 
1067   push @options, $locale->text('Department')              . " : $department_description"                 if ($form->{department_id});
 
1068   push @options, $locale->text('Invoice Number')          . " : $form->{invnumber}"                      if ($form->{invnumber});
 
1069   push @options, $locale->text('Order Number')            . " : $form->{ordnumber}"                      if ($form->{ordnumber});
 
1070   push @options, $locale->text('Notes')                   . " : $form->{notes}"                          if ($form->{notes});
 
1071   push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"        if ($form->{transaction_description});
 
1072   push @options, $locale->text('Part Description')        . " : $form->{parts_description}"              if $form->{parts_description};
 
1073   push @options, $locale->text('Part Number')             . " : $form->{parts_partnumber}"               if $form->{parts_partnumber};
 
1074   push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)      if ($form->{transdatefrom});
 
1075   push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)      if ($form->{transdateto});
 
1076   push @options, $locale->text('Open')                                                                   if ($form->{open});
 
1077   push @options, $locale->text('Closed')                                                                 if ($form->{closed});
 
1079   $report->set_options('top_info_text'        => join("\n", @options),
 
1080                        'output_format'        => 'HTML',
 
1081                        'title'                => $form->{title},
 
1082                        'attachment_basename'  => $locale->text('vendor_invoice_list') . strftime('_%Y%m%d', localtime time),
 
1084   $report->set_options_from_form();
 
1085   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
1087   # add sort and escape callback, this one we use for the add sub
 
1088   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1090   # escape callback for href
 
1091   my $callback = $form->escape($href);
 
1093   my @subtotal_columns = qw(netamount amount paid due);
 
1095   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1096   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1100   foreach my $ap (@{ $form->{AP} }) {
 
1101     $ap->{tax} = $ap->{amount} - $ap->{netamount};
 
1102     $ap->{due} = $ap->{amount} - $ap->{paid};
 
1104     map { $subtotals{$_} += $ap->{$_};
 
1105           $totals{$_}    += $ap->{$_} } @subtotal_columns;
 
1107     map { $ap->{$_} = $form->format_amount(\%myconfig, $ap->{$_}, 2) } qw(netamount tax amount paid due);
 
1109     my $is_storno  = $ap->{storno} &&  $ap->{storno_id};
 
1110     my $has_storno = $ap->{storno} && !$ap->{storno_id};
 
1112     if ($ap->{invoice}) {
 
1114           $has_storno       ? $locale->text("Invoice with Storno (abbreviation)")
 
1115         : $is_storno        ? $locale->text("Storno (one letter abbreviation)")
 
1116         :                     $locale->text("Invoice (one letter abbreviation)");
 
1119           $has_storno       ? $locale->text("AP Transaction with Storno (abbreviation)")
 
1120         : $is_storno        ? $locale->text("AP Transaction Storno (one letter abbreviation)")
 
1121         :                     $locale->text("AP Transaction (abbreviation)");
 
1124     $ap->{direct_debit} = $ap->{direct_debit} ? $::locale->text('yes') : $::locale->text('no');
 
1128     foreach my $column (@columns) {
 
1130         'data'  => $ap->{$column},
 
1131         'align' => $column_alignment{$column},
 
1135     $row->{invnumber}->{link} = build_std_url("script=" . ($ap->{invoice} ? 'ir.pl' : 'ap.pl'), 'action=edit')
 
1136       . "&id=" . E($ap->{id}) . "&callback=${callback}";
 
1138     my $row_set = [ $row ];
 
1140     if (($form->{l_subtotal} eq 'Y')
 
1141         && (($idx == (scalar @{ $form->{AP} } - 1))
 
1142             || ($ap->{ $form->{sort} } ne $form->{AP}->[$idx + 1]->{ $form->{sort} }))) {
 
1143       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1146     $report->add_data($row_set);
 
1151   $report->add_separator();
 
1152   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1154   setup_ap_transactions_action_bar();
 
1155   $report->generate_with_headers();
 
1157   $main::lxdebug->leave_sub();
 
1161   $main::lxdebug->enter_sub();
 
1163   my $form     = $main::form;
 
1164   my %myconfig = %main::myconfig;
 
1165   my $locale   = $main::locale;
 
1167   $main::auth->assert('ap_transactions');
 
1169   if (IS->has_storno(\%myconfig, $form, 'ap')) {
 
1170     $form->{title} = $locale->text("Cancel Accounts Payables Transaction");
 
1171     $form->error($locale->text("Transaction has already been cancelled!"));
 
1174   $form->error($locale->text('Cannot post storno for a closed period!'))
 
1175     if ( $form->date_closed($form->{transdate}, \%myconfig));
 
1177   AP->storno($form, \%myconfig, $form->{id});
 
1179   # saving the history
 
1180   if(!exists $form->{addition} && $form->{id} ne "") {
 
1181     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
1182     $form->{addition}  = "STORNO";
 
1183     $form->{what_done} = "invoice";
 
1184     $form->save_history;
 
1186   # /saving the history
 
1188   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id});
 
1190   $main::lxdebug->leave_sub();
 
1193 sub add_from_purchase_order {
 
1194   $main::auth->assert('ap_transactions');
 
1196   return if !$::form->{id};
 
1198   my $order_id = delete $::form->{id};
 
1199   my $order    = SL::DB::Order->new(id => $order_id)->load(with => [ 'vendor', 'currency', 'payment_terms' ]);
 
1201   return if $order->type ne 'purchase_order';
 
1203   my $today                     = DateTime->today_local;
 
1204   $::form->{title}              = "Add";
 
1205   $::form->{vc}                 = 'vendor';
 
1206   $::form->{vendor_id}          = $order->customervendor->id;
 
1207   $::form->{vendor}             = $order->vendor->name;
 
1208   $::form->{convert_from_oe_id} = $order->id;
 
1209   $::form->{globalproject_id}   = $order->globalproject_id;
 
1210   $::form->{ordnumber}          = $order->number;
 
1211   $::form->{department_id}      = $order->department_id;
 
1212   $::form->{currency}           = $order->currency->name;
 
1213   $::form->{taxincluded}        = 1; # we use amount below, so tax is included
 
1214   $::form->{transdate}          = $today->to_kivitendo;
 
1215   $::form->{duedate}            = $today->to_kivitendo;
 
1216   $::form->{duedate}            = $order->payment_terms->calc_date(reference_date => $today)->to_kivitendo if $order->payment_terms;
 
1217   $::form->{deliverydate}       = $order->reqdate->to_kivitendo                                            if $order->reqdate;
 
1220   my $config_po_ap_workflow_chart_id = $::instance_conf->get_workflow_po_ap_chart_id;
 
1222   my ($first_taxchart, $default_taxchart, $taxchart_to_use);
 
1224   @taxcharts    = GL->get_active_taxes_for_chart($config_po_ap_workflow_chart_id, $::form->{transdate}) if (defined $config_po_ap_workflow_chart_id);
 
1225   foreach my $item (@taxcharts) {
 
1226     $first_taxchart   //= $item;
 
1227     $default_taxchart   = $item if $item->{is_default};
 
1229   $taxchart_to_use      = $default_taxchart // $first_taxchart;
 
1231   my %pat = $order->calculate_prices_and_taxes;
 
1233   foreach my $amount_chart (keys %{$pat{amounts}}) {
 
1234     my $tax = SL::DB::Manager::Tax->find_by(id => $pat{amounts}->{$amount_chart}->{tax_id});
 
1235     # If tax chart from order for this amount is active, use it. Use default or first tax chart for selected chart else.
 
1236     if (defined $config_po_ap_workflow_chart_id) {
 
1237       $taxchart_to_use = (first {$_->{id} == $tax->id} @taxcharts) // $taxchart_to_use;
 
1239       $taxchart_to_use = $tax;
 
1242     $::form->{"AP_amount_chart_id_$row"}          = $config_po_ap_workflow_chart_id // $amount_chart;
 
1243     $::form->{"previous_AP_amount_chart_id_$row"} = $::form->{"AP_amount_chart_id_$row"};
 
1244     $::form->{"amount_$row"}                      = $::form->format_amount(\%::myconfig, $pat{amounts}->{$amount_chart}->{amount} * (1 + $tax->rate), 2);
 
1245     $::form->{"taxchart_$row"}                    = $taxchart_to_use->id . '--' . $taxchart_to_use->rate;
 
1246     $::form->{"project_id_$row"}                  = $order->globalproject_id;
 
1251   my $last_used_ap_chart               = SL::DB::Vendor->load_cached($::form->{vendor_id})->last_used_ap_chart;
 
1252   $::form->{"AP_amount_chart_id_$row"} = $last_used_ap_chart->id if $last_used_ap_chart;
 
1253   $::form->{rowcount}                  = $row;
 
1256     keep_rows_without_amount => 1,
 
1257     dont_add_new_row         => 1,
 
1261 sub setup_ap_search_action_bar {
 
1264   for my $bar ($::request->layout->get('actionbar')) {
 
1267         $::locale->text('Search'),
 
1268         submit    => [ '#form', { action => "ap_transactions" } ],
 
1269         checks    => [ 'kivi.validate_form' ],
 
1270         accesskey => 'enter',
 
1274   $::request->layout->add_javascripts('kivi.Validator.js');
 
1277 sub setup_ap_transactions_action_bar {
 
1279   my $may_edit_create = $::auth->assert('ap_transactions', 1);
 
1281   for my $bar ($::request->layout->get('actionbar')) {
 
1284         action => [ t8('Add') ],
 
1286           t8('Purchase Invoice'),
 
1287           link     => [ 'ir.pl?action=add' ],
 
1288           disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
 
1292           t8('AP Transaction'),
 
1293           link     => [ 'ap.pl?action=add' ],
 
1294           disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
 
1296       ], # end of combobox "Add"
 
1301 sub setup_ap_display_form_action_bar {
 
1302   my $transdate               = $::form->datetonum($::form->{transdate}, \%::myconfig);
 
1303   my $closedto                = $::form->datetonum($::form->{closedto},  \%::myconfig);
 
1304   my $is_closed               = $transdate <= $closedto;
 
1306   my $change_never            = $::instance_conf->get_ap_changeable == 0;
 
1307   my $change_on_same_day_only = $::instance_conf->get_ap_changeable == 2 && ($::form->current_date(\%::myconfig) ne $::form->{gldate});
 
1309   my $is_storno               = IS->is_storno(\%::myconfig, $::form, 'ap', $::form->{id});
 
1310   my $has_storno              = IS->has_storno(\%::myconfig, $::form, 'ap');
 
1312   my $may_edit_create         = $::auth->assert('ap_transactions', 1);
 
1314   my $has_sepa_exports;
 
1315   if ($::form->{id}) {
 
1316     my $invoice = SL::DB::Manager::PurchaseInvoice->find_by(id => $::form->{id});
 
1317     $has_sepa_exports = 1 if ($invoice->find_sepa_export_items()->[0]);
 
1320   my $is_linked_bank_transaction;
 
1322       && SL::DB::Default->get->payments_changeable != 0
 
1323       && SL::DB::Manager::BankTransactionAccTrans->find_by(ap_id => $::form->{id})) {
 
1325     $is_linked_bank_transaction = 1;
 
1328   for my $bar ($::request->layout->get('actionbar')) {
 
1332         submit    => [ '#form', { action => "update" } ],
 
1333         id        => 'update_button',
 
1334         checks    => [ 'kivi.validate_form' ],
 
1335         accesskey => 'enter',
 
1336         disabled  => !$may_edit_create ? t8('You must not change this AP transaction.') : undef,
 
1342           submit   => [ '#form', { action => "post" } ],
 
1343           checks   => [ 'kivi.validate_form', 'kivi.AP.check_fields_before_posting', 'kivi.AP.check_duplicate_invnumber' ],
 
1344           disabled => !$may_edit_create                           ? t8('You must not change this AP transaction.')
 
1345                     : $is_closed                                  ? t8('The billing period has already been locked.')
 
1346                     : $is_storno                                  ? t8('A canceled invoice cannot be posted.')
 
1347                     : ($::form->{id} && $change_never)            ? t8('Changing invoices has been disabled in the configuration.')
 
1348                     : ($::form->{id} && $change_on_same_day_only) ? t8('Invoices can only be changed on the day they are posted.')
 
1349                     : $is_linked_bank_transaction                 ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
 
1354           submit   => [ '#form', { action => "post_payment" } ],
 
1355           checks   => [ 'kivi.validate_form' ],
 
1356           disabled => !$may_edit_create           ? t8('You must not change this AP transaction.')
 
1357                     : !$::form->{id}              ? t8('This invoice has not been posted yet.')
 
1358                     : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
 
1361         action => [ t8('Mark as paid'),
 
1362           submit   => [ '#form', { action => "mark_as_paid" } ],
 
1363           confirm  => t8('This will remove the invoice from showing as unpaid even if the unpaid amount does not match the amount. Proceed?'),
 
1364           disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
 
1365                     : !$::form->{id}    ? t8('This invoice has not been posted yet.')
 
1367           only_if  => $::instance_conf->get_is_show_mark_as_paid,
 
1369       ], # end of combobox "Post"
 
1372         action => [ t8('Storno'),
 
1373           submit   => [ '#form', { action => "storno" } ],
 
1374           checks   => [ 'kivi.validate_form', 'kivi.AP.check_fields_before_posting' ],
 
1375           confirm  => t8('Do you really want to cancel this invoice?'),
 
1376           disabled => !$may_edit_create    ? t8('You must not change this AP transaction.')
 
1377                     : !$::form->{id}       ? t8('This invoice has not been posted yet.')
 
1378                     : $has_storno          ? t8('This invoice has been canceled already.')
 
1379                     : $is_storno           ? t8('Reversal invoices cannot be canceled.')
 
1380                     : $::form->{totalpaid} ? t8('Invoices with payments cannot be canceled.')
 
1381                     : $has_sepa_exports    ? t8('This invoice has been linked with a sepa export, undo this first.')
 
1384         action => [ t8('Delete'),
 
1385           submit   => [ '#form', { action => "delete" } ],
 
1386           confirm  => t8('Do you really want to delete this object?'),
 
1387           disabled => !$may_edit_create           ? t8('You must not change this AP transaction.')
 
1388                     : !$::form->{id}              ? t8('This invoice has not been posted yet.')
 
1389                     : $change_never               ? t8('Changing invoices has been disabled in the configuration.')
 
1390                     : $change_on_same_day_only    ? t8('Invoices can only be changed on the day they are posted.')
 
1391                     : $has_storno                 ? t8('This invoice has been canceled already.')
 
1392                     : $is_closed                  ? t8('The billing period has already been locked.')
 
1393                     : $has_sepa_exports           ? t8('This invoice has been linked with a sepa export, undo this first.')
 
1394                     : $is_linked_bank_transaction ? t8('This transaction is linked with a bank transaction. Please undo and redo the bank transaction booking if needed.')
 
1397       ], # end of combobox "Storno"
 
1402         action => [ t8('Workflow') ],
 
1405           submit   => [ '#form', { action => "use_as_new" } ],
 
1406           checks   => [ 'kivi.validate_form' ],
 
1407           disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
 
1408                     : !$::form->{id}    ? t8('This invoice has not been posted yet.')
 
1411       ], # end of combobox "Workflow"
 
1414         action => [ t8('more') ],
 
1417           call     => [ 'set_history_window', $::form->{id} * 1, 'glid' ],
 
1418           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1422           call     => [ 'follow_up_window' ],
 
1423           disabled => !$::form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
1426           t8('Record templates'),
 
1427           call     => [ 'kivi.RecordTemplate.popup', 'ap_transaction' ],
 
1428           disabled => !$may_edit_create ? t8('You must not change this AP transaction.') : undef,
 
1432           call     => [ 'kivi.Draft.popup', 'ap', 'invoice', $::form->{draft_id}, $::form->{draft_description} ],
 
1433           disabled => !$may_edit_create ? t8('You must not change this AP transaction.')
 
1434                     : $::form->{id}     ? t8('This invoice has already been posted.')
 
1435                     : $is_closed        ? t8('The billing period has already been locked.')
 
1438       ], # end of combobox "more"
 
1441   $::request->layout->add_javascripts('kivi.Validator.js');