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