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., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  28 #======================================================================
 
  30 # Inventory received module
 
  32 #======================================================================
 
  38 use List::Util qw(max sum);
 
  40 require "bin/mozilla/io.pl";
 
  41 require "bin/mozilla/invoice_io.pl";
 
  42 require "bin/mozilla/arap.pl";
 
  43 require "bin/mozilla/common.pl";
 
  44 require "bin/mozilla/drafts.pl";
 
  53   $main::lxdebug->enter_sub();
 
  55   my $form     = $main::form;
 
  56   my $locale   = $main::locale;
 
  58   $main::auth->assert('vendor_invoice_edit');
 
  60   return $main::lxdebug->leave_sub() if (load_draft_maybe());
 
  62   $form->{title} = $locale->text('Record Vendor Invoice');
 
  68   $main::lxdebug->leave_sub();
 
  72   $main::lxdebug->enter_sub();
 
  74   my $form     = $main::form;
 
  75   my $locale   = $main::locale;
 
  77   $main::auth->assert('vendor_invoice_edit');
 
  80   $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
 
  81   #/show hhistory button
 
  83   $form->{title} = $locale->text('Edit Vendor Invoice');
 
  89   $main::lxdebug->leave_sub();
 
  93   $main::lxdebug->enter_sub();
 
  95   my $form     = $main::form;
 
  96   my %myconfig = %main::myconfig;
 
  98   $main::auth->assert('vendor_invoice_edit');
 
 100   $form->{vc} = 'vendor';
 
 103   $form->{webdav}   = $::lx_office_conf{features}->{webdav};
 
 104   $form->{jsscript} = 1;
 
 106   $form->create_links("AP", \%myconfig, "vendor");
 
 108   #quote all_vendor Bug 133
 
 109   foreach my $ref (@{ $form->{all_vendor} }) {
 
 110     $ref->{name} = $form->quote($ref->{name});
 
 113   if ($form->{all_vendor}) {
 
 114     unless ($form->{vendor_id}) {
 
 115       $form->{vendor_id} = $form->{all_vendor}->[0]->{id};
 
 119   my ($payment_id, $language_id, $taxzone_id);
 
 120   if ($form->{payment_id}) {
 
 121     $payment_id = $form->{payment_id};
 
 123   if ($form->{language_id}) {
 
 124     $language_id = $form->{language_id};
 
 126   if ($form->{taxzone_id}) {
 
 127     $taxzone_id = $form->{taxzone_id};
 
 130   my $cp_id = $form->{cp_id};
 
 131   IR->get_vendor(\%myconfig, \%$form);
 
 132   IR->retrieve_invoice(\%myconfig, \%$form);
 
 133   $form->{cp_id} = $cp_id;
 
 136     $form->{payment_id} = $payment_id;
 
 139     $form->{language_id} = $language_id;
 
 142     $form->{taxzone_id} = $taxzone_id;
 
 145   my @curr = split(/:/, $form->{currencies}); #seems to be missing
 
 146   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 148   $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
 
 150   # build vendor/customer drop down comatibility... don't ask
 
 151   if (@{ $form->{"all_vendor"} || [] }) {
 
 152     $form->{"selectvendor"} = 1;
 
 153     $form->{vendor}         = qq|$form->{vendor}--$form->{vendor_id}|;
 
 157   if ($form->{all_departments}) {
 
 158     $form->{selectdepartment} = "<option>\n";
 
 159     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 162       $form->{selectdepartment} .=
 
 163         "<option>$_->{description}--$_->{id}\n"
 
 164     } (@{ $form->{all_departments} || [] });
 
 168   $form->{forex} = $form->{exchangerate};
 
 169   my $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
 171   foreach my $key (keys %{ $form->{AP_links} }) {
 
 173     foreach my $ref (@{ $form->{AP_links}{$key} }) {
 
 174       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}</option>";
 
 177     next unless $form->{acc_trans}{$key};
 
 179     if ($key eq "AP_paid") {
 
 180       for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
 
 181         $form->{"AP_paid_$i"} =
 
 182           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
 
 184         $form->{"acc_trans_id_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
 
 186         $form->{"paid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{amount};
 
 187         $form->{"datepaid_$i"} =
 
 188           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
 
 189         $form->{"gldate_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
 
 190         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
 
 191           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
 
 192         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
 
 193         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
 
 195         $form->{paidaccounts} = $i;
 
 199         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
 
 204   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
 
 206   $form->{AP} = $form->{AP_1} unless $form->{id};
 
 209     ($form->datetonum($form->{invdate}, \%myconfig) <=
 
 210      $form->datetonum($form->{closedto}, \%myconfig));
 
 212   $main::lxdebug->leave_sub();
 
 215 sub prepare_invoice {
 
 216   $main::lxdebug->enter_sub();
 
 218   my $form     = $main::form;
 
 219   my %myconfig = %main::myconfig;
 
 221   $main::auth->assert('vendor_invoice_edit');
 
 225     map { $form->{$_} =~ s/\"/"/g } qw(invnumber ordnumber quonumber);
 
 228     foreach my $ref (@{ $form->{invoice_details} }) {
 
 230       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
 
 231       # übernommen aus is.pl Fix für Bug 1642. Nebenwirkungen? jb 12.5.2011
 
 232       # getestet: Lieferantenauftrag -> Rechnung i.O.
 
 233       #           Lieferantenauftrag -> Lieferschein -> Rechnung i.O.
 
 234       # Werte: 20% (Lieferantenrabatt), 12,4% individuell und 0,4 individuell s.a.
 
 235       # Screenshot zu Bug 1642
 
 236       $form->{"discount_$i"}   = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
 
 238       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 240       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 242       $form->{"sellprice_$i"} =
 
 243         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 246       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 247       $dec_qty = length $dec_qty;
 
 250         $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1), $dec_qty);
 
 252       $form->{rowcount} = $i;
 
 256   $main::lxdebug->leave_sub();
 
 260   $main::lxdebug->enter_sub();
 
 262   my $form     = $main::form;
 
 263   my %myconfig = %main::myconfig;
 
 264   my $locale   = $main::locale;
 
 265   my $cgi      = $::request->{cgi};
 
 267   $main::auth->assert('vendor_invoice_edit');
 
 272   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
 
 273   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
 
 275   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 277   my @old_project_ids = ($form->{"globalproject_id"});
 
 278   map { push @old_project_ids, $form->{"project_id_$_"} if $form->{"project_id_$_"}; } 1..$form->{"rowcount"};
 
 280   $form->get_lists("contacts"      => "ALL_CONTACTS",
 
 281                    "shipto"        => "ALL_SHIPTO",
 
 282                    "projects"      => { "key"    => "ALL_PROJECTS",
 
 284                                         "old_id" => \@old_project_ids },
 
 285                    "employees"     => "ALL_EMPLOYEES",
 
 286                    "taxzones"      => "ALL_TAXZONES",
 
 287                    "currencies"    => "ALL_CURRENCIES",
 
 288                    "vendors"       => "ALL_VENDORS",
 
 289                    "departments"   => "all_departments",
 
 290                    "price_factors" => "ALL_PRICE_FACTORS");
 
 292   $TMPL_VAR{sales_employee_labels} = sub { $_[0]->{name} || $_[0]->{login} };
 
 293 #  $TMPL_VAR{shipto_labels}         = sub { join "; ", grep { $_ } map { $_[0]->{"shipto${_}" } } qw(name department_1 street city) };
 
 294   $TMPL_VAR{contact_labels}        = sub { join(', ', $_[0]->{"cp_name"}, $_[0]->{"cp_givenname"}) . ($_[0]->{cp_abteilung} ? " ($_[0]->{cp_abteilung})" : "") };
 
 295   $TMPL_VAR{department_labels}     = sub { "$_[0]->{description}--$_[0]->{id}" };
 
 298   $TMPL_VAR{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 299   $TMPL_VAR{vclimit} = $myconfig{vclimit};
 
 300   $TMPL_VAR{vc_select} = "customer_or_vendor_selection_window('vendor', '', 1, 0)";
 
 301   push @custom_hiddens, "vendor_id";
 
 302   push @custom_hiddens, "oldvendor";
 
 303   push @custom_hiddens, "selectvendor";
 
 305   # currencies and exchangerate
 
 306   my @values = map { $_       } @{ $form->{ALL_CURRENCIES} };
 
 307   my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
 
 308   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
 
 309   $TMPL_VAR{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
 
 310   $TMPL_VAR{currencies}        = NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
 
 311                                                       '-values' => \@values, '-labels' => \%labels)) if scalar @values;
 
 312   push @custom_hiddens, "forex";
 
 313   push @custom_hiddens, "exchangerate" if $form->{forex};
 
 315   $TMPL_VAR{creditwarning} = ($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update};
 
 316   $TMPL_VAR{is_credit_remaining_negativ} = $form->{creditremaining} =~ /-/;
 
 318   $form->{fokus} = "invoice.vendor";
 
 320   my $follow_up_vc         =  $form->{vendor};
 
 321   $follow_up_vc            =~ s/--\d*\s*$//;
 
 322   $TMPL_VAR{vendor_name} = $follow_up_vc;
 
 324 # set option selected
 
 325   foreach my $item (qw(AP)) {
 
 326     $form->{"select$item"} =~ s/ selected//;
 
 327     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 330   $TMPL_VAR{is_type_credit_note} = $form->{type}   eq "credit_note";
 
 331   $TMPL_VAR{is_format_html}      = $form->{format} eq 'html';
 
 332   $TMPL_VAR{dateformat}          = $myconfig{dateformat};
 
 333   $TMPL_VAR{numberformat}        = $myconfig{numberformat};
 
 336   $TMPL_VAR{HIDDENS} = [qw(
 
 337     id action type media format queued printed emailed title vc discount
 
 338     title creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id
 
 339     max_dunning_level dunning_amount
 
 340     shiptoname shiptostreet shiptozipcode shiptocity shiptocountry  shiptocontact shiptophone shiptofax
 
 341     shiptoemail shiptodepartment_1 shiptodepartment_2 message email subject cc bcc taxaccounts cursor_fokus
 
 342     convert_from_do_ids convert_from_oe_ids
 
 344   map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts}];
 
 346   $form->{jsscript} = 1;
 
 349   print $form->parse_html_template("ir/form_header", \%TMPL_VAR);
 
 351   $main::lxdebug->leave_sub();
 
 355   $main::lxdebug->enter_sub();
 
 357   my $form     = $main::form;
 
 358   my %myconfig = %main::myconfig;
 
 359   my $locale   = $main::locale;
 
 361   $main::auth->assert('vendor_invoice_edit');
 
 363   $form->{invtotal}    = $form->{invsubtotal};
 
 364   $form->{oldinvtotal} = $form->{invtotal};
 
 367   $form->{rows} = max 2,
 
 368     $form->numtextrows($form->{notes},    26, 8),
 
 369     $form->numtextrows($form->{intnotes}, 35, 8);
 
 372   # tax, total and subtotal calculations
 
 373   my ($tax, $subtotal);
 
 374   $form->{taxaccounts_array} = [ split / /, $form->{taxaccounts} ];
 
 376   foreach my $item (@{ $form->{taxaccounts_array} }) {
 
 377     if ($form->{"${item}_base"}) {
 
 378       if ($form->{taxincluded}) {
 
 379         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"}
 
 380                                                                                  / (1 + $form->{"${item}_rate"})), 2);
 
 381         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
 
 383         $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
 
 384         $form->{invtotal} += $form->{"${item}_total"};
 
 391     $form->{follow_ups}            = FU->follow_ups('trans_id' => $form->{id}) || [];
 
 392     $form->{follow_ups_unfinished} = ( sum map { $_->{due} * 1 } @{ $form->{follow_ups} } ) || 0;
 
 397   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 398   $form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
 
 400   # Standard Konto für Umlaufvermögen
 
 401   my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
 
 403   for my $i (1 .. $form->{paidaccounts}) {
 
 404     $form->{"changeable_$i"} = 1;
 
 405     if ($::lx_office_conf{features}->{payments_changeable} == 0) {
 
 407       $form->{"changeable_$i"} = ($form->{"acc_trans_id_$i"})? 0 : 1;
 
 408     } elsif ($::lx_office_conf{features}->{payments_changeable} == 2) {
 
 410       $form->{"changeable_$i"} = (($form->{"gldate_$i"} eq '') ||
 
 411                                   ($form->current_date(\%myconfig) eq $form->{"gldate_$i"}));
 
 414     $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
 
 415     if (!$form->{"AP_paid_$i"}) {
 
 416       $form->{"selectAP_paid_$i"} =~ s/option>$accno_arap--(.*?)>/option selected>$accno_arap--$1>/;
 
 418       $form->{"selectAP_paid_$i"} =~ s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
 
 421     $totalpaid += $form->{"paid_$i"};
 
 424   print $form->parse_html_template('ir/form_footer', {
 
 425     is_type_credit_note => ($form->{type} eq "credit_note"),
 
 426     totalpaid           => $totalpaid,
 
 427     paid_missing        => $form->{invtotal} - $totalpaid,
 
 428     show_storno         => $form->{id} && !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ap") && !$totalpaid,
 
 429     show_delete         => ($form->current_date(\%myconfig) eq $form->{gldate}),
 
 431 ##print $form->parse_html_template('ir/_payments'); # parser
 
 432 ##print $form->parse_html_template('webdav/_list'); # parser
 
 434   $main::lxdebug->leave_sub();
 
 438   $main::lxdebug->enter_sub();
 
 440   my $form     = $main::form;
 
 441   my %myconfig = %main::myconfig;
 
 443   $main::auth->assert('vendor_invoice_edit');
 
 445   &mark_as_paid_common(\%myconfig,"ap");
 
 447   $main::lxdebug->leave_sub();
 
 451   $main::lxdebug->enter_sub();
 
 453   my $form     = $main::form;
 
 454   my %myconfig = %main::myconfig;
 
 456   $main::auth->assert('vendor_invoice_edit');
 
 458 #  map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining);
 
 460   &check_name('vendor');
 
 462   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'sell');
 
 463   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 465   for my $i (1 .. $form->{paidaccounts}) {
 
 466     next unless $form->{"paid_$i"};
 
 467     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
 
 468     $form->{"forex_$i"}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
 
 469     $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 472   my $i            = $form->{rowcount};
 
 473   my $exchangerate = ($form->{exchangerate} * 1) || 1;
 
 475   if (   ($form->{"partnumber_$i"} eq "")
 
 476       && ($form->{"description_$i"} eq "")
 
 477       && ($form->{"partsgroup_$i"} eq "")) {
 
 478     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 483     IR->retrieve_item(\%myconfig, \%$form);
 
 485     my $rows = scalar @{ $form->{item_list} };
 
 488       $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 492         select_item(mode => 'IR');
 
 497         # override sellprice if there is one entered
 
 498         my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 500         # ergaenzung fuer bug 736 Lieferanten-Rabatt auch in Einkaufsrechnungen vorbelegen jb
 
 501         $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{vendor_discount} * 100 );
 
 502         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 503         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
 
 505         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
 
 507         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
 
 508         my $dec_qty       = length $1;
 
 509         my $decimalplaces = max 2, $dec_qty;
 
 512           $form->{"sellprice_$i"} = $sellprice;
 
 514           # if there is an exchange rate adjust sellprice
 
 515           $form->{"sellprice_$i"} /= $exchangerate;
 
 518         my $amount                   = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"} / 100);
 
 519         $form->{creditremaining} -= $amount;
 
 520         $form->{"sellprice_$i"}   = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 521         $form->{"qty_$i"}         = $form->format_amount(\%myconfig, $form->{"qty_$i"},       $dec_qty);
 
 528       # ok, so this is a new part
 
 529       # ask if it is a part or service item
 
 531       if (   $form->{"partsgroup_$i"}
 
 532           && ($form->{"partsnumber_$i"} eq "")
 
 533           && ($form->{"description_$i"} eq "")) {
 
 535         $form->{"discount_$i"} = "";
 
 539         $form->{"id_$i"}   = 0;
 
 544   $main::lxdebug->leave_sub();
 
 548   $main::lxdebug->enter_sub();
 
 550   my $form     = $main::form;
 
 551   my %myconfig = %main::myconfig;
 
 552   my $locale   = $main::locale;
 
 554   $main::auth->assert('vendor_invoice_edit');
 
 556   if ($form->{storno}) {
 
 557     $form->error($locale->text('Cannot storno storno invoice!'));
 
 560   if (IS->has_storno(\%myconfig, $form, "ap")) {
 
 561     $form->error($locale->text("Invoice has already been storno'd!"));
 
 564   my $employee_id = $form->{employee_id};
 
 569   # Payments must not be recorded for the new storno invoice.
 
 570   $form->{paidaccounts} = 0;
 
 571   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ gldate_ acc_trans_id_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
 
 574   if(!exists $form->{addition} && $form->{id} ne "") {
 
 575     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 576     $form->{addition} = "CANCELED";
 
 579   # /saving the history
 
 581   $form->{storno_id} = $form->{id};
 
 584   $form->{invnumber} = "Storno zu " . $form->{invnumber};
 
 586   $form->{employee_id} = $employee_id;
 
 588   $main::lxdebug->leave_sub();
 
 592 sub use_as_template {
 
 593   $main::lxdebug->enter_sub();
 
 595   my $form     = $main::form;
 
 596   my %myconfig = %main::myconfig;
 
 598   $main::auth->assert('vendor_invoice_edit');
 
 600   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);
 
 601   $form->{paidaccounts} = 1;
 
 603   $form->{invdate} = $form->current_date(\%myconfig);
 
 606   $main::lxdebug->leave_sub();
 
 610   $main::lxdebug->enter_sub();
 
 612   my $form     = $main::form;
 
 613   my %myconfig = %main::myconfig;
 
 614   my $locale   = $main::locale;
 
 616   $main::auth->assert('vendor_invoice_edit');
 
 618   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 619   for my $i (1 .. $form->{paidaccounts}) {
 
 620     if ($form->{"paid_$i"}) {
 
 621       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 623       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 625       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 626         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
 628       if ($form->{currency} ne $form->{defaultcurrency}) {
 
 629 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid); # invdate isn't set here
 
 630         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
 635   ($form->{AP})      = split /--/, $form->{AP};
 
 636   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
 637   if (IR->post_payment(\%myconfig, \%$form)){
 
 638     if (!exists $form->{addition} && $form->{id} ne "") {
 
 640       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 641       $form->{addition} = "PAYMENT POSTED";
 
 642       $form->{what_done} = $form->{currency} . qq| | . $form->{paid} . qq| | . $locale->text("POSTED");
 
 644       # /saving the history
 
 647     $form->redirect($locale->text('Payment posted!'));
 
 650   $form->error($locale->text('Cannot post payment!'));
 
 652   $main::lxdebug->leave_sub();
 
 656   my $form  =  $main::form;
 
 658   my @dates = sort { $b->[1] cmp $a->[1] }
 
 659               map  { [ $_, $main::locale->reformat_date(\%main::myconfig, $_, 'yyyy-mm-dd') ] }
 
 661               map  { $form->{"datepaid_${_}"} }
 
 662               (1..$form->{rowcount});
 
 664   return @dates ? $dates[0]->[0] : undef;
 
 669   $main::lxdebug->enter_sub();
 
 671   my $form     = $main::form;
 
 672   my %myconfig = %main::myconfig;
 
 673   my $locale   = $main::locale;
 
 675   $main::auth->assert('vendor_invoice_edit');
 
 677   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 679   $form->isblank("invdate",   $locale->text('Invoice Date missing!'));
 
 680   $form->isblank("vendor",    $locale->text('Vendor missing!'));
 
 681   $form->isblank("invnumber", $locale->text('Invnumber missing!'));
 
 683   $form->{invnumber} =~ s/^\s*//g;
 
 684   $form->{invnumber} =~ s/\s*$//g;
 
 686   # if the vendor changed get new values
 
 687   if (&check_name('vendor')) {
 
 692   if ($myconfig{mandatory_departments} && !$form->{department_id}) {
 
 693     $form->{saved_message} = $::locale->text('You have to specify a department.');
 
 698   remove_emptied_rows();
 
 701   my $closedto     = $form->datetonum($form->{closedto}, \%myconfig);
 
 702   my $invdate      = $form->datetonum($form->{invdate},  \%myconfig);
 
 703   my $max_datepaid = _max_datepaid();
 
 705   $form->error($locale->text('Cannot post invoice for a closed period!')) if $max_datepaid && $form->date_closed($max_datepaid, \%myconfig);
 
 707   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
 708     if ($form->{currency} ne $form->{defaultcurrency});
 
 711   for $i (1 .. $form->{paidaccounts}) {
 
 712     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 713       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 715       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 717       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 718         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
 720       if ($form->{currency} ne $form->{defaultcurrency}) {
 
 721         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
 722           if ($invdate == $datepaid);
 
 723         $form->isblank("exchangerate_$i",
 
 724                        $locale->text('Exchangerate for payment missing!'));
 
 729   ($form->{AP})      = split /--/, $form->{AP};
 
 730   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
 731   $form->{storno}  ||= 0;
 
 733   $form->{id} = 0 if $form->{postasnew};
 
 737   if (IR->post_invoice(\%myconfig, \%$form)){
 
 739     if(!exists $form->{addition} && $form->{id} ne "") {
 
 740       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 741       $form->{addition} = "POSTED";
 
 742       #$form->{what_done} = $locale->text("Rechnungsnummer") . qq| | . $form->{invnumber};
 
 745     # /saving the history
 
 746     remove_draft() if $form->{remove_draft};
 
 747     $form->redirect(  $locale->text('Invoice')
 
 748                   . " $form->{invnumber} "
 
 749                   . $locale->text('posted!'));
 
 751   $form->error($locale->text('Cannot post invoice!'));
 
 753   $main::lxdebug->leave_sub();
 
 757   $main::lxdebug->enter_sub();
 
 759   my $form     = $main::form;
 
 760   my $locale   = $main::locale;
 
 762   $main::auth->assert('vendor_invoice_edit');
 
 768 <form method=post action=$form->{script}>
 
 771   # delete action variable
 
 772   map { delete $form->{$_} } qw(action header);
 
 774   foreach my $key (keys %$form) {
 
 775     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
 776     $form->{$key} =~ s/\"/"/g;
 
 777     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
 781 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
 784     . $locale->text('Are you sure you want to delete Invoice Number')
 
 785     . qq| $form->{invnumber}</h4>
 
 787 <input name=action class=submit type=submit value="|
 
 788     . $locale->text('Yes') . qq|">
 
 792   $main::lxdebug->leave_sub();
 
 796   $main::lxdebug->enter_sub();
 
 798   my $form     = $main::form;
 
 799   my %myconfig = %main::myconfig;
 
 800   my $locale   = $main::locale;
 
 802   $main::auth->assert('vendor_invoice_edit');
 
 804   if (IR->delete_invoice(\%myconfig, \%$form)) {
 
 806     if(!exists $form->{addition}) {
 
 807       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
 808       $form->{addition} = "DELETED";
 
 811     # /saving the history
 
 812     $form->redirect($locale->text('Invoice deleted!'));
 
 814   $form->error($locale->text('Cannot delete invoice!'));
 
 816   $main::lxdebug->leave_sub();
 
 819 sub get_duedate_vendor {
 
 820   $::lxdebug->enter_sub;
 
 822   my $result = IR->get_duedate(
 
 823     vendor_id => $::form->{vendor_id},
 
 824     invdate   => $::form->{invdate},
 
 825     default   => $::form->{old_duedate},
 
 828   print $::form->ajax_response_header, $result;
 
 829   $::lxdebug->leave_sub;