form_footer 2. Version
[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   my $cgi      = $main::cgi;
389
390   $main::auth->assert('invoice_edit');
391
392   $form->{invtotal} = $form->{invsubtotal};
393
394   my ($rows, $introws);
395   if (($rows    = $form->numtextrows($form->{notes}, 26, 8)) < 2)    { $rows    = 2; }
396   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) { $introws = 2; }
397   $form->{rows} = ($rows > $introws) ? $rows : $introws;
398
399   my ($tax, $subtotal);
400   $form->{taxaccounts_array} = [ split / /, $form->{taxaccounts} ];
401
402   foreach my $item (@{ $form->{taxaccounts_array} }) {
403     if ($form->{"${item}_base"}) {
404       if ($form->{taxincluded}) {
405         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"}
406                                                                                  / (1 + $form->{"${item}_rate"})), 2);
407         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
408       } else {
409         $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
410         $form->{invtotal} += $form->{"${item}_total"};
411       }
412     }
413   }
414
415   $form->{oldinvtotal} = $form->{invtotal};
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
428 # payments
429   my $totalpaid = 0;
430
431   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
432   $form->{paid_indices} = [ 1 .. $form->{paidaccounts} ];
433
434   for my $i (1 .. $form->{paidaccounts}) {
435     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
436     $form->{"selectAR_paid_$i"} =~ s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
437
438     # format amounts
439     $totalpaid += $form->{"paid_$i"};
440     if ($form->{"paid_$i"}) {
441       $form->{"paid_$i"} = $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
442     }
443     $form->{"exchangerate_$i"} = $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
444     $form->{"exchangerate_$i"} ||= "";
445   }
446
447
448   $form->{print_options} = print_options(inline => 1);
449
450   print $form->parse_html_template('is/form_footer');
451 # print $form->parse_html_template('is/_payments'); # parser
452
453
454
455 #  print qq|
456 #  <tr>
457 #    <td>
458 #      <table width="100%">
459 #       <tr valign="bottom">
460 #         <td>
461 #           <table>
462 #             <tr>
463 #               <th align="left">| . $locale->text('Notes') . qq|</th>
464 #               <th align="left">| . $locale->text('Internal Notes') . qq|</th>
465 #                <th align="right">| . $locale->text('Payment Terms') . qq|</th>
466 #             </tr>
467 #             <tr valign="top">
468 #               <td>$notes</td>
469 #               <td>$intnotes</td>
470 #                <td><select name="payment_id" onChange="if (this.value) set_duedate(['payment_id__' + this.value, 'invdate__' + invdate.value],['duedate'])">$payment
471 #                </select></td>
472 #             </tr>
473 #        $follow_ups_block
474 #           </table>
475 #         </td>
476 #          <td>
477 #            <table>
478 #            <tr>
479 #              <th  align=left>| . $locale->text('Ertrag') . qq|</th>
480 #              <td>| .  $form->format_amount(\%myconfig, $form->{marge_total}, 2, 0) . qq|</td>
481 #            </tr>
482 #            <tr>
483 #              <th  align=left>| . $locale->text('Ertrag prozentual') . qq|</th>
484 #              <td>| .  $form->format_amount(\%myconfig, $form->{marge_percent}, 2, 0) . qq| %</td>
485 #            </tr>
486 #            <input type=hidden name="marge_total" value="$form->{"marge_total"}">
487 #            <input type=hidden name="marge_percent" value="$form->{"marge_percent"}">
488 #            </table>
489 #          </td>
490 #         <td align="right">
491 #           $taxincluded
492 #           <table>
493 #             $subtotal
494 #             $tax
495 #             <tr>
496 #               <th align="right">| . $locale->text('Total') . qq|</th>
497 #               <td align="right">$form->{invtotal}</td>
498 #             </tr>
499 #           </table>
500 #         </td>
501 #       </tr>
502 #      </table>
503 #    </td>
504 #  </tr>
505 #|;
506 #  my $webdav_list;
507 #  if ($main::webdav) {
508 #    $webdav_list = qq|
509 #  <tr>
510 #    <td><hr size="3" noshade></td>
511 #  </tr>
512 #  <tr>
513 #    <th class="listtop" align="left">Dokumente im Webdav-Repository</th>
514 #  </tr>
515 #    <table width="100%">
516 #      <td align="left" width="30%"><b>Dateiname</b></td>
517 #      <td align="left" width="70%"><b>Webdavlink</b></td>
518 #|;
519 #    foreach my $file (@{ $form->{WEBDAV} }) {
520 #      $webdav_list .= qq|
521 #      <tr>
522 #        <td align="left">$file->{name}</td>
523 #        <td align="left"><a href="$file->{link}">$file->{type}</a></td>
524 #      </tr>
525 #|;
526 #    }
527 #    $webdav_list .= qq|
528 #    </table>
529 #  </tr>
530 #|;
531 #
532 #    print $webdav_list;
533 #  }
534 #if ($form->{type} eq "credit_note") {
535 #  print qq|
536 #  <tr>
537 #    <td>
538 #      <table width="100%">
539 #       <tr class="listheading">
540 #         <th colspan="6" class="listheading">|
541 #    . $locale->text('Payments') . qq|</th>
542 #       </tr>
543 #|;
544 #} else {
545 #  print qq|
546 #  <tr>
547 #    <td>
548 #      <table width="100%">
549 #       <tr class="listheading">
550 #         <th colspan="6" class="listheading">|
551 #    . $locale->text('Incoming Payments') . qq|</th>
552 #       </tr>
553 #|;
554 #}
555 #
556 #  my @column_index;
557 #  if ($form->{currency} eq $form->{defaultcurrency}) {
558 #    @column_index = qw(datepaid source memo paid AR_paid);
559 #  } else {
560 #    @column_index = qw(datepaid source memo paid exchangerate AR_paid);
561 #  }
562 #
563 #  my %column_data;
564 #  $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
565 #  $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
566 #  $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
567 #  $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
568 #  $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
569 #  $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
570 #
571 #  print "
572 #       <tr>
573 #";
574 #  map { print "$column_data{$_}\n" } @column_index;
575 #  print "
576 #        </tr>
577 #";
578 #
579 #  my @triggers  = ();
580 #  my $totalpaid = 0;
581 #
582 #  $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
583 #  for my $i (1 .. $form->{paidaccounts}) {
584 #
585 #    print "
586 #        <tr>\n";
587 #
588 #    $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
589 #    $form->{"selectAR_paid_$i"} =~
590 #      s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
591 #
592 #    # format amounts
593 #    $totalpaid += $form->{"paid_$i"};
594 #    if ($form->{"paid_$i"}) {
595 #      $form->{"paid_$i"} = $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
596 #    }
597 #    $form->{"exchangerate_$i"} = $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
598 #
599 #    if ($form->{"exchangerate_$i"} == 0) {
600 #      $form->{"exchangerate_$i"} = "";
601 #    }
602 #    my $exchangerate = qq|&nbsp;|;
603 #    if ($form->{currency} ne $form->{defaultcurrency}) {
604 #      if ($form->{"forex_$i"}) {
605 #        $exchangerate = qq|<input type="hidden" name="exchangerate_$i" value="$form->{"exchangerate_$i"}">$form->{"exchangerate_$i"}|;
606 #      } else {
607 #        $exchangerate = qq|<input name="exchangerate_$i" size="10" value="$form->{"exchangerate_$i"}">|;
608 #      }
609 #    }
610 #
611 #    $exchangerate .= qq|<input type="hidden" name="forex_$i" value="$form->{"forex_$i"}">|;
612 #
613 #    $column_data{"paid_$i"} =
614 #      qq|<td align="center"><input name="paid_$i" size="11" value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
615 #    $column_data{"exchangerate_$i"} = qq|<td align="center">$exchangerate</td>|;
616 #    $column_data{"AR_paid_$i"}      =
617 #      qq|<td align="center"><select name="AR_paid_$i">$form->{"selectAR_paid_$i"}</select></td>|;
618 #    $column_data{"datepaid_$i"} =
619 #      qq|<td align="center"><input id="datepaid_$i" name="datepaid_$i"  size="11" title="$myconfig{dateformat}" value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
620 #         <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
621 #    $column_data{"source_$i"} =
622 #      qq|<td align=center><input name="source_$i" size="11" value="$form->{"source_$i"}"></td>|;
623 #    $column_data{"memo_$i"} =
624 #      qq|<td align="center"><input name="memo_$i" size="11" value="$form->{"memo_$i"}"></td>|;
625 #
626 #    map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
627 #    print "
628 #        </tr>\n";
629 #    push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
630 #  }
631 #
632 #  my $paid_missing = $form->{oldinvtotal} - $totalpaid;
633 #
634 #  print qq|
635 #    <tr>
636 #      <td></td>
637 #      <td></td>
638 #      <td align="center">| . $locale->text('Total') . qq|</td>
639 #      <td align="center">| . H($form->format_amount(\%myconfig, $totalpaid, 2)) . qq|</td>
640 #    </tr>
641 #    <tr>
642 #      <td></td>
643 #      <td></td>
644 #      <td align="center">| . $locale->text('Missing amount') . qq|</td>
645 #      <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
646 #    </tr>
647 #|;
648 #
649 #  map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } qw(paidaccounts selectAR_paid oldinvtotal));
650 #  print qq|<input type="hidden" name="oldtotalpaid" value="$totalpaid">
651 #    </table>
652 #    </td>
653 #  </tr>
654 #  <tr>
655 #    <td><hr size="3" noshade></td>
656 #  </tr>
657 #  <tr>
658 #    <td>
659 #|;
660 #
661 #  print_options();
662 #
663 #  print qq|
664 #    </td>
665 #  </tr>
666 #</table>
667 #|;
668 #
669 #  my $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
670 #  my $closedto = $form->datetonum($form->{closedto}, \%myconfig);
671 #
672 #  if ($form->{id}) {
673 #    my $show_storno = !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar") && (($totalpaid == 0) || ($totalpaid eq ""));
674 #
675 #    print qq|
676 #    <input class="submit" type="submit" accesskey="u" name="action" id="update_button" value="| . $locale->text('Update') . qq|">
677 #    <input class="submit" type="submit" name="action" value="| . $locale->text('Ship to') . qq|">
678 #    <input class="submit" type="submit" name="action" value="| . $locale->text('Print') . qq|">
679 #    <input class="submit" type="submit" name="action" value="| . $locale->text('E-mail') . qq|"> |;
680 #    print qq|<input class="submit" type="submit" name="action" value="| . $locale->text('Storno') . qq|"> | if ($show_storno);
681 #    print qq|<input class="submit" type="submit" name="action" value="| . $locale->text('Post Payment') . qq|"> |;
682 #    print qq|<input class="submit" type="submit" name="action" value="| . $locale->text('Use As Template') . qq|"> |;
683 #    if ($form->{id} && !($form->{type} eq "credit_note")) {
684 #      print qq| <input class="submit" type="submit" name="action" value="| . $locale->text('Credit Note') . qq|"> |;
685 #    }
686 #    if ($form->{radier}) {
687 #      print qq| <input class="submit" type="submit" name="action" value="| . $locale->text('Delete') . qq|"> |;
688 #    }
689 #
690 #
691 #    if ($invdate > $closedto) {
692 #      print qq| <input class="submit" type="submit" name="action" value="| . $locale->text('Order') . qq|"> |;
693 #    }
694 #
695 #    print qq| <input type="button" class="submit" onclick="follow_up_window()" value="| . $locale->text('Follow-Up') . qq|">|;
696 #
697 #  } else {
698 #    if ($invdate > $closedto) {
699 #      print qq|
700 #      <input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">
701 #      <input class="submit" type="submit" name="action" value="| . $locale->text('Ship to') . qq|">
702 #      <input class="submit" type="submit" name="action" value="| . $locale->text('Preview') . qq|">
703 #      <input class="submit" type="submit" name="action" value="| . $locale->text('E-mail') . qq|">
704 #      <input class="submit" type="submit" name="action" value="| . $locale->text('Print and Post') . qq|">
705 #      <input class="submit" type="submit" name="action" value="| . $locale->text('Post') . qq|"> | .
706 #        NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
707 #    }
708 #  }
709 #
710 #  # button for saving history
711 #  if($form->{id} ne "") {
712 #    print qq|
713 #         <input type="button" class="submit" onclick="set_history_window(|
714 #         . Q($form->{id})
715 #         . qq|);" name="history" id="history" value="|
716 #         . $locale->text('history')
717 #         . qq|"> |;
718 #  }
719 #  # /button for saving history
720 #
721 #  # mark_as_paid button
722 #  if($form->{id} ne "") {
723 #    print qq|<input type="submit" class="submit" name="action" value="| . $locale->text('mark as paid') . qq|">|;
724 #  }
725 #  # /mark_as_paid button
726 #  print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
727 #    qq|
728 #
729 #<input type="hidden" name="rowcount" value="$form->{rowcount}">
730 #| .
731 #$cgi->hidden("-name" => "callback", "-value" => $form->{callback})
732 #. $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
733 #. $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
734 #. $cgi->hidden('-name' => 'customer_discount', '-value' => [$form->{customer_discount}])
735 #. qq|
736 #</form>
737 #
738 #</body>
739 #
740 # </html>
741 #|;
742
743   $main::lxdebug->leave_sub();
744 }
745
746 sub mark_as_paid {
747   $main::lxdebug->enter_sub();
748
749   my $form     = $main::form;
750   my %myconfig = %main::myconfig;
751
752   $main::auth->assert('invoice_edit');
753
754   &mark_as_paid_common(\%myconfig,"ar");
755
756   $main::lxdebug->leave_sub();
757 }
758
759 sub update {
760   $main::lxdebug->enter_sub();
761
762   my $form     = $main::form;
763   my %myconfig = %main::myconfig;
764
765   $main::auth->assert('invoice_edit');
766
767   my ($recursive_call) = shift;
768
769   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining) unless $recursive_call;
770
771   $form->{print_and_post} = 0         if $form->{second_run};
772   my $taxincluded            = "checked" if $form->{taxincluded};
773   $form->{update} = 1;
774
775   &check_name("customer");
776
777   $form->{taxincluded} ||= $taxincluded;
778
779   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, 'buy');
780   $form->{exchangerate} = $form->{forex} if $form->{forex};
781
782   for my $i (1 .. $form->{paidaccounts}) {
783     next unless $form->{"paid_$i"};
784     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(paid exchangerate);
785     $form->{"forex_$i"}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
786     $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
787   }
788
789   my $i            = $form->{rowcount};
790   my $exchangerate = $form->{exchangerate} || 1;
791
792   # if last row empty, check the form otherwise retrieve new item
793   if (   ($form->{"partnumber_$i"} eq "")
794       && ($form->{"description_$i"} eq "")
795       && ($form->{"partsgroup_$i"}  eq "")) {
796
797     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
798     &check_form;
799
800   } else {
801
802     IS->retrieve_item(\%myconfig, \%$form);
803
804     my $rows = scalar @{ $form->{item_list} };
805
806     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{customer_discount} * 100);
807
808     if ($rows) {
809       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
810
811       if ($rows > 1) {
812
813         &select_item;
814         exit;
815
816       } else {
817
818         my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
819
820         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g } qw(partnumber description unit);
821         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
822
823         $form->{payment_id}    = $form->{"part_payment_id_$i"} if $form->{"part_payment_id_$i"} ne "";
824         $form->{"discount_$i"} = 0                             if $form->{"not_discountable_$i"};
825
826         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
827
828         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
829         my $decimalplaces = max 2, length $1;
830
831         if ($sellprice) {
832           $form->{"sellprice_$i"} = $sellprice;
833         } else {
834           # if there is an exchange rate adjust sellprice
835           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
836           $form->{"sellprice_$i"} /= $exchangerate;
837         }
838
839         $form->{"listprice_$i"} /= $exchangerate;
840
841         my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"} / 100);
842         map { $form->{"${_}_base"} = 0 }                                 split / /, $form->{taxaccounts};
843         map { $form->{"${_}_base"} += $amount }                          split / /, $form->{"taxaccounts_$i"};
844         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{"taxaccounts_$i"} if !$form->{taxincluded};
845
846         $form->{creditremaining} -= $amount;
847
848         map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces) } qw(sellprice listprice);
849
850         $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"});
851
852         if ($main::lizenzen) {
853           if ($form->{"inventory_accno_$i"} ne "") {
854             $form->{"lizenzen_$i"} = qq|<option></option>|;
855             foreach my $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
856               $form->{"lizenzen_$i"} .= qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
857             }
858             $form->{"lizenzen_$i"} .= qq|<option value=-1>Neue Lizenz</option>|;
859           }
860         }
861
862         # get pricegroups for parts
863         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
864
865         # build up html code for prices_$i
866         &set_pricegroup($i);
867       }
868
869       &display_form;
870
871     } else {
872
873       # ok, so this is a new part
874       # ask if it is a part or service item
875
876       if (   $form->{"partsgroup_$i"}
877           && ($form->{"partsnumber_$i"} eq "")
878           && ($form->{"description_$i"} eq "")) {
879         $form->{rowcount}--;
880         $form->{"discount_$i"} = "";
881         display_form();
882
883       } else {
884         $form->{"id_$i"}   = 0;
885         new_item();
886       }
887     }
888   }
889   $main::lxdebug->leave_sub();
890 }
891
892 sub post_payment {
893   $main::lxdebug->enter_sub();
894
895   my $form     = $main::form;
896   my %myconfig = %main::myconfig;
897   my $locale   = $main::locale;
898
899   $main::auth->assert('invoice_edit');
900
901   our $invdate;
902
903   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
904   for my $i (1 .. $form->{paidaccounts}) {
905     if ($form->{"paid_$i"}) {
906       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
907
908       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
909
910       $form->error($locale->text('Cannot post payment for a closed period!'))
911         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
912
913       if ($form->{currency} ne $form->{defaultcurrency}) {
914         $form->{"exchangerate_$i"} = $form->{exchangerate}
915           if ($invdate == $datepaid);
916         $form->isblank("exchangerate_$i",
917                        $locale->text('Exchangerate for payment missing!'));
918       }
919     }
920   }
921
922   ($form->{AR})      = split /--/, $form->{AR};
923   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
924   relink_accounts();
925   $form->redirect($locale->text('Payment posted!'))
926       if (IS->post_payment(\%myconfig, \%$form));
927     $form->error($locale->text('Cannot post payment!'));
928
929
930   $main::lxdebug->leave_sub();
931 }
932
933 sub post {
934   $main::lxdebug->enter_sub();
935
936   my $form     = $main::form;
937   my %myconfig = %main::myconfig;
938   my $locale   = $main::locale;
939
940   $main::auth->assert('invoice_edit');
941
942   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
943   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
944   $form->isblank("customer", $locale->text('Customer missing!'));
945   $form->error($locale->text('Cannot post invoice for a closed period!'))
946         if ($form->date_closed($form->{"invdate"}, \%myconfig));
947
948   $form->{invnumber} =~ s/^\s*//g;
949   $form->{invnumber} =~ s/\s*$//g;
950
951   # if oldcustomer ne customer redo form
952   if (&check_name('customer')) {
953     &update;
954     exit;
955   }
956   if ($form->{second_run}) {
957     $form->{print_and_post} = 0;
958   }
959
960   &validate_items;
961
962   my $closedto = $form->datetonum($form->{closedto}, \%myconfig);
963   my $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
964
965   $form->error($locale->text('Cannot post invoice for a closed period!'))
966     if ($invdate <= $closedto);
967
968   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
969     if ($form->{currency} ne $form->{defaultcurrency});
970
971   for my $i (1 .. $form->{paidaccounts}) {
972     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
973       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
974
975       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
976
977       $form->error($locale->text('Cannot post payment for a closed period!'))
978         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
979
980       if ($form->{currency} ne $form->{defaultcurrency}) {
981         $form->{"exchangerate_$i"} = $form->{exchangerate}
982           if ($invdate == $datepaid);
983         $form->isblank("exchangerate_$i",
984                        $locale->text('Exchangerate for payment missing!'));
985       }
986     }
987   }
988
989   ($form->{AR})        = split /--/, $form->{AR};
990   ($form->{AR_paid})   = split /--/, $form->{AR_paid};
991   $form->{storno}    ||= 0;
992
993   $form->{label} = $locale->text('Invoice');
994
995   $form->{id} = 0 if $form->{postasnew};
996
997   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
998   if ($form->{postasnew}) {
999     if ($form->{type} eq "credit_note") {
1000       undef($form->{cnnumber});
1001     } else {
1002       undef($form->{invnumber});
1003     }
1004   }
1005
1006   relink_accounts();
1007   $form->error($locale->text('Cannot post invoice!'))
1008     unless IS->post_invoice(\%myconfig, \%$form);
1009   remove_draft() if $form->{remove_draft};
1010
1011   if(!exists $form->{addition}) {
1012     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1013     $form->{addition} = $print_post     ? "PRINTED AND POSTED" :
1014                         $form->{storno} ? "STORNO"             :
1015                                           "POSTED";
1016     $form->save_history($form->dbconnect(\%myconfig));
1017   }
1018
1019   $form->redirect( $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
1020     unless $print_post;
1021
1022   $main::lxdebug->leave_sub();
1023 }
1024
1025 sub print_and_post {
1026   $main::lxdebug->enter_sub();
1027
1028   my $form     = $main::form;
1029
1030   $main::auth->assert('invoice_edit');
1031
1032   my $old_form               = new Form;
1033   $print_post             = 1;
1034   $form->{print_and_post} = 1;
1035   &post();
1036
1037   &edit();
1038   $main::lxdebug->leave_sub();
1039
1040 }
1041
1042 sub use_as_template {
1043   $main::lxdebug->enter_sub();
1044
1045   my $form     = $main::form;
1046   my %myconfig = %main::myconfig;
1047
1048   $main::auth->assert('invoice_edit');
1049
1050   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);
1051   $form->{paidaccounts} = 1;
1052   $form->{rowcount}--;
1053   $form->{invdate} = $form->current_date(\%myconfig);
1054   &display_form;
1055
1056   $main::lxdebug->leave_sub();
1057 }
1058
1059 sub storno {
1060   $main::lxdebug->enter_sub();
1061
1062   my $form     = $main::form;
1063   my %myconfig = %main::myconfig;
1064   my $locale   = $main::locale;
1065
1066   $main::auth->assert('invoice_edit');
1067
1068   if ($form->{storno}) {
1069     $form->error($locale->text('Cannot storno storno invoice!'));
1070   }
1071
1072   if (IS->has_storno(\%myconfig, $form, "ar")) {
1073     $form->error($locale->text("Invoice has already been storno'd!"));
1074   }
1075
1076   map({ my $key = $_; delete($form->{$key}) unless (grep({ $key eq $_ } qw(id login password stylesheet type))); } keys(%{ $form }));
1077
1078   invoice_links();
1079   prepare_invoice();
1080   relink_accounts();
1081
1082   # Payments must not be recorded for the new storno invoice.
1083   $form->{paidaccounts} = 0;
1084   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
1085
1086   $form->{storno_id} = $form->{id};
1087   $form->{storno} = 1;
1088   $form->{id} = "";
1089   $form->{invnumber} = "Storno zu " . $form->{invnumber};
1090   $form->{rowcount}++;
1091
1092   post();
1093   $main::lxdebug->leave_sub();
1094 }
1095
1096 sub preview {
1097   $main::lxdebug->enter_sub();
1098
1099   my $form     = $main::form;
1100
1101   $main::auth->assert('invoice_edit');
1102
1103   $form->{preview} = 1;
1104   my $old_form = new Form;
1105   for (keys %$form) { $old_form->{$_} = $form->{$_} }
1106
1107   &print_form($old_form);
1108   $main::lxdebug->leave_sub();
1109
1110 }
1111
1112 sub delete {
1113   $main::lxdebug->enter_sub();
1114
1115   my $form     = $main::form;
1116   my $locale   = $main::locale;
1117
1118   $main::auth->assert('invoice_edit');
1119
1120   if ($form->{second_run}) {
1121     $form->{print_and_post} = 0;
1122   }
1123   $form->header;
1124
1125   print qq|
1126 <body>
1127
1128 <form method="post" action="$form->{script}">
1129 |;
1130
1131   # delete action variable
1132   map { delete $form->{$_} } qw(action header);
1133
1134   foreach my $key (keys %$form) {
1135     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
1136     $form->{$key} =~ s/\"/&quot;/g;
1137     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
1138   }
1139
1140   print qq|
1141 <h2 class="confirm">| . $locale->text('Confirm!') . qq|</h2>
1142
1143 <h4>|
1144     . $locale->text('Are you sure you want to delete Invoice Number')
1145     . qq| $form->{invnumber}
1146 </h4>
1147
1148 <p>
1149 <input name="action" class="submit" type="submit" value="|
1150     . $locale->text('Yes') . qq|">
1151 </form>
1152 |;
1153
1154   $main::lxdebug->leave_sub();
1155 }
1156
1157 sub credit_note {
1158   $main::lxdebug->enter_sub();
1159
1160   my $form     = $main::form;
1161   my %myconfig = %main::myconfig;
1162   my $locale   = $main::locale;
1163
1164   $main::auth->assert('invoice_edit');
1165
1166   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
1167   $form->{duedate} =
1168     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
1169
1170   $form->{id}     = '';
1171   $form->{rowcount}--;
1172   $form->{shipto} = 1;
1173
1174
1175   $form->{title}  = $locale->text('Add Credit Note');
1176   $form->{script} = 'is.pl';
1177   our $script         = "is";
1178   our $buysell        = 'buy';
1179
1180
1181   # bo creates the id, reset it
1182   map { delete $form->{$_} }
1183     qw(id invnumber subject message cc bcc printed emailed queued);
1184   $form->{ $form->{vc} } =~ s/--.*//g;
1185   $form->{type} = "credit_note";
1186
1187
1188   map { $form->{"select$_"} = "" } ($form->{vc}, 'currency');
1189
1190   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1191     qw(creditlimit creditremaining);
1192
1193   my $currency = $form->{currency};
1194   &invoice_links;
1195
1196   $form->{currency}     = $currency;
1197   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, $buysell);
1198   $form->{exchangerate} = $form->{forex} || '';
1199
1200   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
1201
1202   &prepare_invoice;
1203
1204
1205   &display_form;
1206
1207   $main::lxdebug->leave_sub();
1208 }
1209
1210 sub yes {
1211   $main::lxdebug->enter_sub();
1212
1213   my $form     = $main::form;
1214   my %myconfig = %main::myconfig;
1215   my $locale   = $main::locale;
1216
1217   $main::auth->assert('invoice_edit');
1218
1219   if (IS->delete_invoice(\%myconfig, \%$form, $main::spool)) {
1220     # saving the history
1221         if(!exists $form->{addition}) {
1222     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
1223           $form->{addition} = "DELETED";
1224           $form->save_history($form->dbconnect(\%myconfig));
1225     }
1226     # /saving the history
1227     $form->redirect($locale->text('Invoice deleted!'));
1228   }
1229   $form->error($locale->text('Cannot delete invoice!'));
1230
1231   $main::lxdebug->leave_sub();
1232 }
1233
1234 sub e_mail {
1235   $main::lxdebug->enter_sub();
1236
1237   my $form     = $main::form;
1238
1239   $main::auth->assert('invoice_edit');
1240
1241   if (!$form->{id}) {
1242     $print_post = 1;
1243
1244     my $saved_form = save_form();
1245
1246     post();
1247
1248     restore_form($saved_form, 0, qw(id invnumber));
1249   }
1250
1251   edit_e_mail();
1252
1253   $main::lxdebug->leave_sub();
1254 }