1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger, Accounting
9 # Copyright (c) 1998-2002
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
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.
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 #======================================================================
30 # Inventory received module
32 #======================================================================
37 require "$form->{path}/io.pl";
38 require "$form->{path}/arap.pl";
45 $lxdebug->enter_sub();
46 print STDERR "ir.pl-add\n";
47 $form->{title} = $locale->text('Add Vendor Invoice');
53 $lxdebug->leave_sub();
57 $lxdebug->enter_sub();
59 $form->{title} = $locale->text('Edit Vendor Invoice');
65 $lxdebug->leave_sub();
69 $lxdebug->enter_sub();
70 print STDERR "ir.pl-invoice_links\n";
72 $form->{webdav} = $webdav;
75 $form->{jscalendar} = $jscalendar;
77 $form->create_links("AP", \%myconfig, "vendor");
79 if ($form->{all_vendor}) {
80 unless ($form->{vendor_id}) {
81 $form->{vendor_id} = $form->{all_vendor}->[0]->{id};
85 $cp_id = $form->{cp_id};
86 IR->get_vendor(\%myconfig, \%$form);
87 IR->retrieve_invoice(\%myconfig, \%$form);
88 $form->{cp_id} = $cp_id;
91 @curr = split /:/, $form->{currencies};
93 $form->{defaultcurrency} = $curr[0];
95 map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
97 $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
100 if ($form->{all_vendor}) {
101 $form->{vendor} = "$form->{vendor}--$form->{vendor_id}";
102 map { $form->{selectvendor} .= "<option>$_->{name}--$_->{id}\n" }
103 (@{ $form->{all_vendor} });
107 if ($form->{all_departments}) {
108 $form->{selectdepartment} = "<option>\n";
109 $form->{department} = "$form->{department}--$form->{department_id}";
112 $form->{selectdepartment} .=
113 "<option>$_->{description}--$_->{id}\n"
114 } (@{ $form->{all_departments} });
118 $form->{forex} = $form->{exchangerate};
119 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
121 foreach $key (keys %{ $form->{AP_links} }) {
123 foreach $ref (@{ $form->{AP_links}{$key} }) {
124 $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
127 if ($key eq "AP_paid") {
128 for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
129 $form->{"AP_paid_$i"} =
130 "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
133 $form->{"paid_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{amount};
134 $form->{"datepaid_$i"} =
135 $form->{acc_trans}{$key}->[$i - 1]->{transdate};
136 $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
137 $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
138 $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
139 $form->{"memo_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{memo};
141 $form->{paidaccounts} = $i;
145 "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
150 $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
152 $form->{AP} = $form->{AP_1} unless $form->{id};
155 ($form->datetonum($form->{invdate}, \%myconfig) <=
156 $form->datetonum($form->{closedto}, \%myconfig));
158 $lxdebug->leave_sub();
161 sub prepare_invoice {
162 $lxdebug->enter_sub();
163 print STDERR "ir.pl-prepare_invoice\n";
166 map { $form->{$_} =~ s/\"/"/g } qw(invnumber ordnumber quonumber);
168 foreach $ref (@{ $form->{invoice_details} }) {
170 map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
172 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
174 $decimalplaces = ($dec > 2) ? $dec : 2;
176 $form->{"sellprice_$i"} =
177 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
180 $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1));
182 $form->{rowcount} = $i;
186 $lxdebug->leave_sub();
190 $lxdebug->enter_sub();
191 print STDERR "ir.pl-form_header\n";
192 # set option selected
193 foreach $item (qw(AP vendor currency department contact)) {
194 $form->{"select$item"} =~ s/ selected//;
195 $form->{"select$item"} =~
196 s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
199 $form->{exchangerate} =
200 $form->format_amount(\%myconfig, $form->{exchangerate});
202 $form->{creditlimit} =
203 $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
204 $form->{creditremaining} =
205 $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
208 if ($form->{all_contacts}) {
210 $form->{selectcontact} = "";
211 foreach $item (@{ $form->{all_contacts} }) {
212 if ($form->{cp_id} == $item->{cp_id}) {
213 $form->{selectcontact} .=
214 "<option selected>$item->{cp_name}--$item->{cp_id}";
216 $form->{selectcontact} .= "<option>$item->{cp_name}--$item->{cp_id}";
222 if ($form->{currency} ne $form->{defaultcurrency}) {
223 if ($form->{forex}) {
225 <th align=right nowrap>|
226 . $locale->text('Exchangerate')
228 <td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>
232 <th align=right nowrap>|
233 . $locale->text('Exchangerate')
235 <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
240 <input type=hidden name=forex value=$form->{forex}>
244 ($form->{selectvendor})
245 ? qq|<select name=vendor>$form->{selectvendor}</select>\n<input type=hidden name="selectvendor" value="$form->{selectvendor}">|
246 : qq|<input name=vendor value="$form->{vendor}" size=35>|;
249 ($form->{selectcontact})
250 ? qq|<select name=contact>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
251 : qq|<input name=contact value="$form->{contact}" size=35>|;
255 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
256 <td colspan=3><select name=department>$form->{selectdepartment}</select>
257 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
260 | if $form->{selectdepartment};
262 $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
264 # use JavaScript Calendar or not
265 $form->{jsscript} = $form->{jscalendar};
267 if ($form->{jsscript}) {
269 # with JavaScript Calendar
271 <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
272 <td><input type=button name=invdate id="trigger1" value=|
273 . $locale->text('button')
277 <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
278 <td width="4"><input type=button name=duedate id="trigger2" value=|
279 . $locale->text('button')
285 Form->write_trigger(\%myconfig, "2", "invdate", "BL", "trigger1",
286 "duedate", "BL", "trigger2");
289 # without JavaScript Calendar
291 qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
293 qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
301 <form method=post action=$form->{script}>
303 <input type=hidden name=id value=$form->{id}>
304 <input type=hidden name=title value="$form->{title}">
305 <input type=hidden name=vc value="vendor">
306 <input type=hidden name=type value=$form->{type}>
307 <input type=hidden name=level value=$form->{level}>
309 <input type=hidden name=creditlimit value=$form->{creditlimit}>
310 <input type=hidden name=creditremaining value=$form->{creditremaining}>
312 <input type=hidden name=closedto value=$form->{closedto}>
313 <input type=hidden name=locked value=$form->{locked}>
315 <input type=hidden name=shipped value=$form->{shipped}>
320 <th class=listtop>$form->{title}</th>
330 <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
331 <td colspan=3>$vendor</td>
333 <th align=richt nowrap>|
334 . $locale->text('Contact Person')
336 <td colspan=3>$contact</td>
338 <input type=hidden name=vendor_id value=$form->{vendor_id}>
339 <input type=hidden name=oldvendor value="$form->{oldvendor}">
347 <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
348 <td>$form->{creditlimit}</td>
350 <th nowrap>| . $locale->text('Remaining') . qq|</th>
351 <td class="plus$n">$form->{creditremaining}</td>
356 <th align=right>| . $locale->text('Record in') . qq|</th>
357 <td colspan=3><select name=AP>$form->{selectAP}</select></td>
358 <input type=hidden name=selectAP value="$form->{selectAP}">
362 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
363 <td><select name=currency>$form->{selectcurrency}</select></td>
371 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
372 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
375 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
379 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
383 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
384 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
385 <input type=hidden name=quonumber value="$form->{quonumber}">
396 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
397 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
398 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
399 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
400 <input type=hidden name=webdav value=$webdav>
402 <input type=hidden name=taxpart value="$form->{taxpart}">
403 <input type=hidden name=taxservice value="$form->{taxservice}">
405 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
408 foreach $item (split / /, $form->{taxaccounts}) {
410 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
411 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
415 $lxdebug->leave_sub();
419 $lxdebug->enter_sub();
420 print STDERR "ir.pl-form_footer\n";
421 $form->{invtotal} = $form->{invsubtotal};
423 if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
426 if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
429 $rows = ($rows > $introws) ? $rows : $introws;
431 qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
433 qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
435 $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
438 if ($form->{taxaccounts}) {
440 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
441 . $locale->text('Tax Included') . qq|</b>
445 if (!$form->{taxincluded}) {
447 foreach $item (split / /, $form->{taxaccounts}) {
448 if ($form->{"${item}_base"}) {
449 $form->{invtotal} += $form->{"${item}_total"} =
451 $form->{"${item}_base"} * $form->{"${item}_rate"},
453 $form->{"${item}_total"} =
454 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
458 <th align=right>$form->{"${item}_description"}</th>
459 <td align=right>$form->{"${item}_total"}</td>
465 $form->{invsubtotal} =
466 $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
470 <th align=right>| . $locale->text('Subtotal') . qq|</th>
471 <td align=right>$form->{invsubtotal}</td>
477 if ($form->{taxincluded}) {
478 foreach $item (split / /, $form->{taxaccounts}) {
479 if ($form->{"${item}_base"}) {
480 $form->{"${item}_total"} =
482 ($form->{"${item}_base"} * $form->{"${item}_rate"} /
483 (1 + $form->{"${item}_rate"})
486 $form->{"${item}_base"} =
487 $form->round_amount($form->{"${item}_base"}, 2);
488 $form->{"${item}_netto"} =
490 ($form->{"${item}_base"} - $form->{"${item}_total"}),
492 $form->{"${item}_netto"} =
493 $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
494 $form->{"${item}_total"} =
495 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
499 <th align=right>Enthaltene $form->{"${item}_description"}</th>
500 <td align=right>$form->{"${item}_total"}</td>
503 <th align=right>Nettobetrag</th>
504 <td align=right>$form->{"${item}_netto"}</td>
512 $form->{oldinvtotal} = $form->{invtotal};
514 $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
518 <td colspan=$colspan>
519 <table cellspacing="0">
524 <th align=left>| . $locale->text('Notes') . qq|</th>
525 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
533 <td colspan=2 align=right width=100%>
540 <th align=right>| . $locale->text('Total') . qq|</th>
541 <td align=right>$form->{invtotal}</td>
553 <td><hr size=3 noshade></td>
556 <th class=listtop align=left>Dokumente im Webdav-Repository</th>
559 <td align=left width=30%><b>Dateiname</b></td>
560 <td align=left width=70%><b>Webdavlink</b></td>
562 foreach $file (keys %{ $form->{WEBDAV} }) {
565 <td align=left>$file</td>
566 <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
578 <input type=hidden name=jscalendar value=$form->{jscalendar}>
582 <td colspan=$colspan>
585 <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
589 if ($form->{currency} eq $form->{defaultcurrency}) {
590 @column_index = qw(datepaid source memo paid AP_paid);
592 @column_index = qw(datepaid source memo paid exchangerate AP_paid);
595 $column_data{datepaid} = "<th>" . $locale->text('Date') . "</th>";
596 $column_data{paid} = "<th>" . $locale->text('Amount') . "</th>";
597 $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
598 $column_data{AP_paid} = "<th>" . $locale->text('Account') . "</th>";
599 $column_data{source} = "<th>" . $locale->text('Source') . "</th>";
600 $column_data{memo} = "<th>" . $locale->text('Memo') . "</th>";
605 map { print "$column_data{$_}\n" } @column_index;
610 $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
611 for $i (1 .. $form->{paidaccounts}) {
617 $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
618 $form->{"selectAP_paid_$i"} =~
619 s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
623 $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
624 $form->{"exchangerate_$i"} =
625 $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
627 $exchangerate = qq| |;
628 if ($form->{currency} ne $form->{defaultcurrency}) {
629 if ($form->{"forex_$i"}) {
631 qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
634 qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
638 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
641 $column_data{"paid_$i"} =
642 qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
643 $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
644 $column_data{"AP_paid_$i"} =
645 qq|<td align=center><select name="AP_paid_$i">$form->{"selectAP_paid_$i"}</select></td>|;
646 $column_data{"datepaid_$i"} =
647 qq|<td align=center><input name="datepaid_$i" size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}></td>|;
648 $column_data{"source_$i"} =
649 qq|<td align=center><input name="source_$i" size=11 value=$form->{"source_$i"}></td>|;
650 $column_data{"memo_$i"} =
651 qq|<td align=center><input name="memo_$i" size=11 value=$form->{"memo_$i"}></td>|;
653 map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
661 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
662 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
663 <input type=hidden name=selectAP_paid value="$form->{selectAP_paid}">
668 <td><hr size=3 noshade></td>
674 $invdate = $form->datetonum($form->{invdate}, \%myconfig);
675 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
678 print qq|<input class=submit type=submit name=action value="|
679 . $locale->text('Update') . qq|">
682 if (!$form->{revtrans}) {
683 if (!$form->{locked}) {
685 <input class=submit type=submit name=action value="|
686 . $locale->text('Post') . qq|">
687 <input class=submit type=submit name=action value="|
688 . $locale->text('Delete') . qq|">
693 if ($invdate > $closedto) {
695 <input class=submit type=submit name=action value="|
696 . $locale->text('Post as new') . qq|">
697 <input class=submit type=submit name=action value="|
698 . $locale->text('Order') . qq|">
703 if ($invdate > $closedto) {
704 print qq|<input class=submit type=submit name=action value="|
705 . $locale->text('Update') . qq|">
706 <input class=submit type=submit name=action value="|
707 . $locale->text('Post') . qq|">|;
711 if ($form->{menubar}) {
712 require "$form->{path}/menu.pl";
718 <input type=hidden name=rowcount value=$form->{rowcount}>
720 <input name=callback type=hidden value="$form->{callback}">
722 <input type=hidden name=path value=$form->{path}>
723 <input type=hidden name=login value=$form->{login}>
724 <input type=hidden name=password value=$form->{password}>
732 $lxdebug->leave_sub();
736 $lxdebug->enter_sub();
738 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
739 qw(exchangerate creditlimit creditremaining);
745 $form->{exchangerate} = $exchangerate
749 $form->check_exchangerate(
750 \%myconfig, $form->{currency}, $form->{invdate}, 'sell'
753 for $i (1 .. $form->{paidaccounts}) {
754 if ($form->{"paid_$i"}) {
757 $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
758 } qw(paid exchangerate);
760 $form->{"exchangerate_$i"} = $exchangerate
762 $form->{"forex_$i"} = (
764 $form->check_exchangerate(
765 \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell'
770 $i = $form->{rowcount};
771 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
773 if ( ($form->{"partnumber_$i"} eq "")
774 && ($form->{"description_$i"} eq "")
775 && ($form->{"partsgroup_$i"} eq "")) {
776 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
781 IR->retrieve_item(\%myconfig, \%$form);
783 my $rows = scalar @{ $form->{item_list} };
786 $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
795 # override sellprice if there is one entered
796 $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
798 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
799 qw(partnumber description unit);
801 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
802 keys %{ $form->{item_list}[0] };
804 $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
806 ($dec) = ($s =~ /\.(\d+)/);
808 $decimalplaces = ($dec > 2) ? $dec : 2;
811 $form->{"sellprice_$i"} = $sellprice;
814 # if there is an exchange rate adjust sellprice
815 $form->{"sellprice_$i"} /= $exchangerate;
819 $form->{"sellprice_$i"} * $form->{"qty_$i"} *
820 (1 - $form->{"discount_$i"} / 100);
821 $form->{creditremaining} -= $amount;
822 $form->{"sellprice_$i"} =
823 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
826 $form->format_amount(\%myconfig, $form->{"qty_$i"});
833 # ok, so this is a new part
834 # ask if it is a part or service item
836 if ( $form->{"partsgroup_$i"}
837 && ($form->{"partsnumber_$i"} eq "")
838 && ($form->{"description_$i"} eq "")) {
840 $form->{"discount_$i"} = "";
844 $form->{"id_$i"} = 0;
845 $form->{"unit_$i"} = $locale->text('ea');
852 $lxdebug->leave_sub();
856 $lxdebug->enter_sub();
858 $form->isblank("invdate", $locale->text('Invoice Date missing!'));
859 $form->isblank("vendor", $locale->text('Vendor missing!'));
861 # if the vendor changed get new values
862 if (&check_name(vendor)) {
869 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
870 $invdate = $form->datetonum($form->{invdate}, \%myconfig);
872 $form->error($locale->text('Cannot post invoice for a closed period!'))
873 if ($invdate <= $closedto);
875 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
876 if ($form->{currency} ne $form->{defaultcurrency});
878 for $i (1 .. $form->{paidaccounts}) {
879 if ($form->{"paid_$i"}) {
880 $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
882 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
884 $form->error($locale->text('Cannot post payment for a closed period!'))
885 if ($datepaid <= $closedto);
887 if ($form->{currency} ne $form->{defaultcurrency}) {
888 $form->{"exchangerate_$i"} = $form->{exchangerate}
889 if ($invdate == $datepaid);
890 $form->isblank("exchangerate_$i",
891 $locale->text('Exchangerate for payment missing!'));
896 ($form->{AP}) = split /--/, $form->{AP};
897 ($form->{AP_paid}) = split /--/, $form->{AP_paid};
899 $form->{id} = 0 if $form->{postasnew};
901 $form->redirect( $locale->text('Invoice')
902 . " $form->{invnumber} "
903 . $locale->text('posted!'))
904 if (IR->post_invoice(\%myconfig, \%$form));
905 $form->error($locale->text('Cannot post invoice!'));
907 $lxdebug->leave_sub();
911 $lxdebug->enter_sub();
918 <form method=post action=$form->{script}>
921 # delete action variable
922 map { delete $form->{$_} } qw(action header);
924 foreach $key (keys %$form) {
925 $form->{$key} =~ s/\"/"/g;
926 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
930 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
933 . $locale->text('Are you sure you want to delete Invoice Number')
934 . qq| $form->{invnumber}</h4>
936 <input name=action class=submit type=submit value="|
937 . $locale->text('Yes') . qq|">
941 $lxdebug->leave_sub();
945 $lxdebug->enter_sub();
947 $form->redirect($locale->text('Invoice deleted!'))
948 if (IR->delete_invoice(\%myconfig, \%$form));
949 $form->error($locale->text('Cannot delete invoice!'));
951 $lxdebug->leave_sub();