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