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