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