persistente ids für invoice (items)
[kivitendo-erp.git] / bin / mozilla / ir.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger, Accounting
9 # Copyright (c) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
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.
20 #
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 #======================================================================
29 #
30 # Inventory received module
31 #
32 #======================================================================
33
34 use SL::FU;
35 use SL::IR;
36 use SL::IS;
37 use SL::PE;
38 use SL::DB::Default;
39 use List::Util qw(max sum);
40
41 require "bin/mozilla/io.pl";
42 require "bin/mozilla/invoice_io.pl";
43 require "bin/mozilla/arap.pl";
44 require "bin/mozilla/common.pl";
45 require "bin/mozilla/drafts.pl";
46
47 use strict;
48
49 1;
50
51 # end of main
52
53 sub add {
54   $main::lxdebug->enter_sub();
55
56   my $form     = $main::form;
57   my $locale   = $main::locale;
58
59   $main::auth->assert('vendor_invoice_edit');
60
61   if (!$::instance_conf->get_allow_new_purchase_invoice) {
62     $::form->show_generic_error($::locale->text("You do not have the permissions to access this function."));
63   }
64
65   return $main::lxdebug->leave_sub() if (load_draft_maybe());
66
67   $form->{title} = $locale->text('Record Vendor Invoice');
68
69   &invoice_links;
70   &prepare_invoice;
71   &display_form;
72
73   $main::lxdebug->leave_sub();
74 }
75
76 sub edit {
77   $main::lxdebug->enter_sub();
78
79   my $form     = $main::form;
80   my $locale   = $main::locale;
81
82   $main::auth->assert('vendor_invoice_edit');
83
84   # show history button
85   $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
86   #/show hhistory button
87
88   $form->{title} = $locale->text('Edit Vendor Invoice');
89
90   &invoice_links;
91   &prepare_invoice;
92   &display_form;
93
94   $main::lxdebug->leave_sub();
95 }
96
97 sub invoice_links {
98   $main::lxdebug->enter_sub();
99
100   my $form     = $main::form;
101   my %myconfig = %main::myconfig;
102
103   $main::auth->assert('vendor_invoice_edit');
104
105   $form->{vc} = 'vendor';
106
107   # create links
108   $form->{webdav}   = $::instance_conf->get_webdav;
109
110   $form->create_links("AP", \%myconfig, "vendor");
111
112   #quote all_vendor Bug 133
113   foreach my $ref (@{ $form->{all_vendor} }) {
114     $ref->{name} = $form->quote($ref->{name});
115   }
116
117   if ($form->{all_vendor}) {
118     unless ($form->{vendor_id}) {
119       $form->{vendor_id} = $form->{all_vendor}->[0]->{id};
120     }
121   }
122
123   $form->backup_vars(qw(payment_id language_id taxzone_id
124                         currency delivery_term_id intnotes cp_id));
125
126   IR->get_vendor(\%myconfig, \%$form);
127   IR->retrieve_invoice(\%myconfig, \%$form);
128
129   $form->restore_vars(qw(payment_id language_id taxzone_id
130                          currency delivery_term_id intnotes cp_id));
131
132   my @curr = $form->get_all_currencies();
133   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
134
135   $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
136
137   # build vendor/customer drop down comatibility... don't ask
138   if (@{ $form->{"all_vendor"} || [] }) {
139     $form->{"selectvendor"} = 1;
140     $form->{vendor}         = qq|$form->{vendor}--$form->{vendor_id}|;
141   }
142
143   # departments
144   if ($form->{all_departments}) {
145     $form->{selectdepartment} = "<option>\n";
146     $form->{department}       = "$form->{department}--$form->{department_id}";
147
148     map {
149       $form->{selectdepartment} .=
150         "<option>$_->{description}--$_->{id}\n"
151     } (@{ $form->{all_departments} || [] });
152   }
153
154   # forex
155   $form->{forex} = $form->{exchangerate};
156   my $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
157
158   foreach my $key (keys %{ $form->{AP_links} }) {
159
160     foreach my $ref (@{ $form->{AP_links}{$key} }) {
161       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}</option>";
162     }
163
164     next unless $form->{acc_trans}{$key};
165
166     if ($key eq "AP_paid") {
167       for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
168         $form->{"AP_paid_$i"} =
169           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
170
171         $form->{"acc_trans_id_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
172         # reverse paid
173         $form->{"paid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{amount};
174         $form->{"datepaid_$i"} =
175           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
176         $form->{"gldate_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
177         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
178           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
179         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
180         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
181
182         $form->{paidaccounts} = $i;
183       }
184     } else {
185       $form->{$key} =
186         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
187     }
188
189   }
190
191   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
192
193   $form->{AP} = $form->{AP_1} unless $form->{id};
194
195   $form->{locked} =
196     ($form->datetonum($form->{invdate}, \%myconfig) <=
197      $form->datetonum($form->{closedto}, \%myconfig));
198
199   $main::lxdebug->leave_sub();
200 }
201
202 sub prepare_invoice {
203   $main::lxdebug->enter_sub();
204
205   my $form     = $main::form;
206   my %myconfig = %main::myconfig;
207
208   $main::auth->assert('vendor_invoice_edit');
209
210   $form->{type}     = "purchase_invoice";
211
212   if ($form->{id}) {
213
214     map { $form->{$_} =~ s/\"/&quot;/g } qw(invnumber ordnumber quonumber);
215
216     my $i = 0;
217     foreach my $ref (@{ $form->{invoice_details} }) {
218       $i++;
219       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
220       # übernommen aus is.pl Fix für Bug 1642. Nebenwirkungen? jb 12.5.2011
221       # getestet: Lieferantenauftrag -> Rechnung i.O.
222       #           Lieferantenauftrag -> Lieferschein -> Rechnung i.O.
223       # Werte: 20% (Lieferantenrabatt), 12,4% individuell und 0,4 individuell s.a.
224       # Screenshot zu Bug 1642
225       $form->{"discount_$i"}   = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
226
227       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
228       $dec           = length $dec;
229       my $decimalplaces = ($dec > 2) ? $dec : 2;
230
231       $form->{"sellprice_$i"} =
232         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
233                              $decimalplaces);
234
235       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
236       $dec_qty = length $dec_qty;
237
238       $form->{"qty_$i"} =
239         $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1), $dec_qty);
240
241       $form->{rowcount} = $i;
242     }
243   }
244
245   $main::lxdebug->leave_sub();
246 }
247
248 sub form_header {
249   $main::lxdebug->enter_sub();
250
251   my $form     = $main::form;
252   my %myconfig = %main::myconfig;
253   my $locale   = $main::locale;
254   my $cgi      = $::request->{cgi};
255
256   $main::auth->assert('vendor_invoice_edit');
257
258   my %TMPL_VAR = ();
259   my @custom_hiddens;
260
261   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
262   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
263
264   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
265
266   my @old_project_ids = ($form->{"globalproject_id"});
267   map { push @old_project_ids, $form->{"project_id_$_"} if $form->{"project_id_$_"}; } 1..$form->{"rowcount"};
268
269   $form->get_lists("projects"      => { "key"    => "ALL_PROJECTS",
270                                         "all"    => 0,
271                                         "old_id" => \@old_project_ids },
272                    "taxzones"      => "ALL_TAXZONES",
273                    "currencies"    => "ALL_CURRENCIES",
274                    "vendors"       => "ALL_VENDORS",
275                    "departments"   => "all_departments",
276                    "price_factors" => "ALL_PRICE_FACTORS");
277
278   $TMPL_VAR{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all_sorted(query => [ or => [ id => $::form->{employee_id},  deleted => 0 ] ]);
279   $TMPL_VAR{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all_sorted(query => [
280     or => [
281       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
282       and      => [
283         cp_cv_id => undef,
284         cp_id    => $::form->{cp_id} * 1
285       ]
286     ]
287   ]);
288   $TMPL_VAR{department_labels}     = sub { "$_[0]->{description}--$_[0]->{id}" };
289
290   # customer
291   $TMPL_VAR{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
292   $TMPL_VAR{vclimit} = $myconfig{vclimit};
293   $TMPL_VAR{vc_select} = "customer_or_vendor_selection_window('vendor', '', 1, 0)";
294   push @custom_hiddens, "vendor_id";
295   push @custom_hiddens, "oldvendor";
296   push @custom_hiddens, "selectvendor";
297
298   # currencies and exchangerate
299   my @values = map { $_       } @{ $form->{ALL_CURRENCIES} };
300   my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
301   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
302   # show_exchangerate is also later needed in another template
303   $form->{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
304   $TMPL_VAR{currencies}        = NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
305                                                       '-values' => \@values, '-labels' => \%labels,
306                                                       '-onchange' => "document.getElementById('update_button').click();"
307                                      )) if scalar @values;
308   push @custom_hiddens, "forex";
309   push @custom_hiddens, "exchangerate" if $form->{forex};
310
311   $TMPL_VAR{creditwarning} = ($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update};
312   $TMPL_VAR{is_credit_remaining_negativ} = $form->{creditremaining} =~ /-/;
313
314   my $follow_up_vc         =  $form->{vendor};
315   $follow_up_vc            =~ s/--\d*\s*$//;
316   $TMPL_VAR{vendor_name} = $follow_up_vc;
317
318 # set option selected
319   foreach my $item (qw(AP)) {
320     $form->{"select$item"} =~ s/ selected//;
321     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
322   }
323
324   $TMPL_VAR{is_type_credit_note} = $form->{type}   eq "credit_note";
325   $TMPL_VAR{is_format_html}      = $form->{format} eq 'html';
326   $TMPL_VAR{dateformat}          = $myconfig{dateformat};
327   $TMPL_VAR{numberformat}        = $myconfig{numberformat};
328
329   # hiddens
330   $TMPL_VAR{HIDDENS} = [qw(
331     id action type media format queued printed emailed title vc discount
332     title creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id
333     max_dunning_level dunning_amount
334     shiptoname shiptostreet shiptozipcode shiptocity shiptocountry  shiptocontact shiptophone shiptofax
335     shiptoemail shiptodepartment_1 shiptodepartment_2 message email subject cc bcc taxaccounts cursor_fokus
336     convert_from_do_ids convert_from_oe_ids show_details gldate
337   ), @custom_hiddens,
338   map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts}];
339
340   $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.SalesPurchase ckeditor/ckeditor ckeditor/adapters/jquery kivi.io autocomplete_customer autocomplete_part));
341
342   $form->header();
343
344   print $form->parse_html_template("ir/form_header", \%TMPL_VAR);
345
346   $main::lxdebug->leave_sub();
347 }
348
349 sub form_footer {
350   $main::lxdebug->enter_sub();
351
352   my $form     = $main::form;
353   my %myconfig = %main::myconfig;
354   my $locale   = $main::locale;
355
356   $main::auth->assert('vendor_invoice_edit');
357
358   $form->{invtotal}    = $form->{invsubtotal};
359   $form->{oldinvtotal} = $form->{invtotal};
360
361   # note rows
362   $form->{rows} = max 2,
363     $form->numtextrows($form->{notes},    26, 8),
364     $form->numtextrows($form->{intnotes}, 35, 8);
365
366
367   # tax, total and subtotal calculations
368   my ($tax, $subtotal);
369   $form->{taxaccounts_array} = [ split / /, $form->{taxaccounts} ];
370
371   foreach my $item (@{ $form->{taxaccounts_array} }) {
372     if ($form->{"${item}_base"}) {
373       if ($form->{taxincluded}) {
374         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"}
375                                                                                  / (1 + $form->{"${item}_rate"})), 2);
376         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
377       } else {
378         $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
379         $form->{invtotal} += $form->{"${item}_total"};
380       }
381     }
382   }
383
384   # follow ups
385   if ($form->{id}) {
386     $form->{follow_ups}            = FU->follow_ups('trans_id' => $form->{id}) || [];
387     $form->{follow_ups_unfinished} = ( sum map { $_->{due} * 1 } @{ $form->{follow_ups} } ) || 0;
388   }
389
390   # payments
391   my $totalpaid = 0;
392   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
393   $form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
394
395   # Standard Konto für Umlaufvermögen
396   my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
397
398   for my $i (1 .. $form->{paidaccounts}) {
399     $form->{"changeable_$i"} = 1;
400     if (SL::DB::Default->get->payments_changeable == 0) {
401       # never
402       $form->{"changeable_$i"} = ($form->{"acc_trans_id_$i"})? 0 : 1;
403     } elsif (SL::DB::Default->get->payments_changeable == 2) {
404       # on the same day
405       $form->{"changeable_$i"} = (($form->{"gldate_$i"} eq '') ||
406                                   ($form->current_date(\%myconfig) eq $form->{"gldate_$i"}));
407     }
408
409     $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
410     if (!$form->{"AP_paid_$i"}) {
411       $form->{"selectAP_paid_$i"} =~ s/option>$accno_arap--(.*?)>/option selected>$accno_arap--$1>/;
412     } else {
413       $form->{"selectAP_paid_$i"} =~ s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
414     }
415
416     $totalpaid += $form->{"paid_$i"};
417   }
418
419   $form->{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
420
421   print $form->parse_html_template('ir/form_footer', {
422     is_type_credit_note => ($form->{type} eq "credit_note"),
423     totalpaid           => $totalpaid,
424     paid_missing        => $form->{invtotal} - $totalpaid,
425     show_storno         => $form->{id} && !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ap") && !$totalpaid,
426     show_delete         => ($::instance_conf->get_ir_changeable == 2)
427                              ? ($form->current_date(\%myconfig) eq $form->{gldate})
428                              : ($::instance_conf->get_ir_changeable == 1),
429   });
430 ##print $form->parse_html_template('ir/_payments'); # parser
431 ##print $form->parse_html_template('webdav/_list'); # parser
432
433   $main::lxdebug->leave_sub();
434 }
435
436 sub mark_as_paid {
437   $main::lxdebug->enter_sub();
438
439   my $form     = $main::form;
440   my %myconfig = %main::myconfig;
441
442   $main::auth->assert('vendor_invoice_edit');
443
444   &mark_as_paid_common(\%myconfig,"ap");
445
446   $main::lxdebug->leave_sub();
447 }
448
449 sub update {
450   $main::lxdebug->enter_sub();
451
452   my $form     = $main::form;
453   my %myconfig = %main::myconfig;
454
455   $main::auth->assert('vendor_invoice_edit');
456
457   &check_name('vendor');
458
459   if (!$form->{forex}) {        # read exchangerate from input field (not hidden)
460     $form->{exchangerate} = $form->parse_amount(\%myconfig, $form->{exchangerate});
461   }
462   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'sell');
463   $form->{exchangerate} = $form->{forex} if $form->{forex};
464
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"};
470   }
471
472   my $i            = $form->{rowcount};
473   my $exchangerate = ($form->{exchangerate} * 1) || 1;
474
475   if (   ($form->{"partnumber_$i"} eq "")
476       && ($form->{"description_$i"} eq "")
477       && ($form->{"partsgroup_$i"} eq "")) {
478     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
479     &check_form;
480
481   } else {
482
483     IR->retrieve_item(\%myconfig, \%$form);
484
485     my $rows = scalar @{ $form->{item_list} };
486
487     if ($rows) {
488       $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
489
490       if ($rows > 1) {
491
492         select_item(mode => 'IR');
493         ::end_of_request();
494
495       } else {
496
497         # override sellprice if there is one entered
498         my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
499
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/\"/&quot;/g } qw(partnumber description unit);
503         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
504
505         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
506
507         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
508         my $dec_qty       = length $1;
509         my $decimalplaces = max 2, $dec_qty;
510
511         if ($sellprice) {
512           $form->{"sellprice_$i"} = $sellprice;
513         } else {
514           my $record        = _make_record();
515           my $price_source  = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
516           my $best_price    = $price_source->best_price;
517           my $best_discount = $price_source->best_discount;
518
519           if ($best_price) {
520             $::form->{"sellprice_$i"}           = $best_price->price;
521             $::form->{"active_price_source_$i"} = $best_price->source;
522           }
523           if ($best_discount) {
524             $::form->{"discount_$i"}               = $best_discount->discount;
525             $::form->{"active_discount_source_$i"} = $best_discount->source;
526           }
527
528           # if there is an exchange rate adjust sellprice
529           $form->{"sellprice_$i"} /= $exchangerate;
530         }
531
532         my $amount                   = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"} / 100);
533         $form->{creditremaining} -= $amount;
534         $form->{"sellprice_$i"}   = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
535         $form->{"qty_$i"}         = $form->format_amount(\%myconfig, $form->{"qty_$i"},       $dec_qty);
536       }
537
538       &display_form;
539
540     } else {
541
542       # ok, so this is a new part
543       # ask if it is a part or service item
544
545       if (   $form->{"partsgroup_$i"}
546           && ($form->{"partsnumber_$i"} eq "")
547           && ($form->{"description_$i"} eq "")) {
548         $form->{rowcount}--;
549         $form->{"discount_$i"} = "";
550         display_form();
551
552       } else {
553         $form->{"id_$i"}   = 0;
554         new_item();
555       }
556     }
557   }
558   $main::lxdebug->leave_sub();
559 }
560
561 sub storno {
562   $main::lxdebug->enter_sub();
563
564   my $form     = $main::form;
565   my %myconfig = %main::myconfig;
566   my $locale   = $main::locale;
567
568   $main::auth->assert('vendor_invoice_edit');
569
570   if ($form->{storno}) {
571     $form->error($locale->text('Cannot storno storno invoice!'));
572   }
573
574   if (IS->has_storno(\%myconfig, $form, "ap")) {
575     $form->error($locale->text("Invoice has already been storno'd!"));
576   }
577
578   $form->error($locale->text('Cannot post storno for a closed period!'))
579     if ( $form->date_closed($form->{invdate}, \%myconfig));
580
581   my $employee_id = $form->{employee_id};
582   invoice_links();
583   prepare_invoice();
584   relink_accounts();
585
586   # Payments must not be recorded for the new storno invoice.
587   $form->{paidaccounts} = 0;
588   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ gldate_ acc_trans_id_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
589   # set new ids for storno invoice
590   delete $form->{"invoice_id_$_"} for 1 .. $form->{"rowcount"};
591
592   # saving the history
593   if(!exists $form->{addition} && $form->{id} ne "") {
594     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
595     $form->{addition} = "CANCELED";
596     $form->save_history;
597   }
598   # /saving the history
599
600   $form->{storno_id} = $form->{id};
601   $form->{storno} = 1;
602   $form->{id} = "";
603   $form->{invnumber} = "Storno zu " . $form->{invnumber};
604   $form->{rowcount}++;
605   $form->{employee_id} = $employee_id;
606   post();
607   $main::lxdebug->leave_sub();
608
609 }
610
611 sub use_as_new {
612   $main::lxdebug->enter_sub();
613
614   my $form     = $main::form;
615   my %myconfig = %main::myconfig;
616
617   $main::auth->assert('vendor_invoice_edit');
618
619   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);
620   $form->{paidaccounts} = 1;
621   $form->{rowcount}--;
622   $form->{invdate} = $form->current_date(\%myconfig);
623   delete $form->{"invoice_id_$_"} for 1 .. $form->{"rowcount"};
624   &display_form;
625
626   $main::lxdebug->leave_sub();
627 }
628
629 sub post_payment {
630   $main::lxdebug->enter_sub();
631
632   my $form     = $main::form;
633   my %myconfig = %main::myconfig;
634   my $locale   = $main::locale;
635
636   $main::auth->assert('vendor_invoice_edit');
637
638   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
639   for my $i (1 .. $form->{paidaccounts}) {
640     if ($form->{"paid_$i"}) {
641       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
642
643       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
644
645       $form->error($locale->text('Cannot post payment for a closed period!'))
646         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
647
648       if ($form->{currency} ne $form->{defaultcurrency}) {
649 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid); # invdate isn't set here
650         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
651       }
652     }
653   }
654
655   ($form->{AP})      = split /--/, $form->{AP};
656   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
657   if (IR->post_payment(\%myconfig, \%$form)){
658     if (!exists $form->{addition} && $form->{id} ne "") {
659       # saving the history
660       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
661       $form->{addition} = "PAYMENT POSTED";
662       $form->{what_done} = $form->{currency} . qq| | . $form->{paid} . qq| | . $locale->text("POSTED");
663       $form->save_history;
664       # /saving the history
665     }
666
667     $form->redirect($locale->text('Payment posted!'));
668   }
669
670   $form->error($locale->text('Cannot post payment!'));
671
672   $main::lxdebug->leave_sub();
673 }
674
675 sub _max_datepaid {
676   my $form  =  $main::form;
677
678   my @dates = sort { $b->[1] cmp $a->[1] }
679               map  { [ $_, $main::locale->reformat_date(\%main::myconfig, $_, 'yyyy-mm-dd') ] }
680               grep { $_ }
681               map  { $form->{"datepaid_${_}"} }
682               (1..$form->{rowcount});
683
684   return @dates ? $dates[0]->[0] : undef;
685 }
686
687
688 sub post {
689   $main::lxdebug->enter_sub();
690
691   my $form     = $main::form;
692   my %myconfig = %main::myconfig;
693   my $locale   = $main::locale;
694
695   $main::auth->assert('vendor_invoice_edit');
696
697   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
698
699   $form->isblank("invdate",   $locale->text('Invoice Date missing!'));
700   $form->isblank("vendor",    $locale->text('Vendor missing!'));
701   $form->isblank("invnumber", $locale->text('Invnumber missing!'));
702
703   $form->{invnumber} =~ s/^\s*//g;
704   $form->{invnumber} =~ s/\s*$//g;
705
706   # if the vendor changed get new values
707   if (&check_name('vendor')) {
708     &update;
709     ::end_of_request();
710   }
711
712   if ($myconfig{mandatory_departments} && !$form->{department_id}) {
713     $form->{saved_message} = $::locale->text('You have to specify a department.');
714     update();
715     exit;
716   }
717
718   remove_emptied_rows();
719   &validate_items;
720
721   my $closedto     = $form->datetonum($form->{closedto}, \%myconfig);
722   my $invdate      = $form->datetonum($form->{invdate},  \%myconfig);
723   my $max_datepaid = _max_datepaid();
724
725   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
726     if ($form->date_max_future($invdate, \%myconfig));
727   $form->error($locale->text('Cannot post invoice for a closed period!'))
728     if ($invdate <= $closedto);
729
730   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
731     if ($form->{currency} ne $form->{defaultcurrency});
732
733   my $i;
734   for $i (1 .. $form->{paidaccounts}) {
735     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
736       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
737
738       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
739
740       $form->error($locale->text('Cannot post payment for a closed period!'))
741         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
742
743       if ($form->{currency} ne $form->{defaultcurrency}) {
744         $form->{"exchangerate_$i"} = $form->{exchangerate}
745           if ($invdate == $datepaid);
746         $form->isblank("exchangerate_$i",
747                        $locale->text('Exchangerate for payment missing!'));
748       }
749     }
750   }
751
752   ($form->{AP})      = split /--/, $form->{AP};
753   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
754   $form->{storno}  ||= 0;
755
756   $form->{id} = 0 if $form->{postasnew};
757
758
759   relink_accounts();
760   if (IR->post_invoice(\%myconfig, \%$form)){
761     # saving the history
762     if(!exists $form->{addition} && $form->{id} ne "") {
763       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
764       $form->{addition} = "POSTED";
765       #$form->{what_done} = $locale->text("Rechnungsnummer") . qq| | . $form->{invnumber};
766       $form->save_history;
767     }
768     # /saving the history
769     remove_draft() if $form->{remove_draft};
770     $form->redirect(  $locale->text('Invoice')
771                   . " $form->{invnumber} "
772                   . $locale->text('posted!'));
773   }
774   $form->error($locale->text('Cannot post invoice!'));
775
776   $main::lxdebug->leave_sub();
777 }
778
779 sub delete {
780   $main::lxdebug->enter_sub();
781
782   my $form     = $main::form;
783   my $locale   = $main::locale;
784
785   $main::auth->assert('vendor_invoice_edit');
786
787   $form->header;
788   print qq|
789 <form method=post action=$form->{script}>
790 |;
791
792   # delete action variable
793   map { delete $form->{$_} } qw(action header);
794
795   foreach my $key (keys %$form) {
796     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
797     $form->{$key} =~ s/\"/&quot;/g;
798     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
799   }
800
801   print qq|
802 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
803
804 <h4>|
805     . $locale->text('Are you sure you want to delete Invoice Number')
806     . qq| $form->{invnumber}</h4>
807 <p>
808 <input name=action class=submit type=submit value="|
809     . $locale->text('Yes') . qq|">
810 </form>
811 |;
812
813   $main::lxdebug->leave_sub();
814 }
815
816 sub yes {
817   $main::lxdebug->enter_sub();
818
819   my $form     = $main::form;
820   my %myconfig = %main::myconfig;
821   my $locale   = $main::locale;
822
823   $main::auth->assert('vendor_invoice_edit');
824
825   if (IR->delete_invoice(\%myconfig, \%$form)) {
826     # saving the history
827     if(!exists $form->{addition}) {
828       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
829       $form->{addition} = "DELETED";
830       $form->save_history;
831     }
832     # /saving the history
833     $form->redirect($locale->text('Invoice deleted!'));
834   }
835   $form->error($locale->text('Cannot delete invoice!'));
836
837   $main::lxdebug->leave_sub();
838 }
839
840 sub get_duedate_vendor {
841   $::lxdebug->enter_sub;
842
843   my $result = IR->get_duedate(
844     vendor_id => $::form->{vendor_id},
845     invdate   => $::form->{invdate},
846     default   => $::form->{old_duedate},
847   );
848
849   print $::form->ajax_response_header, $result;
850   $::lxdebug->leave_sub;
851 }