Umstellung der HTML-Vorlagen aus templates/webpages/rp von HTML::Template auf Template.
[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} =~ /\Q$ptr->{accno}\E/)) {
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 onhand);
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   my %simple_filter_table_prefix = (
896      description  => 'p.',
897   );
898
899   foreach (@simple_filters, @makemodel_filters, @invoice_oi_filters) {
900     next unless $form->{$_};
901     $form->{"l_$_"} = '1'; # show the column
902     push @where_tokens, "$simple_filter_table_prefix{$_}$_ ILIKE ?";
903     push @bind_vars,    "%$form->{$_}%";
904   }
905
906   foreach (@simple_l_switches) {
907     next unless $form->{"l_$_"};
908     push @select_tokens, $_;
909   }
910
911   for ($form->{searchitems}) {
912     push @where_tokens, 'p.inventory_accno_id > 0'     if /part/;
913     push @where_tokens, 'p.inventory_accno_id IS NULL' if /service/;
914     push @where_tokens, 'NOT p.assembly'               if /service/;
915     push @where_tokens, '    p.assembly'               if /assembly/;
916   }
917
918   for ($form->{itemstatus}) {
919     push @where_tokens, 'p.id NOT IN
920         (SELECT DISTINCT parts_id FROM invoice UNION
921          SELECT DISTINCT parts_id FROM assembly UNION
922          SELECT DISTINCT parts_id FROM orderitems)'    if /orphaned/;
923     push @where_tokens, 'p.onhand = 0'                 if /orphaned/;
924     push @where_tokens, 'NOT p.obsolete'               if /active/;
925     push @where_tokens, '    p.obsolete',              if /obsolete/;
926     push @where_tokens, 'p.onhand > 0',                if /onhand/;
927     push @where_tokens, 'p.onhand < p.rop',            if /short/;
928   }
929
930
931   my @sort_cols = (@simple_filters, qw(id bin priceupdate onhand invnumber ordnumber quonumber name serialnumber soldtotal deliverydate));
932   $form->{sort} = 'id' unless grep { $form->{"l_$_"} } grep { $form->{sort} eq $_ } @sort_cols;
933
934   my $sort_order = ($form->{revers} ? ' DESC' : ' ASC');
935
936   # special case: sorting by partnumber
937   # since partnumbers are expected to be prefixed integers, a special sorting is implemented sorting first lexically by prefix and then by suffix.
938   # and yes, that expression is designed to hold that array of regexes only once, so the map is kinda messy, sorry about that.
939   # ToDO: implement proper functional sorting
940   $form->{sort} = join ', ', map { push @select_tokens, $_; ($table_prefix{$_} = "substring(partnumber,'[") . $_ } qw|^[:digit:]]+') [:digit:]]+')::INTEGER|
941     if $form->{sort} eq 'partnumber';
942
943   my $order_clause = " ORDER BY $form->{sort} $sort_order";
944
945   my $limit_clause = " LIMIT 100" if $form->{top100};
946
947   #=== joins and complicated filters ========#
948
949   my $bsooqr = $form->{bought}  || $form->{sold}
950             || $form->{ordered} || $form->{onorder}
951             || $form->{quoted}  || $form->{rfq};
952
953   my @bsooqr;
954   push @select_tokens, @qsooqr_flags                                          if $bsooqr;
955   push @select_tokens, @deliverydate_flags                                    if $bsooqr && $form->{l_deliverydate};
956   push @bsooqr_tokens, q|module = 'ir' AND NOT ioi.assemblyitem|              if $form->{bought};
957   push @bsooqr_tokens, q|module = 'is' AND NOT ioi.assemblyitem|              if $form->{sold};
958   push @bsooqr_tokens, q|module = 'oe' AND NOT quotation AND cv = 'customer'| if $form->{ordered};
959   push @bsooqr_tokens, q|module = 'oe' AND NOT quotation AND cv = 'vendor'|   if $form->{onorder};
960   push @bsooqr_tokens, q|module = 'oe' AND     quotation AND cv = 'customer'| if $form->{quoted};
961   push @bsooqr_tokens, q|module = 'oe' AND     quotation AND cv = 'vendor'|   if $form->{rfq};
962   push @where_tokens, join ' OR ', map { "($_)" } @bsooqr_tokens              if $bsooqr;
963
964   $joins_needed{partsgroup}  = 1;
965   $joins_needed{pfac}        = 1;
966   $joins_needed{makemodel}   = 1 if grep { $form->{$_} || $form->{"l_$_"} } @makemodel_filters;
967   $joins_needed{cv}          = 1 if $bsooqr;
968   $joins_needed{apoe}        = 1 if $joins_needed{cv}   || grep { $form->{$_} || $form->{"l_$_"} } @apoe_filters;
969   $joins_needed{invoice_oi}  = 1 if $joins_needed{apoe} || grep { $form->{$_} || $form->{"l_$_"} } @invoice_oi_filters;
970
971   # special case for description search.
972   # up in the simple filter section the description filter got interpreted as something like: WHERE description ILIKE '%$form->{description}%'
973   # now we'd like to search also for the masked description entered in orderitems and invoice, so...
974   # find the old entries in of @where_tokens and @bind_vars, and adjust them
975   if ($joins_needed{invoice_oi}) {
976     for (my ($wi, $bi) = (0)x2; $wi <= $#where_tokens; $bi++ if $where_tokens[$wi++] =~ /\?/) {
977       next unless $where_tokens[$wi] =~ /^description ILIKE/;
978       splice @where_tokens, $wi, 1, 'p.description ILIKE ? OR ioi.description ILIKE ?';
979       splice @bind_vars,    $bi, 0, $bind_vars[$bi];
980       last;
981     }
982   }
983
984   # now the master trick: soldtotal.
985   if ($form->{l_soldtotal}) {
986     push @where_tokens, 'ioi.qty >= 0';
987     push @group_tokens, @select_tokens;
988     push @select_tokens, 'SUM(ioi.qty)';
989   }
990
991   #============= build query ================#
992
993   %table_prefix = (
994      %table_prefix,
995      deliverydate => 'apoe.', serialnumber => 'ioi.',
996      transdate    => 'apoe.', trans_id     => 'ioi.',
997      module       => 'apoe.', name         => 'cv.',
998      ordnumber    => 'apoe.', make         => 'mm.',
999      quonumber    => 'apoe.', model        => 'mm.',
1000      invnumber    => 'apoe.', partsgroup   => 'pg.',
1001      factor       => 'pfac.',
1002      'SUM(ioi.qty)' => ' ',
1003   );
1004
1005   my %renamed_columns = (
1006     'factor'       => 'price_factor',
1007     'SUM(ioi.qty)' => 'soldtotal',
1008   );
1009
1010   map { $table_prefix{$_} = 'ioi.' } qw(description serialnumber qty unit) if $joins_needed{invoice_oi};
1011   map { $renamed_columns{$_} = ' AS ' . $renamed_columns{$_} } keys %renamed_columns;
1012
1013   my $select_clause = join ', ',    map { ($table_prefix{$_} || "p.") . $_ . $renamed_columns{$_} } @select_tokens;
1014   my $join_clause   = join ' ',     @joins{ grep $joins_needed{$_}, @join_order };
1015   my $where_clause  = join ' AND ', map { "($_)" } @where_tokens;
1016   my $group_clause  = ' GROUP BY ' . join ', ',    map { ($table_prefix{$_} || "p.") . $_ } @group_tokens if scalar @group_tokens;
1017
1018   my $query = qq|SELECT DISTINCT $select_clause FROM parts p $join_clause WHERE $where_clause $group_clause $order_clause $limit_clause|;
1019
1020   $form->{parts} = selectall_hashref_query($form, $dbh, $query, @bind_vars);
1021
1022 ##  my $where = qq|1 = 1|;
1023 ##  my (@values, $var, $flds, $group, $limit);
1024 ##
1025 ##  foreach my $item (qw(partnumber drawing microfiche ean pg.partsgroup)) {
1026 ##    my $column = $item;
1027 ##    $column =~ s/.*\.//; # get rid of table prefixes
1028 ##    if ($form->{$column}) {
1029 ##      $where .= qq| AND ($item ILIKE ?)|;
1030 ##      push(@values, "%$form->{$column}%");
1031 ##    }
1032 ##  }
1033 ##
1034 ##  # special case for description
1035 ##  if ($form->{description}
1036 ##      && !(   $form->{bought}  || $form->{sold} || $form->{onorder}
1037 ##           || $form->{ordered} || $form->{rfq} || $form->{quoted})) {
1038 ##    $where .= qq| AND (p.description ILIKE ?)|;
1039 ##    push(@values, "%$form->{description}%");
1040 ##  }
1041 ##
1042 ##  # special case for serialnumber
1043 ##  if ($form->{l_serialnumber} && $form->{serialnumber}) {
1044 ##    $where .= qq| AND (serialnumber ILIKE ?)|;
1045 ##    push(@values, "%$form->{serialnumber}%");
1046 ##  }
1047 ##
1048 ##  if ($form->{searchitems} eq 'part') {
1049 ##    $where .= qq| AND (p.inventory_accno_id > 0) |;
1050 ##  }
1051 ##
1052 ##  if ($form->{searchitems} eq 'assembly') {
1053 ##    $form->{bought} = "";
1054 ##    $where .= qq| AND p.assembly|;
1055 ##  }
1056 ##
1057 ##  if ($form->{searchitems} eq 'service') {
1058 ##    $where .= qq| AND (p.inventory_accno_id IS NULL) AND NOT (p.assembly = '1')|;
1059 ##    # irrelevant for services
1060 ##    map { $form->{$_} = '' } qw(make model);
1061 ##  }
1062 ##
1063 ##  # items which were never bought, sold or on an order
1064 ##  if ($form->{itemstatus} eq 'orphaned') {
1065 ##    map { $form->{$_} = 0  } qw(onhand short bought sold onorder ordered rfq quoted);
1066 ##    map { $form->{$_} = '' } qw(transdatefrom transdateto);
1067 ##
1068 ##    $where .=
1069 ##      qq| AND (p.onhand = 0)
1070 ##          AND p.id NOT IN
1071 ##            (
1072 ##              SELECT DISTINCT parts_id FROM invoice
1073 ##              UNION
1074 ##              SELECT DISTINCT parts_id FROM assembly
1075 ##              UNION
1076 ##              SELECT DISTINCT parts_id FROM orderitems
1077 ##            )|;
1078 ##  }
1079 ##
1080 ##  my %status2condition = (
1081 ##    active   => " AND (p.obsolete = '0')",
1082 ##    obsolete => " AND (p.obsolete = '1')",
1083 ##    onhand   => " AND (p.onhand > 0)",
1084 ##    short    => " AND (p.onhand < p.rop)",
1085 ##  );
1086 ##  $where .= $status2condition{$form->{itemstatus}};
1087 ##
1088 ##  $form->{onhand} = $form->{short} = 0 if ($form->{itemstatus} eq 'obsolete');
1089 ##
1090 ##  my @subcolumns;
1091 ##  foreach my $column (qw(make model)) {
1092 ##    push @subcolumns, $column if $form->{$column};
1093 ##  }
1094 ##  if (@subcolumns) {
1095 ##    $where .= qq| AND p.id IN (SELECT DISTINCT parts_id FROM makemodel WHERE | . (join " AND ", map { "($_ ILIKE ?)"; } @subcolumns) . ")";
1096 ##    push @values, map { '%' . $form->{$_} . '%' } @subcolumns;
1097 ##  }
1098 ##
1099 ##  if ($form->{l_soldtotal}) {
1100 ##    $where .= qq| AND (p.id = i.parts_id) AND (i.qty >= 0)|;
1101 ##    $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|;
1102 ##  }
1103 ##
1104 ##  $limit = qq| LIMIT 100| if ($form->{top100});
1105 ##
1106 ##  # connect to database
1107 ##  my $dbh = $form->dbconnect($myconfig);
1108 ##
1109 ##  my @sort_cols = qw(id partnumber description partsgroup bin priceupdate onhand
1110 ##                     invnumber ordnumber quonumber name drawing microfiche
1111 ##                     serialnumber soldtotal deliverydate);
1112 ##
1113 ##  my $sortorder = "partnumber";
1114 ##  $sortorder = $form->{sort} if ($form->{sort} && grep({ $_ eq $form->{sort} } @sort_cols));
1115 ##  $sortorder .= " DESC" if ($form->{revers});
1116 ##
1117 ##  my $query = "";
1118 ##
1119 ##  if ($form->{l_soldtotal}) {
1120 ##    $form->{soldtotal} = 'soldtotal';
1121 ##    $query =
1122 ##      qq|SELECT p.id, p.partnumber, p.description, p.onhand, p.unit,
1123 ##           p.bin, p.sellprice, p.listprice, p.lastcost,
1124 ##           p.priceupdate, pg.partsgroup,sum(i.qty) AS soldtotal
1125 ##         FROM parts p
1126 ##         LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id), invoice i
1127 ##         WHERE $where
1128 ##         $group
1129 ##         ORDER BY $sortorder $limit|;
1130 ##  } else {
1131 ##    $query =
1132 ##      qq|SELECT p.id, p.partnumber, p.description, p.onhand, p.unit,
1133 ##           p.bin, p.sellprice, p.listprice, p.lastcost, p.rop, p.weight,
1134 ##           p.priceupdate, p.image, p.drawing, p.microfiche,
1135 ##           pg.partsgroup
1136 ##         FROM parts p
1137 ##         LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1138 ##         WHERE $where
1139 ##         $group
1140 ##         ORDER BY $sortorder $limit|;
1141 ##  }
1142 ##
1143 ##  my @all_values = @values;
1144 ##
1145 ##  # rebuild query for bought and sold items
1146 ##  if (   $form->{bought}
1147 ##      || $form->{sold}
1148 ##      || $form->{onorder}
1149 ##      || $form->{ordered}
1150 ##      || $form->{rfq}
1151 ##      || $form->{quoted}) {
1152 ##    my $union = "";
1153 ##    $query = "";
1154 ##    @all_values = ();
1155 ##
1156 ##    if ($form->{bought} || $form->{sold}) {
1157 ##
1158 ##      my @invvalues = @values;
1159 ##      my $invwhere = "$where";
1160 #      $invwhere .= qq| AND i.assemblyitem = '0'|;
1161 ##
1162 ##      if ($form->{transdatefrom}) {
1163 ##        $invwhere .= qq| AND a.transdate >= ?|;
1164 ##        push(@invvalues, $form->{transdatefrom});
1165 ##      }
1166 ##
1167 ##      if ($form->{transdateto}) {
1168 ##        $invwhere .= qq| AND a.transdate <= ?|;
1169 ##        push(@invvalues, $form->{transdateto});
1170 ##      }
1171 ##
1172 ##      if ($form->{description}) {
1173 ##        $invwhere .= qq| AND i.description ILIKE ?|;
1174 ##        push(@invvalues, '%' . $form->{description} . '%');
1175 ##      }
1176 ##
1177 ##      $flds =
1178 ##        qq|p.id, p.partnumber, i.description, i.serialnumber,
1179 #           i.qty AS onhand, i.unit, p.bin, i.sellprice,
1180 ##           p.listprice, p.lastcost, p.rop, p.weight,
1181 ##           p.priceupdate, p.image, p.drawing, p.microfiche,
1182 ##           pg.partsgroup,
1183 ##           a.invnumber, a.ordnumber, a.quonumber, i.trans_id,
1184 ##           ct.name, i.deliverydate|;
1185 ##
1186 ##      if ($form->{bought}) {
1187 ##        $query =
1188 ##          qq|SELECT $flds, 'ir' AS module, '' AS type, 1 AS exchangerate
1189 ##             FROM invoice i
1190 ##             JOIN parts p ON (p.id = i.parts_id)
1191 ##             JOIN ap a ON (a.id = i.trans_id)
1192 ##             JOIN vendor ct ON (a.vendor_id = ct.id)
1193 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1194 ##             WHERE $invwhere|;
1195 ##
1196 ##        $union = qq| UNION |;
1197 ##
1198 ##        push(@all_values, @invvalues);
1199 ##      }
1200 ##
1201 ##      if ($form->{sold}) {
1202 ##        $query .=
1203 ##          qq|$union
1204 ##
1205 ##             SELECT $flds, 'is' AS module, '' AS type, 1 As exchangerate
1206 ##             FROM invoice i
1207 ##             JOIN parts p ON (p.id = i.parts_id)
1208 ##             JOIN ar a ON (a.id = i.trans_id)
1209 ##             JOIN customer ct ON (a.customer_id = ct.id)
1210 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1211 ##             WHERE $invwhere|;
1212 ##        $union = qq| UNION |;
1213 ##
1214 ##        push(@all_values, @invvalues);
1215 ##      }
1216 ##    }
1217 ##
1218 ##    if ($form->{onorder} || $form->{ordered}) {
1219 ##      my @ordvalues = @values;
1220 ##      my $ordwhere = $where . qq| AND o.quotation = '0'|;
1221 ##
1222 ##      if ($form->{transdatefrom}) {
1223 ##        $ordwhere .= qq| AND o.transdate >= ?|;
1224 ##        push(@ordvalues, $form->{transdatefrom});
1225 ##      }
1226 ##
1227 ##      if ($form->{transdateto}) {
1228 ##        $ordwhere .= qq| AND o.transdate <= ?|;
1229 ##        push(@ordvalues, $form->{transdateto});
1230 ##      }
1231 ##
1232 ##      if ($form->{description}) {
1233 ##        $ordwhere .= qq| AND oi.description ILIKE ?|;
1234 ##        push(@ordvalues, '%' . $form->{description} . '%');
1235 ##      }
1236 ##
1237 ##      if ($form->{ordered}) {
1238 ##        $query .=
1239 ##          qq|$union
1240 ##
1241 ##             SELECT p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1242 ##               oi.qty AS onhand, oi.unit, p.bin, oi.sellprice,
1243 ##               p.listprice, p.lastcost, p.rop, p.weight,
1244 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1245 ##               pg.partsgroup,
1246 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1247 ##               ct.name, NULL AS deliverydate,
1248 ##               'oe' AS module, 'sales_order' AS type,
1249 ##               (SELECT buy FROM exchangerate ex
1250 ##                WHERE ex.curr = o.curr AND ex.transdate = o.transdate) AS exchangerate
1251 ##             FROM orderitems oi
1252 ##             JOIN parts p ON (oi.parts_id = p.id)
1253 ##             JOIN oe o ON (oi.trans_id = o.id)
1254 ##             JOIN customer ct ON (o.customer_id = ct.id)
1255 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1256 ##             WHERE $ordwhere AND (o.customer_id > 0)|;
1257 ##        $union = qq| UNION |;
1258 ##
1259 ##        push(@all_values, @ordvalues);
1260 ##      }
1261 ##
1262 ##      if ($form->{onorder}) {
1263 ##        $query .=
1264 ##          qq|$union
1265 ##
1266 ##             SELECT p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1267 ##               oi.qty * -1 AS onhand, oi.unit, p.bin, oi.sellprice,
1268 ##               p.listprice, p.lastcost, p.rop, p.weight,
1269 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1270 ##               pg.partsgroup,
1271 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1272 ##               ct.name, NULL AS deliverydate,
1273 ##               'oe' AS module, 'purchase_order' AS type,
1274 ##               (SELECT sell FROM exchangerate ex
1275 ##               WHERE ex.curr = o.curr AND (ex.transdate = o.transdate)) AS exchangerate
1276 ##             FROM orderitems oi
1277 ##             JOIN parts p ON (oi.parts_id = p.id)
1278 ##             JOIN oe o ON (oi.trans_id = o.id)
1279 ##             JOIN vendor ct ON (o.vendor_id = ct.id)
1280 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1281 ##             WHERE $ordwhere AND (o.vendor_id > 0)|;
1282 ##        $union = qq| UNION |;
1283 ##
1284 ##        push(@all_values, @ordvalues);
1285 ##      }
1286 ##
1287 ##    }
1288 ##
1289 ##    if ($form->{rfq} || $form->{quoted}) {
1290 ##      my $quowhere = $where . qq| AND o.quotation = '1'|;
1291 ##      my @quovalues = @values;
1292 ##
1293 ##      if ($form->{transdatefrom}) {
1294 ##        $quowhere .= qq| AND o.transdate >= ?|;
1295 ##        push(@quovalues, $form->{transdatefrom});
1296 ##      }
1297 ##
1298 ##      if ($form->{transdateto}) {
1299 ##        $quowhere .= qq| AND o.transdate <= ?|;
1300 ##        push(@quovalues, $form->{transdateto});
1301 ##      }
1302 ##
1303 ##      if ($form->{description}) {
1304 ##        $quowhere .= qq| AND oi.description ILIKE ?|;
1305 ##        push(@quovalues, '%' . $form->{description} . '%');
1306 ##      }
1307 ##
1308 ##      if ($form->{quoted}) {
1309 ##        $query .=
1310 ##          qq|$union
1311 ##
1312 ##             SELECT
1313 ##               p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1314 ##               oi.qty AS onhand, oi.unit, p.bin, oi.sellprice,
1315 ##               p.listprice, p.lastcost, p.rop, p.weight,
1316 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1317 ##               pg.partsgroup,
1318 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1319 ##               ct.name, NULL AS deliverydate, 'oe' AS module, 'sales_quotation' AS type,
1320 ##               (SELECT buy FROM exchangerate ex
1321 ##                WHERE (ex.curr = o.curr) AND (ex.transdate = o.transdate)) AS exchangerate
1322 ##             FROM orderitems oi
1323 ##             JOIN parts p ON (oi.parts_id = p.id)
1324 ##             JOIN oe o ON (oi.trans_id = o.id)
1325 ##             JOIN customer ct ON (o.customer_id = ct.id)
1326 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1327 ##             WHERE $quowhere
1328 ##             AND o.customer_id > 0|;
1329 ##        $union = qq| UNION |;
1330 ##
1331 ##        push(@all_values, @quovalues);
1332 ##      }
1333 ##
1334 ##      if ($form->{rfq}) {
1335 ##        $query .=
1336 ##          qq|$union
1337 ##
1338 ##             SELECT p.id, p.partnumber, oi.description, oi.serialnumber AS serialnumber,
1339 ##               oi.qty * -1 AS onhand, oi.unit, p.bin, oi.sellprice,
1340 ##               p.listprice, p.lastcost, p.rop, p.weight,
1341 ##               p.priceupdate, p.image, p.drawing, p.microfiche,
1342 ##               pg.partsgroup,
1343 ##               '' AS invnumber, o.ordnumber, o.quonumber, oi.trans_id,
1344 ##               ct.name, NULL AS deliverydate,
1345 ##               'oe' AS module, 'request_quotation' AS type,
1346 ##               (SELECT sell FROM exchangerate ex
1347 ##               WHERE (ex.curr = o.curr) AND (ex.transdate = o.transdate)) AS exchangerate
1348 ##             FROM orderitems oi
1349 ##             JOIN parts p ON (oi.parts_id = p.id)
1350 ##             JOIN oe o ON (oi.trans_id = o.id)
1351 ##             JOIN vendor ct ON (o.vendor_id = ct.id)
1352 ##             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1353 ##             WHERE $quowhere
1354 ##             AND o.vendor_id > 0|;
1355 ##
1356 ##        push(@all_values, @quovalues);
1357 ##      }
1358 ##
1359 ##    }
1360 ##    $query .= qq| ORDER BY  | . $sortorder;
1361 ##
1362 ##  }
1363 ##
1364 ##  $form->{parts} = selectall_hashref_query($form, $dbh, $query, @all_values);
1365 #
1366   my @assemblies;
1367   # include individual items for assemblies
1368   if ($form->{searchitems} eq 'assembly' && $form->{bom}) {
1369     $query =
1370       qq|SELECT p.id, p.partnumber, p.description, a.qty AS onhand,
1371            p.unit, p.bin,
1372            p.sellprice, p.listprice, p.lastcost,
1373            p.rop, p.weight, p.priceupdate,
1374            p.image, p.drawing, p.microfiche
1375          FROM parts p, assembly a
1376          WHERE (p.id = a.parts_id) AND (a.id = ?)|;
1377     $sth = prepare_query($form, $dbh, $query);
1378
1379     foreach $item (@{ $form->{parts} }) {
1380       push(@assemblies, $item);
1381       do_statement($form, $sth, $query, conv_i($item->{id}));
1382
1383       while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1384         $ref->{assemblyitem} = 1;
1385         push(@assemblies, $ref);
1386       }
1387       $sth->finish;
1388     }
1389
1390     # copy assemblies to $form->{parts}
1391     $form->{parts} = \@assemblies;
1392   }
1393
1394   $dbh->disconnect;
1395   $main::lxdebug->leave_sub();
1396 }
1397
1398 sub update_prices {
1399   $main::lxdebug->enter_sub();
1400
1401   my ($self, $myconfig, $form) = @_;
1402   my @where_values;
1403   my $where = '1 = 1';
1404   my $var;
1405
1406   my $group;
1407   my $limit;
1408
1409   if ($item ne 'make') {
1410     foreach my $item (qw(partnumber drawing microfiche make model pg.partsgroup)) {
1411       my $column = $item;
1412       $column =~ s/.*\.//;
1413       next unless ($form->{$column});
1414       $where .= qq| AND $item ILIKE ?|;
1415       push(@where_values, '%' . $form->{$column} . '%');
1416     }
1417   }
1418
1419   # special case for description
1420   if ($form->{description}
1421       && !(   $form->{bought}  || $form->{sold} || $form->{onorder}
1422            || $form->{ordered} || $form->{rfq} || $form->{quoted})) {
1423     $where .= qq| AND (p.description ILIKE ?)|;
1424     push(@where_values, '%' . $form->{description} . '%');
1425   }
1426
1427   # special case for serialnumber
1428   if ($form->{l_serialnumber} && $form->{serialnumber}) {
1429     $where .= qq| AND serialnumber ILIKE ?|;
1430     push(@where_values, '%' . $form->{serialnumber} . '%');
1431   }
1432
1433
1434   # items which were never bought, sold or on an order
1435   if ($form->{itemstatus} eq 'orphaned') {
1436     $form->{onhand}  = $form->{short}   = 0;
1437     $form->{bought}  = $form->{sold}    = 0;
1438     $form->{onorder} = $form->{ordered} = 0;
1439     $form->{rfq}     = $form->{quoted}  = 0;
1440
1441     $form->{transdatefrom} = $form->{transdateto} = "";
1442
1443     $where .=
1444       qq| AND (p.onhand = 0)
1445           AND p.id NOT IN
1446             (
1447               SELECT DISTINCT parts_id FROM invoice
1448               UNION
1449               SELECT DISTINCT parts_id FROM assembly
1450               UNION
1451               SELECT DISTINCT parts_id FROM orderitems
1452             )|;
1453   }
1454
1455   if ($form->{itemstatus} eq 'active') {
1456     $where .= qq| AND p.obsolete = '0'|;
1457   }
1458
1459   if ($form->{itemstatus} eq 'obsolete') {
1460     $where .= qq| AND p.obsolete = '1'|;
1461     $form->{onhand} = $form->{short} = 0;
1462   }
1463
1464   if ($form->{itemstatus} eq 'onhand') {
1465     $where .= qq| AND p.onhand > 0|;
1466   }
1467
1468   if ($form->{itemstatus} eq 'short') {
1469     $where .= qq| AND p.onhand < p.rop|;
1470   }
1471
1472   foreach my $column (qw(make model)) {
1473     next unless ($form->{$colum});
1474     $where .= qq| AND p.id IN (SELECT DISTINCT parts_id FROM makemodel WHERE $column ILIKE ?|;
1475     push(@where_values, '%' . $form->{$column} . '%');
1476   }
1477
1478   # connect to database
1479   my $dbh = $form->dbconnect_noauto($myconfig);
1480
1481   for my $column (qw(sellprice listprice)) {
1482     next if ($form->{$column} eq "");
1483
1484     my $value = $form->parse_amount($myconfig, $form->{$column});
1485     my $operator = '+';
1486
1487     if ($form->{"${column}_type"} eq "percent") {
1488       $value = ($value / 100) + 1;
1489       $operator = '*';
1490     }
1491
1492     $query =
1493       qq|UPDATE parts SET $column = $column $operator ?
1494          WHERE id IN
1495            (SELECT p.id
1496             FROM parts p
1497             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1498             WHERE $where)|;
1499     do_query($from, $dbh, $query, $value, @where_values);
1500   }
1501
1502   my $q_add =
1503     qq|UPDATE prices SET price = price + ?
1504        WHERE parts_id IN
1505          (SELECT p.id
1506           FROM parts p
1507           LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1508           WHERE $where) AND (pricegroup_id = ?)|;
1509   my $sth_add = prepare_query($form, $dbh, $q_add);
1510
1511   my $q_multiply =
1512     qq|UPDATE prices SET price = price * ?
1513        WHERE parts_id IN
1514          (SELECT p.id
1515           FROM parts p
1516           LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1517           WHERE $where) AND (pricegroup_id = ?)|;
1518   my $sth_multiply = prepare_query($form, $dbh, $q_multiply);
1519
1520   for my $i (1 .. $form->{price_rows}) {
1521     next if ($form->{"price_$i"} eq "");
1522
1523     my $value = $form->parse_amount($myconfig, $form->{"price_$i"});
1524
1525     if ($form->{"pricegroup_type_$i"} eq "percent") {
1526       do_statement($form, $sth_multiply, $q_multiply, ($value / 100) + 1, @where_values, conv_i($form->{"pricegroup_id_$i"}));
1527     } else {
1528       do_statement($form, $sth_add, $q_add, $value, @where_values, conv_i($form->{"pricegroup_id_$i"}));
1529     }
1530   }
1531
1532   $sth_add->finish();
1533   $sth_multiply->finish();
1534
1535   my $rc= $dbh->commit;
1536   $dbh->disconnect;
1537
1538   $main::lxdebug->leave_sub();
1539
1540   return $rc;
1541 }
1542
1543 sub create_links {
1544   $main::lxdebug->enter_sub();
1545
1546   my ($self, $module, $myconfig, $form) = @_;
1547
1548   # connect to database
1549   my $dbh = $form->dbconnect($myconfig);
1550
1551   my @values = ('%' . $module . '%');
1552
1553   if ($form->{id}) {
1554     $query =
1555       qq|SELECT c.accno, c.description, c.link, c.id,
1556            p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
1557          FROM chart c, parts p
1558          WHERE (c.link LIKE ?) AND (p.id = ?)
1559          ORDER BY c.accno|;
1560     push(@values, conv_i($form->{id}));
1561
1562   } else {
1563     $query =
1564       qq|SELECT c.accno, c.description, c.link, c.id,
1565            d.inventory_accno_id, d.income_accno_id, d.expense_accno_id
1566          FROM chart c, defaults d
1567          WHERE c.link LIKE ?
1568          ORDER BY c.accno|;
1569   }
1570
1571   my $sth = prepare_execute_query($form, $dbh, $query, @values);
1572   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1573     foreach my $key (split(/:/, $ref->{link})) {
1574       if ($key =~ /\Q$module\E/) {
1575         if (   ($ref->{id} eq $ref->{inventory_accno_id})
1576             || ($ref->{id} eq $ref->{income_accno_id})
1577             || ($ref->{id} eq $ref->{expense_accno_id})) {
1578           push @{ $form->{"${module}_links"}{$key} },
1579             { accno       => $ref->{accno},
1580               description => $ref->{description},
1581               selected    => "selected" };
1582           $form->{"${key}_default"} = "$ref->{accno}--$ref->{description}";
1583             } else {
1584           push @{ $form->{"${module}_links"}{$key} },
1585             { accno       => $ref->{accno},
1586               description => $ref->{description},
1587               selected    => "" };
1588         }
1589       }
1590     }
1591   }
1592   $sth->finish;
1593
1594   # get buchungsgruppen
1595   $form->{BUCHUNGSGRUPPEN} = selectall_hashref_query($form, $dbh, qq|SELECT id, description FROM buchungsgruppen|);
1596
1597   # get payment terms
1598   $form->{payment_terms} = selectall_hashref_query($form, $dbh, qq|SELECT id, description FROM payment_terms ORDER BY sortkey|);
1599
1600   if (!$form->{id}) {
1601     ($form->{priceupdate}) = selectrow_query($form, $dbh, qq|SELECT current_date|);
1602   }
1603
1604   $dbh->disconnect;
1605   $main::lxdebug->leave_sub();
1606 }
1607
1608 # get partnumber, description, unit, sellprice and soldtotal with choice through $sortorder for Top100
1609 sub get_parts {
1610   $main::lxdebug->enter_sub();
1611
1612   my ($self, $myconfig, $form, $sortorder) = @_;
1613   my $dbh   = $form->dbconnect($myconfig);
1614   my $order = qq| p.partnumber|;
1615   my $where = qq|1 = 1|;
1616   my @values;
1617
1618   if ($sortorder eq "all") {
1619     $where .= qq| AND (partnumber ILIKE ?) AND (description ILIKE ?)|;
1620     push(@values, '%' . $form->{partnumber} . '%', '%' . $form->{description} . '%');
1621
1622   } elsif ($sortorder eq "partnumber") {
1623     $where .= qq| AND (partnumber ILIKE ?)|;
1624     push(@values, '%' . $form->{partnumber} . '%');
1625
1626   } elsif ($sortorder eq "description") {
1627     $where .= qq| AND (description ILIKE ?)|;
1628     push(@values, '%' . $form->{description} . '%');
1629     $order = "description";
1630
1631   }
1632
1633   my $query =
1634     qq|SELECT id, partnumber, description, unit, sellprice
1635        FROM parts
1636        WHERE $where ORDER BY $order|;
1637
1638   my $sth = prepare_execute_query($form, $dbh, $query, @values);
1639
1640   my $j = 0;
1641   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1642     if (($ref->{partnumber} eq "*") && ($ref->{description} eq "")) {
1643       next;
1644     }
1645
1646     $j++;
1647     $form->{"id_$j"}          = $ref->{id};
1648     $form->{"partnumber_$j"}  = $ref->{partnumber};
1649     $form->{"description_$j"} = $ref->{description};
1650     $form->{"unit_$j"}        = $ref->{unit};
1651     $form->{"sellprice_$j"}   = $ref->{sellprice};
1652     $form->{"soldtotal_$j"}   = get_soldtotal($dbh, $ref->{id});
1653   }    #while
1654   $form->{rows} = $j;
1655   $sth->finish;
1656   $dbh->disconnect;
1657
1658   $main::lxdebug->leave_sub();
1659
1660   return $self;
1661 }    #end get_parts()
1662
1663 # gets sum of sold part with part_id
1664 sub get_soldtotal {
1665   $main::lxdebug->enter_sub();
1666
1667   my ($dbh, $id) = @_;
1668
1669   my $query = qq|SELECT sum(qty) FROM invoice WHERE parts_id = ?|;
1670   my ($sum) = selectrow_query($form, $dbh, $query, conv_i($id));
1671   $sum ||= 0;
1672
1673   $main::lxdebug->leave_sub();
1674
1675   return $sum;
1676 }    #end get_soldtotal
1677
1678 sub retrieve_languages {
1679   $main::lxdebug->enter_sub();
1680
1681   my ($self, $myconfig, $form) = @_;
1682
1683   # connect to database
1684   my $dbh = $form->dbconnect($myconfig);
1685
1686   my @values;
1687   my $where;
1688
1689   if ($form->{language_values} ne "") {
1690     $query =
1691       qq|SELECT l.id, l.description, tr.translation, tr.longdescription
1692          FROM language l
1693          LEFT OUTER JOIN translation tr ON (tr.language_id = l.id) AND (tr.parts_id = ?)
1694          ORDER BY lower(l.description)|;
1695     @values = (conv_i($form->{id}));
1696
1697   } else {
1698     $query = qq|SELECT id, description
1699                 FROM language
1700                 ORDER BY lower(description)|;
1701   }
1702
1703   my $languages = selectall_hashref_query($form, $dbh, $query, @values);
1704
1705   $dbh->disconnect;
1706
1707   $main::lxdebug->leave_sub();
1708
1709   return $languages;
1710 }
1711
1712 sub follow_account_chain {
1713   $main::lxdebug->enter_sub(2);
1714
1715   my ($self, $form, $dbh, $transdate, $accno_id, $accno) = @_;
1716
1717   my @visited_accno_ids = ($accno_id);
1718
1719   my ($query, $sth);
1720
1721   $query =
1722     qq|SELECT c.new_chart_id, date($transdate) >= c.valid_from AS is_valid, | .
1723     qq|  cnew.accno | .
1724     qq|FROM chart c | .
1725     qq|LEFT JOIN chart cnew ON c.new_chart_id = cnew.id | .
1726     qq|WHERE (c.id = ?) AND NOT c.new_chart_id ISNULL AND (c.new_chart_id > 0)|;
1727   $sth = prepare_query($form, $dbh, $query);
1728
1729   while (1) {
1730     do_statement($form, $sth, $query, $accno_id);
1731     $ref = $sth->fetchrow_hashref();
1732     last unless ($ref && $ref->{"is_valid"} &&
1733                  !grep({ $_ == $ref->{"new_chart_id"} } @visited_accno_ids));
1734     $accno_id = $ref->{"new_chart_id"};
1735     $accno = $ref->{"accno"};
1736     push(@visited_accno_ids, $accno_id);
1737   }
1738
1739   $main::lxdebug->leave_sub(2);
1740
1741   return ($accno_id, $accno);
1742 }
1743
1744 sub retrieve_accounts {
1745   $main::lxdebug->enter_sub(2);
1746
1747   my ($self, $myconfig, $form, $parts_id, $index) = @_;
1748
1749   my ($query, $sth, $dbh);
1750
1751   $form->{"taxzone_id"} *= 1;
1752
1753   $dbh = $form->get_standard_dbh($myconfig);
1754
1755   my $transdate = "";
1756   if ($form->{type} eq "invoice") {
1757     if (($form->{vc} eq "vendor") || !$form->{deliverydate}) {
1758       $transdate = $form->{invdate};
1759     } else {
1760       $transdate = $form->{deliverydate};
1761     }
1762   } elsif (($form->{type} eq "credit_note") || ($form->{script} eq 'ir.pl')) {
1763     $transdate = $form->{invdate};
1764   } else {
1765     $transdate = $form->{transdate};
1766   }
1767
1768   if ($transdate eq "") {
1769     $transdate = "current_date";
1770   } else {
1771     $transdate = $dbh->quote($transdate);
1772   }
1773
1774   $query =
1775     qq|SELECT | .
1776     qq|  p.inventory_accno_id AS is_part, | .
1777     qq|  bg.inventory_accno_id, | .
1778     qq|  bg.income_accno_id_$form->{taxzone_id} AS income_accno_id, | .
1779     qq|  bg.expense_accno_id_$form->{taxzone_id} AS expense_accno_id, | .
1780     qq|  c1.accno AS inventory_accno, | .
1781     qq|  c2.accno AS income_accno, | .
1782     qq|  c3.accno AS expense_accno | .
1783     qq|FROM parts p | .
1784     qq|LEFT JOIN buchungsgruppen bg ON p.buchungsgruppen_id = bg.id | .
1785     qq|LEFT JOIN chart c1 ON bg.inventory_accno_id = c1.id | .
1786     qq|LEFT JOIN chart c2 ON bg.income_accno_id_$form->{taxzone_id} = c2.id | .
1787     qq|LEFT JOIN chart c3 ON bg.expense_accno_id_$form->{taxzone_id} = c3.id | .
1788     qq|WHERE p.id = ?|;
1789   my $ref = selectfirst_hashref_query($form, $dbh, $query, $parts_id);
1790
1791   return $main::lxdebug->leave_sub(2) if (!$ref);
1792
1793   $ref->{"inventory_accno_id"} = undef unless ($ref->{"is_part"});
1794
1795   my %accounts;
1796   foreach my $type (qw(inventory income expense)) {
1797     next unless ($ref->{"${type}_accno_id"});
1798     ($accounts{"${type}_accno_id"}, $accounts{"${type}_accno"}) =
1799       $self->follow_account_chain($form, $dbh, $transdate,
1800                                   $ref->{"${type}_accno_id"},
1801                                   $ref->{"${type}_accno"});
1802   }
1803
1804   map({ $form->{"${_}_accno_$index"} = $accounts{"${_}_accno"} }
1805       qw(inventory income expense));
1806
1807   my $inc_exp = $form->{"vc"} eq "customer" ? "income" : "expense";
1808   my $accno_id = $accounts{"${inc_exp}_accno_id"};
1809
1810   $query =
1811     qq|SELECT c.accno, t.taxdescription AS description, t.rate, t.taxnumber | .
1812     qq|FROM tax t | .
1813     qq|LEFT JOIN chart c ON c.id = t.chart_id | .
1814     qq|WHERE t.id IN | .
1815     qq|  (SELECT tk.tax_id | .
1816     qq|   FROM taxkeys tk | .
1817     qq|   WHERE tk.chart_id = ? AND startdate <= | . quote_db_date($transdate) .
1818     qq|   ORDER BY startdate DESC LIMIT 1) |;
1819   $ref = selectfirst_hashref_query($form, $dbh, $query, $accno_id);
1820
1821   unless ($ref) {
1822     $main::lxdebug->leave_sub(2);
1823     return;
1824   }
1825
1826   $form->{"taxaccounts_$index"} = $ref->{"accno"};
1827   if ($form->{"taxaccounts"} !~ /$ref->{accno}/) {
1828     $form->{"taxaccounts"} .= "$ref->{accno} ";
1829   }
1830   map({ $form->{"$ref->{accno}_${_}"} = $ref->{$_}; }
1831       qw(rate description taxnumber));
1832
1833 #   $main::lxdebug->message(0, "formvars: rate " . $form->{"$ref->{accno}_rate"} .
1834 #                           " description " . $form->{"$ref->{accno}_description"} .
1835 #                           " taxnumber " . $form->{"$ref->{accno}_taxnumber"} .
1836 #                           " || taxaccounts_$index " . $form->{"taxaccounts_$index"} .
1837 #                           " || taxaccounts " . $form->{"taxaccounts"});
1838
1839   $main::lxdebug->leave_sub(2);
1840 }
1841
1842 1;