CVars: Lieferadressen-CVars bei Ein-/Verkaufsbelegen benutzen können
[kivitendo-erp.git] / bin / mozilla / is.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 invoicing module
31 #
32 #======================================================================
33
34 use SL::FU;
35 use SL::IS;
36 use SL::PE;
37 use SL::OE;
38 use Data::Dumper;
39 use DateTime;
40 use List::MoreUtils qw(uniq);
41 use List::Util qw(max sum);
42 use List::UtilsBy qw(sort_by);
43 use English qw(-no_match_vars);
44
45 use SL::DB::Default;
46 use SL::DB::Customer;
47 use SL::DB::PaymentTerm;
48
49 require "bin/mozilla/io.pl";
50 require "bin/mozilla/arap.pl";
51 require "bin/mozilla/drafts.pl";
52
53 use strict;
54
55 1;
56
57 # end of main
58
59 sub add {
60   $main::lxdebug->enter_sub();
61
62   my $form     = $main::form;
63   my $locale   = $main::locale;
64
65   $main::auth->assert('invoice_edit');
66
67   return $main::lxdebug->leave_sub() if (load_draft_maybe());
68
69   $form->{show_details} = $::myconfig{show_form_details};
70
71   if ($form->{type} eq "credit_note") {
72     $form->{title} = $locale->text('Add Credit Note');
73
74     if ($form->{storno}) {
75       $form->{title} = $locale->text('Add Storno Credit Note');
76     }
77   } else {
78     $form->{title} = $locale->text('Add Sales Invoice');
79
80   }
81
82
83   $form->{callback} = "$form->{script}?action=add&type=$form->{type}" unless $form->{callback};
84
85   &invoice_links;
86   &prepare_invoice;
87   &display_form;
88
89   $main::lxdebug->leave_sub();
90 }
91
92 sub edit {
93   $main::lxdebug->enter_sub();
94
95   my $form     = $main::form;
96   my $locale   = $main::locale;
97
98   $main::auth->assert('invoice_edit');
99
100   $form->{show_details}                = $::myconfig{show_form_details};
101   $form->{taxincluded_changed_by_user} = 1;
102
103   # show history button
104   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
105
106   my ($language_id, $printer_id);
107   if ($form->{print_and_post}) {
108     $form->{action}   = "print";
109     $form->{resubmit} = 1;
110     $language_id = $form->{language_id};
111     $printer_id = $form->{printer_id};
112   }
113
114   &invoice_links;
115   if ($form->{type} eq "credit_note") {
116     $form->{title} = $locale->text('Edit Credit Note');
117     $form->{title} = $locale->text('Edit Storno Credit Note') if $form->{storno};
118   } else {
119     $form->{title} = $locale->text('Edit Sales Invoice');
120     $form->{title} = $locale->text('Edit Storno Invoice')     if $form->{storno};
121   }
122
123   &prepare_invoice;
124   if ($form->{print_and_post}) {
125     $form->{language_id} = $language_id;
126     $form->{printer_id} = $printer_id;
127   }
128
129   &display_form;
130
131   $main::lxdebug->leave_sub();
132 }
133
134 sub invoice_links {
135   $main::lxdebug->enter_sub();
136
137   my $form     = $main::form;
138   my %myconfig = %main::myconfig;
139
140   $main::auth->assert('invoice_edit');
141
142   $form->{vc} = 'customer';
143
144   # create links
145   $form->create_links("AR", \%myconfig, "customer");
146
147   if ($form->{all_customer}) {
148     unless ($form->{customer_id}) {
149       $form->{customer_id} = $form->{all_customer}->[0]->{id};
150       $form->{salesman_id} = $form->{all_customer}->[0]->{salesman_id};
151     }
152   }
153
154   my $editing = $form->{id};
155
156   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id
157                         taxincluded currency cp_id intnotes id shipto_id
158                         delivery_term_id));
159
160   IS->get_customer(\%myconfig, \%$form);
161
162   #quote all_customer Bug 133
163   foreach my $ref (@{ $form->{all_customer} }) {
164     $ref->{name} = $form->quote($ref->{name});
165   }
166
167   $form->restore_vars(qw(id));
168
169   IS->retrieve_invoice(\%myconfig, \%$form);
170   $form->restore_vars(qw(payment_id language_id taxzone_id currency intnotes
171                          cp_id shipto_id delivery_term_id));
172   $form->restore_vars(qw(taxincluded)) if $form->{id};
173   $form->restore_vars(qw(salesman_id)) if $editing;
174
175
176   # build vendor/customer drop down compatibility... don't ask
177   if (@{ $form->{"all_customer"} }) {
178     $form->{"selectcustomer"} = 1;
179     $form->{customer}         = qq|$form->{customer}--$form->{"customer_id"}|;
180   }
181
182   $form->{"oldcustomer"}  = $form->{customer};
183
184   if ($form->{"oldcustomer"} !~ m/--\d+$/ && $form->{"customer_id"}) {
185     $form->{"oldcustomer"} .= qq|--$form->{"customer_id"}|
186   }
187
188
189 #  $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
190 #  $form->{selectcustomer} = 1;
191
192   $form->{employee} = "$form->{employee}--$form->{employee_id}";
193
194   # forex
195   $form->{forex} = $form->{exchangerate};
196   my $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
197
198   foreach my $key (keys %{ $form->{AR_links} }) {
199     foreach my $ref (@{ $form->{AR_links}{$key} }) {
200       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}</option>\n";
201     }
202
203     if ($key eq "AR_paid") {
204       next unless $form->{acc_trans}{$key};
205       for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
206         $form->{"AR_paid_$i"}      = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
207
208         $form->{"acc_trans_id_$i"}    = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
209         # reverse paid
210         $form->{"paid_$i"}         = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
211         $form->{"datepaid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
212         $form->{"gldate_$i"}       = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
213         $form->{"exchangerate_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
214         $form->{"forex_$i"}        = $form->{"exchangerate_$i"};
215         $form->{"source_$i"}       = $form->{acc_trans}{$key}->[$i - 1]->{source};
216         $form->{"memo_$i"}         = $form->{acc_trans}{$key}->[$i - 1]->{memo};
217
218         $form->{paidaccounts} = $i;
219       }
220     } else {
221       $form->{$key} = "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
222     }
223   }
224
225   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
226
227   $form->{AR} = $form->{AR_1} unless $form->{id};
228
229   $form->{locked} = ($form->datetonum($form->{invdate},  \%myconfig)
230                   <= $form->datetonum($form->{closedto}, \%myconfig));
231
232   $main::lxdebug->leave_sub();
233 }
234
235 sub prepare_invoice {
236   $main::lxdebug->enter_sub();
237
238   my $form     = $main::form;
239   my %myconfig = %main::myconfig;
240
241   $main::auth->assert('invoice_edit');
242
243   if ($form->{type} eq "credit_note") {
244     $form->{type}     = "credit_note";
245     $form->{formname} = "credit_note";
246   } else {
247     $form->{type}     = "invoice";
248     $form->{formname} = "invoice";
249   }
250
251   if ($form->{id}) {
252
253     my $i = 0;
254
255     foreach my $ref (@{ $form->{invoice_details} }) {
256       $i++;
257
258       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
259
260       $form->{"discount_$i"}   = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
261       my ($dec)                = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
262       $dec                     = length $dec;
263       my $decimalplaces        = ($dec > 2) ? $dec : 2;
264
265       $form->{"sellprice_$i"}  = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
266       (my $dec_qty)            = ($form->{"qty_$i"} =~ /\.(\d+)/);
267       $dec_qty                 = length $dec_qty;
268
269       $form->{"lastcost_$i"}  = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
270
271       $form->{"qty_$i"}        = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
272
273       $form->{"sellprice_pg_$i"} = join ('--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"});
274
275       $form->{rowcount}        = $i;
276
277     }
278   }
279   $main::lxdebug->leave_sub();
280 }
281
282 sub form_header {
283   $main::lxdebug->enter_sub();
284
285   my $form     = $main::form;
286   my %myconfig = %main::myconfig;
287   my $locale   = $main::locale;
288   my $cgi      = $::request->{cgi};
289
290   $main::auth->assert('invoice_edit');
291
292   my %TMPL_VAR = ();
293   my @custom_hiddens;
294
295   if ($form->{id}) {
296     require SL::DB::Invoice;
297     $TMPL_VAR{invoice_obj} = SL::DB::Invoice->new(id => $form->{id})->load;
298   }
299   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
300   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
301
302   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
303
304   $form->get_lists("taxzones"      => ($form->{id} ? "ALL_TAXZONES" : "ALL_ACTIVE_TAXZONES"),
305                    "currencies"    => "ALL_CURRENCIES",
306                    "customers"     => "ALL_CUSTOMERS",
307                    "departments"   => "all_departments",
308                    "price_factors" => "ALL_PRICE_FACTORS");
309
310   # Projects
311   my @old_project_ids = uniq grep { $_ } map { $_ * 1 } ($form->{"globalproject_id"}, map { $form->{"project_id_$_"} } 1..$form->{"rowcount"});
312   my @old_ids_cond    = @old_project_ids ? (id => \@old_project_ids) : ();
313   my @customer_cond;
314   if ($::instance_conf->get_customer_projects_only_in_sales) {
315     @customer_cond = (
316       or => [
317         customer_id          => $::form->{customer_id},
318         billable_customer_id => $::form->{customer_id},
319       ]);
320   }
321   my @conditions = (
322     or => [
323       and => [ active => 1, @customer_cond ],
324       @old_ids_cond,
325     ]);
326
327   $TMPL_VAR{ALL_PROJECTS}          = SL::DB::Manager::Project->get_all_sorted(query => \@conditions);
328   $form->{ALL_PROJECTS}            = $TMPL_VAR{ALL_PROJECTS}; # make projects available for second row drop-down in io.pl
329   $TMPL_VAR{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all_sorted(query => [ or => [ id => $::form->{employee_id},  deleted => 0 ] ]);
330   $TMPL_VAR{ALL_SALESMEN}          = SL::DB::Manager::Employee->get_all_sorted(query => [ or => [ id => $::form->{salesman_id},  deleted => 0 ] ]);
331   $TMPL_VAR{ALL_SHIPTO}            = SL::DB::Manager::Shipto->get_all_sorted(query => [
332     or => [ trans_id  => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
333   ]);
334   $TMPL_VAR{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all_sorted(query => [
335     or => [
336       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
337       and      => [
338         cp_cv_id => undef,
339         cp_id    => $::form->{cp_id} * 1
340       ]
341     ]
342   ]);
343   $TMPL_VAR{department_labels}     = sub { "$_[0]->{description}--$_[0]->{id}" };
344
345   # customer
346   $TMPL_VAR{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
347   $TMPL_VAR{vclimit} = $myconfig{vclimit};
348   $TMPL_VAR{vc_select} = "customer_or_vendor_selection_window('customer', '', 0, 0)";
349   push @custom_hiddens, "customer_id";
350   push @custom_hiddens, "oldcustomer";
351   push @custom_hiddens, "selectcustomer";
352
353   # currencies and exchangerate
354   my @values = map { $_       } @{ $form->{ALL_CURRENCIES} };
355   my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
356   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
357   $form->{show_exchangerate}   = $form->{currency} ne $form->{defaultcurrency};
358   $TMPL_VAR{currencies}        = NTI($::request->{cgi}->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
359                                                       '-values' => \@values, '-labels' => \%labels,
360                                                       '-onchange' => "document.getElementById('update_button').click();"
361                                      )) if scalar @values;
362   push @custom_hiddens, "forex";
363   push @custom_hiddens, "exchangerate" if $form->{forex};
364
365   $TMPL_VAR{creditwarning} = ($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update};
366   $TMPL_VAR{is_credit_remaining_negativ} = $form->{creditremaining} =~ /-/;
367
368   my $follow_up_vc         =  $form->{customer};
369   $follow_up_vc            =~ s/--\d*\s*$//;
370   $TMPL_VAR{customer_name} = $follow_up_vc;
371
372 # set option selected
373   foreach my $item (qw(AR)) {
374     $form->{"select$item"} =~ s/ selected//;
375     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
376   }
377
378   $TMPL_VAR{is_type_credit_note} = $form->{type}   eq "credit_note";
379   $TMPL_VAR{is_format_html}      = $form->{format} eq 'html';
380   $TMPL_VAR{dateformat}          = $myconfig{dateformat};
381   $TMPL_VAR{numberformat}        = $myconfig{numberformat};
382
383   push @custom_hiddens, map { "shiptocvar_" . $_->name } @{ SL::DB::Manager::CustomVariableConfig->get_all(where => [ module => 'ShipTo' ]) };
384
385   # hiddens
386   $TMPL_VAR{HIDDENS} = [qw(
387     id action type media format queued printed emailed title vc discount
388     title creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id
389     max_dunning_level dunning_amount dunning_description
390     shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptogln shiptocontact shiptophone shiptofax
391     shiptoemail shiptodepartment_1 shiptodepartment_2  shiptocp_gender message email subject cc bcc taxaccounts cursor_fokus
392     convert_from_do_ids convert_from_oe_ids convert_from_ar_ids useasnew
393     invoice_id
394     show_details
395   ), @custom_hiddens,
396   map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts}];
397
398   $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.SalesPurchase ckeditor/ckeditor ckeditor/adapters/jquery kivi.io autocomplete_customer autocomplete_part client_js));
399
400   $TMPL_VAR{payment_terms_obj} = get_payment_terms_for_invoice();
401   $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};
402
403   $form->header();
404
405   print $form->parse_html_template("is/form_header", \%TMPL_VAR);
406
407   $main::lxdebug->leave_sub();
408 }
409
410 sub _sort_payments {
411   my @fields   = qw(acc_trans_id gldate datepaid source memo paid AR_paid);
412   my @payments =
413     grep { $_->{paid} != 0 }
414     map  {
415       my $idx = $_;
416       +{ map { ($_ => delete($::form->{"${_}_${idx}"})) } @fields }
417     } (1..$::form->{paidaccounts});
418
419   @payments = sort_by { DateTime->from_kivitendo($_->{datepaid}) } @payments;
420
421   $::form->{paidaccounts} = max scalar(@payments), 1;
422
423   foreach my $idx (1 .. scalar(@payments)) {
424     my $payment = $payments[$idx - 1];
425     $::form->{"${_}_${idx}"} = $payment->{$_} for @fields;
426   }
427 }
428
429 sub form_footer {
430   $main::lxdebug->enter_sub();
431
432   my $form     = $main::form;
433   my %myconfig = %main::myconfig;
434   my $locale   = $main::locale;
435
436   $main::auth->assert('invoice_edit');
437
438   $form->{invtotal}    = $form->{invsubtotal};
439
440   # note rows
441   $form->{rows} = max 2,
442     $form->numtextrows($form->{notes},    26, 8),
443     $form->numtextrows($form->{intnotes}, 35, 8);
444
445
446   # tax, total and subtotal calculations
447   my ($tax, $subtotal);
448   $form->{taxaccounts_array} = [ split(/ /, $form->{taxaccounts}) ];
449
450   if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) {
451     my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
452     $form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
453   }
454
455   foreach my $item (@{ $form->{taxaccounts_array} }) {
456     if ($form->{"${item}_base"}) {
457       if ($form->{taxincluded}) {
458         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"}
459                                                                                  / (1 + $form->{"${item}_rate"})), 2);
460         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
461       } else {
462         $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
463         $form->{invtotal} += $form->{"${item}_total"};
464       }
465     }
466   }
467
468   $form->{rounding} = $form->round_amount(
469     $form->round_amount($form->{invtotal}, 2, 1) - $form->round_amount($form->{invtotal}, 2), 2
470   );
471   $form->{invtotal} = $form->round_amount( $form->{invtotal}, 2, 1 );
472
473   # follow ups
474   if ($form->{id}) {
475     $form->{follow_ups}            = FU->follow_ups('trans_id' => $form->{id}) || [];
476     $form->{follow_ups_unfinished} = ( sum map { $_->{due} * 1 } @{ $form->{follow_ups} } ) || 0;
477   }
478
479   # payments
480   _sort_payments();
481
482   my $totalpaid = 0;
483   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
484   $form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
485
486   # Standard Konto für Umlaufvermögen
487   my $accno_arap = IS->get_standard_accno_current_assets(\%myconfig, \%$form);
488
489   for my $i (1 .. $form->{paidaccounts}) {
490     $form->{"changeable_$i"} = 1;
491     if (SL::DB::Default->get->payments_changeable == 0) {
492       # never
493       $form->{"changeable_$i"} = ($form->{"acc_trans_id_$i"})? 0 : 1;
494     } elsif (SL::DB::Default->get->payments_changeable == 2) {
495       # on the same day
496       $form->{"changeable_$i"} = (($form->{"gldate_$i"} eq '') ||
497                                   ($form->current_date(\%myconfig) eq $form->{"gldate_$i"}));
498     }
499
500     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
501     if (!$form->{"AR_paid_$i"}) {
502       $form->{"selectAR_paid_$i"} =~ s/option>$accno_arap--(.*?)</option selected>$accno_arap--$1</;
503     } else {
504       $form->{"selectAR_paid_$i"} =~ s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
505     }
506
507     $totalpaid += $form->{"paid_$i"};
508   }
509
510   $form->{oldinvtotal} = $form->{invtotal};
511
512   $form->{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
513
514   print $form->parse_html_template('is/form_footer', {
515     is_type_credit_note => ($form->{type} eq "credit_note"),
516     totalpaid           => $totalpaid,
517     paid_missing        => $form->{invtotal} - $totalpaid,
518     print_options       => print_options(inline => 1),
519     show_storno         => $form->{id} && !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar") && !$totalpaid,
520     show_delete         => ($::instance_conf->get_is_changeable == 2)
521                              ? ($form->current_date(\%myconfig) eq $form->{gldate})
522                              : ($::instance_conf->get_is_changeable == 1),
523     today               => DateTime->today,
524   });
525 ##print $form->parse_html_template('is/_payments'); # parser
526 ##print $form->parse_html_template('webdav/_list'); # parser
527
528   $main::lxdebug->leave_sub();
529 }
530
531 sub mark_as_paid {
532   $main::lxdebug->enter_sub();
533
534   my $form     = $main::form;
535   my %myconfig = %main::myconfig;
536
537   $main::auth->assert('invoice_edit');
538
539   &mark_as_paid_common(\%myconfig,"ar");
540
541   $main::lxdebug->leave_sub();
542 }
543
544 sub update {
545   $main::lxdebug->enter_sub();
546
547   my $form     = $main::form;
548   my %myconfig = %main::myconfig;
549
550   $main::auth->assert('invoice_edit');
551
552   my ($recursive_call) = @_;
553
554   $form->{print_and_post} = 0         if $form->{second_run};
555   my $taxincluded         = $form->{taxincluded} ? "checked" : '';
556   $form->{update} = 1;
557
558   &check_name("customer");
559
560   $form->{taxincluded} ||= $taxincluded;
561
562   if (!$form->{forex}) {        # read exchangerate from input field (not hidden)
563     $form->{exchangerate} = $form->parse_amount(\%myconfig, $form->{exchangerate}) unless $recursive_call;
564   }
565   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'buy');
566   $form->{exchangerate} = $form->{forex} if $form->{forex};
567
568   for my $i (1 .. $form->{paidaccounts}) {
569     next unless $form->{"paid_$i"};
570     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
571     if (!$form->{"forex_$i"}) {   #read exchangerate from input field (not hidden)
572       $form->{exchangerate} = $form->{"exchangerate_$i"};
573     }
574     $form->{"forex_$i"}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
575     $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
576   }
577
578   my $i            = $form->{rowcount};
579   my $exchangerate = $form->{exchangerate} || 1;
580
581   # if last row empty, check the form otherwise retrieve new item
582   if (   ($form->{"partnumber_$i"} eq "")
583       && ($form->{"description_$i"} eq "")
584       && ($form->{"partsgroup_$i"}  eq "")) {
585
586     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
587     &check_form;
588
589   } else {
590
591     IS->retrieve_item(\%myconfig, \%$form);
592
593     my $rows = scalar @{ $form->{item_list} };
594
595     $form->{"discount_$i"}   = $form->parse_amount(\%myconfig, $form->{"discount_$i"}) / 100.0;
596     $form->{"discount_$i"} ||= $form->{customer_discount};
597
598     if ($rows) {
599       $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
600       if( !$form->{"qty_$i"} ) {
601         $form->{"qty_$i"} = 1;
602       }
603
604       if ($rows > 1) {
605
606         select_item(mode => 'IS', pre_entered_qty => $form->{"qty_$i"});
607         ::end_of_request();
608
609       } else {
610
611         my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
612
613         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g } qw(partnumber description unit);
614         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
615
616         $form->{payment_id}    = $form->{"part_payment_id_$i"} if $form->{"part_payment_id_$i"} ne "";
617         $form->{"discount_$i"} = 0                             if $form->{"not_discountable_$i"};
618
619         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
620
621         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
622         my $decimalplaces = max 2, length $1;
623
624         if ($sellprice) {
625           $form->{"sellprice_$i"} = $sellprice;
626         } else {
627           my $record        = _make_record();
628           my $price_source  = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
629           my $best_price    = $price_source->best_price;
630           my $best_discount = $price_source->best_discount;
631
632           if ($best_price) {
633             $::form->{"sellprice_$i"}           = $best_price->price;
634             $::form->{"active_price_source_$i"} = $best_price->source;
635           }
636           if ($best_discount) {
637             $::form->{"discount_$i"}               = $best_discount->discount;
638             $::form->{"active_discount_source_$i"} = $best_discount->source;
639           }
640
641           # if there is an exchange rate adjust sellprice
642           $form->{"sellprice_$i"} /= $exchangerate;
643         }
644
645         $form->{"listprice_$i"} /= $exchangerate;
646
647         my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"});
648         map { $form->{"${_}_base"} = 0 }                                 split / /, $form->{taxaccounts};
649         map { $form->{"${_}_base"} += $amount }                          split / /, $form->{"taxaccounts_$i"};
650         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{"taxaccounts_$i"} if !$form->{taxincluded};
651
652         $form->{creditremaining} -= $amount;
653
654         map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces) } qw(sellprice lastcost);
655
656         $form->{"qty_$i"}      = $form->format_amount(\%myconfig, $form->{"qty_$i"});
657         $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0);
658       }
659
660       &display_form;
661
662     } else {
663
664       # ok, so this is a new part
665       # ask if it is a part or service item
666
667       if (   $form->{"partsgroup_$i"}
668           && ($form->{"partsnumber_$i"} eq "")
669           && ($form->{"description_$i"} eq "")) {
670         $form->{rowcount}--;
671         $form->{"discount_$i"} = "";
672         display_form();
673
674       } else {
675         $form->{"id_$i"}   = 0;
676         new_item();
677       }
678     }
679   }
680   $main::lxdebug->leave_sub();
681 }
682
683 sub post_payment {
684   $main::lxdebug->enter_sub();
685
686   my $form     = $main::form;
687   my %myconfig = %main::myconfig;
688   my $locale   = $main::locale;
689
690   $main::auth->assert('invoice_edit');
691
692   $form->mtime_ischanged('ar') ;
693   my $invdate = $form->datetonum($form->{invdate}, \%myconfig);
694
695   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
696   for my $i (1 .. $form->{paidaccounts}) {
697     if ($form->{"paid_$i"}) {
698       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
699
700       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
701
702
703       if ($form->{currency} ne $form->{defaultcurrency}) {
704         $form->{"exchangerate_$i"} = $form->{exchangerate}
705           if ($invdate == $datepaid);
706         $form->isblank("exchangerate_$i",
707                        $locale->text('Exchangerate for payment missing!'));
708       }
709     }
710   }
711   # Abgeschlossene Zeiträume nur für den letzten (aktuellen) Zahlungseingang prüfen
712   # Details s.a. Bug 1502
713   # Das Problem ist jetzt, dass man Zahlungseingänge nachträglich ändern kann
714   # Wobei dies für Installationen die sowieso nicht mit Bücherkontrolle arbeiten keinen
715   # keinen Unterschied macht.
716   # Optimal wäre, wenn gegen einen Zeitstempel des Zahlungsfelds geprüft würde ...
717   # Das Problem hierbei ist, dass in IS.pm post_invoice IMMER alle Zahlungseingänge aus $form
718   # erneut gespeichert werden. Prinzipiell wäre es besser NUR die Änderungen des Rechnungs-
719   # belegs (neue Zahlung aber nichts anderes) zu speichern ...
720   # Vielleicht könnte man ähnlich wie bei Rechnung löschen verfahren
721   $form->error($locale->text('Cannot post payment for a closed period!'))
722     if ($form->date_closed($form->{"datepaid_$form->{paidaccounts}"}, \%myconfig));
723
724   ($form->{AR})      = split /--/, $form->{AR};
725   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
726   relink_accounts();
727   if ( IS->post_payment(\%myconfig, \%$form) ) {
728     $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
729     $form->{what_done} = 'invoice';
730     $form->{addition}  = "PAYMENT POSTED";
731     $form->save_history;
732     $form->redirect($locale->text('Payment posted!'))
733   } else {
734    $form->error($locale->text('Cannot post payment!'));
735   };
736
737   $main::lxdebug->leave_sub();
738 }
739
740 sub post {
741   $main::lxdebug->enter_sub();
742
743   my $form     = $main::form;
744   my %myconfig = %main::myconfig;
745   my $locale   = $main::locale;
746
747   $main::auth->assert('invoice_edit');
748   $form->mtime_ischanged('ar');
749
750   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
751   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
752   $form->isblank("customer", $locale->text('Customer missing!'));
753   $form->error($locale->text('Cannot post invoice for a closed period!'))
754         if ($form->date_closed($form->{"invdate"}, \%myconfig));
755
756   $form->{invnumber} =~ s/^\s*//g;
757   $form->{invnumber} =~ s/\s*$//g;
758
759   # if oldcustomer ne customer redo form
760   if (&check_name('customer')) {
761     &update;
762     ::end_of_request();
763   }
764
765   if ($myconfig{mandatory_departments} && !$form->{department_id}) {
766     $form->{saved_message} = $::locale->text('You have to specify a department.');
767     update();
768     exit;
769   }
770
771   if ($form->{second_run}) {
772     $form->{print_and_post} = 0;
773   }
774
775   remove_emptied_rows();
776   &validate_items;
777
778   my $closedto = $form->datetonum($form->{closedto}, \%myconfig);
779   my $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
780
781   $form->error($locale->text('Cannot post transaction above the maximum future booking date!'))
782     if ($form->date_max_future($invdate, \%myconfig));
783   $form->error($locale->text('Cannot post invoice for a closed period!'))
784     if ($invdate <= $closedto);
785
786   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
787     if ($form->{currency} ne $form->{defaultcurrency});
788
789   for my $i (1 .. $form->{paidaccounts}) {
790     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
791       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
792
793       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
794
795       $form->error($locale->text('Cannot post payment for a closed period!'))
796         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
797
798       if ($form->{currency} ne $form->{defaultcurrency}) {
799         $form->{"exchangerate_$i"} = $form->{exchangerate}
800           if ($invdate == $datepaid);
801         $form->isblank("exchangerate_$i",
802                        $locale->text('Exchangerate for payment missing!'));
803       }
804     }
805   }
806
807   ($form->{AR})        = split /--/, $form->{AR};
808   ($form->{AR_paid})   = split /--/, $form->{AR_paid};
809   $form->{storno}    ||= 0;
810
811   $form->{label} = $form->{type} eq 'credit_note' ? $locale->text('Credit Note') : $locale->text('Invoice');
812
813   $form->{id} = 0 if $form->{postasnew};
814
815   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
816   if ($form->{postasnew}) {
817     if ($form->{type} eq "credit_note") {
818       undef($form->{cnnumber});
819     } else {
820       undef($form->{invnumber});
821     }
822   }
823
824   relink_accounts();
825
826   my $terms        = get_payment_terms_for_invoice();
827   $form->{duedate} = $terms->calc_date(reference_date => $form->{invdate}, due_date => $form->{due_due})->to_kivitendo if $terms;
828
829   # If transfer_out is requested, get rose db handle and do post and
830   # transfer out in one transaction. Otherwise just post the invoice.
831   if ($::instance_conf->get_is_transfer_out && $form->{type} ne 'credit_note' && !$form->{storno}) {
832     require SL::DB::Inventory;
833     my $rose_db = SL::DB::Inventory->new->db;
834     my @errors;
835
836     if (!$rose_db->with_transaction(sub {
837       if (!eval {
838         if (!IS->post_invoice(\%myconfig, \%$form, $rose_db->dbh)) {
839           push @errors, $locale->text('Cannot post invoice!');
840           die 'posting error';
841         }
842         my $err = IS->transfer_out(\%$form, $rose_db->dbh);
843         if (@{ $err }) {
844           push @errors, @{ $err };
845           die 'transfer error';
846         }
847
848         1;
849       }) {
850         push @errors, $EVAL_ERROR;
851         die 'transaction error';
852       }
853
854       1;
855     })) {
856       push @errors, $rose_db->error;
857       $form->error($locale->text('Cannot post invoice and/or transfer out! Error message:') . "\n" . join("\n", @errors));
858     }
859   } else {
860     if (!IS->post_invoice(\%myconfig, \%$form)) {
861       $form->error($locale->text('Cannot post invoice!'));
862     }
863   }
864
865   remove_draft() if $form->{remove_draft};
866
867   if(!exists $form->{addition}) {
868     $form->{snumbers}  =  'invnumber' .'_'. $form->{invnumber}; # ($form->{type} eq 'credit_note' ? 'cnnumber' : 'invnumber') .'_'. $form->{invnumber};
869     $form->{what_done} = 'invoice';
870     $form->{addition}  = $form->{print_and_post} ? "PRINTED AND POSTED" :
871                          $form->{storno}         ? "STORNO"             :
872                                                    "POSTED";
873     $form->save_history;
874   }
875
876   if (!$form->{no_redirect_after_post}) {
877     $form->{action} = 'edit';
878     $form->{script} = 'is.pl';
879     $form->{saved_message} = $form->{label} . " $form->{invnumber} " . $locale->text('posted!');
880     $form->{callback} = build_std_url(qw(action edit id callback saved_message));
881     $form->redirect;
882   }
883
884   $main::lxdebug->leave_sub();
885 }
886
887 sub print_and_post {
888   $main::lxdebug->enter_sub();
889
890   my $form     = $main::form;
891
892   $main::auth->assert('invoice_edit');
893
894   my $old_form                    = Form->new;
895   $form->{no_redirect_after_post} = 1;
896   $form->{print_and_post}         = 1;
897   &post();
898
899   &edit();
900   $main::lxdebug->leave_sub();
901
902 }
903
904 sub use_as_new {
905   $main::lxdebug->enter_sub();
906
907   my $form     = $main::form;
908   my %myconfig = %main::myconfig;
909
910   $main::auth->assert('invoice_edit');
911
912   delete @{ $form }{qw(printed emailed queued invnumber invdate exchangerate forex deliverydate id datepaid_1 gldate_1 acc_trans_id_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno locked)};
913   $form->{rowcount}--;
914   $form->{paidaccounts} = 1;
915   $form->{invdate}      = $form->current_date(\%myconfig);
916   my $terms             = get_payment_terms_for_invoice();
917   $form->{duedate}      = $terms ? $terms->calc_date(reference_date => $form->{invdate})->to_kivitendo : $form->{invdate};
918   $form->{employee_id}  = SL::DB::Manager::Employee->current->id;
919   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'buy');
920   $form->{exchangerate} = $form->{forex} if $form->{forex};
921
922   $form->{"converted_from_invoice_id_$_"} = delete $form->{"invoice_id_$_"} for 1 .. $form->{"rowcount"};
923
924   $form->{useasnew} = 1;
925   &display_form;
926
927   $main::lxdebug->leave_sub();
928 }
929
930 sub storno {
931   $main::lxdebug->enter_sub();
932
933   my $form     = $main::form;
934   my %myconfig = %main::myconfig;
935   my $locale   = $main::locale;
936
937   $main::auth->assert('invoice_edit');
938
939   if ($form->{storno}) {
940     $form->error($locale->text('Cannot storno storno invoice!'));
941   }
942
943   if (IS->has_storno(\%myconfig, $form, "ar")) {
944     $form->error($locale->text("Invoice has already been storno'd!"));
945   }
946   if ($form->datetonum($form->{invdate},  \%myconfig) <= $form->datetonum($form->{closedto}, \%myconfig)) {
947     $form->error($locale->text('Cannot storno invoice for a closed period!'));
948   }
949
950   # save the history of invoice being stornoed
951   $form->{snumbers}  = qq|invnumber_| . $form->{invnumber};
952   $form->{what_done} = 'invoice';
953   $form->{addition}  = "STORNO";
954   $form->save_history;
955
956   map({ my $key = $_; delete($form->{$key}) unless (grep({ $key eq $_ } qw(id login password type))); } keys(%{ $form }));
957
958   invoice_links();
959   prepare_invoice();
960   relink_accounts();
961
962   # Payments must not be recorded for the new storno invoice.
963   $form->{paidaccounts} = 0;
964   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ gldate_ acc_trans_id_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
965
966   $form->{storno_id} = $form->{id};
967   $form->{storno} = 1;
968   $form->{id} = "";
969   $form->{invnumber} = "Storno zu " . $form->{invnumber};
970   $form->{invdate}   = DateTime->today->to_lxoffice;
971   $form->{rowcount}++;
972   # set new ids for storno invoice
973   delete $form->{"invoice_id_$_"} for 1 .. $form->{"rowcount"};
974
975   post();
976   $main::lxdebug->leave_sub();
977 }
978
979 sub preview {
980   $main::lxdebug->enter_sub();
981
982   my $form     = $main::form;
983
984   $main::auth->assert('invoice_edit');
985
986   $form->{preview} = 1;
987   my $old_form = Form->new;
988   for (keys %$form) { $old_form->{$_} = $form->{$_} }
989
990   &print_form($old_form);
991   $main::lxdebug->leave_sub();
992
993 }
994
995 sub delete {
996   $main::lxdebug->enter_sub();
997
998   my $form     = $main::form;
999   my $locale   = $main::locale;
1000
1001   $main::auth->assert('invoice_edit');
1002
1003   if ($form->{second_run}) {
1004     $form->{print_and_post} = 0;
1005   }
1006   $form->header;
1007
1008   print qq|
1009 <form method="post" action="$form->{script}">
1010 |;
1011
1012   # delete action variable
1013   map { delete $form->{$_} } qw(action header);
1014
1015   foreach my $key (keys %$form) {
1016     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
1017     $form->{$key} =~ s/\"/&quot;/g;
1018     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
1019   }
1020
1021   print qq|
1022 <h2 class="confirm">| . $locale->text('Confirm!') . qq|</h2>
1023
1024 <h4>|
1025     . $locale->text('Are you sure you want to delete Invoice Number')
1026     . qq| $form->{invnumber}
1027 </h4>
1028
1029 <p>
1030 <input name="action" class="submit" type="submit" value="|
1031     . $locale->text('Yes') . qq|">
1032 </form>
1033 |;
1034
1035   $main::lxdebug->leave_sub();
1036 }
1037
1038 sub credit_note {
1039   $main::lxdebug->enter_sub();
1040
1041   my $form     = $main::form;
1042   my %myconfig = %main::myconfig;
1043   my $locale   = $main::locale;
1044
1045   $main::auth->assert('invoice_edit');
1046
1047   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
1048   $form->{duedate} =
1049     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
1050
1051   $form->{convert_from_ar_ids} = $form->{id};
1052   $form->{id}     = '';
1053   $form->{rowcount}--;
1054
1055
1056   $form->{title}  = $locale->text('Add Credit Note');
1057   $form->{script} = 'is.pl';
1058
1059   # Bei Gutschriften bezug zur Rechnungsnummer
1060   $form->{invnumber_for_credit_note} = $form->{invnumber};
1061   # bo creates the id, reset it
1062   map { delete $form->{$_} }
1063     qw(id invnumber subject message cc bcc printed emailed queued);
1064   $form->{ $form->{vc} } =~ s/--.*//g;
1065   $form->{type} = "credit_note";
1066
1067
1068   map { $form->{"select$_"} = "" } ($form->{vc}, 'currency');
1069
1070 #  map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1071 #    qw(creditlimit creditremaining);
1072
1073   # set new persistent ids for credit note and link previous invoice id
1074   $form->{"converted_from_invoice_id_$_"} = delete $form->{"invoice_id_$_"} for 1 .. $form->{"rowcount"};
1075
1076   my $currency = $form->{currency};
1077   &invoice_links;
1078
1079   $form->{currency}     = $currency;
1080   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, 'buy');
1081   $form->{exchangerate} = $form->{forex} || '';
1082
1083   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
1084
1085   # bei Gutschriften werden Zahlungseingänge aus Rechnung nicht übernommen
1086   for my $i (1 .. $form->{paidaccounts}) {
1087     delete $form->{"paid_$i"};
1088     delete $form->{"source_$i"};
1089     delete $form->{"memo_$i"};
1090     delete $form->{"datepaid_$i"};
1091     delete $form->{"gldate_$i"};
1092     delete $form->{"acc_trans_id_$i"};
1093     delete $form->{"AR_paid_$i"};
1094   };
1095   $form->{paidaccounts} = 1;
1096
1097   &prepare_invoice;
1098
1099
1100   &display_form;
1101
1102   $main::lxdebug->leave_sub();
1103 }
1104
1105 sub display_form {
1106   $::lxdebug->enter_sub;
1107
1108   $::auth->assert('invoice_edit');
1109
1110   relink_accounts();
1111
1112   my $new_rowcount = $::form->{"rowcount"} * 1 + 1;
1113   $::form->{"project_id_${new_rowcount}"} = $::form->{"globalproject_id"};
1114
1115   $::form->language_payment(\%::myconfig);
1116
1117   Common::webdav_folder($::form);
1118
1119   form_header();
1120   display_row(++$::form->{rowcount});
1121   form_footer();
1122
1123   $::lxdebug->leave_sub;
1124 }
1125
1126 sub yes {
1127   $main::lxdebug->enter_sub();
1128
1129   my $form     = $main::form;
1130   my %myconfig = %main::myconfig;
1131   my $locale   = $main::locale;
1132
1133   $main::auth->assert('invoice_edit');
1134
1135   if (IS->delete_invoice(\%myconfig, \%$form)) {
1136     # saving the history
1137     if(!exists $form->{addition}) {
1138       $form->{snumbers}  = 'invnumber' .'_'. $form->{invnumber}; # ($form->{type} eq 'credit_note' ? 'cnnumber' : 'invnumber') .'_'. $form->{invnumber};
1139       $form->{what_done} = 'invoice';
1140       $form->{addition}  = "DELETED";
1141       $form->save_history;
1142     }
1143     # /saving the history
1144     $form->redirect($locale->text('Invoice deleted!'));
1145   }
1146   $form->error($locale->text('Cannot delete invoice!'));
1147
1148   $main::lxdebug->leave_sub();
1149 }
1150
1151 sub post_and_e_mail {
1152   e_mail();
1153 };
1154
1155 sub e_mail {
1156   $main::lxdebug->enter_sub();
1157
1158   my $form     = $main::form;
1159
1160   $main::auth->assert('invoice_edit');
1161
1162   if (!$form->{id}) {
1163     $form->{no_redirect_after_post} = 1;
1164
1165     my $saved_form = save_form();
1166
1167     post();
1168
1169     restore_form($saved_form, 0, qw(id invnumber));
1170   }
1171
1172   edit_e_mail();
1173
1174   $main::lxdebug->leave_sub();
1175 }