241ba587063b1d8a41ad114c0d2a242ea111a81a
[kivitendo-erp.git] / SL / IC.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 Control backend
32 #
33 #======================================================================
34
35 package IC;
36 use Data::Dumper;
37 use SL::DBUtils;
38
39 sub get_part {
40   $main::lxdebug->enter_sub();
41
42   my ($self, $myconfig, $form) = @_;
43
44   # connect to db
45   my $dbh = $form->dbconnect($myconfig);
46
47   my $sth;
48
49   my $query =
50     qq|SELECT p.*,
51          c1.accno AS inventory_accno,
52          c2.accno AS income_accno,
53          c3.accno AS expense_accno,
54          pg.partsgroup
55        FROM parts p
56        LEFT JOIN chart c1 ON (p.inventory_accno_id = c1.id)
57        LEFT JOIN chart c2 ON (p.income_accno_id = c2.id)
58        LEFT JOIN chart c3 ON (p.expense_accno_id = c3.id)
59        LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
60        WHERE p.id = ? |;
61   my $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{id}));
62
63   # copy to $form variables
64   map { $form->{$_} = $ref->{$_} } (keys %{$ref});
65
66   my %oid = ('Pg'     => 'a.oid',
67              'Oracle' => 'a.rowid');
68
69   # part or service item
70   $form->{item} = ($form->{inventory_accno}) ? 'part' : 'service';
71   if ($form->{assembly}) {
72     $form->{item} = 'assembly';
73
74     # retrieve assembly items
75     $query =
76       qq|SELECT p.id, p.partnumber, p.description,
77            p.sellprice, p.weight, a.qty, a.bom, p.unit,
78            pg.partsgroup
79          FROM parts p
80          JOIN assembly a ON (a.parts_id = p.id)
81          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
82          WHERE (a.id = ?)
83          ORDER BY $oid{$myconfig->{dbdriver}}|;
84     $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
85
86     $form->{assembly_rows} = 0;
87     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
88       $form->{assembly_rows}++;
89       foreach my $key (keys %{$ref}) {
90         $form->{"${key}_$form->{assembly_rows}"} = $ref->{$key};
91       }
92     }
93     $sth->finish;
94
95   }
96
97   # setup accno hash for <option checked> {amount} is used in create_links
98   $form->{amount}{IC}         = $form->{inventory_accno};
99   $form->{amount}{IC_income}  = $form->{income_accno};
100   $form->{amount}{IC_sale}    = $form->{income_accno};
101   $form->{amount}{IC_expense} = $form->{expense_accno};
102   $form->{amount}{IC_cogs}    = $form->{expense_accno};
103
104   my @pricegroups          = ();
105   my @pricegroups_not_used = ();
106
107   # get prices
108   $query =
109     qq|SELECT p.parts_id, p.pricegroup_id, p.price,
110          (SELECT pg.pricegroup
111           FROM pricegroup pg
112           WHERE pg.id = p.pricegroup_id) AS pricegroup
113        FROM prices p
114        WHERE (parts_id = ?)
115        ORDER BY pricegroup|;
116   $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
117
118   #for pricegroups
119   my $i = 1;
120   while (($form->{"klass_$i"}, $form->{"pricegroup_id_$i"},
121           $form->{"price_$i"}, $form->{"pricegroup_$i"})
122          = $sth->fetchrow_array()) {
123     $form->{"price_$i"} = $form->round_amount($form->{"price_$i"}, 5);
124     $form->{"price_$i"} = $form->format_amount($myconfig, $form->{"price_$i"}, -2);
125     push @pricegroups, $form->{"pricegroup_id_$i"};
126     $i++;
127   }
128
129   $sth->finish;
130
131   # get pricegroups
132   $query = qq|SELECT id, pricegroup FROM pricegroup|;
133   $form->{PRICEGROUPS} = selectall_hashref_query($form, $dbh, $query);
134
135   #find not used pricegroups
136   while ($tmp = pop(@{ $form->{PRICEGROUPS} })) {
137     my $in_use = 0;
138     foreach my $item (@pricegroups) {
139       if ($item eq $tmp->{id}) {
140         $in_use = 1;
141         last;
142       }
143     }
144     push(@pricegroups_not_used, $tmp) unless ($in_use);
145   }
146
147   # if not used pricegroups are avaible
148   if (@pricegroups_not_used) {
149
150     foreach $name (@pricegroups_not_used) {
151       $form->{"klass_$i"} = "$name->{id}";
152       $form->{"price_$i"} = $form->round_amount($form->{sellprice}, 5);
153       $form->{"price_$i"} = $form->format_amount($myconfig, $form->{"price_$i"}, -2);
154       $form->{"pricegroup_id_$i"} = "$name->{id}";
155       $form->{"pricegroup_$i"}    = "$name->{pricegroup}";
156       $i++;
157     }
158   }
159
160   #correct rows
161   $form->{price_rows} = $i - 1;
162
163   unless ($form->{item} eq 'service') {
164
165     # get makes
166     if ($form->{makemodel}) {
167       $query = qq|SELECT m.make, m.model FROM makemodel m | .
168                qq|WHERE m.parts_id = ?|;
169       @values = ($form->{id});
170       $sth = $dbh->prepare($query);
171       $sth->execute(@values) || $form->dberror("$query (" . join(', ', @values) . ")");
172
173       my $i = 1;
174       while (($form->{"make_$i"}, $form->{"model_$i"}) = $sth->fetchrow_array)
175       {
176         $i++;
177       }
178       $sth->finish;
179       $form->{makemodel_rows} = $i - 1;
180
181     }
182   }
183
184   # get translations
185   $form->{language_values} = "";
186   $query = qq|SELECT language_id, translation FROM translation WHERE parts_id = ?|;
187   my $trq = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
188   while ($tr = $trq->fetchrow_hashref(NAME_lc)) {
189     $form->{language_values} .= "---+++---".$tr->{language_id}."--++--".$tr->{translation};
190   }
191   $trq->finish;
192
193   # now get accno for taxes
194   $query =
195     qq|SELECT c.accno
196        FROM chart c, partstax pt
197        WHERE (pt.chart_id = c.id) AND (pt.parts_id = ?)|;
198   $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
199   while (($key) = $sth->fetchrow_array) {
200     $form->{amount}{$key} = $key;
201   }
202
203   $sth->finish;
204
205   # is it an orphan
206   $query =
207     qq|SELECT i.parts_id
208        FROM invoice i
209        WHERE (i.parts_id = ?)
210
211        UNION
212
213        SELECT o.parts_id
214        FROM orderitems o
215        WHERE (o.parts_id = ?)
216
217        UNION
218
219        SELECT a.parts_id
220        FROM assembly a
221        WHERE (a.parts_id = ?)|;
222   @values = (conv_i($form->{id}), conv_i($form->{id}), conv_i($form->{id}));
223   ($form->{orphaned}) = selectrow_query($form, $dbh, $query, @values);
224   $form->{orphaned} = !$form->{orphaned};
225
226   $form->{"unit_changeable"} = 1;
227   foreach my $table (qw(invoice assembly orderitems inventory license)) {
228     $query = qq|SELECT COUNT(*) FROM $table WHERE parts_id = ?|;
229     my ($count) = selectrow_query($form, $dbh, $query, conv_i($form->{"id"}));
230
231     if ($count) {
232       $form->{"unit_changeable"} = 0;
233       last;
234     }
235   }
236
237   $dbh->disconnect;
238
239   $main::lxdebug->leave_sub();
240 }
241
242 sub get_pricegroups {
243   $main::lxdebug->enter_sub();
244
245   my ($self, $myconfig, $form) = @_;
246
247   my $dbh = $form->dbconnect($myconfig);
248
249   # get pricegroups
250   my $query = qq|SELECT id, pricegroup FROM pricegroup|;
251   my $pricegroups = selectall_hashref_query($form, $dbh, $query);
252
253   my $i = 1;
254   foreach $pg (@{ $pricegroups }) {
255     $form->{"klass_$i"} = "$pg->{id}";
256     $form->{"price_$i"} = $form->format_amount($myconfig, $form->{"price_$i"}, -2);
257     $form->{"pricegroup_id_$i"} = "$pg->{id}";
258     $form->{"pricegroup_$i"}    = "$pg->{pricegroup}";
259     $i++;
260   }
261
262   #correct rows
263   $form->{price_rows} = $i - 1;
264
265   $dbh->disconnect;
266
267   $main::lxdebug->leave_sub();
268 }
269
270 sub retrieve_buchungsgruppen {
271   $main::lxdebug->enter_sub();
272
273   my ($self, $myconfig, $form) = @_;
274
275   my ($query, $sth);
276
277   my $dbh = $form->dbconnect($myconfig);
278
279   # get buchungsgruppen
280   $query = qq|SELECT id, description FROM buchungsgruppen ORDER BY sortkey|;
281   $form->{BUCHUNGSGRUPPEN} = selectall_hashref_query($form, $dbh, $query);
282
283   $main::lxdebug->leave_sub();
284 }
285
286 sub save {
287   $main::lxdebug->enter_sub();
288
289   my ($self, $myconfig, $form) = @_;
290   my @values;
291   # connect to database, turn off AutoCommit
292   my $dbh = $form->dbconnect_noauto($myconfig);
293
294   # save the part
295   # make up a unique handle and store in partnumber field
296   # then retrieve the record based on the unique handle to get the id
297   # replace the partnumber field with the actual variable
298   # add records for makemodel
299
300   # if there is a $form->{id} then replace the old entry
301   # delete all makemodel entries and add the new ones
302
303   # undo amount formatting
304   map { $form->{$_} = $form->parse_amount($myconfig, $form->{$_}) }
305     qw(rop weight listprice sellprice gv lastcost stock);
306
307   my $makemodel = (($form->{make_1}) || ($form->{model_1})) ? 1 : 0;
308
309   $form->{assembly} = ($form->{item} eq 'assembly') ? 1 : 0;
310
311   my ($query, $sth);
312
313   if ($form->{id}) {
314
315     # get old price
316     $query = qq|SELECT sellprice, weight FROM parts WHERE id = ?|;
317     my ($sellprice, $weight) = selectrow_query($form, $dbh, $query, conv_i($form->{id}));
318
319     # if item is part of an assembly adjust all assemblies
320     $query = qq|SELECT id, qty FROM assembly WHERE parts_id = ?|;
321     $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
322     while (my ($id, $qty) = $sth->fetchrow_array) {
323       &update_assembly($dbh, $form, $id, $qty, $sellprice * 1, $weight * 1);
324     }
325     $sth->finish;
326
327     if ($form->{item} ne 'service') {
328       # delete makemodel records
329       do_query($form, $dbh, qq|DELETE FROM makemodel WHERE parts_id = ?|, conv_i($form->{id}));
330     }
331
332     if ($form->{item} eq 'assembly') {
333       if ($form->{onhand} != 0) {
334         &adjust_inventory($dbh, $form, $form->{id}, $form->{onhand} * -1);
335       }
336
337       # delete assembly records
338       do_query($form, $dbh, qq|DELETE FROM assembly WHERE id = ?|, conv_i($form->{id}));
339
340       $form->{onhand} += $form->{stock};
341     }
342
343     # delete tax records
344     do_query($form, $dbh, qq|DELETE FROM partstax WHERE parts_id = ?|, conv_i($form->{id}));
345
346     # delete translations
347     do_query($form, $dbh, qq|DELETE FROM translation WHERE parts_id = ?|, conv_i($form->{id}));
348
349   } else {
350     my ($count) = selectrow_query($form, $dbh, qq|SELECT COUNT(*) FROM parts WHERE partnumber = ?|, $form->{partnumber});
351     if ($count) {
352       $main::lxdebug->leave_sub();
353       return 3;
354     }
355
356     ($form->{id}) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
357     do_query($form, $dbh, qq|INSERT INTO parts (id, partnumber) VALUES (?, '')|, $form->{id});
358
359     $form->{orphaned} = 1;
360     $form->{onhand} = $form->{stock} if $form->{item} eq 'assembly';
361     if ($form->{partnumber} eq "" && $form->{"item"} eq "service") {
362       $form->{partnumber} = $form->update_defaults($myconfig, "servicenumber");
363     }
364     if ($form->{partnumber} eq "" && $form->{"item"} ne "service") {
365       $form->{partnumber} = $form->update_defaults($myconfig, "articlenumber");
366     }
367
368   }
369   my $partsgroup_id = 0;
370
371   if ($form->{partsgroup}) {
372     ($partsgroup, $partsgroup_id) = split(/--/, $form->{partsgroup});
373   }
374
375   my ($subq_inventory, $subq_expense, $subq_income);
376   if ($form->{"item"} eq "part") {
377     $subq_inventory =
378       qq|(SELECT bg.inventory_accno_id
379           FROM buchungsgruppen bg
380           WHERE bg.id = | . conv_i($form->{"buchungsgruppen_id"}, 'NULL') . qq|)|;
381   } else {
382     $subq_inventory = "NULL";
383   }
384
385   if ($form->{"item"} ne "assembly") {
386     $subq_expense =
387       qq|(SELECT bg.expense_accno_id_0
388           FROM buchungsgruppen bg
389           WHERE bg.id = | . conv_i($form->{"buchungsgruppen_id"}, 'NULL') . qq|)|;
390   } else {
391     $subq_expense = "NULL";
392   }
393
394   $query =
395     qq|UPDATE parts SET
396          partnumber = ?,
397          description = ?,
398          makemodel = ?,
399          alternate = 'f',
400          assembly = ?,
401          listprice = ?,
402          sellprice = ?,
403          lastcost = ?,
404          weight = ?,
405          priceupdate = ?,
406          unit = ?,
407          notes = ?,
408          formel = ?,
409          rop = ?,
410          bin = ?,
411          buchungsgruppen_id = ?,
412          payment_id = ?,
413          inventory_accno_id = $subq_inventory,
414          income_accno_id = (SELECT bg.income_accno_id_0 FROM buchungsgruppen bg WHERE bg.id = ?),
415          expense_accno_id = $subq_expense,
416          obsolete = ?,
417          image = ?,
418          drawing = ?,
419          shop = ?,
420          ve = ?,
421          gv = ?,
422          ean = ?,
423          not_discountable = ?,
424          microfiche = ?,
425          partsgroup_id = ?,
426          price_factor_id = ?
427        WHERE id = ?|;
428   @values = ($form->{partnumber},
429              $form->{description},
430              $makemodel ? 't' : 'f',
431              $form->{assembly} ? 't' : 'f',
432              $form->{listprice},
433              $form->{sellprice},
434              $form->{lastcost},
435              $form->{weight},
436              conv_date($form->{priceupdate}),
437              $form->{unit},
438              $form->{notes},
439              $form->{formel},
440              $form->{rop},
441              $form->{bin},
442              conv_i($form->{buchungsgruppen_id}),
443              conv_i($form->{payment_id}),
444              conv_i($form->{buchungsgruppen_id}),
445              $form->{obsolete} ? 't' : 'f',
446              $form->{image},
447              $form->{drawing},
448              $form->{shop} ? 't' : 'f',
449              conv_i($form->{ve}),
450              conv_i($form->{gv}),
451              $form->{ean},
452              $form->{not_discountable} ? 't' : 'f',
453              $form->{microfiche},
454              conv_i($partsgroup_id),
455              conv_i($form->{price_factor_id}),
456              conv_i($form->{id})
457   );
458   do_query($form, $dbh, $query, @values);
459
460   # delete translation records
461   do_query($form, $dbh, qq|DELETE FROM translation WHERE parts_id = ?|, conv_i($form->{id}));
462
463   if ($form->{language_values} ne "") {
464     foreach $item (split(/---\+\+\+---/, $form->{language_values})) {
465       my ($language_id, $translation, $longdescription) = split(/--\+\+--/, $item);
466       if ($translation ne "") {
467         $query = qq|INSERT into translation (parts_id, language_id, translation, longdescription)
468                     VALUES ( ?, ?, ?, ? )|;
469         @values = (conv_i($form->{id}), conv_i($language_id), $translation, $longdescription);
470         do_query($form, $dbh, $query, @values);
471       }
472     }
473   }
474
475   # delete price records
476   do_query($form, $dbh, qq|DELETE FROM prices WHERE parts_id = ?|, conv_i($form->{id}));
477
478   # insert price records only if different to sellprice
479   for my $i (1 .. $form->{price_rows}) {
480     if ($form->{"price_$i"} eq "0") {
481       $form->{"price_$i"} = $form->{sellprice};
482     }
483     if (
484         (   $form->{"price_$i"}
485          || $form->{"klass_$i"}
486          || $form->{"pricegroup_id_$i"})
487         and $form->{"price_$i"} != $form->{sellprice}
488       ) {
489       #$klass = $form->parse_amount($myconfig, $form->{"klass_$i"});
490       $price = $form->parse_amount($myconfig, $form->{"price_$i"});
491       $pricegroup_id =
492         $form->parse_amount($myconfig, $form->{"pricegroup_id_$i"});
493       $query = qq|INSERT INTO prices (parts_id, pricegroup_id, price) | .
494                qq|VALUES(?, ?, ?)|;
495       @values = (conv_i($form->{id}), conv_i($pricegroup_id), $price);
496       do_query($form, $dbh, $query, @values);
497     }
498   }
499
500   # insert makemodel records
501   unless ($form->{item} eq 'service') {
502     for my $i (1 .. $form->{makemodel_rows}) {
503       if (($form->{"make_$i"}) || ($form->{"model_$i"})) {
504         map { $form->{"${_}_$i"} =~ s/\'/\'\'/g } qw(make model);
505
506         $query = qq|INSERT INTO makemodel (parts_id, make, model) | .
507                              qq|VALUES (?, ?, ?)|;
508                     @values = (conv_i($form->{id}), $form->{"make_$i"}, $form->{"model_$i"});
509         do_query($form, $dbh, $query, @values);
510       }
511     }
512   }
513
514   # insert taxes
515   foreach $item (split(/ /, $form->{taxaccounts})) {
516     if ($form->{"IC_tax_$item"}) {
517       $query =
518         qq|INSERT INTO partstax (parts_id, chart_id)
519            VALUES (?, (SELECT id FROM chart WHERE accno = ?))|;
520                         @values = (conv_i($form->{id}), $item);
521       do_query($form, $dbh, $query, @values);
522     }
523   }
524
525   # add assembly records
526   if ($form->{item} eq 'assembly') {
527
528     for my $i (1 .. $form->{assembly_rows}) {
529       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
530
531       if ($form->{"qty_$i"} != 0) {
532         $form->{"bom_$i"} *= 1;
533         $query = qq|INSERT INTO assembly (id, parts_id, qty, bom) | .
534                              qq|VALUES (?, ?, ?, ?)|;
535                     @values = (conv_i($form->{id}), conv_i($form->{"id_$i"}), conv_i($form->{"qty_$i"}), $form->{"bom_$i"} ? 't' : 'f');
536         do_query($form, $dbh, $query, @values);
537       }
538     }
539
540     # adjust onhand for the parts
541     if ($form->{onhand} != 0) {
542       &adjust_inventory($dbh, $form, $form->{id}, $form->{onhand});
543     }
544
545     @a = localtime;
546     $a[5] += 1900;
547     $a[4]++;
548     my $shippingdate = "$a[5]-$a[4]-$a[3]";
549
550     $form->get_employee($dbh);
551
552     # add inventory record
553     $query =
554       qq|INSERT INTO inventory (warehouse_id, parts_id, qty, shippingdate, employee_id)
555          VALUES (0, ?, ?, '$shippingdate', ?)|;
556     @values = (conv_i($form->{id}), $form->{stock}, conv_i($form->{employee_id}));
557     do_query($form, $dbh, $query, @values);
558
559   }
560
561   #set expense_accno=inventory_accno if they are different => bilanz
562   $vendor_accno =
563     ($form->{expense_accno} != $form->{inventory_accno})
564     ? $form->{inventory_accno}
565     : $form->{expense_accno};
566
567   # get tax rates and description
568   $accno_id =
569     ($form->{vc} eq "customer") ? $form->{income_accno} : $vendor_accno;
570   $query =
571     qq|SELECT c.accno, c.description, t.rate, t.taxnumber
572        FROM chart c, tax t
573        WHERE (c.id = t.chart_id) AND (t.taxkey IN (SELECT taxkey_id FROM chart where accno = ?))
574        ORDER BY c.accno|;
575   $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
576
577   $form->{taxaccount} = "";
578   while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
579     $form->{taxaccount} .= "$ptr->{accno} ";
580     if (!($form->{taxaccount2} =~ /$ptr->{accno}/)) {
581       $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
582       $form->{"$ptr->{accno}_description"} = $ptr->{description};
583       $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
584       $form->{taxaccount2} .= " $ptr->{accno} ";
585     }
586   }
587
588   # commit
589   my $rc = $dbh->commit;
590   $dbh->disconnect;
591
592   $main::lxdebug->leave_sub();
593
594   return $rc;
595 }
596
597 sub update_assembly {
598   $main::lxdebug->enter_sub();
599
600   my ($dbh, $form, $id, $qty, $sellprice, $weight) = @_;
601
602   my $query = qq|SELECT id, qty FROM assembly WHERE parts_id = ?|;
603   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
604
605   while (my ($pid, $aqty) = $sth->fetchrow_array) {
606     &update_assembly($dbh, $form, $pid, $aqty * $qty, $sellprice, $weight);
607   }
608   $sth->finish;
609
610   $query =
611     qq|UPDATE parts SET sellprice = sellprice + ?, weight = weight + ?
612        WHERE id = ?|;
613   @values = ($qty * ($form->{sellprice} - $sellprice),
614              $qty * ($form->{weight} - $weight), conv_i($id));
615   do_query($form, $dbh, $query, @values);
616
617   $main::lxdebug->leave_sub();
618 }
619
620 sub retrieve_assemblies {
621   $main::lxdebug->enter_sub();
622
623   my ($self, $myconfig, $form) = @_;
624
625   # connect to database
626   my $dbh = $form->dbconnect($myconfig);
627
628   my $where = qq|NOT p.obsolete|;
629   my @values;
630
631   if ($form->{partnumber}) {
632     $where .= qq| AND (p.partnumber ILIKE ?)|;
633     push(@values, '%' . $form->{partnumber} . '%');
634   }
635
636   if ($form->{description}) {
637     $where .= qq| AND (p.description ILIKE ?)|;
638     push(@values, '%' . $form->{description} . '%');
639   }
640
641   # retrieve assembly items
642   my $query =
643     qq|SELECT p.id, p.partnumber, p.description,
644          p.bin, p.onhand, p.rop,
645          (SELECT sum(p2.inventory_accno_id)
646           FROM parts p2, assembly a
647           WHERE (p2.id = a.parts_id) AND (a.id = p.id)) AS inventory
648        FROM parts p
649        WHERE NOT p.obsolete AND p.assembly $where|;
650
651   $form->{assembly_items} = selectall_hashref_query($form, $dbh, $query, @values);
652
653   $dbh->disconnect;
654
655   $main::lxdebug->leave_sub();
656 }
657
658 sub restock_assemblies {
659   $main::lxdebug->enter_sub();
660
661   my ($self, $myconfig, $form) = @_;
662
663   # connect to database
664   my $dbh = $form->dbconnect_noauto($myconfig);
665
666   for my $i (1 .. $form->{rowcount}) {
667
668     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
669
670     if ($form->{"qty_$i"} != 0) {
671       &adjust_inventory($dbh, $form, $form->{"id_$i"}, $form->{"qty_$i"});
672     }
673
674   }
675
676   my $rc = $dbh->commit;
677   $dbh->disconnect;
678
679   $main::lxdebug->leave_sub();
680
681   return $rc;
682 }
683
684 sub adjust_inventory {
685   $main::lxdebug->enter_sub();
686
687   my ($dbh, $form, $id, $qty) = @_;
688
689   my $query =
690     qq|SELECT p.id, p.inventory_accno_id, p.assembly, a.qty
691        FROM parts p, assembly a
692        WHERE (a.parts_id = p.id) AND (a.id = ?)|;
693   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
694
695   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
696
697     my $allocate = $qty * $ref->{qty};
698
699     # is it a service item, then loop
700     $ref->{inventory_accno_id} *= 1;
701     next if (($ref->{inventory_accno_id} == 0) && !$ref->{assembly});
702
703     # adjust parts onhand
704     $form->update_balance($dbh, "parts", "onhand",
705                           qq|id = $ref->{id}|,
706                           $allocate * -1);
707   }
708
709   $sth->finish;
710
711   # update assembly
712   my $rc = $form->update_balance($dbh, "parts", "onhand", qq|id = ?|, $qty, $id);
713
714   $main::lxdebug->leave_sub();
715
716   return $rc;
717 }
718
719 sub delete {
720   $main::lxdebug->enter_sub();
721
722   my ($self, $myconfig, $form) = @_;
723   my @values = (conv_i($form->{id}));
724   # connect to database, turn off AutoCommit
725   my $dbh = $form->dbconnect_noauto($myconfig);
726
727   my %columns = ( "assembly" => "id", "alternate" => "id", "parts" => "id" );
728
729   for my $table (qw(prices partstax makemodel inventory assembly parts)) {
730     my $column = defined($columns{$table}) ? $columns{$table} : "parts_id";
731     do_query($form, $dbh, qq|DELETE FROM $table WHERE $column = ?|, @values);
732   }
733
734   # commit
735   my $rc = $dbh->commit;
736   $dbh->disconnect;
737
738   $main::lxdebug->leave_sub();
739
740   return $rc;
741 }
742
743 sub assembly_item {
744   $main::lxdebug->enter_sub();
745
746   my ($self, $myconfig, $form) = @_;
747
748   my $i = $form->{assembly_rows};
749   my $var;
750   my $where = qq|1 = 1|;
751   my @values;
752
753   my %columns = ("partnumber" => "p", "description" => "p", "partsgroup" => "pg");
754
755   while (my ($column, $table) = each(%columns)) {
756     next unless ($form->{"${column}_$i"});
757     $where .= qq| AND ${table}.${column} ILIKE ?|;
758     push(@values, '%' . $form->{"${column}_$i"} . '%');
759   }
760
761   if ($form->{id}) {
762     $where .= qq| AND NOT (p.id = ?)|;
763     push(@values, conv_i($form->{id}));
764   }
765
766   if ($partnumber) {
767     $where .= qq| ORDER BY p.partnumber|;
768   } else {
769     $where .= qq| ORDER BY p.description|;
770   }
771
772   # connect to database
773   my $dbh = $form->dbconnect($myconfig);
774
775   my $query =
776     qq|SELECT p.id, p.partnumber, p.description, p.sellprice, p.weight, p.onhand, p.unit, pg.partsgroup
777        FROM parts p
778        LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
779        WHERE $where|;
780   $form->{item_list} = selectall_hashref_query($form, $dbh, $query, @values);
781
782   $dbh->disconnect;
783
784   $main::lxdebug->leave_sub();
785 }
786
787 #
788 # Report for Wares.
789 # Warning, deep magic ahead.
790 # This function gets all parts from the database according to the filters specified
791 #
792 # specials:
793 #   sort revers  - sorting field + direction
794 #   top100
795 #
796 # simple filter strings (every one of those also has a column flag prefixed with 'l_' associated):
797 #   partnumber ean description partsgroup microfiche drawing
798 #
799 # column flags:
800 #   l_partnumber l_description l_listprice l_sellprice l_lastcost l_priceupdate l_weight l_unit l_bin l_rop l_image l_drawing l_microfiche l_partsgroup
801 #
802 # exclusives:
803 #   itemstatus  = active | onhand | short | obsolete | orphaned
804 #   searchitems = part | assembly | service
805 #
806 # joining filters:
807 #   make model                               - makemodel
808 #   serialnumber transdatefrom transdateto   - invoice/orderitems
809 #
810 # binary flags:
811 #   bought sold onorder ordered rfq quoted   - aggreg joins with invoices/orders
812 #   l_linetotal l_subtotal                   - aggreg joins to display totals (complicated) - NOT IMPLEMENTED here, implementation at frontend
813 #   l_soldtotal                              - aggreg join to display total of sold quantity
814 #   onhand                                   - as above, but masking the simple itemstatus results (doh!)
815 #   short                                    - NOT IMPLEMENTED as form filter, only as itemstatus option
816 #   l_serialnumber                           - belonges to serialnumber filter
817 #   l_deliverydate                           - displays deliverydate is sold etc. flags are active
818 #
819 # not working:
820 #   l_soldtotal                              - aggreg join to display total of sold quantity
821 #   onhand                                   - as above, but masking the simple itemstatus results (doh!)
822 #   masking of onhand in bsooqr mode         - ToDO: fixme
823 #
824 # disabled sanity checks and changes:
825 #  - searchitems = assembly will no longer disable bought
826 #  - searchitems = service will no longer disable make and model, although services don't have make/model, it doesn't break the query
827 #  - itemstatus = orphaned will no longer disable onhand short bought sold onorder ordered rfq quoted transdate[from|to]
828 #  - itemstatus = obsolete will no longer disable onhand, short
829 #  - allow sorting by ean
830 #  - serialnumber filter also works if l_serialnumber isn't ticked
831 #  - onhand doesn't get masked by it's oi or invoice counterparts atm. ToDO: fix this
832 #  - sorting will now change sorting if the requested sorting column isn't checked and doesn't get checked as a side effect
833 #
834 sub all_parts {
835   $main::lxdebug->enter_sub();
836
837   my ($self, $myconfig, $form) = @_;
838   my $dbh = $form->get_standard_dbh($myconfig);
839
840   $form->{parts} = +{ };
841
842   my @simple_filters       = qw(partnumber ean description partsgroup microfiche drawing);
843   my @makemodel_filters    = qw(make model);
844   my @invoice_oi_filters   = qw(serialnumber soldtotal);
845   my @apoe_filters         = qw(transdate);
846   my @all_columns          = (@simple_filters, @makemodel_filters, @apoe_filters, qw(serialnumber));
847   my @simple_l_switches    = (@all_columns, qw(listprice sellprice lastcost priceupdate weight unit bin rop image));
848   my @oe_flags             = qw(bought sold onorder ordered rfq quoted);
849   my @qsooqr_flags         = qw(invnumber ordnumber quonumber trans_id name module);
850   my @deliverydate_flags   = qw(deliverydate);
851 #  my @other_flags          = qw(onhand); # ToDO: implement these
852 #  my @inactive_flags       = qw(l_subtotal short l_linetotal);
853
854   my %joins = (
855     partsgroup => 'LEFT JOIN partsgroup pg      ON (pg.id       = p.partsgroup_id)',
856     makemodel  => 'LEFT JOIN makemodel mm       ON (mm.parts_id = p.id)',
857     pfac       => 'LEFT JOIN price_factors pfac ON (pfac.id     = p.price_factor_id)',
858     invoice_oi =>
859       q|LEFT JOIN (
860          SELECT parts_id, description, serialnumber, trans_id, unit, sellprice, qty,          assemblyitem, 'invoice'    AS ioi FROM invoice UNION
861          SELECT parts_id, description, serialnumber, trans_id, unit, sellprice, qty, FALSE AS assemblyitem, 'orderitems' AS ioi FROM orderitems
862        ) AS ioi ON ioi.parts_id = p.id|,
863     apoe       =>
864       q|LEFT JOIN (
865          SELECT id, transdate, 'ir' AS module, ordnumber, quonumber,         invnumber, FALSE AS quotation, NULL AS customer_id,         vendor_id, NULL AS deliverydate FROM ap UNION
866          SELECT id, transdate, 'is' AS module, ordnumber, quonumber,         invnumber, FALSE AS quotation,         customer_id, NULL AS vendor_id,         deliverydate FROM ar UNION
867          SELECT id, transdate, 'oe' AS module, ordnumber, quonumber, NULL AS invnumber,          quotation,         customer_id,         vendor_id, NULL AS deliverydate FROM oe
868        ) AS apoe ON ioi.trans_id = apoe.id|,
869     cv         =>
870       q|LEFT JOIN (
871            SELECT id, name, 'customer' AS cv FROM customer UNION
872            SELECT id, name, 'vendor'   AS cv FROM vendor
873          ) AS cv ON cv.id = apoe.customer_id OR cv.id = apoe.vendor_id|,
874   );
875   my @join_order = qw(partsgroup makemodel invoice_oi apoe cv pfac);
876   my %joins_needed;
877
878   #===== switches and simple filters ========#
879
880   my @select_tokens = qw(id factor);
881   my @where_tokens  = qw(1=1);
882   my @group_tokens  = ();
883
884   # special case transdate
885   if (grep { $form->{$_} } qw(transdatefrom transdateto)) {
886     $form->{"l_transdate"} = 1;
887     push @select_tokens, 'transdate';
888     for (qw(transdatefrom transdateto)) {
889       next unless $form->{$_};
890       push @where_tokens, sprintf "transdate %s ?", /from$/ ? '>=' : '<=';
891       push @bind_vars,    $form->{$_};
892     }
893   }
894
895   foreach (@simple_filters, @makemodel_filters, @invoice_oi_filters) {
896     next unless $form->{$_};
897     $form->{"l_$_"} = '1'; # show the column
898     push @where_tokens, "$_ ILIKE ?";
899     push @bind_vars,    "%$form->{$_}%";
900   }
901
902   foreach (@simple_l_switches) {
903     next unless $form->{"l_$_"};
904     push @select_tokens, $_;
905   }
906
907   for ($form->{searchitems}) {
908     push @where_tokens, 'p.inventory_accno_id > 0'     if /part/;
909     push @where_tokens, 'p.inventory_accno_id IS NULL' if /service/;
910     push @where_tokens, 'NOT p.assembly'               if /service/;
911     push @where_tokens, '    p.assembly'               if /assembly/;
912   }
913
914   for ($form->{itemstatus}) {
915     push @where_tokens, 'p.id NOT IN
916         (SELECT DISTINCT parts_id FROM invoice UNION
917          SELECT DISTINCT parts_id FROM assembly UNION
918          SELECT DISTINCT parts_id FROM orderitems)'    if /orphaned/;
919     push @where_tokens, 'p.onhand = 0'                 if /orphaned/;
920     push @where_tokens, 'NOT p.obsolete'               if /active/;
921     push @where_tokens, '    p.obsolete',              if /obsolete/;
922     push @where_tokens, 'p.onhand > 0',                if /onhand/;
923     push @where_tokens, 'p.onhand < p.rop',            if /short/;
924   }
925
926
927   my @sort_cols = (@simple_filters, qw(id bin priceupdate onhand invnumber ordnumber quonumber name serialnumber soldtotal deliverydate));
928   $form->{sort} = 'id' unless grep { $form->{"l_$_"} } grep { $form->{sort} eq $_ } @sort_cols;
929   my $order_clause = " ORDER BY $form->{sort} " . ($form->{revers} ? 'DESC' : 'ASC');
930
931   my $limit_clause = " LIMIT 100" if $form->{top100};
932
933   #=== joins and complicated filters ========#
934
935   my $bsooqr = $form->{bought}  || $form->{sold}
936             || $form->{ordered} || $form->{onorder}
937             || $form->{quoted}  || $form->{rfq};
938
939   my @bsooqr;
940   push @select_tokens, @qsooqr_flags                                          if $bsooqr;
941   push @select_tokens, @deliverydate_flags                                    if $bsooqr && $form->{l_deliverydate};
942   push @bsooqr_tokens, q|module = 'ir' AND NOT ioi.assemblyitem|              if $form->{bought};
943   push @bsooqr_tokens, q|module = 'is' AND NOT ioi.assemblyitem|              if $form->{sold};
944   push @bsooqr_tokens, q|module = 'oe' AND NOT quotation AND cv = 'customer'| if $form->{ordered};
945   push @bsooqr_tokens, q|module = 'oe' AND NOT quotation AND cv = 'vendor'|   if $form->{onorder};
946   push @bsooqr_tokens, q|module = 'oe' AND     quotation AND cv = 'customer'| if $form->{quoted};
947   push @bsooqr_tokens, q|module = 'oe' AND     quotation AND cv = 'vendor'|   if $form->{rfq};
948   push @where_tokens, join ' OR ', map { "($_)" } @bsooqr_tokens              if $bsooqr;
949
950   $joins_needed{partsgroup}  = 1;
951   $joins_needed{pfac}        = 1;
952   $joins_needed{makemodel}   = 1 if grep { $form->{$_} || $form->{"l_$_"} } @makemodel_filters;
953   $joins_needed{cv}          = 1 if $bsooqr;
954   $joins_needed{apoe}        = 1 if $joins_needed{cv}   || grep { $form->{$_} || $form->{"l_$_"} } @apoe_filters;
955   $joins_needed{invoice_oi}  = 1 if $joins_needed{apoe} || grep { $form->{$_} || $form->{"l_$_"} } @invoice_oi_filters;
956
957   # special case for description search.
958   # up in the simple filter section the description filter got interpreted as something like: WHERE description ILIKE '%$form->{description}%'
959   # now we'd like to search also for the masked description entered in orderitems and invoice, so...
960   # find the old entries in of @where_tokens and @bind_vars, and adjust them
961   if ($joins_needed{invoice_oi}) {
962     for (my ($wi, $bi) = (0)x2; $wi <= $#where_tokens; $bi++ if $where_tokens[$wi++] =~ /\?/) {
963       next unless $where_tokens[$wi] =~ /^description ILIKE/;
964       splice @where_tokens, $wi, 1, 'p.description ILIKE ? OR ioi.description ILIKE ?';
965       splice @bind_vars,    $bi, 0, $bind_vars[$bi];
966       last;
967     }
968   }
969
970   # now the master trick: soldtotal.
971   if ($form->{l_soldtotal}) {
972     push @where_tokens, 'ioi.qty >= 0';
973     push @group_tokens, @select_tokens;
974     push @select_tokens, 'SUM(ioi.qty)';
975   }
976
977   #============= build query ================#
978
979   my %table_prefix = (
980      deliverydate => 'apoe.', serialnumber => 'ioi.',
981      transdate    => 'apoe.', trans_id     => 'ioi.',
982      module       => 'apoe.', name         => 'cv.',
983      ordnumber    => 'apoe.', make         => 'mm.',
984      quonumber    => 'apoe.', model        => 'mm.',
985      invnumber    => 'apoe.', partsgroup   => 'pg.',
986      factor       => 'pfac.',
987      'SUM(ioi.qty)' => ' ',
988   );
989
990   my %renamed_columns = (
991     'factor'       => 'price_factor',
992     'SUM(ioi.qty)' => 'soldtotal',
993   );
994
995   map { $table_prefix{$_} = 'ioi.' } qw(description serialnumber qty unit) if $joins_needed{invoice_oi};
996   map { $renamed_columns{$_} = ' AS ' . $renamed_columns{$_} } keys %renamed_columns;
997
998   my $select_clause = join ', ',    map { ($table_prefix{$_} || "p.") . $_ . $renamed_columns{$_} } @select_tokens;
999   my $join_clause   = join ' ',     @joins{ grep $joins_needed{$_}, @join_order };
1000   my $where_clause  = join ' AND ', map { "($_)" } @where_tokens;
1001   my $group_clause  = ' GROUP BY ' . join ', ',    map { ($table_prefix{$_} || "p.") . $_ } @group_tokens if scalar @group_tokens;
1002
1003   my $query = qq|SELECT DISTINCT $select_clause FROM parts p $join_clause WHERE $where_clause $group_clause $order_clause $limit_clause|;
1004
1005   $form->{parts} = selectall_hashref_query($form, $dbh, $query, @bind_vars);
1006
1007 ##  my $where = qq|1 = 1|;
1008 ##  my (@values, $var, $flds, $group, $limit);
1009 ##
1010 ##  foreach my $item (qw(partnumber drawing microfiche ean pg.partsgroup)) {
1011 ##    my $column = $item;
1012 ##    $column =~ s/.*\.//; # get rid of table prefixes
1013 ##    if ($form->{$column}) {
1014 ##      $where .= qq| AND ($item ILIKE ?)|;
1015 ##      push(@values, "%$form->{$column}%");
1016 ##    }
1017 ##  }
1018 ##
1019 ##  # special case for description
1020 ##  if ($form->{description}
1021 ##      && !(   $form->{bought}  || $form->{sold} || $form->{onorder}
1022 ##           || $form->{ordered} || $form->{rfq} || $form->{quoted})) {
1023 ##    $where .= qq| AND (p.description ILIKE ?)|;
1024 ##    push(@values, "%$form->{description}%");
1025 ##  }
1026 ##
1027 ##  # special case for serialnumber
1028 ##  if ($form->{l_serialnumber} && $form->{serialnumber}) {
1029 ##    $where .= qq| AND (serialnumber ILIKE ?)|;
1030 ##    push(@values, "%$form->{serialnumber}%");
1031 ##  }
1032 ##
1033 ##  if ($form->{searchitems} eq 'part') {
1034 ##    $where .= qq| AND (p.inventory_accno_id > 0) |;
1035 ##  }
1036 ##
1037 ##  if ($form->{searchitems} eq 'assembly') {
1038 ##    $form->{bought} = "";
1039 ##    $where .= qq| AND p.assembly|;
1040 ##  }
1041 ##
1042 ##  if ($form->{searchitems} eq 'service') {
1043 ##    $where .= qq| AND (p.inventory_accno_id IS NULL) AND NOT (p.assembly = '1')|;
1044 ##    # irrelevant for services
1045 ##    map { $form->{$_} = '' } qw(make model);
1046 ##  }
1047 ##
1048 ##  # items which were never bought, sold or on an order
1049 ##  if ($form->{itemstatus} eq 'orphaned') {
1050 ##    map { $form->{$_} = 0  } qw(onhand short bought sold onorder ordered rfq quoted);
1051 ##    map { $form->{$_} = '' } qw(transdatefrom transdateto);
1052 ##
1053 ##    $where .=
1054 ##      qq| AND (p.onhand = 0)
1055 ##          AND p.id NOT IN
1056 ##            (
1057 ##              SELECT DISTINCT parts_id FROM invoice
1058 ##              UNION
1059 ##              SELECT DISTINCT parts_id FROM assembly
1060 ##              UNION
1061 ##              SELECT DISTINCT parts_id FROM orderitems
1062 ##            )|;
1063 ##  }
1064 ##
1065 ##  my %status2condition = (
1066 ##    active   => " AND (p.obsolete = '0')",
1067 ##    obsolete => " AND (p.obsolete = '1')",
1068 ##    onhand   => " AND (p.onhand > 0)",
1069 ##    short    => " AND (p.onhand < p.rop)",
1070 ##  );
1071 ##  $where .= $status2condition{$form->{itemstatus}};
1072 ##
1073 ##  $form->{onhand} = $form->{short} = 0 if ($form->{itemstatus} eq 'obsolete');
1074 ##
1075 ##  my @subcolumns;
1076 ##  foreach my $column (qw(make model)) {
1077 ##    push @subcolumns, $column if $form->{$column};
1078 ##  }
1079 ##  if (@subcolumns) {
1080 ##    $where .= qq| AND p.id IN (SELECT DISTINCT parts_id FROM makemodel WHERE | . (join " AND ", map { "($_ ILIKE ?)"; } @subcolumns) . ")";
1081 ##    push @values, map { '%' . $form->{$_} . '%' } @subcolumns;
1082 ##  }
1083 ##
1084 ##  if ($form->{l_soldtotal}) {
1085 ##    $where .= qq| AND (p.id = i.parts_id) AND (i.qty >= 0)|;
1086 ##    $group = qq| GROUP BY p.id, p.partnumber, p.description, p.onhand, p.unit, p.bin, p.sellprice, p.listprice, p.lastcost, p.priceupdate, pg.partsgroup|;
1087 ##  }
1088 ##
1089 ##  $limit = qq| LIMIT 100| if ($form->{top100});
1090 ##
1091 ##  # connect to database
1092 ##  my $dbh = $form->dbconnect($myconfig);
1093 ##
1094 ##  my @sort_cols = qw(id partnumber description partsgroup bin priceupdate onhand
1095 ##                     invnumber ordnumber quonumber name drawing microfiche
1096 ##                     serialnumber soldtotal deliverydate);
1097 ##
1098 ##  my $sortorder = "partnumber";
1099 ##  $sortorder = $form->{sort} if ($form->{sort} && grep({ $_ eq $form->{sort} } @sort_cols));
1100 ##  $sortorder .= " DESC" if ($form->{revers});
1101 ##
1102 ##  my $query = "";
1103 ##
1104 ##  if ($form->{l_soldtotal}) {
1105 ##    $form->{soldtotal} = 'soldtotal';
1106 ##    $query =
1107 ##      qq|SELECT p.id, p.partnumber, p.description, p.onhand, p.unit,
1108 ##           p.bin, p.sellprice, p.listprice, p.lastcost,
1109 ##           p.priceupdate, pg.partsgroup,sum(i.qty) AS soldtotal
1110 ##         FROM parts p
1111 ##         LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id), invoice i
1112 ##         WHERE $where
1113 ##         $group
1114 ##         ORDER BY $sortorder $limit|;
1115 ##  } else {
1116 ##    $query =
1117 ##      qq|SELECT p.id, p.partnumber, p.description, p.onhand, p.unit,
1118 ##           p.bin, p.sellprice, p.listprice, p.lastcost, p.rop, p.weight,
1119 ##           p.priceupdate, p.image, p.drawing, p.microfiche,
1120 ##           pg.partsgroup
1121 ##         FROM parts p
1122 ##         LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1123 ##         WHERE $where
1124 ##         $group
1125 ##         ORDER BY $sortorder $limit|;
1126 ##  }
1127 ##
1128 ##  my @all_values = @values;
1129 ##
1130 ##  # rebuild query for bought and sold items
1131 ##  if (   $form->{bought}
1132 ##      || $form->{sold}
1133 ##      || $form->{onorder}
1134 ##      || $form->{ordered}
1135 ##      || $form->{rfq}
1136 ##      || $form->{quoted}) {
1137 ##    my $union = "";
1138 ##    $query = "";
1139 ##    @all_values = ();
1140 ##
1141 ##    if ($form->{bought} || $form->{sold}) {
1142 ##
1143 ##      my @invvalues = @values;
1144 ##      my $invwhere = "$where";
1145 #      $invwhere .= qq| AND i.assemblyitem = '0'|;
1146 ##
1147 ##      if ($form->{transdatefrom}) {
1148 ##        $invwhere .= qq| AND a.transdate >= ?|;
1149 ##        push(@invvalues, $form->{transdatefrom});
1150 ##      }
1151 ##
1152 ##      if ($form->{transdateto}) {
1153 ##        $invwhere .= qq| AND a.transdate <= ?|;
1154 ##        push(@invvalues, $form->{transdateto});
1155 ##      }
1156 ##
1157 ##      if ($form->{description}) {
1158 ##        $invwhere .= qq| AND i.description ILIKE ?|;
1159 ##        push(@invvalues, '%' . $form->{description} . '%');
1160 ##      }
1161 ##
1162 ##      $flds =
1163 ##        qq|p.id, p.partnumber, i.description, i.serialnumber,
1164 #           i.qty AS onhand, i.unit, p.bin, i.sellprice,
1165 ##           p.listprice, p.lastcost, p.rop, p.weight,
1166 ##           p.priceupdate, p.image, p.drawing, p.microfiche,
1167 ##           pg.partsgroup,
1168 ##           a.invnumber, a.ordnumber, a.quonumber, i.trans_id,
1169 ##           ct.name, i.deliverydate|;
1170 ##
1171 ##      if ($form->{bought}) {
1172 ##        $query =
1173 ##          qq|SELECT $flds, 'ir' AS module, '' AS type, 1 AS exchangerate
1174 ##             FROM invoice i
1175 ##             JOIN parts p ON (p.id = i.parts_id)
1176 ##             JOIN ap a ON (a.id = i.trans_id)
1177 ##             JOIN vendor ct ON (a.vendor_id = ct.id)
1178 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1179 ##             WHERE $invwhere|;
1180 ##
1181 ##        $union = qq| UNION |;
1182 ##
1183 ##        push(@all_values, @invvalues);
1184 ##      }
1185 ##
1186 ##      if ($form->{sold}) {
1187 ##        $query .=
1188 ##          qq|$union
1189 ##
1190 ##             SELECT $flds, 'is' AS module, '' AS type, 1 As exchangerate
1191 ##             FROM invoice i
1192 ##             JOIN parts p ON (p.id = i.parts_id)
1193 ##             JOIN ar a ON (a.id = i.trans_id)
1194 ##             JOIN customer ct ON (a.customer_id = ct.id)
1195 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1196 ##             WHERE $invwhere|;
1197 ##        $union = qq| UNION |;
1198 ##
1199 ##        push(@all_values, @invvalues);
1200 ##      }
1201 ##    }
1202 ##
1203 ##    if ($form->{onorder} || $form->{ordered}) {
1204 ##      my @ordvalues = @values;
1205 ##      my $ordwhere = $where . qq| AND o.quotation = '0'|;
1206 ##
1207 ##      if ($form->{transdatefrom}) {
1208 ##        $ordwhere .= qq| AND o.transdate >= ?|;
1209 ##        push(@ordvalues, $form->{transdatefrom});
1210 ##      }
1211 ##
1212 ##      if ($form->{transdateto}) {
1213 ##        $ordwhere .= qq| AND o.transdate <= ?|;
1214 ##        push(@ordvalues, $form->{transdateto});
1215 ##      }
1216 ##
1217 ##      if ($form->{description}) {
1218 ##        $ordwhere .= qq| AND oi.description ILIKE ?|;
1219 ##        push(@ordvalues, '%' . $form->{description} . '%');
1220 ##      }
1221 ##
1222 ##      if ($form->{ordered}) {
1223 ##        $query .=
1224 ##          qq|$union
1225 ##
1226 ##             SELECT p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1227 ##               oi.qty AS onhand, oi.unit, p.bin, oi.sellprice,
1228 ##               p.listprice, p.lastcost, p.rop, p.weight,
1229 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1230 ##               pg.partsgroup,
1231 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1232 ##               ct.name, NULL AS deliverydate,
1233 ##               'oe' AS module, 'sales_order' AS type,
1234 ##               (SELECT buy FROM exchangerate ex
1235 ##                WHERE ex.curr = o.curr AND ex.transdate = o.transdate) AS exchangerate
1236 ##             FROM orderitems oi
1237 ##             JOIN parts p ON (oi.parts_id = p.id)
1238 ##             JOIN oe o ON (oi.trans_id = o.id)
1239 ##             JOIN customer ct ON (o.customer_id = ct.id)
1240 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1241 ##             WHERE $ordwhere AND (o.customer_id > 0)|;
1242 ##        $union = qq| UNION |;
1243 ##
1244 ##        push(@all_values, @ordvalues);
1245 ##      }
1246 ##
1247 ##      if ($form->{onorder}) {
1248 ##        $query .=
1249 ##          qq|$union
1250 ##
1251 ##             SELECT p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1252 ##               oi.qty * -1 AS onhand, oi.unit, p.bin, oi.sellprice,
1253 ##               p.listprice, p.lastcost, p.rop, p.weight,
1254 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1255 ##               pg.partsgroup,
1256 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1257 ##               ct.name, NULL AS deliverydate,
1258 ##               'oe' AS module, 'purchase_order' AS type,
1259 ##               (SELECT sell FROM exchangerate ex
1260 ##               WHERE ex.curr = o.curr AND (ex.transdate = o.transdate)) AS exchangerate
1261 ##             FROM orderitems oi
1262 ##             JOIN parts p ON (oi.parts_id = p.id)
1263 ##             JOIN oe o ON (oi.trans_id = o.id)
1264 ##             JOIN vendor ct ON (o.vendor_id = ct.id)
1265 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1266 ##             WHERE $ordwhere AND (o.vendor_id > 0)|;
1267 ##        $union = qq| UNION |;
1268 ##
1269 ##        push(@all_values, @ordvalues);
1270 ##      }
1271 ##
1272 ##    }
1273 ##
1274 ##    if ($form->{rfq} || $form->{quoted}) {
1275 ##      my $quowhere = $where . qq| AND o.quotation = '1'|;
1276 ##      my @quovalues = @values;
1277 ##
1278 ##      if ($form->{transdatefrom}) {
1279 ##        $quowhere .= qq| AND o.transdate >= ?|;
1280 ##        push(@quovalues, $form->{transdatefrom});
1281 ##      }
1282 ##
1283 ##      if ($form->{transdateto}) {
1284 ##        $quowhere .= qq| AND o.transdate <= ?|;
1285 ##        push(@quovalues, $form->{transdateto});
1286 ##      }
1287 ##
1288 ##      if ($form->{description}) {
1289 ##        $quowhere .= qq| AND oi.description ILIKE ?|;
1290 ##        push(@quovalues, '%' . $form->{description} . '%');
1291 ##      }
1292 ##
1293 ##      if ($form->{quoted}) {
1294 ##        $query .=
1295 ##          qq|$union
1296 ##
1297 ##             SELECT
1298 ##               p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1299 ##               oi.qty AS onhand, oi.unit, p.bin, oi.sellprice,
1300 ##               p.listprice, p.lastcost, p.rop, p.weight,
1301 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1302 ##               pg.partsgroup,
1303 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1304 ##               ct.name, NULL AS deliverydate, 'oe' AS module, 'sales_quotation' AS type,
1305 ##               (SELECT buy FROM exchangerate ex
1306 ##                WHERE (ex.curr = o.curr) AND (ex.transdate = o.transdate)) AS exchangerate
1307 ##             FROM orderitems oi
1308 ##             JOIN parts p ON (oi.parts_id = p.id)
1309 ##             JOIN oe o ON (oi.trans_id = o.id)
1310 ##             JOIN customer ct ON (o.customer_id = ct.id)
1311 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1312 ##             WHERE $quowhere
1313 ##             AND o.customer_id > 0|;
1314 ##        $union = qq| UNION |;
1315 ##
1316 ##        push(@all_values, @quovalues);
1317 ##      }
1318 ##
1319 ##      if ($form->{rfq}) {
1320 ##        $query .=
1321 ##          qq|$union
1322 ##
1323 ##             SELECT p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1324 ##               oi.qty * -1 AS onhand, oi.unit, p.bin, oi.sellprice,
1325 ##               p.listprice, p.lastcost, p.rop, p.weight,
1326 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1327 ##               pg.partsgroup,
1328 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1329 ##               ct.name, NULL AS deliverydate,
1330 ##               'oe' AS module, 'request_quotation' AS type,
1331 ##               (SELECT sell FROM exchangerate ex
1332 ##               WHERE (ex.curr = o.curr) AND (ex.transdate = o.transdate)) AS exchangerate
1333 ##             FROM orderitems oi
1334 ##             JOIN parts p ON (oi.parts_id = p.id)
1335 ##             JOIN oe o ON (oi.trans_id = o.id)
1336 ##             JOIN vendor ct ON (o.vendor_id = ct.id)
1337 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1338 ##             WHERE $quowhere
1339 ##             AND o.vendor_id > 0|;
1340 ##
1341 ##        push(@all_values, @quovalues);
1342 ##      }
1343 ##
1344 ##    }
1345 ##    $query .= qq| ORDER BY  | . $sortorder;
1346 ##
1347 ##  }
1348 ##
1349 ##  $form->{parts} = selectall_hashref_query($form, $dbh, $query, @all_values);
1350 #
1351   my @assemblies;
1352   # include individual items for assemblies
1353   if ($form->{searchitems} eq 'assembly' && $form->{bom}) {
1354     $query =
1355       qq|SELECT p.id, p.partnumber, p.description, a.qty AS onhand,
1356            p.unit, p.bin,
1357            p.sellprice, p.listprice, p.lastcost,
1358            p.rop, p.weight, p.priceupdate,
1359            p.image, p.drawing, p.microfiche
1360          FROM parts p, assembly a
1361          WHERE (p.id = a.parts_id) AND (a.id = ?)|;
1362     $sth = prepare_query($form, $dbh, $query);
1363
1364     foreach $item (@{ $form->{parts} }) {
1365       push(@assemblies, $item);
1366       do_statement($form, $sth, $query, conv_i($item->{id}));
1367
1368       while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1369         $ref->{assemblyitem} = 1;
1370         push(@assemblies, $ref);
1371       }
1372       $sth->finish;
1373     }
1374
1375     # copy assemblies to $form->{parts}
1376     $form->{parts} = \@assemblies;
1377   }
1378
1379   $dbh->disconnect;
1380   $main::lxdebug->leave_sub();
1381 }
1382
1383 sub update_prices {
1384   $main::lxdebug->enter_sub();
1385
1386   my ($self, $myconfig, $form) = @_;
1387   my @where_values;
1388   my $where = '1 = 1';
1389   my $var;
1390
1391   my $group;
1392   my $limit;
1393
1394   my @where_values;
1395
1396   if ($item ne 'make') {
1397     foreach my $item (qw(partnumber drawing microfiche make model pg.partsgroup)) {
1398       my $column = $item;
1399       $column =~ s/.*\.//;
1400       next unless ($form->{$column});
1401       $where .= qq| AND $item ILIKE ?|;
1402       push(@where_values, '%' . $form->{$column} . '%');
1403     }
1404   }
1405
1406   # special case for description
1407   if ($form->{description}
1408       && !(   $form->{bought}  || $form->{sold} || $form->{onorder}
1409            || $form->{ordered} || $form->{rfq} || $form->{quoted})) {
1410     $where .= qq| AND (p.description ILIKE ?)|;
1411     push(@where_values, '%' . $form->{description} . '%');
1412   }
1413
1414   # special case for serialnumber
1415   if ($form->{l_serialnumber} && $form->{serialnumber}) {
1416     $where .= qq| AND serialnumber ILIKE ?|;
1417     push(@where_values, '%' . $form->{serialnumber} . '%');
1418   }
1419
1420
1421   # items which were never bought, sold or on an order
1422   if ($form->{itemstatus} eq 'orphaned') {
1423     $form->{onhand}  = $form->{short}   = 0;
1424     $form->{bought}  = $form->{sold}    = 0;
1425     $form->{onorder} = $form->{ordered} = 0;
1426     $form->{rfq}     = $form->{quoted}  = 0;
1427
1428     $form->{transdatefrom} = $form->{transdateto} = "";
1429
1430     $where .=
1431       qq| AND (p.onhand = 0)
1432           AND p.id NOT IN
1433             (
1434               SELECT DISTINCT parts_id FROM invoice
1435               UNION
1436               SELECT DISTINCT parts_id FROM assembly
1437               UNION
1438               SELECT DISTINCT parts_id FROM orderitems
1439             )|;
1440   }
1441
1442   if ($form->{itemstatus} eq 'active') {
1443     $where .= qq| AND p.obsolete = '0'|;
1444   }
1445
1446   if ($form->{itemstatus} eq 'obsolete') {
1447     $where .= qq| AND p.obsolete = '1'|;
1448     $form->{onhand} = $form->{short} = 0;
1449   }
1450
1451   if ($form->{itemstatus} eq 'onhand') {
1452     $where .= qq| AND p.onhand > 0|;
1453   }
1454
1455   if ($form->{itemstatus} eq 'short') {
1456     $where .= qq| AND p.onhand < p.rop|;
1457   }
1458
1459   foreach my $column (qw(make model)) {
1460     next unless ($form->{$colum});
1461     $where .= qq| AND p.id IN (SELECT DISTINCT parts_id FROM makemodel WHERE $column ILIKE ?|;
1462     push(@where_values, '%' . $form->{$column} . '%');
1463   }
1464
1465   # connect to database
1466   my $dbh = $form->dbconnect_noauto($myconfig);
1467
1468   for my $column (qw(sellprice listprice)) {
1469     next if ($form->{$column} eq "");
1470
1471     my $value = $form->parse_amount($myconfig, $form->{$column});
1472     my $operator = '+';
1473
1474     if ($form->{"${column}_type"} eq "percent") {
1475       $value = ($value / 100) + 1;
1476       $operator = '*';
1477     }
1478
1479     $query =
1480       qq|UPDATE parts SET $column = $column $operator ?
1481          WHERE id IN
1482            (SELECT p.id
1483             FROM parts p
1484             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1485             WHERE $where)|;
1486     do_query($from, $dbh, $query, $value, @where_values);
1487   }
1488
1489   my $q_add =
1490     qq|UPDATE prices SET price = price + ?
1491        WHERE parts_id IN
1492          (SELECT p.id
1493           FROM parts p
1494           LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1495           WHERE $where) AND (pricegroup_id = ?)|;
1496   my $sth_add = prepare_query($form, $dbh, $q_add);
1497
1498   my $q_multiply =
1499     qq|UPDATE prices SET price = price * ?
1500        WHERE parts_id IN
1501          (SELECT p.id
1502           FROM parts p
1503           LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1504           WHERE $where) AND (pricegroup_id = ?)|;
1505   my $sth_multiply = prepare_query($form, $dbh, $q_multiply);
1506
1507   for my $i (1 .. $form->{price_rows}) {
1508     next if ($form->{"price_$i"} eq "");
1509
1510     my $value = $form->parse_amount($myconfig, $form->{"price_$i"});
1511
1512     if ($form->{"pricegroup_type_$i"} eq "percent") {
1513       do_statement($form, $sth_multiply, $q_multiply, ($value / 100) + 1, @where_values, conv_i($form->{"pricegroup_id_$i"}));
1514     } else {
1515       do_statement($form, $sth_add, $q_add, $value, @where_values, conv_i($form->{"pricegroup_id_$i"}));
1516     }
1517   }
1518
1519   $sth_add->finish();
1520   $sth_multiply->finish();
1521
1522   my $rc= $dbh->commit;
1523   $dbh->disconnect;
1524
1525   $main::lxdebug->leave_sub();
1526
1527   return $rc;
1528 }
1529
1530 sub create_links {
1531   $main::lxdebug->enter_sub();
1532
1533   my ($self, $module, $myconfig, $form) = @_;
1534
1535   # connect to database
1536   my $dbh = $form->dbconnect($myconfig);
1537
1538   my @values = ('%' . $module . '%');
1539
1540   if ($form->{id}) {
1541     $query =
1542       qq|SELECT c.accno, c.description, c.link, c.id,
1543            p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
1544          FROM chart c, parts p
1545          WHERE (c.link LIKE ?) AND (p.id = ?)
1546          ORDER BY c.accno|;
1547     push(@values, conv_i($form->{id}));
1548
1549   } else {
1550     $query =
1551       qq|SELECT c.accno, c.description, c.link, c.id,
1552            d.inventory_accno_id, d.income_accno_id, d.expense_accno_id
1553          FROM chart c, defaults d
1554          WHERE c.link LIKE ?
1555          ORDER BY c.accno|;
1556   }
1557
1558   my $sth = prepare_execute_query($form, $dbh, $query, @values);
1559   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1560     foreach my $key (split(/:/, $ref->{link})) {
1561       if ($key =~ /$module/) {
1562         if (   ($ref->{id} eq $ref->{inventory_accno_id})
1563             || ($ref->{id} eq $ref->{income_accno_id})
1564             || ($ref->{id} eq $ref->{expense_accno_id})) {
1565           push @{ $form->{"${module}_links"}{$key} },
1566             { accno       => $ref->{accno},
1567               description => $ref->{description},
1568               selected    => "selected" };
1569           $form->{"${key}_default"} = "$ref->{accno}--$ref->{description}";
1570             } else {
1571           push @{ $form->{"${module}_links"}{$key} },
1572             { accno       => $ref->{accno},
1573               description => $ref->{description},
1574               selected    => "" };
1575         }
1576       }
1577     }
1578   }
1579   $sth->finish;
1580
1581   # get buchungsgruppen
1582   $form->{BUCHUNGSGRUPPEN} = selectall_hashref_query($form, $dbh, qq|SELECT id, description FROM buchungsgruppen|);
1583
1584   # get payment terms
1585   $form->{payment_terms} = selectall_hashref_query($form, $dbh, qq|SELECT id, description FROM payment_terms ORDER BY sortkey|);
1586
1587   if (!$form->{id}) {
1588     ($form->{priceupdate}) = selectrow_query($form, $dbh, qq|SELECT current_date|);
1589   }
1590
1591   $dbh->disconnect;
1592   $main::lxdebug->leave_sub();
1593 }
1594
1595 # get partnumber, description, unit, sellprice and soldtotal with choice through $sortorder for Top100
1596 sub get_parts {
1597   $main::lxdebug->enter_sub();
1598
1599   my ($self, $myconfig, $form, $sortorder) = @_;
1600   my $dbh   = $form->dbconnect($myconfig);
1601   my $order = qq| p.partnumber|;
1602   my $where = qq|1 = 1|;
1603   my @values;
1604
1605   if ($sortorder eq "all") {
1606     $where .= qq| AND (partnumber ILIKE ?) AND (description ILIKE ?)|;
1607     push(@values, '%' . $form->{partnumber} . '%', '%' . $form->{description} . '%');
1608
1609   } elsif ($sortorder eq "partnumber") {
1610     $where .= qq| AND (partnumber ILIKE ?)|;
1611     push(@values, '%' . $form->{partnumber} . '%');
1612
1613   } elsif ($sortorder eq "description") {
1614     $where .= qq| AND (description ILIKE ?)|;
1615     push(@values, '%' . $form->{description} . '%');
1616     $order = "description";
1617
1618   }
1619
1620   my $query =
1621     qq|SELECT id, partnumber, description, unit, sellprice
1622        FROM parts
1623        WHERE $where ORDER BY $order|;
1624
1625   my $sth = prepare_execute_query($form, $dbh, $query, @values);
1626
1627   my $j = 0;
1628   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1629     if (($ref->{partnumber} eq "*") && ($ref->{description} eq "")) {
1630       next;
1631     }
1632
1633     $j++;
1634     $form->{"id_$j"}          = $ref->{id};
1635     $form->{"partnumber_$j"}  = $ref->{partnumber};
1636     $form->{"description_$j"} = $ref->{description};
1637     $form->{"unit_$j"}        = $ref->{unit};
1638     $form->{"sellprice_$j"}   = $ref->{sellprice};
1639     $form->{"soldtotal_$j"}   = get_soldtotal($dbh, $ref->{id});
1640   }    #while
1641   $form->{rows} = $j;
1642   $sth->finish;
1643   $dbh->disconnect;
1644
1645   $main::lxdebug->leave_sub();
1646
1647   return $self;
1648 }    #end get_parts()
1649
1650 # gets sum of sold part with part_id
1651 sub get_soldtotal {
1652   $main::lxdebug->enter_sub();
1653
1654   my ($dbh, $id) = @_;
1655
1656   my $query = qq|SELECT sum(qty) FROM invoice WHERE parts_id = ?|;
1657   my ($sum) = selectrow_query($form, $dbh, $query, conv_i($id));
1658   $sum ||= 0;
1659
1660   $main::lxdebug->leave_sub();
1661
1662   return $sum;
1663 }    #end get_soldtotal
1664
1665 sub retrieve_languages {
1666   $main::lxdebug->enter_sub();
1667
1668   my ($self, $myconfig, $form) = @_;
1669
1670   # connect to database
1671   my $dbh = $form->dbconnect($myconfig);
1672
1673   my @values;
1674   my $where;
1675
1676   if ($form->{language_values} ne "") {
1677     $query =
1678       qq|SELECT l.id, l.description, tr.translation, tr.longdescription
1679          FROM language l
1680          LEFT OUTER JOIN translation tr ON (tr.language_id = l.id) AND (tr.parts_id = ?)|;
1681     @values = (conv_i($form->{id}));
1682
1683   } else {
1684     $query = qq|SELECT id, description FROM language|;
1685   }
1686
1687   my $languages = selectall_hashref_query($form, $dbh, $query, @values);
1688
1689   $dbh->disconnect;
1690
1691   $main::lxdebug->leave_sub();
1692
1693   return $languages;
1694 }
1695
1696 sub follow_account_chain {
1697   $main::lxdebug->enter_sub(2);
1698
1699   my ($self, $form, $dbh, $transdate, $accno_id, $accno) = @_;
1700
1701   my @visited_accno_ids = ($accno_id);
1702
1703   my ($query, $sth);
1704
1705   $query =
1706     qq|SELECT c.new_chart_id, date($transdate) >= c.valid_from AS is_valid, | .
1707     qq|  cnew.accno | .
1708     qq|FROM chart c | .
1709     qq|LEFT JOIN chart cnew ON c.new_chart_id = cnew.id | .
1710     qq|WHERE (c.id = ?) AND NOT c.new_chart_id ISNULL AND (c.new_chart_id > 0)|;
1711   $sth = prepare_query($form, $dbh, $query);
1712
1713   while (1) {
1714     do_statement($form, $sth, $query, $accno_id);
1715     $ref = $sth->fetchrow_hashref();
1716     last unless ($ref && $ref->{"is_valid"} &&
1717                  !grep({ $_ == $ref->{"new_chart_id"} } @visited_accno_ids));
1718     $accno_id = $ref->{"new_chart_id"};
1719     $accno = $ref->{"accno"};
1720     push(@visited_accno_ids, $accno_id);
1721   }
1722
1723   $main::lxdebug->leave_sub(2);
1724
1725   return ($accno_id, $accno);
1726 }
1727
1728 sub retrieve_accounts {
1729   $main::lxdebug->enter_sub(2);
1730
1731   my ($self, $myconfig, $form, $parts_id, $index) = @_;
1732
1733   my ($query, $sth, $dbh);
1734
1735   $form->{"taxzone_id"} *= 1;
1736
1737   $dbh = $form->get_standard_dbh($myconfig);
1738
1739   my $transdate = "";
1740   if ($form->{type} eq "invoice") {
1741     if (($form->{vc} eq "vendor") || !$form->{deliverydate}) {
1742       $transdate = $form->{invdate};
1743     } else {
1744       $transdate = $form->{deliverydate};
1745     }
1746   } elsif (($form->{type} eq "credit_note") || ($form->{script} eq 'ir.pl')) {
1747     $transdate = $form->{invdate};
1748   } else {
1749     $transdate = $form->{transdate};
1750   }
1751
1752   if ($transdate eq "") {
1753     $transdate = "current_date";
1754   } else {
1755     $transdate = $dbh->quote($transdate);
1756   }
1757
1758   $query =
1759     qq|SELECT | .
1760     qq|  p.inventory_accno_id AS is_part, | .
1761     qq|  bg.inventory_accno_id, | .
1762     qq|  bg.income_accno_id_$form->{taxzone_id} AS income_accno_id, | .
1763     qq|  bg.expense_accno_id_$form->{taxzone_id} AS expense_accno_id, | .
1764     qq|  c1.accno AS inventory_accno, | .
1765     qq|  c2.accno AS income_accno, | .
1766     qq|  c3.accno AS expense_accno | .
1767     qq|FROM parts p | .
1768     qq|LEFT JOIN buchungsgruppen bg ON p.buchungsgruppen_id = bg.id | .
1769     qq|LEFT JOIN chart c1 ON bg.inventory_accno_id = c1.id | .
1770     qq|LEFT JOIN chart c2 ON bg.income_accno_id_$form->{taxzone_id} = c2.id | .
1771     qq|LEFT JOIN chart c3 ON bg.expense_accno_id_$form->{taxzone_id} = c3.id | .
1772     qq|WHERE p.id = ?|;
1773   my $ref = selectfirst_hashref_query($form, $dbh, $query, $parts_id);
1774
1775   return $main::lxdebug->leave_sub(2) if (!$ref);
1776
1777   $ref->{"inventory_accno_id"} = undef unless ($ref->{"is_part"});
1778
1779   my %accounts;
1780   foreach my $type (qw(inventory income expense)) {
1781     next unless ($ref->{"${type}_accno_id"});
1782     ($accounts{"${type}_accno_id"}, $accounts{"${type}_accno"}) =
1783       $self->follow_account_chain($form, $dbh, $transdate,
1784                                   $ref->{"${type}_accno_id"},
1785                                   $ref->{"${type}_accno"});
1786   }
1787
1788   map({ $form->{"${_}_accno_$index"} = $accounts{"${_}_accno"} }
1789       qw(inventory income expense));
1790
1791   my $inc_exp = $form->{"vc"} eq "customer" ? "income" : "expense";
1792   my $accno_id = $accounts{"${inc_exp}_accno_id"};
1793
1794   $query =
1795     qq|SELECT c.accno, t.taxdescription AS description, t.rate, t.taxnumber | .
1796     qq|FROM tax t | .
1797     qq|LEFT JOIN chart c ON c.id = t.chart_id | .
1798     qq|WHERE t.id IN | .
1799     qq|  (SELECT tk.tax_id | .
1800     qq|   FROM taxkeys tk | .
1801     qq|   WHERE tk.chart_id = ? AND startdate <= | . quote_db_date($transdate) .
1802     qq|   ORDER BY startdate DESC LIMIT 1) |;
1803   $ref = selectfirst_hashref_query($form, $dbh, $query, $accno_id);
1804
1805   unless ($ref) {
1806     $main::lxdebug->leave_sub(2);
1807     return;
1808   }
1809
1810   $form->{"taxaccounts_$index"} = $ref->{"accno"};
1811   if ($form->{"taxaccounts"} !~ /$ref->{accno}/) {
1812     $form->{"taxaccounts"} .= "$ref->{accno} ";
1813   }
1814   map({ $form->{"$ref->{accno}_${_}"} = $ref->{$_}; }
1815       qw(rate description taxnumber));
1816
1817 #   $main::lxdebug->message(0, "formvars: rate " . $form->{"$ref->{accno}_rate"} .
1818 #                           " description " . $form->{"$ref->{accno}_description"} .
1819 #                           " taxnumber " . $form->{"$ref->{accno}_taxnumber"} .
1820 #                           " || taxaccounts_$index " . $form->{"taxaccounts_$index"} .
1821 #                           " || taxaccounts " . $form->{"taxaccounts"});
1822
1823   $main::lxdebug->leave_sub(2);
1824 }
1825
1826 1;