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