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