258e620489720dfb3664e55517e7539ba4e14aa8
[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 Data::Dumper;
38 use List::Util qw(max sum);
39
40 require "bin/mozilla/io.pl";
41 require "bin/mozilla/invoice_io.pl";
42 require "bin/mozilla/arap.pl";
43 require "bin/mozilla/drafts.pl";
44
45 use strict;
46
47 my $edit;
48 my $payment;
49 my $print_post;
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   # show history button
97   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
98   #/show hhistory button
99
100   if ($form->{type} eq "credit_note") {
101     $form->{title} = $locale->text('Edit Credit Note');
102     $form->{title} = $locale->text('Edit Storno Credit Note') if $form->{storno};
103   } else {
104     $form->{title} = $locale->text('Edit Sales Invoice');
105     $form->{title} = $locale->text('Edit Storno Invoice')     if $form->{storno};
106   }
107
108   my ($language_id, $printer_id);
109   if ($form->{print_and_post}) {
110     $form->{action}   = "print";
111     $form->{resubmit} = 1;
112     $language_id = $form->{language_id};
113     $printer_id = $form->{printer_id};
114   }
115   &invoice_links;
116   &prepare_invoice;
117   if ($form->{print_and_post}) {
118     $form->{language_id} = $language_id;
119     $form->{printer_id} = $printer_id;
120   }
121
122   &display_form;
123
124   $main::lxdebug->leave_sub();
125 }
126
127 sub invoice_links {
128   $main::lxdebug->enter_sub();
129
130   my $form     = $main::form;
131   my %myconfig = %main::myconfig;
132
133   $main::auth->assert('invoice_edit');
134
135   $form->{vc} = 'customer';
136
137   # create links
138   $form->{webdav}   = $main::webdav;
139   $form->{lizenzen} = $main::lizenzen;
140
141   $form->create_links("AR", \%myconfig, "customer");
142
143   if ($form->{all_customer}) {
144     unless ($form->{customer_id}) {
145       $form->{customer_id} = $form->{all_customer}->[0]->{id};
146       $form->{salesman_id} = $form->{all_customer}->[0]->{salesman_id};
147     }
148   }
149
150   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes id shipto_id));
151
152   IS->get_customer(\%myconfig, \%$form);
153
154   #quote all_customer Bug 133
155   foreach my $ref (@{ $form->{all_customer} }) {
156     $ref->{name} = $form->quote($ref->{name});
157   }
158
159   $form->restore_vars(qw(id));
160
161   IS->retrieve_invoice(\%myconfig, \%$form);
162   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id shipto_id));
163   $form->restore_vars(qw(taxincluded)) if $form->{id};
164   $form->restore_vars(qw(salesman_id)) if $main::editing;
165
166   # build vendor/customer drop down comatibility... don't ask
167   if (@{ $form->{"all_customer"} }) {
168     $form->{"selectcustomer"} = 1;
169     $form->{customer}         = qq|$form->{customer}--$form->{"customer_id"}|;
170   }
171
172   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
173   $form->{selectcustomer} = 1;
174
175   # departments
176 #  if ($form->{all_departments}) {
177 #    $form->{selectdepartment} = "<option>\n";
178 #    $form->{department}       = "$form->{department}--$form->{department_id}";
179 #
180 #    map {
181 #      $form->{selectdepartment} .= "<option>$_->{description}--$_->{id}</option>\n"
182 #    } @{ $form->{all_departments} };
183 #  }
184
185   $form->{employee} = "$form->{employee}--$form->{employee_id}";
186
187   # forex
188   $form->{forex} = $form->{exchangerate};
189   my $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
190
191   foreach my $key (keys %{ $form->{AR_links} }) {
192     foreach my $ref (@{ $form->{AR_links}{$key} }) {
193       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}</option>\n";
194     }
195
196     if ($key eq "AR_paid") {
197       next unless $form->{acc_trans}{$key};
198       for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
199         $form->{"AR_paid_$i"}      = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
200
201         # reverse paid
202         $form->{"paid_$i"}         = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
203         $form->{"datepaid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
204         $form->{"exchangerate_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
205         $form->{"forex_$i"}        = $form->{"exchangerate_$i"};
206         $form->{"source_$i"}       = $form->{acc_trans}{$key}->[$i - 1]->{source};
207         $form->{"memo_$i"}         = $form->{acc_trans}{$key}->[$i - 1]->{memo};
208
209         $form->{paidaccounts} = $i;
210       }
211     } else {
212       $form->{$key} = "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
213     }
214   }
215
216   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
217
218   $form->{AR} = $form->{AR_1} unless $form->{id};
219
220   $form->{locked} = ($form->datetonum($form->{invdate},  \%myconfig)
221                   <= $form->datetonum($form->{closedto}, \%myconfig));
222
223   $main::lxdebug->leave_sub();
224 }
225
226 sub prepare_invoice {
227   $main::lxdebug->enter_sub();
228
229   my $form     = $main::form;
230   my %myconfig = %main::myconfig;
231
232   $main::auth->assert('invoice_edit');
233
234   if ($form->{type} eq "credit_note") {
235     $form->{type}     = "credit_note";
236     $form->{formname} = "credit_note";
237   } else {
238     $form->{type}     = "invoice";
239     $form->{formname} = "invoice";
240   }
241
242   if ($form->{id}) {
243
244     my $i = 0;
245
246     foreach my $ref (@{ $form->{invoice_details} }) {
247       $i++;
248
249       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
250
251       $form->{"discount_$i"}   = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
252       my ($dec)                = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
253       $dec                     = length $dec;
254       my $decimalplaces        = ($dec > 2) ? $dec : 2;
255
256       $form->{"sellprice_$i"}  = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
257       (my $dec_qty)            = ($form->{"qty_$i"} =~ /\.(\d+)/);
258       $dec_qty                 = length $dec_qty;
259
260       $form->{"qty_$i"}        = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
261
262       $form->{rowcount}        = $i;
263
264     }
265
266     # get pricegroups for parts
267     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
268     set_pricegroup($_) for 1 .. $form->{rowcount};
269   }
270   $main::lxdebug->leave_sub();
271 }
272
273 sub form_header {
274   $main::lxdebug->enter_sub();
275
276   my $form     = $main::form;
277   my %myconfig = %main::myconfig;
278   my $locale   = $main::locale;
279   my $cgi      = $main::cgi;
280
281   $main::auth->assert('invoice_edit');
282
283   our %TMPL_VAR = ();
284   my @custom_hiddens;
285
286   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
287   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
288
289   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
290   $form->{radier}          = ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
291
292   $payment = qq|<option value=""></option>|;
293   foreach my $item (@{ $form->{payment_terms} }) {
294     if ($form->{payment_id} eq $item->{id}) {
295       $payment .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
296     } else {
297       $payment .= qq|<option value="$item->{id}">$item->{description}</option>|;
298     }
299   }
300
301   my $set_duedate_url = "$form->{script}?action=set_duedate";
302
303   push @ { $form->{AJAX} }, new CGI::Ajax( 'set_duedate' => $set_duedate_url );
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("contacts"      => "ALL_CONTACTS",
309                    "shipto"        => "ALL_SHIPTO",
310                    "projects"      => { "key"    => "ALL_PROJECTS",
311                                         "all"    => 0,
312                                         "old_id" => \@old_project_ids },
313                    "employees"     => "ALL_EMPLOYEES",
314                    "salesmen"      => "ALL_SALESMEN",
315                    "taxzones"      => "ALL_TAXZONES",
316                    "currencies"    => "ALL_CURRENCIES",
317                    "customers"     => "ALL_CUSTOMERS",
318                    "price_factors" => "ALL_PRICE_FACTORS");
319
320   $TMPL_VAR{sales_employee_labels} = sub { $_[0]->{name} || $_[0]->{login} };
321   $TMPL_VAR{shipto_labels}         = sub { join "; ", grep { $_ } map { $_[0]->{"shipto${_}" } } qw(name department_1 street city) };
322   $TMPL_VAR{contact_labels}        = sub { join(', ', $_[0]->{"cp_name"}, $_[0]->{"cp_givenname"}) . ($_[0]->{cp_abteilung} ? " ($_[0]->{cp_abteilung})" : "") };
323   $TMPL_VAR{department_labels}     = sub { "$_[0]->{description}--$_[0]->{id}" };
324
325   # customer
326   $TMPL_VAR{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
327   $TMPL_VAR{vclimit} = $myconfig{vclimit};
328   $TMPL_VAR{vc_select} = "customer_or_vendor_selection_window('customer', '', 0, 0)";
329   push @custom_hiddens, "customer_id";
330   push @custom_hiddens, "oldcustomer";
331   push @custom_hiddens, "selectcustomer";
332
333   # currencies and exchangerate
334   my @values = map { $_       } @{ $form->{ALL_CURRENCIES} };
335   my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
336   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
337   $TMPL_VAR{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
338   $TMPL_VAR{currencies}        = NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
339                                                       '-values' => \@values, '-labels' => \%labels)) if scalar @values;
340   push @custom_hiddens, "forex";
341   push @custom_hiddens, "exchangerate" if $form->{forex};
342
343   $TMPL_VAR{creditwarning} = ($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update};
344   $TMPL_VAR{is_credit_remaining_negativ} = $form->{creditremaining} =~ /-/;
345
346   $form->{fokus} = "invoice.customer";
347
348   my $follow_up_vc         =  $form->{customer};
349   $follow_up_vc            =~ s/--\d*\s*$//;
350   $TMPL_VAR{customer_name} = $follow_up_vc;
351
352 # set option selected
353   foreach my $item (qw(AR)) {
354     $form->{"select$item"} =~ s/ selected//;
355     $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
356   }
357
358   $TMPL_VAR{is_type_credit_note} = $form->{type}   eq "credit_note";
359   $TMPL_VAR{is_format_html}      = $form->{format} eq 'html';
360   $TMPL_VAR{dateformat}          = $myconfig{dateformat};
361   $TMPL_VAR{numberformat}        = $myconfig{numberformat};
362
363   # hiddens
364   $TMPL_VAR{HIDDENS} = [qw(
365     id action type media format queued printed emailed title vc discount
366     title creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id
367     max_dunning_level dunning_amount
368     shiptoname shiptostreet shiptozipcode shiptocity shiptocountry  shiptocontact shiptophone shiptofax
369     shiptoemail shiptodepartment_1 shiptodepartment_2 message email subject cc bcc taxaccounts cursor_fokus
370     convert_from_do_ids convert_from_oe_ids
371   ), @custom_hiddens,
372   map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts}];
373
374   $form->{jsscript} = 1;
375   $form->header();
376
377   print $form->parse_html_template("is/form_header", \%TMPL_VAR);
378
379   $main::lxdebug->leave_sub();
380 }
381
382 sub form_footer {
383   $main::lxdebug->enter_sub();
384
385   my $form     = $main::form;
386   my %myconfig = %main::myconfig;
387   my $locale   = $main::locale;
388
389   $main::auth->assert('invoice_edit');
390
391   $form->{invtotal}    = $form->{invsubtotal};
392   $form->{oldinvtotal} = $form->{invtotal};
393
394   # note rows
395   $form->{rows} = max 2,
396     $form->numtextrows($form->{notes},    26, 8),
397     $form->numtextrows($form->{intnotes}, 35, 8);
398
399
400   # tax, total and subtotal calculations
401   my ($tax, $subtotal);
402   $form->{taxaccounts_array} = [ split / /, $form->{taxaccounts} ];
403
404   foreach my $item (@{ $form->{taxaccounts_array} }) {
405     if ($form->{"${item}_base"}) {
406       if ($form->{taxincluded}) {
407         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"}
408                                                                                  / (1 + $form->{"${item}_rate"})), 2);
409         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
410       } else {
411         $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
412         $form->{invtotal} += $form->{"${item}_total"};
413       }
414     }
415   }
416
417   # unfortunately locales doesn't support extended syntax
418   if ($form->{id}) {
419     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
420     if (@{ $follow_ups} ) {
421       $form->{follow_up_text} = $locale->text("There are #1 unfinished follow-ups of which #2 are due.",
422                                                scalar(@{ $follow_ups }),
423                                                sum map { $_->{due} * 1 } @{ $follow_ups });
424     }
425   }
426
427   # payments
428   my $totalpaid = 0;
429   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
430   $form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
431
432   for my $i (1 .. $form->{paidaccounts}) {
433     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
434     $form->{"selectAR_paid_$i"} =~ s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
435     $totalpaid += $form->{"paid_$i"};
436   }
437
438   print $form->parse_html_template('is/form_footer', {
439     is_type_credit_note => ($form->{type} eq "credit_note"),
440     totalpaid           => $totalpaid,
441     paid_missing        => $form->{invtotal} - $totalpaid,
442     print_options       => print_options(inline => 1),
443     show_storno         => $form->{id} && !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar") && !$totalpaid,
444     show_delete         => ($form->current_date(\%myconfig) eq $form->{gldate}),
445   });
446 ##print $form->parse_html_template('is/_payments'); # parser
447 ##print $form->parse_html_template('webdav/_list'); # parser
448
449   $main::lxdebug->leave_sub();
450 }
451
452 sub mark_as_paid {
453   $main::lxdebug->enter_sub();
454
455   my $form     = $main::form;
456   my %myconfig = %main::myconfig;
457
458   $main::auth->assert('invoice_edit');
459
460   &mark_as_paid_common(\%myconfig,"ar");
461
462   $main::lxdebug->leave_sub();
463 }
464
465 sub update {
466   $main::lxdebug->enter_sub();
467
468   my $form     = $main::form;
469   my %myconfig = %main::myconfig;
470
471   $main::auth->assert('invoice_edit');
472
473   my ($recursive_call) = shift;
474
475   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining) unless $recursive_call;
476
477   $form->{print_and_post} = 0         if $form->{second_run};
478   my $taxincluded            = "checked" if $form->{taxincluded};
479   $form->{update} = 1;
480
481   &check_name("customer");
482
483   $form->{taxincluded} ||= $taxincluded;
484
485   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'buy');
486   $form->{exchangerate} = $form->{forex} if $form->{forex};
487
488   for my $i (1 .. $form->{paidaccounts}) {
489     next unless $form->{"paid_$i"};
490     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
491     $form->{"forex_$i"}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
492     $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
493   }
494
495   my $i            = $form->{rowcount};
496   my $exchangerate = $form->{exchangerate} || 1;
497
498   # if last row empty, check the form otherwise retrieve new item
499   if (   ($form->{"partnumber_$i"} eq "")
500       && ($form->{"description_$i"} eq "")
501       && ($form->{"partsgroup_$i"}  eq "")) {
502
503     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
504     &check_form;
505
506   } else {
507
508     IS->retrieve_item(\%myconfig, \%$form);
509
510     my $rows = scalar @{ $form->{item_list} };
511
512     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{customer_discount} * 100);
513
514     if ($rows) {
515       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
516
517       if ($rows > 1) {
518
519         &select_item;
520         exit;
521
522       } else {
523
524         my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
525
526         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g } qw(partnumber description unit);
527         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
528
529         $form->{payment_id}    = $form->{"part_payment_id_$i"} if $form->{"part_payment_id_$i"} ne "";
530         $form->{"discount_$i"} = 0                             if $form->{"not_discountable_$i"};
531
532         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
533
534         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
535         my $decimalplaces = max 2, length $1;
536
537         if ($sellprice) {
538           $form->{"sellprice_$i"} = $sellprice;
539         } else {
540           # if there is an exchange rate adjust sellprice
541           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
542           $form->{"sellprice_$i"} /= $exchangerate;
543         }
544
545         $form->{"listprice_$i"} /= $exchangerate;
546
547         my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"} / 100);
548         map { $form->{"${_}_base"} = 0 }                                 split / /, $form->{taxaccounts};
549         map { $form->{"${_}_base"} += $amount }                          split / /, $form->{"taxaccounts_$i"};
550         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{"taxaccounts_$i"} if !$form->{taxincluded};
551
552         $form->{creditremaining} -= $amount;
553
554         map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces) } qw(sellprice listprice);
555
556         $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"});
557
558         if ($main::lizenzen) {
559           if ($form->{"inventory_accno_$i"} ne "") {
560             $form->{"lizenzen_$i"} = qq|<option></option>|;
561             foreach my $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
562               $form->{"lizenzen_$i"} .= qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
563             }
564             $form->{"lizenzen_$i"} .= qq|<option value=-1>Neue Lizenz</option>|;
565           }
566         }
567
568         # get pricegroups for parts
569         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
570
571         # build up html code for prices_$i
572         &set_pricegroup($i);
573       }
574
575       &display_form;
576
577     } else {
578
579       # ok, so this is a new part
580       # ask if it is a part or service item
581
582       if (   $form->{"partsgroup_$i"}
583           && ($form->{"partsnumber_$i"} eq "")
584           && ($form->{"description_$i"} eq "")) {
585         $form->{rowcount}--;
586         $form->{"discount_$i"} = "";
587         display_form();
588
589       } else {
590         $form->{"id_$i"}   = 0;
591         new_item();
592       }
593     }
594   }
595   $main::lxdebug->leave_sub();
596 }
597
598 sub post_payment {
599   $main::lxdebug->enter_sub();
600
601   my $form     = $main::form;
602   my %myconfig = %main::myconfig;
603   my $locale   = $main::locale;
604
605   $main::auth->assert('invoice_edit');
606
607   our $invdate;
608
609   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
610   for my $i (1 .. $form->{paidaccounts}) {
611     if ($form->{"paid_$i"}) {
612       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
613
614       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
615
616       $form->error($locale->text('Cannot post payment for a closed period!'))
617         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
618
619       if ($form->{currency} ne $form->{defaultcurrency}) {
620         $form->{"exchangerate_$i"} = $form->{exchangerate}
621           if ($invdate == $datepaid);
622         $form->isblank("exchangerate_$i",
623                        $locale->text('Exchangerate for payment missing!'));
624       }
625     }
626   }
627
628   ($form->{AR})      = split /--/, $form->{AR};
629   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
630   relink_accounts();
631   $form->redirect($locale->text('Payment posted!'))
632       if (IS->post_payment(\%myconfig, \%$form));
633     $form->error($locale->text('Cannot post payment!'));
634
635
636   $main::lxdebug->leave_sub();
637 }
638
639 sub post {
640   $main::lxdebug->enter_sub();
641
642   my $form     = $main::form;
643   my %myconfig = %main::myconfig;
644   my $locale   = $main::locale;
645
646   $main::auth->assert('invoice_edit');
647
648   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
649   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
650   $form->isblank("customer", $locale->text('Customer missing!'));
651   $form->error($locale->text('Cannot post invoice for a closed period!'))
652         if ($form->date_closed($form->{"invdate"}, \%myconfig));
653
654   $form->{invnumber} =~ s/^\s*//g;
655   $form->{invnumber} =~ s/\s*$//g;
656
657   # if oldcustomer ne customer redo form
658   if (&check_name('customer')) {
659     &update;
660     exit;
661   }
662   if ($form->{second_run}) {
663     $form->{print_and_post} = 0;
664   }
665
666   &validate_items;
667
668   my $closedto = $form->datetonum($form->{closedto}, \%myconfig);
669   my $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
670
671   $form->error($locale->text('Cannot post invoice for a closed period!'))
672     if ($invdate <= $closedto);
673
674   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
675     if ($form->{currency} ne $form->{defaultcurrency});
676
677   for my $i (1 .. $form->{paidaccounts}) {
678     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
679       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
680
681       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
682
683       $form->error($locale->text('Cannot post payment for a closed period!'))
684         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
685
686       if ($form->{currency} ne $form->{defaultcurrency}) {
687         $form->{"exchangerate_$i"} = $form->{exchangerate}
688           if ($invdate == $datepaid);
689         $form->isblank("exchangerate_$i",
690                        $locale->text('Exchangerate for payment missing!'));
691       }
692     }
693   }
694
695   ($form->{AR})        = split /--/, $form->{AR};
696   ($form->{AR_paid})   = split /--/, $form->{AR_paid};
697   $form->{storno}    ||= 0;
698
699   $form->{label} = $locale->text('Invoice');
700
701   $form->{id} = 0 if $form->{postasnew};
702
703   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
704   if ($form->{postasnew}) {
705     if ($form->{type} eq "credit_note") {
706       undef($form->{cnnumber});
707     } else {
708       undef($form->{invnumber});
709     }
710   }
711
712   relink_accounts();
713   $form->error($locale->text('Cannot post invoice!'))
714     unless IS->post_invoice(\%myconfig, \%$form);
715   remove_draft() if $form->{remove_draft};
716
717   if(!exists $form->{addition}) {
718     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
719     $form->{addition} = $print_post     ? "PRINTED AND POSTED" :
720                         $form->{storno} ? "STORNO"             :
721                                           "POSTED";
722     $form->save_history($form->dbconnect(\%myconfig));
723   }
724
725   $form->redirect( $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
726     unless $print_post;
727
728   $main::lxdebug->leave_sub();
729 }
730
731 sub print_and_post {
732   $main::lxdebug->enter_sub();
733
734   my $form     = $main::form;
735
736   $main::auth->assert('invoice_edit');
737
738   my $old_form               = new Form;
739   $print_post             = 1;
740   $form->{print_and_post} = 1;
741   &post();
742
743   &edit();
744   $main::lxdebug->leave_sub();
745
746 }
747
748 sub use_as_template {
749   $main::lxdebug->enter_sub();
750
751   my $form     = $main::form;
752   my %myconfig = %main::myconfig;
753
754   $main::auth->assert('invoice_edit');
755
756   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
757   $form->{paidaccounts} = 1;
758   $form->{rowcount}--;
759   $form->{invdate} = $form->current_date(\%myconfig);
760   &display_form;
761
762   $main::lxdebug->leave_sub();
763 }
764
765 sub storno {
766   $main::lxdebug->enter_sub();
767
768   my $form     = $main::form;
769   my %myconfig = %main::myconfig;
770   my $locale   = $main::locale;
771
772   $main::auth->assert('invoice_edit');
773
774   if ($form->{storno}) {
775     $form->error($locale->text('Cannot storno storno invoice!'));
776   }
777
778   if (IS->has_storno(\%myconfig, $form, "ar")) {
779     $form->error($locale->text("Invoice has already been storno'd!"));
780   }
781
782   map({ my $key = $_; delete($form->{$key}) unless (grep({ $key eq $_ } qw(id login password stylesheet type))); } keys(%{ $form }));
783
784   invoice_links();
785   prepare_invoice();
786   relink_accounts();
787
788   # Payments must not be recorded for the new storno invoice.
789   $form->{paidaccounts} = 0;
790   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
791
792   $form->{storno_id} = $form->{id};
793   $form->{storno} = 1;
794   $form->{id} = "";
795   $form->{invnumber} = "Storno zu " . $form->{invnumber};
796   $form->{rowcount}++;
797
798   post();
799   $main::lxdebug->leave_sub();
800 }
801
802 sub preview {
803   $main::lxdebug->enter_sub();
804
805   my $form     = $main::form;
806
807   $main::auth->assert('invoice_edit');
808
809   $form->{preview} = 1;
810   my $old_form = new Form;
811   for (keys %$form) { $old_form->{$_} = $form->{$_} }
812
813   &print_form($old_form);
814   $main::lxdebug->leave_sub();
815
816 }
817
818 sub delete {
819   $main::lxdebug->enter_sub();
820
821   my $form     = $main::form;
822   my $locale   = $main::locale;
823
824   $main::auth->assert('invoice_edit');
825
826   if ($form->{second_run}) {
827     $form->{print_and_post} = 0;
828   }
829   $form->header;
830
831   print qq|
832 <body>
833
834 <form method="post" action="$form->{script}">
835 |;
836
837   # delete action variable
838   map { delete $form->{$_} } qw(action header);
839
840   foreach my $key (keys %$form) {
841     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
842     $form->{$key} =~ s/\"/&quot;/g;
843     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
844   }
845
846   print qq|
847 <h2 class="confirm">| . $locale->text('Confirm!') . qq|</h2>
848
849 <h4>|
850     . $locale->text('Are you sure you want to delete Invoice Number')
851     . qq| $form->{invnumber}
852 </h4>
853
854 <p>
855 <input name="action" class="submit" type="submit" value="|
856     . $locale->text('Yes') . qq|">
857 </form>
858 |;
859
860   $main::lxdebug->leave_sub();
861 }
862
863 sub credit_note {
864   $main::lxdebug->enter_sub();
865
866   my $form     = $main::form;
867   my %myconfig = %main::myconfig;
868   my $locale   = $main::locale;
869
870   $main::auth->assert('invoice_edit');
871
872   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
873   $form->{duedate} =
874     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
875
876   $form->{id}     = '';
877   $form->{rowcount}--;
878   $form->{shipto} = 1;
879
880
881   $form->{title}  = $locale->text('Add Credit Note');
882   $form->{script} = 'is.pl';
883   our $script         = "is";
884   our $buysell        = 'buy';
885
886
887   # bo creates the id, reset it
888   map { delete $form->{$_} }
889     qw(id invnumber subject message cc bcc printed emailed queued);
890   $form->{ $form->{vc} } =~ s/--.*//g;
891   $form->{type} = "credit_note";
892
893
894   map { $form->{"select$_"} = "" } ($form->{vc}, 'currency');
895
896   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
897     qw(creditlimit creditremaining);
898
899   my $currency = $form->{currency};
900   &invoice_links;
901
902   $form->{currency}     = $currency;
903   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, $buysell);
904   $form->{exchangerate} = $form->{forex} || '';
905
906   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
907
908   &prepare_invoice;
909
910
911   &display_form;
912
913   $main::lxdebug->leave_sub();
914 }
915
916 sub yes {
917   $main::lxdebug->enter_sub();
918
919   my $form     = $main::form;
920   my %myconfig = %main::myconfig;
921   my $locale   = $main::locale;
922
923   $main::auth->assert('invoice_edit');
924
925   if (IS->delete_invoice(\%myconfig, \%$form, $main::spool)) {
926     # saving the history
927         if(!exists $form->{addition}) {
928     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
929           $form->{addition} = "DELETED";
930           $form->save_history($form->dbconnect(\%myconfig));
931     }
932     # /saving the history
933     $form->redirect($locale->text('Invoice deleted!'));
934   }
935   $form->error($locale->text('Cannot delete invoice!'));
936
937   $main::lxdebug->leave_sub();
938 }
939
940 sub e_mail {
941   $main::lxdebug->enter_sub();
942
943   my $form     = $main::form;
944
945   $main::auth->assert('invoice_edit');
946
947   if (!$form->{id}) {
948     $print_post = 1;
949
950     my $saved_form = save_form();
951
952     post();
953
954     restore_form($saved_form, 0, qw(id invnumber));
955   }
956
957   edit_e_mail();
958
959   $main::lxdebug->leave_sub();
960 }