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