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();
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();
72 $form->{webdav} = $webdav;
75 $form->{jscalendar} = $jscalendar;
77 $form->create_links("AP", \%myconfig, "vendor");
79 #quote all_vendor Bug 133
80 foreach $ref (@{ $form->{all_vendor} }) {
81 $ref->{name} = $form->quote($ref->{name});
84 if ($form->{all_vendor}) {
85 unless ($form->{vendor_id}) {
86 $form->{vendor_id} = $form->{all_vendor}->[0]->{id};
89 if ($form->{payment_id}) {
90 $payment_id = $form->{payment_id};
92 if ($form->{language_id}) {
93 $language_id = $form->{language_id};
95 if ($form->{taxzone_id}) {
96 $taxzone_id = $form->{taxzone_id};
99 $cp_id = $form->{cp_id};
100 IR->get_vendor(\%myconfig, \%$form);
101 IR->retrieve_invoice(\%myconfig, \%$form);
102 $form->{cp_id} = $cp_id;
105 $form->{payment_id} = $payment_id;
108 $form->{language_id} = $language_id;
111 $form->{taxzone_id} = $taxzone_id;
115 @curr = split(/:/, $form->{currencies});
117 $form->{defaultcurrency} = $curr[0];
119 map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
121 $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
124 if (@{ $form->{all_vendor} }) {
125 $form->{vendor} = "$form->{vendor}--$form->{vendor_id}";
126 map { $form->{selectvendor} .= "<option>$_->{name}--$_->{id}\n" }
127 (@{ $form->{all_vendor} });
131 if ($form->{all_departments}) {
132 $form->{selectdepartment} = "<option>\n";
133 $form->{department} = "$form->{department}--$form->{department_id}";
136 $form->{selectdepartment} .=
137 "<option>$_->{description}--$_->{id}\n"
138 } (@{ $form->{all_departments} });
142 $form->{forex} = $form->{exchangerate};
143 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
145 foreach $key (keys %{ $form->{AP_links} }) {
147 foreach $ref (@{ $form->{AP_links}{$key} }) {
148 $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
151 if ($key eq "AP_paid") {
152 for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
153 $form->{"AP_paid_$i"} =
154 "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
157 $form->{"paid_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{amount};
158 $form->{"datepaid_$i"} =
159 $form->{acc_trans}{$key}->[$i - 1]->{transdate};
160 $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
161 $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
162 $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
163 $form->{"memo_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{memo};
165 $form->{paidaccounts} = $i;
169 "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
174 $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
176 $form->{AP} = $form->{AP_1} unless $form->{id};
179 ($form->datetonum($form->{invdate}, \%myconfig) <=
180 $form->datetonum($form->{closedto}, \%myconfig));
182 $lxdebug->leave_sub();
185 sub prepare_invoice {
186 $lxdebug->enter_sub();
190 map { $form->{$_} =~ s/\"/"/g } qw(invnumber ordnumber quonumber);
193 foreach $ref (@{ $form->{invoice_details} }) {
195 map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
197 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
199 $decimalplaces = ($dec > 2) ? $dec : 2;
201 $form->{"sellprice_$i"} =
202 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
205 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
206 $dec_qty = length $dec_qty;
209 $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1), $dec_qty);
211 $form->{rowcount} = $i;
215 $lxdebug->leave_sub();
219 $lxdebug->enter_sub();
221 # set option selected
222 foreach $item (qw(AP vendor currency department contact)) {
223 $form->{"select$item"} =~ s/ selected//;
224 $form->{"select$item"} =~
225 s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
229 ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
231 #quote selectvendor Bug 133
232 $form->{"selectvendor"} = $form->quote($form->{"selectvendor"});
234 $form->{exchangerate} =
235 $form->format_amount(\%myconfig, $form->{exchangerate});
237 $form->{creditlimit} =
238 $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
239 $form->{creditremaining} =
240 $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
243 if ($form->{all_contacts}) {
245 $form->{selectcontact} = "";
246 foreach $item (@{ $form->{all_contacts} }) {
247 if ($form->{cp_id} == $item->{cp_id}) {
248 $form->{selectcontact} .=
249 "<option selected>$item->{cp_name}--$item->{cp_id}";
251 $form->{selectcontact} .= "<option>$item->{cp_name}--$item->{cp_id}";
257 if ($form->{currency} ne $form->{defaultcurrency}) {
258 if ($form->{forex}) {
260 <th align=right nowrap>|
261 . $locale->text('Exchangerate') . qq|</th>
262 <td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>
266 <th align=right nowrap>|
267 . $locale->text('Exchangerate') . qq|</th>
268 <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
273 <input type=hidden name=forex value=$form->{forex}>
277 if (@{ $form->{TAXZONE} }) {
278 $form->{selecttaxzone} = "";
279 foreach $item (@{ $form->{TAXZONE} }) {
280 if ($item->{id} == $form->{taxzone_id}) {
281 $form->{selecttaxzone} .=
282 "<option value=$item->{id} selected>" . H($item->{description}) .
285 $form->{selecttaxzone} .=
286 "<option value=$item->{id}>" . H($item->{description}) . "</option>";
291 $form->{selecttaxzone} =~ s/ selected//g;
292 if ($form->{taxzone_id} ne "") {
293 $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}/value=$form->{taxzone_id} selected/;
299 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
300 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
301 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
307 ($form->{selectvendor})
308 ? qq|<select name=vendor>$form->{selectvendor}</select>\n<input type=hidden name="selectvendor" value="$form->{selectvendor}">|
309 : qq|<input name=vendor value="$form->{vendor}" size=35>|;
312 ($form->{selectcontact})
313 ? qq|<select name=contact>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
314 : qq|<input name=contact value="$form->{contact}" size=35>|;
318 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
319 <td colspan=3><select name=department>$form->{selectdepartment}</select>
320 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
323 | if $form->{selectdepartment};
325 $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
327 # use JavaScript Calendar or not
328 $form->{jsscript} = $form->{jscalendar};
330 if ($form->{jsscript}) {
332 # with JavaScript Calendar
334 <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
335 <td><input type=button name=invdate id="trigger1" value=|
336 . $locale->text('button') . qq|></td>
339 <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
340 <td width="4"><input type=button name=duedate id="trigger2" value=|
341 . $locale->text('button') . qq|></td></td>
346 Form->write_trigger(\%myconfig, "2", "invdate", "BL", "trigger1",
347 "duedate", "BL", "trigger2");
350 # without JavaScript Calendar
352 qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
354 qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
357 $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
364 <form method=post action=$form->{script}>
366 <input type=hidden name=id value=$form->{id}>
367 <input type=hidden name=title value="$form->{title}">
368 <input type=hidden name=vc value="vendor">
369 <input type=hidden name=type value=$form->{type}>
370 <input type=hidden name=level value=$form->{level}>
372 <input type=hidden name=creditlimit value=$form->{creditlimit}>
373 <input type=hidden name=creditremaining value=$form->{creditremaining}>
375 <input type=hidden name=closedto value=$form->{closedto}>
376 <input type=hidden name=locked value=$form->{locked}>
378 <input type=hidden name=shipped value=$form->{shipped}>
379 <input type=hidden name=storno value=$form->{storno}>
380 <input type=hidden name=storno_id value=$form->{storno_id}>
384 <th class=listtop>$form->{title}</th>
394 <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
395 <td colspan=3>$vendor</td>
397 <th align=richt nowrap>|
398 . $locale->text('Contact Person') . qq|</th>
399 <td colspan=3>$contact</td>
401 <input type=hidden name=vendor_id value=$form->{vendor_id}>
402 <input type=hidden name=oldvendor value="$form->{oldvendor}">
410 <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
411 <td>$form->{creditlimit}</td>
413 <th nowrap>| . $locale->text('Remaining') . qq|</th>
414 <td class="plus$n">$form->{creditremaining}</td>
419 <th align=right>| . $locale->text('Record in') . qq|</th>
420 <td colspan=3><select name=AP>$form->{selectAP}</select></td>
421 <input type=hidden name=selectAP value="$form->{selectAP}">
426 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
427 <td><select name=currency>$form->{selectcurrency}</select></td>
435 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
436 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
439 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
443 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
447 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
448 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
449 <input type=hidden name=quonumber value="$form->{quonumber}">
460 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
461 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
462 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
463 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
464 <input type=hidden name=webdav value=$webdav>
466 <input type=hidden name=taxpart value="$form->{taxpart}">
467 <input type=hidden name=taxservice value="$form->{taxservice}">
469 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
472 foreach $item (split / /, $form->{taxaccounts}) {
474 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
475 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
479 $lxdebug->leave_sub();
483 $lxdebug->enter_sub();
485 $form->{invtotal} = $form->{invsubtotal};
487 if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
490 if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
493 $rows = ($rows > $introws) ? $rows : $introws;
495 qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
497 qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
499 $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
502 if ($form->{taxaccounts}) {
504 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
505 . $locale->text('Tax Included') . qq|</b>
509 if (!$form->{taxincluded}) {
511 foreach $item (split / /, $form->{taxaccounts}) {
512 if ($form->{"${item}_base"}) {
513 $form->{invtotal} += $form->{"${item}_total"} =
515 $form->{"${item}_base"} * $form->{"${item}_rate"},
517 $form->{"${item}_total"} =
518 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
522 <th align=right>$form->{"${item}_description"}</th>
523 <td align=right>$form->{"${item}_total"}</td>
529 $form->{invsubtotal} =
530 $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
534 <th align=right>| . $locale->text('Subtotal') . qq|</th>
535 <td align=right>$form->{invsubtotal}</td>
541 if ($form->{taxincluded}) {
542 foreach $item (split / /, $form->{taxaccounts}) {
543 if ($form->{"${item}_base"}) {
544 $form->{"${item}_total"} =
546 ($form->{"${item}_base"} * $form->{"${item}_rate"} /
547 (1 + $form->{"${item}_rate"})
550 $form->{"${item}_base"} =
551 $form->round_amount($form->{"${item}_base"}, 2);
552 $form->{"${item}_netto"} =
554 ($form->{"${item}_base"} - $form->{"${item}_total"}),
556 $form->{"${item}_netto"} =
557 $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
558 $form->{"${item}_total"} =
559 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
563 <th align=right>Enthaltene $form->{"${item}_description"}</th>
564 <td align=right>$form->{"${item}_total"}</td>
567 <th align=right>Nettobetrag</th>
568 <td align=right>$form->{"${item}_netto"}</td>
576 $form->{oldinvtotal} = $form->{invtotal};
578 $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
582 <td colspan=$colspan>
583 <table cellspacing="0">
588 <th align=left>| . $locale->text('Notes') . qq|</th>
589 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
597 <td colspan=2 align=right width=100%>
604 <th align=right>| . $locale->text('Total') . qq|</th>
605 <td align=right>$form->{invtotal}</td>
617 <td><hr size=3 noshade></td>
620 <th class=listtop align=left>Dokumente im Webdav-Repository</th>
623 <td align=left width=30%><b>Dateiname</b></td>
624 <td align=left width=70%><b>Webdavlink</b></td>
626 foreach $file (keys %{ $form->{WEBDAV} }) {
629 <td align=left>$file</td>
630 <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
642 <input type=hidden name=jscalendar value=$form->{jscalendar}>
646 <td colspan=$colspan>
649 <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
653 if ($form->{currency} eq $form->{defaultcurrency}) {
654 @column_index = qw(datepaid source memo paid AP_paid);
656 @column_index = qw(datepaid source memo paid exchangerate AP_paid);
659 $column_data{datepaid} = "<th>" . $locale->text('Date') . "</th>";
660 $column_data{paid} = "<th>" . $locale->text('Amount') . "</th>";
661 $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
662 $column_data{AP_paid} = "<th>" . $locale->text('Account') . "</th>";
663 $column_data{source} = "<th>" . $locale->text('Source') . "</th>";
664 $column_data{memo} = "<th>" . $locale->text('Memo') . "</th>";
669 map { print "$column_data{$_}\n" } @column_index;
675 $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
676 for $i (1 .. $form->{paidaccounts}) {
682 $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
683 $form->{"selectAP_paid_$i"} =~
684 s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
687 if ($form->{"paid_$i"}) {
689 $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
691 $form->{"exchangerate_$i"} =
692 $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
694 $exchangerate = qq| |;
695 if ($form->{currency} ne $form->{defaultcurrency}) {
696 if ($form->{"forex_$i"}) {
698 qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
701 qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
705 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
708 $column_data{"paid_$i"} =
709 qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
710 $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
711 $column_data{"AP_paid_$i"} =
712 qq|<td align=center><select name="AP_paid_$i">$form->{"selectAP_paid_$i"}</select></td>|;
713 $column_data{"datepaid_$i"} =
714 qq|<td align=center><input name="datepaid_$i" size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}>
715 <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
716 $column_data{"source_$i"} =
717 qq|<td align=center><input name="source_$i" size=11 value=$form->{"source_$i"}></td>|;
718 $column_data{"memo_$i"} =
719 qq|<td align=center><input name="memo_$i" size=11 value=$form->{"memo_$i"}></td>|;
721 map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
726 push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
730 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
731 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
732 <input type=hidden name=selectAP_paid value="$form->{selectAP_paid}">
737 <td><hr size=3 noshade></td>
743 $invdate = $form->datetonum($form->{invdate}, \%myconfig);
744 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
747 print qq|<input class=submit type=submit name=action value="|
748 . $locale->text('Post Payment') . qq|">
750 print qq|<input class=submit type=submit name=action value="|
751 . $locale->text('Storno') . qq|">
752 | unless ($form->{storno});
753 if ($form->{radier}) {
755 <input class=submit type=submit name=action value="|
756 . $locale->text('Delete') . qq|">
759 print qq|<input class=submit type=submit name=action value="|
760 . $locale->text('Use As Template') . qq|">
765 print qq|<input class=submit type=submit name=action id=update_button value="|
766 . $locale->text('Update') . qq|">|;
768 if (!$form->{id} && ($invdate > $closedto)) {
769 print qq| <input class=submit type=submit name=action value="|
770 . $locale->text('Post') . qq|">|;
773 print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
776 <input type=hidden name=rowcount value=$form->{rowcount}>
778 <input name=callback type=hidden value="$form->{callback}">
780 <input type=hidden name=path value=$form->{path}>
781 <input type=hidden name=login value=$form->{login}>
782 <input type=hidden name=password value=$form->{password}>
790 $lxdebug->leave_sub();
794 $lxdebug->enter_sub();
796 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
797 qw(exchangerate creditlimit creditremaining);
803 $form->{exchangerate} = $exchangerate
807 $form->check_exchangerate(
808 \%myconfig, $form->{currency}, $form->{invdate}, 'sell'
811 for $i (1 .. $form->{paidaccounts}) {
812 if ($form->{"paid_$i"}) {
815 $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
816 } qw(paid exchangerate);
818 $form->{"exchangerate_$i"} = $exchangerate
820 $form->{"forex_$i"} = (
822 $form->check_exchangerate(
823 \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell'
828 $i = $form->{rowcount};
829 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
831 if ( ($form->{"partnumber_$i"} eq "")
832 && ($form->{"description_$i"} eq "")
833 && ($form->{"partsgroup_$i"} eq "")) {
834 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
839 IR->retrieve_item(\%myconfig, \%$form);
841 my $rows = scalar @{ $form->{item_list} };
844 $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
853 # override sellprice if there is one entered
854 $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
856 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
857 qw(partnumber description unit);
859 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
860 keys %{ $form->{item_list}[0] };
862 $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
864 ($dec) = ($s =~ /\.(\d+)/);
866 $decimalplaces = ($dec > 2) ? $dec : 2;
869 $form->{"sellprice_$i"} = $sellprice;
872 # if there is an exchange rate adjust sellprice
873 $form->{"sellprice_$i"} /= $exchangerate;
877 $form->{"sellprice_$i"} * $form->{"qty_$i"} *
878 (1 - $form->{"discount_$i"} / 100);
879 $form->{creditremaining} -= $amount;
880 $form->{"sellprice_$i"} =
881 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
884 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
891 # ok, so this is a new part
892 # ask if it is a part or service item
894 if ( $form->{"partsgroup_$i"}
895 && ($form->{"partsnumber_$i"} eq "")
896 && ($form->{"description_$i"} eq "")) {
898 $form->{"discount_$i"} = "";
902 $form->{"id_$i"} = 0;
903 $form->{"unit_$i"} = $locale->text('ea');
910 $lxdebug->leave_sub();
914 $lxdebug->enter_sub();
916 if ($form->{storno}) {
917 $form->error($locale->text('Cannot storno storno invoice!'));
920 $form->{storno_id} = $form->{id};
923 $form->{invnumber} = "Storno zu " . $form->{invnumber};
926 $lxdebug->leave_sub();
930 sub use_as_template {
931 $lxdebug->enter_sub();
933 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);
934 $form->{paidaccounts} = 1;
936 $form->{invdate} = $form->current_date(\%myconfig);
939 $lxdebug->leave_sub();
943 $lxdebug->enter_sub();
944 for $i (1 .. $form->{paidaccounts}) {
945 if ($form->{"paid_$i"}) {
946 $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
948 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
950 $form->error($locale->text('Cannot post payment for a closed period!'))
951 if ($datepaid <= $closedto);
953 if ($form->{currency} ne $form->{defaultcurrency}) {
954 $form->{"exchangerate_$i"} = $form->{exchangerate}
955 if ($invdate == $datepaid);
956 $form->isblank("exchangerate_$i",
957 $locale->text('Exchangerate for payment missing!'));
962 ($form->{AP}) = split /--/, $form->{AP};
963 ($form->{AP_paid}) = split /--/, $form->{AP_paid};
964 $form->redirect($locale->text(' Payment posted!'))
965 if (IR->post_payment(\%myconfig, \%$form));
966 $form->error($locale->text('Cannot post payment!'));
969 $lxdebug->leave_sub();
973 $lxdebug->enter_sub();
975 $form->isblank("invdate", $locale->text('Invoice Date missing!'));
976 $form->isblank("vendor", $locale->text('Vendor missing!'));
978 # if the vendor changed get new values
979 if (&check_name(vendor)) {
986 $closedto = $form->datetonum($form->{closedto}, \%myconfig);
987 $invdate = $form->datetonum($form->{invdate}, \%myconfig);
989 $form->error($locale->text('Cannot post invoice for a closed period!'))
990 if ($invdate <= $closedto);
992 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
993 if ($form->{currency} ne $form->{defaultcurrency});
995 for $i (1 .. $form->{paidaccounts}) {
996 if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
997 $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
999 $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
1001 $form->error($locale->text('Cannot post payment for a closed period!'))
1002 if ($datepaid <= $closedto);
1004 if ($form->{currency} ne $form->{defaultcurrency}) {
1005 $form->{"exchangerate_$i"} = $form->{exchangerate}
1006 if ($invdate == $datepaid);
1007 $form->isblank("exchangerate_$i",
1008 $locale->text('Exchangerate for payment missing!'));
1013 ($form->{AP}) = split /--/, $form->{AP};
1014 ($form->{AP_paid}) = split /--/, $form->{AP_paid};
1016 $form->{id} = 0 if $form->{postasnew};
1020 $form->redirect( $locale->text('Invoice')
1021 . " $form->{invnumber} "
1022 . $locale->text('posted!'))
1023 if (IR->post_invoice(\%myconfig, \%$form));
1024 $form->error($locale->text('Cannot post invoice!'));
1026 $lxdebug->leave_sub();
1030 $lxdebug->enter_sub();
1037 <form method=post action=$form->{script}>
1040 # delete action variable
1041 map { delete $form->{$_} } qw(action header);
1043 foreach $key (keys %$form) {
1044 $form->{$key} =~ s/\"/"/g;
1045 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1049 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
1052 . $locale->text('Are you sure you want to delete Invoice Number')
1053 . qq| $form->{invnumber}</h4>
1055 <input name=action class=submit type=submit value="|
1056 . $locale->text('Yes') . qq|">
1060 $lxdebug->leave_sub();
1064 $lxdebug->enter_sub();
1066 $form->redirect($locale->text('Invoice deleted!'))
1067 if (IR->delete_invoice(\%myconfig, \%$form));
1068 $form->error($locale->text('Cannot delete invoice!'));
1070 $lxdebug->leave_sub();