Nicht-editierbare CVars auch im Workflow richtig setzen. ...
[kivitendo-erp.git] / SL / IR.pm
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) 2001
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #======================================================================
30 #
31 # Inventory received module
32 #
33 #======================================================================
34
35 package IR;
36
37 use SL::AM;
38 use SL::ARAP;
39 use SL::Common;
40 use SL::CVar;
41 use SL::DATEV qw(:CONSTANTS);
42 use SL::DBUtils;
43 use SL::DO;
44 use SL::GenericTranslations;
45 use SL::HTML::Restrict;
46 use SL::IO;
47 use SL::MoreCommon;
48 use SL::DB::Default;
49 use SL::DB::TaxZone;
50 use List::Util qw(min);
51
52 use strict;
53
54 sub post_invoice {
55   $main::lxdebug->enter_sub();
56
57   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
58
59   # connect to database, turn off autocommit
60   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect_noauto($myconfig);
61   my $restricter = SL::HTML::Restrict->create;
62
63   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
64   my $defaultcurrency = $form->{defaultcurrency};
65
66   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
67                                           dbh    => $dbh);
68
69   my ($query, $sth, @values, $project_id);
70   my ($allocated, $taxrate, $taxamount, $taxdiff, $item);
71   my ($amount, $linetotal, $lastinventoryaccno, $lastexpenseaccno);
72   my ($netamount, $invoicediff, $expensediff) = (0, 0, 0);
73   my $exchangerate = 0;
74   my ($basefactor, $baseqty, @taxaccounts, $totaltax);
75
76   my $all_units = AM->retrieve_units($myconfig, $form);
77
78 #markierung
79   if (!$payments_only) {
80     if ($form->{id}) {
81       &reverse_invoice($dbh, $form);
82     } else {
83       ($form->{id}) = selectrow_query($form, $dbh, qq|SELECT nextval('glid')|);
84       do_query($form, $dbh, qq|INSERT INTO ap (id, invnumber, currency_id, taxzone_id) VALUES (?, '', (SELECT id FROM currencies WHERE name=?), ?)|, $form->{id}, $form->{currency}, $form->{taxzone_id});
85     }
86   }
87
88   if ($form->{currency} eq $defaultcurrency) {
89     $form->{exchangerate} = 1;
90   } else {
91     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{invdate}, 'sell');
92   }
93
94   $form->{exchangerate} = $exchangerate || $form->parse_amount($myconfig, $form->{exchangerate});
95   $form->{exchangerate} = 1 unless ($form->{exchangerate} * 1);
96
97   my %item_units;
98   my $q_item_unit = qq|SELECT unit FROM parts WHERE id = ?|;
99   my $h_item_unit = prepare_query($form, $dbh, $q_item_unit);
100
101   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
102   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
103   my $price_factor;
104
105   my @processed_invoice_ids;
106   for my $i (1 .. $form->{rowcount}) {
107     next unless $form->{"id_$i"};
108
109     my $position = $i;
110
111     $form->{"qty_$i"}  = $form->parse_amount($myconfig, $form->{"qty_$i"});
112     $form->{"qty_$i"} *= -1 if $form->{storno};
113
114     if ( $::instance_conf->get_inventory_system eq 'periodic') {
115       # inventory account number is overwritten with expense account number, so
116       # never book incoming to inventory account but always to expense account
117       $form->{"inventory_accno_$i"} = $form->{"expense_accno_$i"}
118     };
119
120     # get item baseunit
121     if (!$item_units{$form->{"id_$i"}}) {
122       do_statement($form, $h_item_unit, $q_item_unit, $form->{"id_$i"});
123       ($item_units{$form->{"id_$i"}}) = $h_item_unit->fetchrow_array();
124     }
125
126     my $item_unit = $item_units{$form->{"id_$i"}};
127
128     if (defined($all_units->{$item_unit}->{factor})
129             && ($all_units->{$item_unit}->{factor} ne '')
130             && ($all_units->{$item_unit}->{factor} * 1 != 0)) {
131       $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
132     } else {
133       $basefactor = 1;
134     }
135     $baseqty = $form->{"qty_$i"} * $basefactor;
136
137     @taxaccounts = split / /, $form->{"taxaccounts_$i"};
138     $taxdiff     = 0;
139     $allocated   = 0;
140     $taxrate     = 0;
141
142     $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
143     (my $fxsellprice = $form->{"sellprice_$i"}) =~ /\.(\d+)/;
144     my $dec = length $1;
145     my $decimalplaces = ($dec > 2) ? $dec : 2;
146
147     map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
148
149     $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
150     # copied from IS.pm, with some changes (no decimalplaces corrections here etc)
151     # TODO maybe use PriceTaxCalculation or something like this for backends (IR.pm / IS.pm)
152
153     # undo discount formatting
154     $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
155     # deduct discount
156     $form->{"sellprice_$i"} = $fxsellprice * (1 - $form->{"discount_$i"});
157
158     ######################################################################
159     if ($form->{"inventory_accno_$i"}) {
160
161       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
162
163       if ($form->{taxincluded}) {
164
165         $taxamount              = $linetotal * ($taxrate / (1 + $taxrate));
166         $form->{"sellprice_$i"} = $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
167
168       } else {
169         $taxamount = $linetotal * $taxrate;
170       }
171
172       $netamount += $linetotal;
173
174       if ($form->round_amount($taxrate, 7) == 0) {
175         if ($form->{taxincluded}) {
176           foreach $item (@taxaccounts) {
177             $taxamount =
178               $form->round_amount($linetotal * $form->{"${item}_rate"} / (1 + abs($form->{"${item}_rate"})), 2);
179             $taxdiff                              += $taxamount;
180             $form->{amount}{ $form->{id} }{$item} -= $taxamount;
181           }
182           $form->{amount}{ $form->{id} }{ $taxaccounts[0] } += $taxdiff;
183
184         } else {
185           map { $form->{amount}{ $form->{id} }{$_} -= $linetotal * $form->{"${_}_rate"} } @taxaccounts;
186         }
187
188       } else {
189         map { $form->{amount}{ $form->{id} }{$_} -= $taxamount * $form->{"${_}_rate"} / $taxrate } @taxaccounts;
190       }
191
192       # add purchase to inventory, this one is without the tax!
193       $amount    = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor;
194       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate};
195       $linetotal = $form->round_amount($linetotal, 2);
196
197       # this is the difference for the inventory
198       $invoicediff += ($amount - $linetotal);
199
200       $form->{amount}{ $form->{id} }{ $form->{"inventory_accno_$i"} } -= $linetotal;
201
202       # adjust and round sellprice
203       $form->{"sellprice_$i"} = $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate}, $decimalplaces);
204
205       $lastinventoryaccno = $form->{"inventory_accno_$i"};
206
207       next if $payments_only;
208
209       # update parts table by setting lastcost to current price, don't allow negative values by using abs
210       $query = qq|UPDATE parts SET lastcost = ? WHERE id = ?|;
211       @values = (abs($fxsellprice * $form->{exchangerate} / $basefactor), conv_i($form->{"id_$i"}));
212       do_query($form, $dbh, $query, @values);
213
214       # check if we sold the item already and
215       # make an entry for the expense and inventory
216       my $taxzone = $form->{taxzone_id} * 1;
217       $query =
218         qq|SELECT i.id, i.qty, i.allocated, i.trans_id, i.base_qty,
219              bg.inventory_accno_id, tc.expense_accno_id AS expense_accno_id, a.transdate
220            FROM invoice i, ar a, parts p, buchungsgruppen bg, taxzone_charts tc
221            WHERE (i.parts_id = p.id)
222              AND (i.parts_id = ?)
223              AND ((i.base_qty + i.allocated) > 0)
224              AND (i.trans_id = a.id)
225              AND (p.buchungsgruppen_id = bg.id)
226              AND (tc.buchungsgruppen_id = p.buchungsgruppen_id)
227              AND (tc.taxzone_id = ${taxzone})
228            ORDER BY transdate|;
229            # ORDER BY transdate guarantees FIFO
230
231       # sold two items without having bought them yet, example result of query:
232       # id | qty | allocated | trans_id | inventory_accno_id | expense_accno_id | transdate
233       # ---+-----+-----------+----------+--------------------+------------------+------------
234       #  9 |   2 |         0 |        9 |                 15 |              151 | 2011-01-05
235
236       # base_qty + allocated > 0 if article has already been sold but not bought yet
237
238       # select qty,allocated,base_qty,sellprice from invoice where trans_id = 9;
239       #  qty | allocated | base_qty | sellprice
240       # -----+-----------+----------+------------
241       #    2 |         0 |        2 | 1000.00000
242
243       $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
244
245       my $totalqty = $baseqty;
246
247       while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
248         my $qty    = min $totalqty, ($ref->{base_qty} + $ref->{allocated});
249         $linetotal = $form->round_amount(($form->{"sellprice_$i"} * $qty) / $basefactor, 2);
250
251         if  ( $::instance_conf->get_inventory_system eq 'perpetual' ) {
252         # Warenbestandsbuchungen nur bei Bestandsmethode
253
254           if ($ref->{allocated} < 0) {
255
256             # we have an entry for it already, adjust amount
257             $form->update_balance($dbh, "acc_trans", "amount",
258                 qq|    (trans_id = $ref->{trans_id})
259                 AND (chart_id = $ref->{inventory_accno_id})
260                 AND (transdate = '$ref->{transdate}')|,
261                 $linetotal);
262
263             $form->update_balance($dbh, "acc_trans", "amount",
264                 qq|    (trans_id = $ref->{trans_id})
265                 AND (chart_id = $ref->{expense_accno_id})
266                 AND (transdate = '$ref->{transdate}')|,
267                 $linetotal * -1);
268
269           } elsif ($linetotal != 0) {
270
271             # allocated >= 0
272             # add entry for inventory, this one is for the sold item
273             $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, tax_id, chart_link) VALUES (?, ?, ?, ?,
274                                (SELECT taxkey_id
275                                 FROM taxkeys
276                                 WHERE chart_id= ?
277                                 AND startdate <= ?
278                                 ORDER BY startdate DESC LIMIT 1),
279                                (SELECT tax_id
280                                 FROM taxkeys
281                                 WHERE chart_id= ?
282                                 AND startdate <= ?
283                                 ORDER BY startdate DESC LIMIT 1),
284                                (SELECT link FROM chart WHERE id = ?))|;
285             @values = ($ref->{trans_id},  $ref->{inventory_accno_id}, $linetotal, $ref->{transdate}, $ref->{inventory_accno_id}, $ref->{transdate}, $ref->{inventory_accno_id}, $ref->{transdate},
286                        $ref->{inventory_accno_id});
287             do_query($form, $dbh, $query, @values);
288
289             # add expense
290             $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, tax_id, chart_link) VALUES (?, ?, ?, ?,
291                                 (SELECT taxkey_id
292                                  FROM taxkeys
293                                  WHERE chart_id= ?
294                                  AND startdate <= ?
295                                  ORDER BY startdate DESC LIMIT 1),
296                                 (SELECT tax_id
297                                  FROM taxkeys
298                                  WHERE chart_id= ?
299                                  AND startdate <= ?
300                                  ORDER BY startdate DESC LIMIT 1),
301                                 (SELECT link FROM chart WHERE id = ?))|;
302             @values = ($ref->{trans_id},  $ref->{expense_accno_id}, ($linetotal * -1), $ref->{transdate}, $ref->{expense_accno_id}, $ref->{transdate}, $ref->{expense_accno_id}, $ref->{transdate},
303                        $ref->{expense_accno_id});
304             do_query($form, $dbh, $query, @values);
305           }
306         };
307
308         # update allocated for sold item
309         $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty * -1);
310
311         $allocated += $qty;
312
313         last if ($totalqty -= $qty) <= 0;
314       }
315
316       $sth->finish();
317
318     } else {                    # if ($form->{"inventory_accno_id_$i"})
319       # part doesn't have an inventory_accno_id
320       # lastcost of the part is updated at the end
321
322       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
323
324       if ($form->{taxincluded}) {
325         $taxamount              = $linetotal * ($taxrate / (1 + $taxrate));
326         $form->{"sellprice_$i"} = $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
327
328       } else {
329         $taxamount = $linetotal * $taxrate;
330       }
331
332       $netamount += $linetotal;
333
334       if ($form->round_amount($taxrate, 7) == 0) {
335         if ($form->{taxincluded}) {
336           foreach $item (@taxaccounts) {
337             $taxamount = $linetotal * $form->{"${item}_rate"} / (1 + abs($form->{"${item}_rate"}));
338             $totaltax += $taxamount;
339             $form->{amount}{ $form->{id} }{$item} -= $taxamount;
340           }
341         } else {
342           map { $form->{amount}{ $form->{id} }{$_} -= $linetotal * $form->{"${_}_rate"} } @taxaccounts;
343         }
344       } else {
345         map { $form->{amount}{ $form->{id} }{$_} -= $taxamount * $form->{"${_}_rate"} / $taxrate } @taxaccounts;
346       }
347
348       $amount    = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor;
349       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate};
350       $linetotal = $form->round_amount($linetotal, 2);
351
352       # this is the difference for expense
353       $expensediff += ($amount - $linetotal);
354
355       # add amount to expense
356       $form->{amount}{ $form->{id} }{ $form->{"expense_accno_$i"} } -= $linetotal;
357
358       $lastexpenseaccno = $form->{"expense_accno_$i"};
359
360       # adjust and round sellprice
361       $form->{"sellprice_$i"} = $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate}, $decimalplaces);
362
363       next if $payments_only;
364
365       # update lastcost
366       $query = qq|UPDATE parts SET lastcost = ? WHERE id = ?|;
367       do_query($form, $dbh, $query, $form->{"sellprice_$i"} / $basefactor, conv_i($form->{"id_$i"}));
368     }
369
370     next if $payments_only;
371
372     CVar->get_non_editable_ic_cvars(form               => $form,
373                                     dbh                => $dbh,
374                                     row                => $i, 
375                                     sub_module         => 'invoice',
376                                     may_converted_from => ['delivery_order_items', 'orderitems']);
377
378     if (!$form->{"invoice_id_$i"}) {
379       # there is no persistent id, therefore create one with all necessary constraints
380       my $q_invoice_id = qq|SELECT nextval('invoiceid')|;
381       my $h_invoice_id = prepare_query($form, $dbh, $q_invoice_id);
382       do_statement($form, $h_invoice_id, $q_invoice_id);
383       $form->{"invoice_id_$i"}  = $h_invoice_id->fetchrow_array();
384       my $q_create_invoice_id = qq|INSERT INTO invoice (id, trans_id, position, parts_id) values (?, ?, ?, ?)|;
385       do_query($form, $dbh, $q_create_invoice_id, conv_i($form->{"invoice_id_$i"}),
386                conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}));
387       $h_invoice_id->finish();
388     }
389
390       # save detail record in invoice table
391       $query = <<SQL;
392         UPDATE invoice SET trans_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?, base_qty = ?,
393                            sellprice = ?, fxsellprice = ?, discount = ?, allocated = ?, unit = ?, deliverydate = ?,
394                            project_id = ?, serialnumber = ?, price_factor_id = ?,
395                            price_factor = (SELECT factor FROM price_factors WHERE id = ?), marge_price_factor = ?,
396                            active_price_source = ?, active_discount_source = ?
397         WHERE id = ?
398 SQL
399
400     @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
401                $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}), $form->{"qty_$i"} * -1,
402                $baseqty * -1, $form->{"sellprice_$i"}, $fxsellprice, $form->{"discount_$i"}, $allocated,
403                $form->{"unit_$i"}, conv_date($form->{deliverydate}),
404                conv_i($form->{"project_id_$i"}), $form->{"serialnumber_$i"},
405                conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"marge_price_factor_$i"}),
406                $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
407                conv_i($form->{"invoice_id_$i"}));
408     do_query($form, $dbh, $query, @values);
409     push @processed_invoice_ids, $form->{"invoice_id_$i"};
410
411     CVar->save_custom_variables(module       => 'IC',
412                                 sub_module   => 'invoice',
413                                 trans_id     => $form->{"invoice_id_$i"},
414                                 configs      => $ic_cvar_configs,
415                                 variables    => $form,
416                                 name_prefix  => 'ic_',
417                                 name_postfix => "_$i",
418                                 dbh          => $dbh);
419     # link previous items with invoice items See IS.pm (no credit note -> no invoice item)
420     foreach (qw(delivery_order_items orderitems)) {
421       if ($form->{"converted_from_${_}_id_$i"}) {
422         RecordLinks->create_links('dbh'        => $dbh,
423                                   'mode'       => 'ids',
424                                   'from_table' => $_,
425                                   'from_ids'   => $form->{"converted_from_${_}_id_$i"},
426                                   'to_table'   => 'invoice',
427                                   'to_id'      => $form->{"invoice_id_$i"},
428         );
429         delete $form->{"converted_from_${_}_id_$i"};
430       }
431     }
432   }
433
434   $h_item_unit->finish();
435
436   $project_id = conv_i($form->{"globalproject_id"});
437
438   $form->{datepaid} = $form->{invdate};
439
440   # all amounts are in natural state, netamount includes the taxes
441   # if tax is included, netamount is rounded to 2 decimal places,
442   # taxes are not
443
444   # total payments
445   for my $i (1 .. $form->{paidaccounts}) {
446     $form->{"paid_$i"}  = $form->parse_amount($myconfig, $form->{"paid_$i"});
447     $form->{paid}      += $form->{"paid_$i"};
448     $form->{datepaid}   = $form->{"datepaid_$i"} if $form->{"datepaid_$i"};
449   }
450
451   my ($tax, $paiddiff) = (0, 0);
452
453   $netamount = $form->round_amount($netamount, 2);
454
455   # figure out rounding errors for amount paid and total amount
456   if ($form->{taxincluded}) {
457
458     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
459     $paiddiff  = $amount - $netamount * $form->{exchangerate};
460     $netamount = $amount;
461
462     foreach $item (split / /, $form->{taxaccounts}) {
463       $amount                               = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
464       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
465
466       $amount     = $form->{amount}{ $form->{id} }{$item} * -1;
467       $tax       += $amount;
468       $netamount -= $amount;
469     }
470
471     $invoicediff += $paiddiff;
472     $expensediff += $paiddiff;
473
474 ######## this only applies to tax included
475
476     # in the sales invoice case rounding errors only have to be corrected for
477     # income accounts, it is enough to add the total rounding error to one of
478     # the income accounts, with the one assigned to the last row being used
479     # (lastinventoryaccno)
480
481     # in the purchase invoice case rounding errors may be split between
482     # inventory accounts and expense accounts. After rounding, an error of 1
483     # cent is introduced if the total rounding error exceeds 0.005. The total
484     # error is made up of $invoicediff and $expensediff, however, so if both
485     # values are below 0.005, but add up to a total >= 0.005, correcting
486     # lastinventoryaccno and lastexpenseaccno separately has no effect after
487     # rounding. This caused bug 1579. Therefore when the combined total exceeds
488     # 0.005, but neither do individually, the account with the larger value
489     # shall receive the total rounding error, and the next time it is rounded
490     # the 1 cent correction will be introduced.
491
492     $form->{amount}{ $form->{id} }{$lastinventoryaccno} -= $invoicediff if $lastinventoryaccno;
493     $form->{amount}{ $form->{id} }{$lastexpenseaccno}   -= $expensediff if $lastexpenseaccno;
494
495     if ( (abs($expensediff)+abs($invoicediff)) >= 0.005 and abs($expensediff) < 0.005 and abs($invoicediff) < 0.005 ) {
496
497       # in total the rounding error adds up to 1 cent effectively, correct the
498       # larger of the two numbers
499
500       if ( abs($form->{amount}{ $form->{id} }{$lastinventoryaccno}) > abs($form->{amount}{ $form->{id} }{$lastexpenseaccno}) ) {
501         # $invoicediff has already been deducted, now also deduct expensediff
502         $form->{amount}{ $form->{id} }{$lastinventoryaccno}   -= $expensediff;
503       } else {
504         # expensediff has already been deducted, now also deduct invoicediff
505         $form->{amount}{ $form->{id} }{$lastexpenseaccno}   -= $invoicediff;
506       };
507     };
508
509   } else {
510     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
511     $paiddiff  = $amount - $netamount * $form->{exchangerate};
512     $netamount = $amount;
513
514     foreach my $item (split / /, $form->{taxaccounts}) {
515       $form->{amount}{ $form->{id} }{$item}  = $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
516       $amount                                = $form->round_amount( $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate} * -1, 2);
517       $paiddiff                             += $amount - $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate} * -1;
518       $form->{amount}{ $form->{id} }{$item}  = $form->round_amount($amount * -1, 2);
519       $amount                                = $form->{amount}{ $form->{id} }{$item} * -1;
520       $tax                                  += $amount;
521     }
522   }
523
524   $form->{amount}{ $form->{id} }{ $form->{AP} } = $netamount + $tax;
525
526
527   $form->{paid} = $form->round_amount($form->{paid} * $form->{exchangerate} + $paiddiff, 2) if $form->{paid} != 0;
528
529 # update exchangerate
530
531   $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate}, 0, $form->{exchangerate})
532     if ($form->{currency} ne $defaultcurrency) && !$exchangerate;
533
534 # record acc_trans transactions
535   foreach my $trans_id (keys %{ $form->{amount} }) {
536     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
537       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
538
539
540       next if $payments_only || !$form->{amount}{$trans_id}{$accno};
541
542       $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id, tax_id, chart_link)
543                   VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
544                   (SELECT taxkey_id
545                    FROM taxkeys
546                    WHERE chart_id= (SELECT id
547                                     FROM chart
548                                     WHERE accno = ?)
549                    AND startdate <= ?
550                    ORDER BY startdate DESC LIMIT 1),
551                   ?,
552                   (SELECT tax_id
553                    FROM taxkeys
554                    WHERE chart_id= (SELECT id
555                                     FROM chart
556                                     WHERE accno = ?)
557                    AND startdate <= ?
558                    ORDER BY startdate DESC LIMIT 1),
559                   (SELECT link FROM chart WHERE accno = ?))|;
560       @values = ($trans_id, $accno, $form->{amount}{$trans_id}{$accno},
561                  conv_date($form->{invdate}), $accno, conv_date($form->{invdate}), $project_id, $accno, conv_date($form->{invdate}), $accno);
562       do_query($form, $dbh, $query, @values);
563     }
564   }
565
566   # deduct payment differences from paiddiff
567   for my $i (1 .. $form->{paidaccounts}) {
568     if ($form->{"paid_$i"} != 0) {
569       $amount    = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
570       $paiddiff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
571     }
572   }
573
574   # force AP entry if 0
575
576   $form->{amount}{ $form->{id} }{ $form->{AP} } = $form->{paid} if $form->{amount}{$form->{id}}{$form->{AP}} == 0;
577
578   # record payments and offsetting AP
579   for my $i (1 .. $form->{paidaccounts}) {
580     if ($form->{"acc_trans_id_$i"}
581         && $payments_only
582         && (SL::DB::Default->get->payments_changeable == 0)) {
583       next;
584     }
585
586     next if $form->{"paid_$i"} == 0;
587
588     my ($accno)            = split /--/, $form->{"AP_paid_$i"};
589     $form->{"datepaid_$i"} = $form->{invdate} unless ($form->{"datepaid_$i"});
590     $form->{datepaid}      = $form->{"datepaid_$i"};
591
592     $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $paiddiff, 2) * -1;
593
594     # record AP
595     if ($form->{amount}{ $form->{id} }{ $form->{AP} } != 0) {
596       $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id, tax_id, chart_link)
597                   VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
598                           (SELECT taxkey_id
599                            FROM taxkeys
600                            WHERE chart_id= (SELECT id
601                                             FROM chart
602                                             WHERE accno = ?)
603                            AND startdate <= ?
604                            ORDER BY startdate DESC LIMIT 1),
605                           ?,
606                           (SELECT tax_id
607                            FROM taxkeys
608                            WHERE chart_id= (SELECT id
609                                             FROM chart
610                                             WHERE accno = ?)
611                            AND startdate <= ?
612                            ORDER BY startdate DESC LIMIT 1),
613                           (SELECT link FROM chart WHERE accno = ?))|;
614       @values = (conv_i($form->{id}), $form->{AP}, $amount,
615                  $form->{"datepaid_$i"}, $form->{AP}, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AP}, conv_date($form->{"datepaid_$i"}), $form->{AP});
616       do_query($form, $dbh, $query, @values);
617     }
618
619     # record payment
620     my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
621
622     $query =
623       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, taxkey, project_id, tax_id, chart_link)
624                 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
625                 (SELECT taxkey_id
626                  FROM taxkeys
627                  WHERE chart_id= (SELECT id
628                                   FROM chart WHERE accno = ?)
629                  AND startdate <= ?
630                  ORDER BY startdate DESC LIMIT 1),
631                 ?,
632                 (SELECT tax_id
633                  FROM taxkeys
634                  WHERE chart_id= (SELECT id
635                                   FROM chart WHERE accno = ?)
636                  AND startdate <= ?
637                  ORDER BY startdate DESC LIMIT 1),
638                 (SELECT link FROM chart WHERE accno = ?))|;
639     @values = (conv_i($form->{id}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
640                $gldate, $form->{"source_$i"}, $form->{"memo_$i"}, $accno, conv_date($form->{"datepaid_$i"}), $project_id, $accno, conv_date($form->{"datepaid_$i"}), $accno);
641     do_query($form, $dbh, $query, @values);
642
643     $exchangerate = 0;
644
645     if ($form->{currency} eq $defaultcurrency) {
646       $form->{"exchangerate_$i"} = 1;
647     } else {
648       $exchangerate              = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
649       $form->{"exchangerate_$i"} = $exchangerate || $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
650     }
651
652     # exchangerate difference
653     $form->{fx}{$accno}{ $form->{"datepaid_$i"} } += $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $paiddiff;
654
655     # gain/loss
656     $amount =
657       ($form->{"paid_$i"} * $form->{exchangerate}) -
658       ($form->{"paid_$i"} * $form->{"exchangerate_$i"});
659     if ($amount > 0) {
660       $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } += $amount;
661     } else {
662       $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } += $amount;
663     }
664
665     $paiddiff = 0;
666
667     # update exchange rate
668     $form->update_exchangerate($dbh, $form->{currency}, $form->{"datepaid_$i"}, 0, $form->{"exchangerate_$i"})
669       if ($form->{currency} ne $defaultcurrency) && !$exchangerate;
670   }
671
672   # record exchange rate differences and gains/losses
673   foreach my $accno (keys %{ $form->{fx} }) {
674     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
675       $form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2);
676       next if ($form->{fx}{$accno}{$transdate} == 0);
677
678       $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, taxkey, project_id, tax_id, chart_link)
679                   VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1', 0, ?,
680                   (SELECT id FROM tax WHERE taxkey=0 LIMIT 1),
681                   (SELECT link FROM chart WHERE accno = ?))|;
682       @values = (conv_i($form->{id}), $accno, $form->{fx}{$accno}{$transdate}, conv_date($transdate), $project_id, $accno);
683       do_query($form, $dbh, $query, @values);
684     }
685   }
686
687   IO->set_datepaid(table => 'ap', id => $form->{id}, dbh => $dbh);
688
689   if ($payments_only) {
690     $query = qq|UPDATE ap SET paid = ? WHERE id = ?|;
691     do_query($form, $dbh, $query, $form->{paid}, conv_i($form->{id}));
692
693     if (!$provided_dbh) {
694       $dbh->commit();
695       $dbh->disconnect();
696     }
697
698     $main::lxdebug->leave_sub();
699     return;
700   }
701
702   $amount = $netamount + $tax;
703
704   # set values which could be empty
705   my $taxzone_id         = $form->{taxzone_id} * 1;
706   $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
707
708   $form->{invnumber}     = $form->{id} unless $form->{invnumber};
709
710   # save AP record
711   $query = qq|UPDATE ap SET
712                 invnumber    = ?, ordnumber   = ?, quonumber     = ?, transdate   = ?,
713                 orddate      = ?, quodate     = ?, vendor_id     = ?, amount      = ?,
714                 netamount    = ?, paid        = ?, duedate       = ?,
715                 invoice      = ?, taxzone_id  = ?, notes         = ?, taxincluded = ?,
716                 intnotes     = ?, storno_id   = ?, storno        = ?,
717                 cp_id        = ?, employee_id = ?, department_id = ?, delivery_term_id = ?,
718                 globalproject_id = ?, direct_debit = ?
719               WHERE id = ?|;
720   @values = (
721                 $form->{invnumber},          $form->{ordnumber},           $form->{quonumber},      conv_date($form->{invdate}),
722       conv_date($form->{orddate}), conv_date($form->{quodate}),     conv_i($form->{vendor_id}),               $amount,
723                 $netamount,                  $form->{paid},      conv_date($form->{duedate}),
724             '1',                             $taxzone_id,                  $form->{notes},          $form->{taxincluded} ? 't' : 'f',
725                 $form->{intnotes},           conv_i($form->{storno_id}),     $form->{storno}      ? 't' : 'f',
726          conv_i($form->{cp_id}),      conv_i($form->{employee_id}), conv_i($form->{department_id}), conv_i($form->{delivery_term_id}),
727          conv_i($form->{globalproject_id}),
728                 $form->{direct_debit} ? 't' : 'f',
729          conv_i($form->{id})
730   );
731   do_query($form, $dbh, $query, @values);
732
733   if ($form->{storno}) {
734     $query = qq|UPDATE ap SET paid = paid + amount WHERE id = ?|;
735     do_query($form, $dbh, $query, conv_i($form->{storno_id}));
736
737     $query = qq|UPDATE ap SET storno = 't' WHERE id = ?|;
738     do_query($form, $dbh, $query, conv_i($form->{storno_id}));
739
740     $query = qq!UPDATE ap SET intnotes = ? || intnotes WHERE id = ?!;
741     do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{storno_id}));
742
743     $query = qq|UPDATE ap SET paid = amount WHERE id = ?|;
744     do_query($form, $dbh, $query, conv_i($form->{id}));
745   }
746
747
748   $form->{name} = $form->{vendor};
749   $form->{name} =~ s/--\Q$form->{vendor_id}\E//;
750
751   # add shipto
752   $form->add_shipto($dbh, $form->{id}, "AP");
753
754   # delete zero entries
755   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE amount = 0|);
756
757   Common::webdav_folder($form);
758
759   # Link this record to the records it was created from.
760   if ($form->{convert_from_oe_ids}) {
761     RecordLinks->create_links('dbh'        => $dbh,
762                               'mode'       => 'ids',
763                               'from_table' => 'oe',
764                               'from_ids'   => $form->{convert_from_oe_ids},
765                               'to_table'   => 'ap',
766                               'to_id'      => $form->{id},
767       );
768     delete $form->{convert_from_oe_ids};
769   }
770
771   my @convert_from_do_ids = map { $_ * 1 } grep { $_ } split m/\s+/, $form->{convert_from_do_ids};
772   if (scalar @convert_from_do_ids) {
773     DO->close_orders('dbh' => $dbh,
774                      'ids' => \@convert_from_do_ids);
775
776     RecordLinks->create_links('dbh'        => $dbh,
777                               'mode'       => 'ids',
778                               'from_table' => 'delivery_orders',
779                               'from_ids'   => \@convert_from_do_ids,
780                               'to_table'   => 'ap',
781                               'to_id'      => $form->{id},
782       );
783   }
784   delete $form->{convert_from_do_ids};
785
786   ARAP->close_orders_if_billed('dbh'     => $dbh,
787                                'arap_id' => $form->{id},
788                                'table'   => 'ap',);
789
790   # search for orphaned invoice items
791   $query  = sprintf 'SELECT id FROM invoice WHERE trans_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_invoice_ids;
792   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_invoice_ids);
793   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
794   if (scalar @orphaned_ids) {
795     # clean up invoice items
796     $query  = sprintf 'DELETE FROM invoice WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
797     do_query($form, $dbh, $query, @orphaned_ids);
798   }
799
800   # safety check datev export
801   if ($::instance_conf->get_datev_check_on_purchase_invoice) {
802     my $transdate = $::form->{invdate} ? DateTime->from_lxoffice($::form->{invdate}) : undef;
803     $transdate  ||= DateTime->today;
804
805     my $datev = SL::DATEV->new(
806       exporttype => DATEV_ET_BUCHUNGEN,
807       format     => DATEV_FORMAT_KNE,
808       dbh        => $dbh,
809       from       => $transdate,
810       to         => $transdate,
811       trans_id   => $form->{id},
812     );
813
814     $datev->export;
815
816     if ($datev->errors) {
817       $dbh->rollback;
818       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
819     }
820   }
821
822   my $rc = 1;
823   if (!$provided_dbh) {
824     $rc = $dbh->commit();
825     $dbh->disconnect();
826   }
827
828   $main::lxdebug->leave_sub();
829
830   return $rc;
831 }
832
833 sub reverse_invoice {
834   $main::lxdebug->enter_sub();
835
836   my ($dbh, $form) = @_;
837
838   # reverse inventory items
839   my $query =
840     qq|SELECT i.parts_id, p.inventory_accno_id, p.expense_accno_id, i.qty, i.allocated, i.sellprice
841        FROM invoice i, parts p
842        WHERE (i.parts_id = p.id)
843          AND (i.trans_id = ?)|;
844   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
845
846   my $netamount = 0;
847
848   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
849     $netamount += $form->round_amount($ref->{sellprice} * $ref->{qty} * -1, 2);
850
851     next unless $ref->{inventory_accno_id};
852
853     # if $ref->{allocated} > 0 than we sold that many items
854     next if ($ref->{allocated} <= 0);
855
856     # get references for sold items
857     $query =
858       qq|SELECT i.id, i.trans_id, i.allocated, a.transdate
859          FROM invoice i, ar a
860          WHERE (i.parts_id = ?)
861            AND (i.allocated < 0)
862            AND (i.trans_id = a.id)
863          ORDER BY transdate DESC|;
864       my $sth2 = prepare_execute_query($form, $dbh, $query, $ref->{parts_id});
865
866       while (my $pthref = $sth2->fetchrow_hashref("NAME_lc")) {
867         my $qty = $ref->{allocated};
868         if (($ref->{allocated} + $pthref->{allocated}) > 0) {
869           $qty = $pthref->{allocated} * -1;
870         }
871
872         my $amount = $form->round_amount($ref->{sellprice} * $qty, 2);
873
874         #adjust allocated
875         $form->update_balance($dbh, "invoice", "allocated", qq|id = $pthref->{id}|, $qty);
876
877         $form->update_balance($dbh, "acc_trans", "amount",
878                               qq|    (trans_id = $pthref->{trans_id})
879                                  AND (chart_id = $ref->{expense_accno_id})
880                                  AND (transdate = '$pthref->{transdate}')|,
881                               $amount);
882
883         $form->update_balance($dbh, "acc_trans", "amount",
884                               qq|    (trans_id = $pthref->{trans_id})
885                                  AND (chart_id = $ref->{inventory_accno_id})
886                                  AND (transdate = '$pthref->{transdate}')|,
887                               $amount * -1);
888
889         last if (($ref->{allocated} -= $qty) <= 0);
890       }
891     $sth2->finish();
892   }
893   $sth->finish();
894
895   my $id = conv_i($form->{id});
896
897   # delete acc_trans
898   $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
899   do_query($form, $dbh, $query, $id);
900
901   $query = qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AP')|;
902   do_query($form, $dbh, $query, $id);
903
904   $main::lxdebug->leave_sub();
905 }
906
907 sub delete_invoice {
908   $main::lxdebug->enter_sub();
909
910   my ($self, $myconfig, $form) = @_;
911   my $query;
912   # connect to database
913   my $dbh = $form->dbconnect_noauto($myconfig);
914
915   &reverse_invoice($dbh, $form);
916
917   my @values = (conv_i($form->{id}));
918
919   # delete zero entries
920   # wtf? use case for this?
921   $query = qq|DELETE FROM acc_trans WHERE amount = 0|;
922   do_query($form, $dbh, $query);
923
924
925   my @queries = (
926     qq|DELETE FROM invoice WHERE trans_id = ?|,
927     qq|DELETE FROM ap WHERE id = ?|,
928   );
929
930   map { do_query($form, $dbh, $_, @values) } @queries;
931
932   my $rc = $dbh->commit;
933   $dbh->disconnect;
934
935   $main::lxdebug->leave_sub();
936
937   return $rc;
938 }
939
940 sub retrieve_invoice {
941   $main::lxdebug->enter_sub();
942
943   my ($self, $myconfig, $form) = @_;
944
945   # connect to database
946   my $dbh = $form->dbconnect($myconfig);
947
948   my ($query, $sth, $ref, $q_invdate);
949
950   if (!$form->{id}) {
951     $q_invdate = qq|, COALESCE((SELECT transdate FROM ar WHERE id = (SELECT MAX(id) FROM ar)), current_date) AS invdate|;
952     if ($form->{vendor_id}) {
953       my $vendor_id = $dbh->quote($form->{vendor_id} * 1);
954       $q_invdate .=
955         qq|, COALESCE((SELECT transdate FROM ar WHERE id = (SELECT MAX(id) FROM ar)), current_date) +
956              COALESCE((SELECT pt.terms_netto
957                        FROM vendor v
958                        LEFT JOIN payment_terms pt ON (v.payment_id = pt.id)
959                        WHERE v.id = $vendor_id),
960                       0) AS duedate|;
961     }
962   }
963
964   # get default accounts and last invoice number
965
966   $query = qq|SELECT
967                (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
968                (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
969                (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
970                (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
971                (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno
972                $q_invdate
973                FROM defaults d|;
974   $ref = selectfirst_hashref_query($form, $dbh, $query);
975   map { $form->{$_} = $ref->{$_} } keys %$ref;
976
977   if (!$form->{id}) {
978     $dbh->disconnect();
979     $main::lxdebug->leave_sub();
980
981     return;
982   }
983
984   # retrieve invoice
985   $query = qq|SELECT cp_id, invnumber, transdate AS invdate, duedate,
986                 orddate, quodate, globalproject_id,
987                 ordnumber, quonumber, paid, taxincluded, notes, taxzone_id, storno, gldate,
988                 intnotes, (SELECT cu.name FROM currencies cu WHERE cu.id=ap.currency_id) AS currency, direct_debit,
989                 delivery_term_id
990               FROM ap
991               WHERE id = ?|;
992   $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{id}));
993   map { $form->{$_} = $ref->{$_} } keys %$ref;
994
995   $form->{exchangerate}  = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "sell");
996
997   # get shipto
998   $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AP')|;
999   $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{id}));
1000   delete $ref->{id};
1001   map { $form->{$_} = $ref->{$_} } keys %$ref;
1002
1003   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
1004
1005   my $taxzone_id = $form->{taxzone_id} * 1;
1006   $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
1007
1008   # retrieve individual items
1009   $query =
1010     qq|SELECT
1011         c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
1012         c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from AS income_valid,
1013         c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from AS expense_valid,
1014
1015         i.id AS invoice_id,
1016         i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice, i.parts_id AS id, i.unit, i.deliverydate, i.project_id, i.serialnumber,
1017         i.price_factor_id, i.price_factor, i.marge_price_factor, i.discount, i.active_price_source, i.active_discount_source,
1018         p.partnumber, p.inventory_accno_id AS part_inventory_accno_id,  pr.projectnumber, pg.partsgroup
1019
1020         FROM invoice i
1021         JOIN parts p ON (i.parts_id = p.id)
1022         LEFT JOIN chart c1 ON ((SELECT inventory_accno_id             FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
1023         LEFT JOIN chart c2 ON ((SELECT tc.income_accno_id FROM taxzone_charts tc where tc.taxzone_id = '$taxzone_id' and tc.buchungsgruppen_id = p.buchungsgruppen_id) = c2.id)
1024         LEFT JOIN chart c3 ON ((SELECT tc.expense_accno_id FROM taxzone_charts tc where tc.taxzone_id = '$taxzone_id' and tc.buchungsgruppen_id = p.buchungsgruppen_id) = c3.id)
1025         LEFT JOIN project pr    ON (i.project_id = pr.id)
1026         LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
1027
1028         WHERE i.trans_id = ?
1029
1030         ORDER BY i.position|;
1031   $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
1032
1033   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
1034     # Retrieve custom variables.
1035     my $cvars = CVar->get_custom_variables(dbh        => $dbh,
1036                                            module     => 'IC',
1037                                            sub_module => 'invoice',
1038                                            trans_id   => $ref->{invoice_id},
1039                                           );
1040     map { $ref->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
1041
1042     map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid)) if !$ref->{"part_inventory_accno_id"};
1043     delete($ref->{"part_inventory_accno_id"});
1044
1045     foreach my $type (qw(inventory income expense)) {
1046       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
1047         my $query = qq|SELECT accno, new_chart_id, date($transdate) - valid_from FROM chart WHERE id = ?|;
1048         @$ref{ map $type.$_, qw(_accno _new_chart _valid) } = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
1049       }
1050     }
1051
1052     # get tax rates and description
1053     my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1054     $query =
1055       qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber FROM tax t
1056          LEFT JOIN chart c ON (c.id = t.chart_id)
1057          WHERE t.id in
1058            (SELECT tk.tax_id FROM taxkeys tk
1059             WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
1060               AND (startdate <= $transdate)
1061             ORDER BY startdate DESC
1062             LIMIT 1)
1063          ORDER BY c.accno|;
1064     my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
1065     $ref->{taxaccounts} = "";
1066
1067     my $i = 0;
1068     while (my $ptr = $stw->fetchrow_hashref("NAME_lc")) {
1069       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1070         $i++;
1071         $ptr->{accno} = $i;
1072       }
1073
1074       $ref->{taxaccounts} .= "$ptr->{accno} ";
1075
1076       if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
1077         $form->{"$ptr->{accno}_rate"}         = $ptr->{rate};
1078         $form->{"$ptr->{accno}_description"}  = $ptr->{taxdescription};
1079         $form->{"$ptr->{accno}_taxnumber"}    = $ptr->{taxnumber};
1080         $form->{taxaccounts}                 .= "$ptr->{accno} ";
1081       }
1082
1083     }
1084
1085     chop $ref->{taxaccounts};
1086     push @{ $form->{invoice_details} }, $ref;
1087     $stw->finish();
1088   }
1089   $sth->finish();
1090
1091   Common::webdav_folder($form);
1092
1093   $dbh->disconnect();
1094
1095   $main::lxdebug->leave_sub();
1096 }
1097
1098 sub get_vendor {
1099   $main::lxdebug->enter_sub();
1100
1101   my ($self, $myconfig, $form, $params) = @_;
1102
1103   $params = $form unless defined $params && ref $params eq "HASH";
1104
1105   # connect to database
1106   my $dbh = $form->dbconnect($myconfig);
1107
1108   my $dateformat = $myconfig->{dateformat};
1109   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
1110
1111   my $vid = conv_i($params->{vendor_id});
1112   my $vnr = conv_i($params->{vendornumber});
1113
1114   my $duedate =
1115     ($params->{invdate})
1116     ? "to_date(" . $dbh->quote($params->{invdate}) . ", '$dateformat')"
1117     : "current_date";
1118
1119   # get vendor
1120   my @values = ();
1121   my $where = '';
1122   if ($vid) {
1123     $where .= 'AND v.id = ?';
1124     push @values, $vid;
1125   }
1126   if ($vnr) {
1127     $where .= 'AND v.vendornumber = ?';
1128     push @values, $vnr;
1129   }
1130   my $query =
1131     qq|SELECT
1132          v.id AS vendor_id, v.name AS vendor, v.discount as vendor_discount,
1133          v.creditlimit, v.terms, v.notes AS intnotes,
1134          v.email, v.cc, v.bcc, v.language_id, v.payment_id, v.delivery_term_id,
1135          v.street, v.zipcode, v.city, v.country, v.taxzone_id, cu.name AS curr, v.direct_debit,
1136          $duedate + COALESCE(pt.terms_netto, 0) AS duedate,
1137          b.description AS business
1138        FROM vendor v
1139        LEFT JOIN business b       ON (b.id = v.business_id)
1140        LEFT JOIN payment_terms pt ON (v.payment_id = pt.id)
1141        LEFT JOIN currencies cu    ON (v.currency_id = cu.id)
1142        WHERE 1=1 $where|;
1143   my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
1144   map { $params->{$_} = $ref->{$_} } keys %$ref;
1145
1146   # use vendor currency
1147   $form->{currency} = $form->{curr};
1148
1149   $params->{creditremaining} = $params->{creditlimit};
1150
1151   $query = qq|SELECT SUM(amount - paid) FROM ap WHERE vendor_id = ?|;
1152   my ($unpaid_invoices) = selectfirst_array_query($form, $dbh, $query, $vid);
1153   $params->{creditremaining} -= $unpaid_invoices;
1154
1155   $query = qq|SELECT o.amount,
1156                 (SELECT e.sell
1157                  FROM exchangerate e
1158                  WHERE (e.currency_id = o.currency_id)
1159                    AND (e.transdate = o.transdate)) AS exch
1160               FROM oe o
1161               WHERE (o.vendor_id = ?) AND (o.quotation = '0') AND (o.closed = '0')|;
1162   my $sth = prepare_execute_query($form, $dbh, $query, $vid);
1163   while (my ($amount, $exch) = $sth->fetchrow_array()) {
1164     $exch = 1 unless $exch;
1165     $params->{creditremaining} -= $amount * $exch;
1166   }
1167   $sth->finish();
1168
1169   if (!$params->{id} && $params->{type} !~ /_(order|quotation)/) {
1170     # setup last accounts used
1171     $query =
1172       qq|SELECT c.id, c.accno, c.description, c.link, c.category
1173          FROM chart c
1174          JOIN acc_trans ac ON (ac.chart_id = c.id)
1175          JOIN ap a         ON (a.id = ac.trans_id)
1176          WHERE (a.vendor_id = ?)
1177            AND (NOT ((c.link LIKE '%_tax%') OR (c.link LIKE '%_paid%')))
1178            AND (a.id IN (SELECT max(a2.id) FROM ap a2 WHERE a2.vendor_id = ?))|;
1179     my $refs = selectall_hashref_query($form, $dbh, $query, $vid, $vid);
1180
1181     my $i = 0;
1182     for $ref (@$refs) {
1183       if ($ref->{category} eq 'E') {
1184         $i++;
1185         my ($tax_id, $rate);
1186         if ($params->{initial_transdate}) {
1187           my $tax_query = qq|SELECT tk.tax_id, t.rate FROM taxkeys tk
1188                              LEFT JOIN tax t ON (tk.tax_id = t.id)
1189                              WHERE (tk.chart_id = ?) AND (startdate <= ?)
1190                              ORDER BY tk.startdate DESC
1191                              LIMIT 1|;
1192           ($tax_id, $rate) = selectrow_query($form, $dbh, $tax_query, $ref->{id}, $params->{initial_transdate});
1193           $params->{"taxchart_$i"} = "${tax_id}--${rate}";
1194         }
1195
1196         $params->{"AP_amount_$i"} = "$ref->{accno}--$tax_id";
1197       }
1198
1199       if ($ref->{category} eq 'L') {
1200         $params->{APselected} = $params->{AP_1} = $ref->{accno};
1201       }
1202     }
1203     $params->{rowcount} = $i if ($i && !$params->{type});
1204   }
1205
1206   $dbh->disconnect();
1207
1208   $main::lxdebug->leave_sub();
1209 }
1210
1211 sub retrieve_item {
1212   $main::lxdebug->enter_sub();
1213
1214   my ($self, $myconfig, $form) = @_;
1215
1216   # connect to database
1217   my $dbh = $form->dbconnect($myconfig);
1218
1219   my $i = $form->{rowcount};
1220
1221   # don't include assemblies or obsolete parts
1222   my $where = "NOT p.assembly = '1' AND NOT p.obsolete = '1'";
1223   my @values;
1224
1225   foreach my $table_column (qw(p.partnumber p.description pg.partsgroup)) {
1226     my $field = (split m{\.}, $table_column)[1];
1227     next unless $form->{"${field}_${i}"};
1228     $where .= " AND lower(${table_column}) LIKE lower(?)";
1229     push @values, '%' . $form->{"${field}_${i}"} . '%';
1230   }
1231
1232   my (%mm_by_id);
1233   if ($form->{"partnumber_$i"} && !$form->{"description_$i"}) {
1234     $where .= qq| OR (NOT p.obsolete = '1' AND p.ean = ? )|;
1235     push @values, $form->{"partnumber_$i"};
1236
1237     # also search hits in makemodels, but only cache the results by id and merge later
1238     my $mm_query = qq|
1239       SELECT parts_id, model FROM makemodel
1240       LEFT JOIN parts ON parts.id = parts_id
1241       WHERE NOT parts.obsolete AND model ILIKE ? AND (make IS NULL OR make = ?);
1242     |;
1243     my $mm_results = selectall_hashref_query($::form, $dbh, $mm_query, '%' . $form->{"partnumber_$i"} . '%', $::form->{vendor_id});
1244     my @mm_ids     = map { $_->{parts_id} } @$mm_results;
1245     push @{$mm_by_id{ $_->{parts_id} } ||= []}, $_ for @$mm_results;
1246
1247     if (@mm_ids) {
1248       $where .= qq| OR p.id IN (| . join(',', ('?') x @mm_ids) . qq|)|;
1249       push @values, @mm_ids;
1250     }
1251   }
1252
1253   # Search for part ID overrides all other criteria.
1254   if ($form->{"id_${i}"}) {
1255     $where  = qq|p.id = ?|;
1256     @values = ($form->{"id_${i}"});
1257   }
1258
1259   if ($form->{"description_$i"}) {
1260     $where .= " ORDER BY p.description";
1261   } else {
1262     $where .= " ORDER BY p.partnumber";
1263   }
1264
1265   my $transdate = "";
1266   if ($form->{type} eq "invoice") {
1267     $transdate = $form->{deliverydate} ? $dbh->quote($form->{deliverydate})
1268                : $form->{invdate} ? $dbh->quote($form->{invdate})
1269                : "current_date";
1270   } else {
1271     $transdate = $form->{transdate} ? $dbh->quote($form->{transdate}) : "current_date";
1272   }
1273
1274   my $taxzone_id = $form->{taxzone_id} * 1;
1275   $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
1276
1277   my $query =
1278     qq|SELECT
1279          p.id, p.partnumber, p.description, p.lastcost AS sellprice, p.listprice,
1280          p.unit, p.assembly, p.onhand, p.formel,
1281          p.notes AS partnotes, p.notes AS longdescription, p.not_discountable,
1282          p.inventory_accno_id, p.price_factor_id,
1283          p.ean,
1284
1285          pfac.factor AS price_factor,
1286
1287          c1.accno                         AS inventory_accno,
1288          c1.new_chart_id                  AS inventory_new_chart,
1289          date($transdate) - c1.valid_from AS inventory_valid,
1290
1291          c2.accno                         AS income_accno,
1292          c2.new_chart_id                  AS income_new_chart,
1293          date($transdate) - c2.valid_from AS income_valid,
1294
1295          c3.accno                         AS expense_accno,
1296          c3.new_chart_id                  AS expense_new_chart,
1297          date($transdate) - c3.valid_from AS expense_valid,
1298
1299          pg.partsgroup
1300
1301        FROM parts p
1302        LEFT JOIN chart c1 ON
1303          ((SELECT inventory_accno_id
1304            FROM buchungsgruppen
1305            WHERE id = p.buchungsgruppen_id) = c1.id)
1306        LEFT JOIN chart c2 ON
1307          ((SELECT tc.income_accno_id
1308            FROM taxzone_charts tc
1309            WHERE tc.taxzone_id = '$taxzone_id' and tc.buchungsgruppen_id = p.buchungsgruppen_id) = c2.id)
1310        LEFT JOIN chart c3 ON
1311          ((SELECT tc.expense_accno_id
1312            FROM taxzone_charts tc
1313            WHERE tc.taxzone_id = '$taxzone_id' and tc.buchungsgruppen_id = p.buchungsgruppen_id) = c3.id)
1314        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
1315        LEFT JOIN price_factors pfac ON (pfac.id = p.price_factor_id)
1316        WHERE $where|;
1317   my $sth = prepare_execute_query($form, $dbh, $query, @values);
1318
1319   my @translation_queries = ( [ qq|SELECT tr.translation, tr.longdescription
1320                                    FROM translation tr
1321                                    WHERE tr.language_id = ? AND tr.parts_id = ?| ],
1322                               [ qq|SELECT tr.translation, tr.longdescription
1323                                    FROM translation tr
1324                                    WHERE tr.language_id IN
1325                                      (SELECT id
1326                                       FROM language
1327                                       WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
1328                                      AND tr.parts_id = ?
1329                                    LIMIT 1| ] );
1330   map { push @{ $_ }, prepare_query($form, $dbh, $_->[0]) } @translation_queries;
1331
1332   $form->{item_list} = [];
1333   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
1334
1335     if ($mm_by_id{$ref->{id}}) {
1336       $ref->{makemodels} = $mm_by_id{$ref->{id}};
1337       push @{ $ref->{matches} ||= [] }, $::locale->text('Model') . ': ' . join ', ', map { $_->{model} } @{ $mm_by_id{$ref->{id}} };
1338     }
1339
1340     if ($ref->{ean} eq $::form->{"partnumber_$i"}) {
1341       push @{ $ref->{matches} ||= [] }, $::locale->text('EAN') . ': ' . $ref->{ean};
1342     }
1343
1344     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
1345     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
1346     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
1347     if (!$ref->{inventory_accno_id}) {
1348       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
1349     }
1350     delete($ref->{inventory_accno_id});
1351
1352     # get tax rates and description
1353     my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1354     $query =
1355       qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
1356          FROM tax t
1357          LEFT JOIN chart c on (c.id = t.chart_id)
1358          WHERE t.id IN
1359            (SELECT tk.tax_id
1360             FROM taxkeys tk
1361             WHERE tk.chart_id =
1362               (SELECT id
1363                FROM chart
1364                WHERE accno = ?)
1365               AND (startdate <= $transdate)
1366             ORDER BY startdate DESC
1367             LIMIT 1)
1368          ORDER BY c.accno|;
1369     my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
1370
1371     $ref->{taxaccounts} = "";
1372     my $i = 0;
1373     while (my $ptr = $stw->fetchrow_hashref("NAME_lc")) {
1374
1375       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1376         $i++;
1377         $ptr->{accno} = $i;
1378       }
1379
1380       $ref->{taxaccounts} .= "$ptr->{accno} ";
1381
1382       if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
1383         $form->{"$ptr->{accno}_rate"}         = $ptr->{rate};
1384         $form->{"$ptr->{accno}_description"}  = $ptr->{taxdescription};
1385         $form->{"$ptr->{accno}_taxnumber"}    = $ptr->{taxnumber};
1386         $form->{taxaccounts}                 .= "$ptr->{accno} ";
1387       }
1388
1389       if ($form->{language_id}) {
1390         for my $spec (@translation_queries) {
1391           do_statement($form, $spec->[1], $spec->[0], conv_i($form->{language_id}), conv_i($ref->{id}));
1392           my ($translation, $longdescription) = $spec->[1]->fetchrow_array;
1393           next unless $translation;
1394           $ref->{description} = $translation;
1395           $ref->{longdescription} = $longdescription;
1396           last;
1397         }
1398       }
1399     }
1400
1401     $stw->finish();
1402     chop $ref->{taxaccounts};
1403
1404     $ref->{onhand} *= 1;
1405
1406     push @{ $form->{item_list} }, $ref;
1407
1408   }
1409
1410   $sth->finish();
1411   $_->[1]->finish for @translation_queries;
1412
1413   foreach my $item (@{ $form->{item_list} }) {
1414     my $custom_variables = CVar->get_custom_variables(module   => 'IC',
1415                                                       trans_id => $item->{id},
1416                                                       dbh      => $dbh,
1417                                                      );
1418
1419     map { $item->{"ic_cvar_" . $_->{name} } = $_->{value} } @{ $custom_variables };
1420   }
1421
1422   $dbh->disconnect();
1423
1424   $main::lxdebug->leave_sub();
1425 }
1426
1427 sub vendor_details {
1428   $main::lxdebug->enter_sub();
1429
1430   my ($self, $myconfig, $form, @wanted_vars) = @_;
1431
1432   # connect to database
1433   my $dbh = $form->dbconnect($myconfig);
1434
1435   my @values;
1436
1437   # get contact id, set it if nessessary
1438   $form->{cp_id} *= 1;
1439   my $contact = "";
1440   if ($form->{cp_id}) {
1441     $contact = "AND cp.cp_id = ?";
1442     push @values, $form->{cp_id};
1443   }
1444
1445   # get rest for the vendor
1446   # fax and phone and email as vendor*
1447   my $query =
1448     qq|SELECT ct.*, cp.*, ct.notes as vendornotes, phone as vendorphone, fax as vendorfax, email as vendoremail,
1449          cu.name AS currency
1450        FROM vendor ct
1451        LEFT JOIN contacts cp ON (ct.id = cp.cp_cv_id)
1452        LEFT JOIN currencies cu ON (ct.currency_id = cu.id)
1453        WHERE (ct.id = ?) $contact
1454        ORDER BY cp.cp_id
1455        LIMIT 1|;
1456   my $ref = selectfirst_hashref_query($form, $dbh, $query, $form->{vendor_id}, @values);
1457
1458   # remove id and taxincluded before copy back
1459   delete @$ref{qw(id taxincluded)};
1460
1461   @wanted_vars = grep({ $_ } @wanted_vars);
1462   if (scalar(@wanted_vars) > 0) {
1463     my %h_wanted_vars;
1464     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
1465     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
1466   }
1467
1468   map { $form->{$_} = $ref->{$_} } keys %$ref;
1469
1470   my $custom_variables = CVar->get_custom_variables('dbh'      => $dbh,
1471                                                     'module'   => 'CT',
1472                                                     'trans_id' => $form->{vendor_id});
1473   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
1474
1475   $form->{cp_greeting} = GenericTranslations->get('dbh'              => $dbh,
1476                                                   'translation_type' => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
1477                                                   'allow_fallback'   => 1);
1478
1479   $dbh->disconnect();
1480
1481   $main::lxdebug->leave_sub();
1482 }
1483
1484 sub item_links {
1485   $main::lxdebug->enter_sub();
1486
1487   my ($self, $myconfig, $form) = @_;
1488
1489   # connect to database
1490   my $dbh = $form->dbconnect($myconfig);
1491
1492   my $query =
1493     qq|SELECT accno, description, link
1494        FROM chart
1495        WHERE link LIKE '%IC%'
1496        ORDER BY accno|;
1497   my $sth = prepare_execute_query($query, $dbh, $query);
1498
1499   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
1500     foreach my $key (split(/:/, $ref->{link})) {
1501       if ($key =~ /IC/) {
1502         push @{ $form->{IC_links}{$key} },
1503           { accno       => $ref->{accno},
1504             description => $ref->{description} };
1505       }
1506     }
1507   }
1508
1509   $sth->finish();
1510   $dbh->disconnect();
1511
1512   $main::lxdebug->leave_sub();
1513 }
1514
1515 sub _delete_payments {
1516   $main::lxdebug->enter_sub();
1517
1518   my ($self, $form, $dbh) = @_;
1519
1520   my @delete_acc_trans_ids;
1521
1522   # Delete old payment entries from acc_trans.
1523   my $query =
1524     qq|SELECT acc_trans_id
1525        FROM acc_trans
1526        WHERE (trans_id = ?) AND fx_transaction
1527
1528        UNION
1529
1530        SELECT at.acc_trans_id
1531        FROM acc_trans at
1532        LEFT JOIN chart c ON (at.chart_id = c.id)
1533        WHERE (trans_id = ?) AND (c.link LIKE '%AP_paid%')|;
1534   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
1535
1536   $query =
1537     qq|SELECT at.acc_trans_id
1538        FROM acc_trans at
1539        LEFT JOIN chart c ON (at.chart_id = c.id)
1540        WHERE (trans_id = ?)
1541          AND ((c.link = 'AP') OR (c.link LIKE '%:AP') OR (c.link LIKE 'AP:%'))
1542        ORDER BY at.acc_trans_id
1543        OFFSET 1|;
1544   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
1545
1546   if (@delete_acc_trans_ids) {
1547     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
1548     do_query($form, $dbh, $query);
1549   }
1550
1551   $main::lxdebug->leave_sub();
1552 }
1553
1554 sub post_payment {
1555   $main::lxdebug->enter_sub();
1556
1557   my ($self, $myconfig, $form, $locale) = @_;
1558
1559   # connect to database, turn off autocommit
1560   my $dbh = $form->dbconnect_noauto($myconfig);
1561
1562   my (%payments, $old_form, $row, $item, $query, %keep_vars);
1563
1564   $old_form = save_form();
1565
1566   # Delete all entries in acc_trans from prior payments.
1567   if (SL::DB::Default->get->payments_changeable != 0) {
1568     $self->_delete_payments($form, $dbh);
1569   }
1570
1571   # Save the new payments the user made before cleaning up $form.
1572   map { $payments{$_} = $form->{$_} } grep m/^datepaid_\d+$|^gldate_\d+$|^acc_trans_id_\d+$|^memo_\d+$|^source_\d+$|^exchangerate_\d+$|^paid_\d+$|^AP_paid_\d+$|^paidaccounts$/, keys %{ $form };
1573
1574   # Clean up $form so that old content won't tamper the results.
1575   %keep_vars = map { $_, 1 } qw(login password id);
1576   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
1577
1578   # Retrieve the invoice from the database.
1579   $self->retrieve_invoice($myconfig, $form);
1580
1581   # Set up the content of $form in the way that IR::post_invoice() expects.
1582   $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
1583
1584   for $row (1 .. scalar @{ $form->{invoice_details} }) {
1585     $item = $form->{invoice_details}->[$row - 1];
1586
1587     map { $item->{$_} = $form->format_amount($myconfig, $item->{$_}) } qw(qty sellprice);
1588
1589     map { $form->{"${_}_${row}"} = $item->{$_} } keys %{ $item };
1590   }
1591
1592   $form->{rowcount} = scalar @{ $form->{invoice_details} };
1593
1594   delete @{$form}{qw(invoice_details paidaccounts storno paid)};
1595
1596   # Restore the payment options from the user input.
1597   map { $form->{$_} = $payments{$_} } keys %payments;
1598
1599   # Get the AP accno (which is normally done by Form::create_links()).
1600   $query =
1601     qq|SELECT c.accno
1602        FROM acc_trans at
1603        LEFT JOIN chart c ON (at.chart_id = c.id)
1604        WHERE (trans_id = ?)
1605          AND ((c.link = 'AP') OR (c.link LIKE '%:AP') OR (c.link LIKE 'AP:%'))
1606        ORDER BY at.acc_trans_id
1607        LIMIT 1|;
1608
1609   ($form->{AP}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
1610
1611   # Post the new payments.
1612   $self->post_invoice($myconfig, $form, $dbh, 1);
1613
1614   restore_form($old_form);
1615
1616   my $rc = $dbh->commit();
1617   $dbh->disconnect();
1618
1619   $main::lxdebug->leave_sub();
1620
1621   return $rc;
1622 }
1623
1624 sub get_duedate {
1625   $::lxdebug->enter_sub;
1626
1627   my ($self, %params) = @_;
1628
1629   if (!$params{vendor_id} || !$params{invdate}) {
1630     $::lxdebug->leave_sub;
1631     return $params{default};
1632   }
1633
1634   my $dbh      = $::form->get_standard_dbh;
1635   my $query    = qq|SELECT ?::date + pt.terms_netto
1636                     FROM vendor v
1637                     LEFT JOIN payment_terms pt ON (pt.id = v.payment_id)
1638                     WHERE v.id = ?|;
1639
1640   my ($duedate) = selectfirst_array_query($::form, $dbh, $query, $params{invdate}, $params{vendor_id});
1641
1642   $duedate ||= $params{default};
1643
1644   $::lxdebug->leave_sub;
1645
1646   return $duedate;
1647 }
1648
1649 1;