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