1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger, Accounting
 
   9 # Copyright (c) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  16 # This program is free software; you can redistribute it and/or modify
 
  17 # it under the terms of the GNU General Public License as published by
 
  18 # the Free Software Foundation; either version 2 of the License, or
 
  19 # (at your option) any later version.
 
  21 # This program is distributed in the hope that it will be useful,
 
  22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  24 # GNU General Public License for more details.
 
  25 # You should have received a copy of the GNU General Public License
 
  26 # along with this program; if not, write to the Free Software
 
  27 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
  29 #======================================================================
 
  31 # Inventory received module
 
  33 #======================================================================
 
  39 use SL::DB::Department;
 
  40 use SL::DB::PurchaseInvoice;
 
  42 use List::Util qw(max sum);
 
  43 use List::UtilsBy qw(sort_by);
 
  45 require "bin/mozilla/io.pl";
 
  46 require "bin/mozilla/common.pl";
 
  55   $main::lxdebug->enter_sub();
 
  57   my $form     = $main::form;
 
  58   my $locale   = $main::locale;
 
  60   $main::auth->assert('vendor_invoice_edit');
 
  62   if (!$::instance_conf->get_allow_new_purchase_invoice) {
 
  63     $::form->show_generic_error($::locale->text("You do not have the permissions to access this function."));
 
  66   $form->{show_details} = $::myconfig{show_form_details};
 
  68   $form->{title} = $locale->text('Record Vendor Invoice');
 
  74   $main::lxdebug->leave_sub();
 
  78   $main::lxdebug->enter_sub();
 
  80   my $form     = $main::form;
 
  81   my $locale   = $main::locale;
 
  83   $main::auth->assert('vendor_invoice_edit');
 
  85   $form->{show_details} = $::myconfig{show_form_details};
 
  88   $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
 
  89   #/show hhistory button
 
  91   $form->{title} = $locale->text('Edit Vendor Invoice');
 
  97   $main::lxdebug->leave_sub();
 
 101   $main::lxdebug->enter_sub();
 
 103   my $form     = $main::form;
 
 104   my %myconfig = %main::myconfig;
 
 106   $main::auth->assert('vendor_invoice_edit');
 
 108   $form->{vc} = 'vendor';
 
 111   $form->create_links("AP", \%myconfig, "vendor");
 
 113   $form->backup_vars(qw(payment_id language_id taxzone_id
 
 114                         currency delivery_term_id intnotes cp_id));
 
 116   IR->get_vendor(\%myconfig, \%$form);
 
 117   IR->retrieve_invoice(\%myconfig, \%$form);
 
 119   $form->restore_vars(qw(payment_id language_id taxzone_id
 
 120                          currency delivery_term_id intnotes cp_id));
 
 122   my @curr = $form->get_all_currencies();
 
 123   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 126   $form->{forex} = $form->{exchangerate};
 
 127   my $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
 129   foreach my $key (keys %{ $form->{AP_links} }) {
 
 131     foreach my $ref (@{ $form->{AP_links}{$key} }) {
 
 132       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}</option>";
 
 135     next unless $form->{acc_trans}{$key};
 
 137     if ($key eq "AP_paid") {
 
 138       for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
 
 139         $form->{"AP_paid_$i"} =
 
 140           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
 
 142         $form->{"acc_trans_id_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
 
 144         $form->{"paid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{amount};
 
 145         $form->{"datepaid_$i"} =
 
 146           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
 
 147         $form->{"gldate_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
 
 148         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
 
 149           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
 
 150         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
 
 151         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
 
 153         $form->{paidaccounts} = $i;
 
 157         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
 
 162   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
 
 164   $form->{AP} = $form->{AP_1} unless $form->{id};
 
 167     ($form->datetonum($form->{invdate}, \%myconfig) <=
 
 168      $form->datetonum($form->{closedto}, \%myconfig));
 
 170   $main::lxdebug->leave_sub();
 
 173 sub prepare_invoice {
 
 174   $main::lxdebug->enter_sub();
 
 176   my $form     = $main::form;
 
 177   my %myconfig = %main::myconfig;
 
 179   $main::auth->assert('vendor_invoice_edit');
 
 181   $form->{type}     = "purchase_invoice";
 
 185     map { $form->{$_} =~ s/\"/"/g } qw(invnumber ordnumber quonumber);
 
 188     foreach my $ref (@{ $form->{invoice_details} }) {
 
 190       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
 
 191       # übernommen aus is.pl Fix für Bug 1642. Nebenwirkungen? jb 12.5.2011
 
 192       # getestet: Lieferantenauftrag -> Rechnung i.O.
 
 193       #           Lieferantenauftrag -> Lieferschein -> Rechnung i.O.
 
 194       # Werte: 20% (Lieferantenrabatt), 12,4% individuell und 0,4 individuell s.a.
 
 195       # Screenshot zu Bug 1642
 
 196       $form->{"discount_$i"}   = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
 
 198       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 200       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 202       $form->{"sellprice_$i"} =
 
 203         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 206       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 207       $dec_qty = length $dec_qty;
 
 210         $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1), $dec_qty);
 
 212       $form->{rowcount} = $i;
 
 216   $main::lxdebug->leave_sub();
 
 219 sub setup_ir_action_bar {
 
 221   my $change_never            = $::instance_conf->get_ir_changeable == 0;
 
 222   my $change_on_same_day_only = $::instance_conf->get_ir_changeable == 2 && ($form->current_date(\%::myconfig) ne $form->{gldate});
 
 223   my $has_storno              = ($::form->{storno} && !$::form->{storno_id});
 
 224   my $payments_balanced       = ($::form->{oldtotalpaid} == 0);
 
 226   my $has_sepa_exports;
 
 229     my $invoice = SL::DB::Manager::PurchaseInvoice->find_by(id => $form->{id});
 
 230     $has_sepa_exports = 1 if ($invoice->find_sepa_export_items()->[0]);
 
 233   for my $bar ($::request->layout->get('actionbar')) {
 
 237         submit    => [ '#form', { action => "update" } ],
 
 238         checks    => [ 'kivi.validate_form' ],
 
 239         id        => 'update_button',
 
 240         accesskey => 'enter',
 
 246           submit   => [ '#form', { action => "post" } ],
 
 247           checks   => [ 'kivi.validate_form' ],
 
 248           disabled => $form->{locked}                           ? t8('The billing period has already been locked.')
 
 249                     : $form->{storno}                           ? t8('A canceled invoice cannot be posted.')
 
 250                     : ($form->{id} && $change_never)            ? t8('Changing invoices has been disabled in the configuration.')
 
 251                     : ($form->{id} && $change_on_same_day_only) ? t8('Invoices can only be changed on the day they are posted.')
 
 256           submit   => [ '#form', { action => "post_payment" } ],
 
 257           checks   => [ 'kivi.validate_form' ],
 
 258           disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
 262           submit   => [ '#form', { action => "mark_as_paid" } ],
 
 263           checks   => [ 'kivi.validate_form' ],
 
 264           confirm  => t8('This will remove the invoice from showing as unpaid even if the unpaid amount does not match the amount. Proceed?'),
 
 265           disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
 266           only_if  => $::instance_conf->get_ir_show_mark_as_paid,
 
 268       ], # end of combobox "Post"
 
 271         action => [ t8('Storno'),
 
 272           submit   => [ '#form', { action => "storno" } ],
 
 273           checks   => [ 'kivi.validate_form' ],
 
 274           confirm  => t8('Do you really want to cancel this invoice?'),
 
 275           disabled => !$form->{id}          ? t8('This invoice has not been posted yet.')
 
 276                       : $has_sepa_exports   ? t8('This invoice has been linked with a sepa export, undo this first.')
 
 277                       : !$payments_balanced ? t8('Cancelling is disallowed. Either undo or balance the current payments until the open amount matches the invoice amount')
 
 280         action => [ t8('Delete'),
 
 281           submit   => [ '#form', { action => "delete" } ],
 
 282           checks   => [ 'kivi.validate_form' ],
 
 283           confirm  => t8('Do you really want to delete this object?'),
 
 284           disabled => !$form->{id}             ? t8('This invoice has not been posted yet.')
 
 285                     : $form->{locked}          ? t8('The billing period has already been locked.')
 
 286                     : $change_never            ? t8('Changing invoices has been disabled in the configuration.')
 
 287                     : $change_on_same_day_only ? t8('Invoices can only be changed on the day they are posted.')
 
 288                     : $has_sepa_exports        ? t8('This invoice has been linked with a sepa export, undo this first.')
 
 289                     : $has_storno              ? t8('Can only delete the "Storno zu" part of the cancellation pair.')
 
 292       ], # end of combobox "Storno"
 
 297         action => [ t8('Workflow') ],
 
 300           submit   => [ '#form', { action => "use_as_new" } ],
 
 301           checks   => [ 'kivi.validate_form' ],
 
 302           disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
 304        ], # end of combobox "Workflow"
 
 307         action => [ t8('more') ],
 
 310           call     => [ 'set_history_window', $::form->{id} * 1, 'id', 'glid' ],
 
 311           disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
 315           call     => [ 'follow_up_window' ],
 
 316           disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef,
 
 320           call     => [ 'kivi.Draft.popup', 'ir', 'invoice', $::form->{draft_id}, $::form->{draft_description} ],
 
 321           disabled => $form->{id}     ? t8('This invoice has already been posted.')
 
 322                     : $form->{locked} ? t8('The billing period has already been locked.')
 
 325       ], # end of combobox "more"
 
 328   $::request->layout->add_javascripts('kivi.Validator.js');
 
 332   $main::lxdebug->enter_sub();
 
 334   my $form     = $main::form;
 
 335   my %myconfig = %main::myconfig;
 
 336   my $locale   = $main::locale;
 
 337   my $cgi      = $::request->{cgi};
 
 339   $main::auth->assert('vendor_invoice_edit');
 
 344   $TMPL_VAR{invoice_obj} = SL::DB::PurchaseInvoice->load_cached($form->{id}) if $form->{id};
 
 345   $TMPL_VAR{vendor_obj}  = SL::DB::Vendor->load_cached($form->{vendor_id})   if $form->{vendor_id};
 
 346   my $current_employee   = SL::DB::Manager::Employee->current;
 
 347   $form->{employee_id}   = $form->{old_employee_id} if $form->{old_employee_id};
 
 348   $form->{salesman_id}   = $form->{old_salesman_id} if $form->{old_salesman_id};
 
 349   $form->{employee_id} ||= $current_employee->id;
 
 350   $form->{salesman_id} ||= $current_employee->id;
 
 352   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 354   my @old_project_ids = ($form->{"globalproject_id"});
 
 355   map { push @old_project_ids, $form->{"project_id_$_"} if $form->{"project_id_$_"}; } 1..$form->{"rowcount"};
 
 357   $form->get_lists("taxzones"      => ($form->{id} ? "ALL_TAXZONES" : "ALL_ACTIVE_TAXZONES"),
 
 358                    "currencies"    => "ALL_CURRENCIES",
 
 359                    "price_factors" => "ALL_PRICE_FACTORS");
 
 361   $TMPL_VAR{ALL_DEPARTMENTS}       = SL::DB::Manager::Department->get_all_sorted;
 
 362   $TMPL_VAR{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all_sorted(query => [ or => [ id => $::form->{employee_id},  deleted => 0 ] ]);
 
 363   $TMPL_VAR{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all_sorted(query => [
 
 365       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
 
 368         cp_id    => $::form->{cp_id} * 1
 
 373   # currencies and exchangerate
 
 374   my @values = map { $_       } @{ $form->{ALL_CURRENCIES} };
 
 375   my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
 
 376   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
 
 377   # show_exchangerate is also later needed in another template
 
 378   $form->{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
 
 379   $TMPL_VAR{currencies}        = NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
 
 380                                                       '-values' => \@values, '-labels' => \%labels,
 
 381                                                       '-onchange' => "document.getElementById('update_button').click();"
 
 382                                      )) if scalar @values;
 
 383   push @custom_hiddens, "forex";
 
 384   push @custom_hiddens, "exchangerate" if $form->{forex};
 
 386   $TMPL_VAR{creditwarning} = ($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update};
 
 387   $TMPL_VAR{is_credit_remaining_negativ} = $form->{creditremaining} =~ /-/;
 
 389 # set option selected
 
 390   foreach my $item (qw(AP)) {
 
 391     $form->{"select$item"} =~ s/ selected//;
 
 392     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 395   $TMPL_VAR{is_type_credit_note} = $form->{type}   eq "credit_note";
 
 396   $TMPL_VAR{is_format_html}      = $form->{format} eq 'html';
 
 397   $TMPL_VAR{dateformat}          = $myconfig{dateformat};
 
 398   $TMPL_VAR{numberformat}        = $myconfig{numberformat};
 
 401   $TMPL_VAR{HIDDENS} = [qw(
 
 402     id type queued printed emailed title vc discount
 
 403     title creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id
 
 404     max_dunning_level dunning_amount
 
 405     shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptogln shiptocontact shiptophone shiptofax
 
 406     shiptoemail shiptodepartment_1 shiptodepartment_2 message email subject cc bcc taxaccounts cursor_fokus
 
 407     convert_from_do_ids convert_from_oe_ids convert_from_ap_ids show_details gldate useasnew
 
 409   map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts}];
 
 411   $TMPL_VAR{payment_terms_obj} = get_payment_terms_for_invoice();
 
 412   $form->{duedate}             = $TMPL_VAR{payment_terms_obj}->calc_date(reference_date => $form->{invdate}, due_date => $form->{duedate})->to_kivitendo if $TMPL_VAR{payment_terms_obj};
 
 414   $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.Draft kivi.File kivi.SalesPurchase kivi.Part kivi.CustomerVendor kivi.Validator ckeditor/ckeditor ckeditor/adapters/jquery kivi.io autocomplete_project client_js));
 
 416   setup_ir_action_bar();
 
 420   print $form->parse_html_template("ir/form_header", \%TMPL_VAR);
 
 422   $main::lxdebug->leave_sub();
 
 426   my @fields   = qw(acc_trans_id gldate datepaid source memo paid AP_paid);
 
 428     grep { $_->{paid} != 0 }
 
 431       +{ map { ($_ => delete($::form->{"${_}_${idx}"})) } @fields }
 
 432     } (1..$::form->{paidaccounts});
 
 434   @payments = sort_by { DateTime->from_kivitendo($_->{datepaid}) } @payments;
 
 436   $::form->{paidaccounts} = max scalar(@payments), 1;
 
 438   foreach my $idx (1 .. scalar(@payments)) {
 
 439     my $payment = $payments[$idx - 1];
 
 440     $::form->{"${_}_${idx}"} = $payment->{$_} for @fields;
 
 445   $main::lxdebug->enter_sub();
 
 447   my $form     = $main::form;
 
 448   my %myconfig = %main::myconfig;
 
 449   my $locale   = $main::locale;
 
 451   $main::auth->assert('vendor_invoice_edit');
 
 453   $form->{invtotal}    = $form->{invsubtotal};
 
 454   $form->{oldinvtotal} = $form->{invtotal};
 
 457   $form->{rows} = max 2,
 
 458     $form->numtextrows($form->{notes},    26, 8),
 
 459     $form->numtextrows($form->{intnotes}, 35, 8);
 
 462   # tax, total and subtotal calculations
 
 463   my ($tax, $subtotal);
 
 464   $form->{taxaccounts_array} = [ split / /, $form->{taxaccounts} ];
 
 466   foreach my $item (@{ $form->{taxaccounts_array} }) {
 
 467     if ($form->{"${item}_base"}) {
 
 468       if ($form->{taxincluded}) {
 
 469         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"}
 
 470                                                                                  / (1 + $form->{"${item}_rate"})), 2);
 
 471         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
 
 473         $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
 
 474         $form->{invtotal} += $form->{"${item}_total"};
 
 481     $form->{follow_ups}            = FU->follow_ups('trans_id' => $form->{id}, 'not_done' => 1) || [];
 
 482     $form->{follow_ups_unfinished} = ( sum map { $_->{due} * 1 } @{ $form->{follow_ups} } ) || 0;
 
 489   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 490   $form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
 
 492   # Standard Konto für Umlaufvermögen
 
 493   my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
 
 495   for my $i (1 .. $form->{paidaccounts}) {
 
 496     $form->{"changeable_$i"} = 1;
 
 497     if (SL::DB::Default->get->payments_changeable == 0) {
 
 499       $form->{"changeable_$i"} = ($form->{"acc_trans_id_$i"})? 0 : 1;
 
 500     } elsif (SL::DB::Default->get->payments_changeable == 2) {
 
 502       $form->{"changeable_$i"} = (($form->{"gldate_$i"} eq '') ||
 
 503                                   ($form->current_date(\%myconfig) eq $form->{"gldate_$i"}));
 
 506     $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 507       if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 509     #deaktivieren von Zahlungen ausserhalb der Bücherkontrolle
 
 510     if ($form->date_closed($form->{"gldate_$i"})) {
 
 511       $form->{"changeable_$i"} = 0;
 
 514     $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
 
 515     if (!$form->{"AP_paid_$i"}) {
 
 516       $form->{"selectAP_paid_$i"} =~ s/option>$accno_arap--(.*?)>/option selected>$accno_arap--$1>/;
 
 518       $form->{"selectAP_paid_$i"} =~ s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
 
 521     $totalpaid += $form->{"paid_$i"};
 
 524   $form->{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
 
 526   print $form->parse_html_template('ir/form_footer', {
 
 527     is_type_credit_note => ($form->{type} eq "credit_note"),
 
 528     totalpaid           => $totalpaid,
 
 529     paid_missing        => $form->{invtotal} - $totalpaid,
 
 530     show_storno         => $form->{id} && !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ap") && !$totalpaid,
 
 531     show_delete         => ($::instance_conf->get_ir_changeable == 2)
 
 532                              ? ($form->current_date(\%myconfig) eq $form->{gldate})
 
 533                              : ($::instance_conf->get_ir_changeable == 1),
 
 534     today               => DateTime->today,
 
 536 ##print $form->parse_html_template('ir/_payments'); # parser
 
 537 ##print $form->parse_html_template('webdav/_list'); # parser
 
 539   $main::lxdebug->leave_sub();
 
 543   $::auth->assert('vendor_invoice_edit');
 
 545   SL::DB::PurchaseInvoice->new(id => $::form->{id})->load->mark_as_paid;
 
 547   $::form->redirect($::locale->text("Marked as paid"));
 
 555   $main::lxdebug->enter_sub();
 
 557   my $form     = $main::form;
 
 558   my %myconfig = %main::myconfig;
 
 560   $main::auth->assert('vendor_invoice_edit');
 
 562   if (($form->{previous_vendor_id} || $form->{vendor_id}) != $form->{vendor_id}) {
 
 563     IR->get_vendor(\%myconfig, $form);
 
 566   if (!$form->{forex}) {        # read exchangerate from input field (not hidden)
 
 567     $form->{exchangerate} = $form->parse_amount(\%myconfig, $form->{exchangerate});
 
 569   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'sell');
 
 570   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 572   for my $i (1 .. $form->{paidaccounts}) {
 
 573     next unless $form->{"paid_$i"};
 
 574     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
 
 575     $form->{"forex_$i"}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
 
 576     $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 579   my $i            = $form->{rowcount};
 
 580   my $exchangerate = ($form->{exchangerate} * 1) || 1;
 
 582   if (   ($form->{"partnumber_$i"} eq "")
 
 583       && ($form->{"description_$i"} eq "")
 
 584       && ($form->{"partsgroup_$i"} eq "")) {
 
 585     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 590     IR->retrieve_item(\%myconfig, \%$form);
 
 592     my $rows = scalar @{ $form->{item_list} };
 
 594     $form->{"discount_$i"}   = $form->parse_amount(\%myconfig, $form->{"discount_$i"}) / 100.0;
 
 595     $form->{"discount_$i"} ||= $form->{vendor_discount};
 
 598       $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 599       if( !$form->{"qty_$i"} ) {
 
 600         $form->{"qty_$i"} = 1;
 
 605         select_item(mode => 'IR', pre_entered_qty => $form->{"qty_$i"});
 
 606         $::dispatcher->end_request;
 
 610         # override sellprice if there is one entered
 
 611         my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 613         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 614         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
 
 616         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
 
 618         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
 
 619         my $dec_qty       = length $1;
 
 620         my $decimalplaces = max 2, $dec_qty;
 
 623           $form->{"sellprice_$i"} = $sellprice;
 
 625           my $record        = _make_record();
 
 626           my $price_source  = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
 
 627           my $best_price    = $price_source->best_price;
 
 628           my $best_discount = $price_source->best_discount;
 
 631             $::form->{"sellprice_$i"}           = $best_price->price;
 
 632             $::form->{"active_price_source_$i"} = $best_price->source;
 
 634           if ($best_discount) {
 
 635             $::form->{"discount_$i"}               = $best_discount->discount;
 
 636             $::form->{"active_discount_source_$i"} = $best_discount->source;
 
 639           # if there is an exchange rate adjust sellprice
 
 640           $form->{"sellprice_$i"} /= $exchangerate;
 
 643         my $amount                = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"});
 
 644         $form->{creditremaining} -= $amount;
 
 645         $form->{"sellprice_$i"}   = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 646         $form->{"qty_$i"}         = $form->format_amount(\%myconfig, $form->{"qty_$i"},       $dec_qty);
 
 647         $form->{"discount_$i"}    = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0);
 
 654       # ok, so this is a new part
 
 655       # ask if it is a part or service item
 
 657       if (   $form->{"partsgroup_$i"}
 
 658           && ($form->{"partsnumber_$i"} eq "")
 
 659           && ($form->{"description_$i"} eq "")) {
 
 661         $form->{"discount_$i"} = "";
 
 665         $form->{"id_$i"}   = 0;
 
 670   $main::lxdebug->leave_sub();
 
 674   $main::lxdebug->enter_sub();
 
 676   my $form     = $main::form;
 
 677   my %myconfig = %main::myconfig;
 
 678   my $locale   = $main::locale;
 
 680   $main::auth->assert('vendor_invoice_edit');
 
 682   if ($form->{storno}) {
 
 683     $form->error($locale->text('Cannot storno storno invoice!'));
 
 686   if (IS->has_storno(\%myconfig, $form, "ap")) {
 
 687     $form->error($locale->text("Invoice has already been storno'd!"));
 
 690   $form->error($locale->text('Cannot post storno for a closed period!'))
 
 691     if ( $form->date_closed($form->{invdate}, \%myconfig));
 
 693   my $employee_id = $form->{employee_id};
 
 698   # Payments must not be recorded for the new storno invoice.
 
 699   $form->{paidaccounts} = 0;
 
 700   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ gldate_ acc_trans_id_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
 
 701   # set new ids for storno invoice
 
 702   # set new persistent ids for storno invoice items
 
 703   $form->{"converted_from_invoice_id_$_"} = delete $form->{"invoice_id_$_"} for 1 .. $form->{"rowcount"};
 
 706   if(!exists $form->{addition} && $form->{id} ne "") {
 
 707     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 708     $form->{what_done} = "invoice";
 
 709     $form->{addition}  = "CANCELED";
 
 712   # /saving the history
 
 714   # record link invoice to storno
 
 715   $form->{convert_from_ap_ids} = $form->{id};
 
 716   $form->{storno_id} = $form->{id};
 
 719   $form->{invnumber} = "Storno zu " . $form->{invnumber};
 
 721   $form->{employee_id} = $employee_id;
 
 723   $main::lxdebug->leave_sub();
 
 728   $main::lxdebug->enter_sub();
 
 730   my $form     = $main::form;
 
 731   my %myconfig = %main::myconfig;
 
 733   $main::auth->assert('vendor_invoice_edit');
 
 735   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 gldate_1 acc_trans_id_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
 
 736   $form->{paidaccounts} = 1;
 
 738   $form->{invdate} = $form->current_date(\%myconfig);
 
 740   $form->{"converted_from_invoice_id_$_"} = delete $form->{"invoice_id_$_"} for 1 .. $form->{"rowcount"};
 
 742   $form->{useasnew} = 1;
 
 745   $main::lxdebug->leave_sub();
 
 749   $main::lxdebug->enter_sub();
 
 751   my $form     = $main::form;
 
 752   my %myconfig = %main::myconfig;
 
 753   my $locale   = $main::locale;
 
 755   $main::auth->assert('vendor_invoice_edit');
 
 757   $form->mtime_ischanged('ap') ;
 
 758   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 759   for my $i (1 .. $form->{paidaccounts}) {
 
 760     if ($form->{"paid_$i"}) {
 
 761       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 763       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 765       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 766         if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 768       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 769       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 770       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 771         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 773       if ($form->{currency} ne $form->{defaultcurrency}) {
 
 774 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid); # invdate isn't set here
 
 775         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 780   ($form->{AP})      = split /--/, $form->{AP};
 
 781   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
 782   if (IR->post_payment(\%myconfig, \%$form)){
 
 783     if (!exists $form->{addition} && $form->{id} ne "") {
 
 785       $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 786       $form->{addition}  = "PAYMENT POSTED";
 
 787       $form->{what_done} = "invoice";
 
 789       # /saving the history
 
 792     $form->redirect($locale->text('Payment posted!'));
 
 795   $form->error($locale->text('Cannot post payment!'));
 
 797   $main::lxdebug->leave_sub();
 
 801   my $form  =  $main::form;
 
 803   my @dates = sort { $b->[1] cmp $a->[1] }
 
 804               map  { [ $_, $main::locale->reformat_date(\%main::myconfig, $_, 'yyyy-mm-dd') ] }
 
 806               map  { $form->{"datepaid_${_}"} }
 
 807               (1..$form->{rowcount});
 
 809   return @dates ? $dates[0]->[0] : undef;
 
 814   $main::lxdebug->enter_sub();
 
 816   my $form     = $main::form;
 
 817   my %myconfig = %main::myconfig;
 
 818   my $locale   = $main::locale;
 
 820   $main::auth->assert('vendor_invoice_edit');
 
 822   $form->mtime_ischanged('ap');
 
 823   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 825   $form->isblank("invdate",   $locale->text('Invoice Date missing!'));
 
 826   $form->isblank("vendor_id", $locale->text('Vendor missing!'));
 
 827   $form->isblank("invnumber", $locale->text('Invnumber missing!'));
 
 829   $form->{invnumber} =~ s/^\s*//g;
 
 830   $form->{invnumber} =~ s/\s*$//g;
 
 832   # if the vendor changed get new values
 
 833   if (($form->{previous_vendor_id} || $form->{vendor_id}) != $form->{vendor_id}) {
 
 835     $::dispatcher->end_request;
 
 838   if ($myconfig{mandatory_departments} && !$form->{department_id}) {
 
 839     $form->{saved_message} = $::locale->text('You have to specify a department.');
 
 844   remove_emptied_rows();
 
 847   my $closedto     = $form->datetonum($form->{closedto}, \%myconfig);
 
 848   my $invdate      = $form->datetonum($form->{invdate},  \%myconfig);
 
 849   my $max_datepaid = _max_datepaid();
 
 851   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 852     if ($form->date_max_future($invdate, \%myconfig));
 
 853   $form->error($locale->text('Cannot post invoice for a closed period!'))
 
 854     if ($invdate <= $closedto);
 
 856   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
 857     if ($form->{currency} ne $form->{defaultcurrency});
 
 860   for $i (1 .. $form->{paidaccounts}) {
 
 861     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 862       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 864       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 866       $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
 
 867         if ($form->date_max_future($form->{"datepaid_$i"}, \%myconfig));
 
 869       #Zusätzlich noch das Buchungsdatum in die Bücherkontrolle einbeziehen
 
 870       # (Dient zur Prüfung ob ZE oder ZA geprüft werden soll)
 
 871       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 872         if ($form->date_closed($form->{"datepaid_$i"})  && !$form->date_closed($form->{"gldate_$i"}, \%myconfig));
 
 874       if ($form->{currency} ne $form->{defaultcurrency}) {
 
 875         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
 876           if ($invdate == $datepaid);
 
 877         $form->isblank("exchangerate_$i",
 
 878                        $locale->text('Exchangerate for payment missing!'));
 
 883   ($form->{AP})      = split /--/, $form->{AP};
 
 884   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
 885   $form->{storno}  ||= 0;
 
 887   $form->{id} = 0 if $form->{postasnew};
 
 891   if (IR->post_invoice(\%myconfig, \%$form)){
 
 893     if(!exists $form->{addition} && $form->{id} ne "") {
 
 894       $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
 
 895       $form->{addition}  = "POSTED";
 
 896       $form->{what_done} = 'invoice';
 
 899     # /saving the history
 
 900     $form->{callback} = 'ir.pl?action=add';
 
 901     $form->redirect(  $locale->text('Invoice')
 
 902                   . " $form->{invnumber} "
 
 903                   . ", " . $locale->text('ID')
 
 904                   . ': ' . $form->{id} . ' '
 
 905                   . $locale->text('posted!'));
 
 907   $form->error($locale->text('Cannot post invoice!'));
 
 909   $main::lxdebug->leave_sub();
 
 913   $main::lxdebug->enter_sub();
 
 915   my $form     = $main::form;
 
 916   my $locale   = $main::locale;
 
 918   $main::auth->assert('vendor_invoice_edit');
 
 922 <form method=post action=$form->{script}>
 
 925   # delete action variable
 
 926   map { delete $form->{$_} } qw(action header);
 
 928   foreach my $key (keys %$form) {
 
 929     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
 930     $form->{$key} =~ s/\"/"/g;
 
 931     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
 935 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
 938     . $locale->text('Are you sure you want to delete Invoice Number')
 
 939     . qq| $form->{invnumber}</h4>
 
 941 <input name=action class=submit type=submit value="|
 
 942     . $locale->text('Yes') . qq|">
 
 946   $main::lxdebug->leave_sub();
 
 950   $::lxdebug->enter_sub;
 
 952   $::auth->assert('vendor_invoice_edit');
 
 956   my $new_rowcount = $::form->{"rowcount"} * 1 + 1;
 
 957   $::form->{"project_id_${new_rowcount}"} = $::form->{"globalproject_id"};
 
 959   $::form->language_payment(\%::myconfig);
 
 961   Common::webdav_folder($::form);
 
 964   display_row(++$::form->{rowcount});
 
 967   $::lxdebug->leave_sub;
 
 971   $main::lxdebug->enter_sub();
 
 973   my $form     = $main::form;
 
 974   my %myconfig = %main::myconfig;
 
 975   my $locale   = $main::locale;
 
 977   $main::auth->assert('vendor_invoice_edit');
 
 979   if (IR->delete_invoice(\%myconfig, \%$form)) {
 
 981     if(!exists $form->{addition}) {
 
 982       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 983       $form->{addition} = "DELETED";
 
 986     # /saving the history
 
 987     $form->redirect($locale->text('Invoice deleted!'));
 
 989   $form->error($locale->text('Cannot delete invoice!'));
 
 991   $main::lxdebug->leave_sub();
 
 994 sub get_duedate_vendor {
 
 995   $::lxdebug->enter_sub;
 
 997   my $result = IR->get_duedate(
 
 998     vendor_id => $::form->{vendor_id},
 
 999     invdate   => $::form->{invdate},
 
1000     default   => $::form->{old_duedate},
 
1003   print $::form->ajax_response_header, $result;
 
1004   $::lxdebug->leave_sub;