1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  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.
 
  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 #======================================================================
 
  31 # Inventory Control backend
 
  33 #======================================================================
 
  38 use List::MoreUtils qw(all any uniq);
 
  48   $main::lxdebug->enter_sub();
 
  50   my ($self, $myconfig, $form) = @_;
 
  53   my $dbh = $form->dbconnect($myconfig);
 
  59          c1.accno AS inventory_accno,
 
  60          c2.accno AS income_accno,
 
  61          c3.accno AS expense_accno,
 
  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)
 
  69   my $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{id}));
 
  71   # copy to $form variables
 
  72   map { $form->{$_} = $ref->{$_} } (keys %{$ref});
 
  76   # part or service item
 
  77   $form->{item} = ($form->{inventory_accno}) ? 'part' : 'service';
 
  78   if ($form->{assembly}) {
 
  79     $form->{item} = 'assembly';
 
  81     # retrieve assembly items
 
  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
 
  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
 
  92     $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
 
  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};
 
 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};
 
 112   my @pricegroups          = ();
 
 113   my @pricegroups_not_used = ();
 
 117     qq|SELECT p.parts_id, p.pricegroup_id, p.price,
 
 118          (SELECT pg.pricegroup
 
 120           WHERE pg.id = p.pricegroup_id) AS pricegroup
 
 123        ORDER BY pricegroup|;
 
 124   $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
 
 128   while (($form->{"klass_$i"}, $form->{"pricegroup_id_$i"},
 
 129           $form->{"price_$i"}, $form->{"pricegroup_$i"})
 
 130          = $sth->fetchrow_array()) {
 
 131     push @pricegroups, $form->{"pricegroup_id_$i"};
 
 138   $query = qq|SELECT id, pricegroup FROM pricegroup|;
 
 139   $form->{PRICEGROUPS} = selectall_hashref_query($form, $dbh, $query);
 
 141   #find not used pricegroups
 
 142   while (my $tmp = pop(@{ $form->{PRICEGROUPS} })) {
 
 144     foreach my $item (@pricegroups) {
 
 145       if ($item eq $tmp->{id}) {
 
 150     push(@pricegroups_not_used, $tmp) unless ($in_use);
 
 153   # if not used pricegroups are avaible
 
 154   if (@pricegroups_not_used) {
 
 156     foreach my $name (@pricegroups_not_used) {
 
 157       $form->{"klass_$i"} = "$name->{id}";
 
 158       $form->{"pricegroup_id_$i"} = "$name->{id}";
 
 159       $form->{"pricegroup_$i"}    = "$name->{pricegroup}";
 
 165   $form->{price_rows} = $i - 1;
 
 167   unless ($form->{item} eq 'service') {
 
 170     if ($form->{makemodel}) {
 
 172       $query = qq|SELECT m.make, m.model,m.lastcost,m.lastcost,m.lastupdate,m.sortorder FROM makemodel m | .
 
 173                qq|WHERE m.parts_id = ? order by m.sortorder asc|;
 
 174       my @values = ($form->{id});
 
 175       $sth = $dbh->prepare($query);
 
 176       $sth->execute(@values) || $form->dberror("$query (" . join(', ', @values) . ")");
 
 180       while (($form->{"make_$i"}, $form->{"model_$i"}, $form->{"old_lastcost_$i"},
 
 181                 $form->{"lastcost_$i"}, $form->{"lastupdate_$i"}, $form->{"sortorder_$i"}) = $sth->fetchrow_array)
 
 186       $form->{makemodel_rows} = $i - 1;
 
 192   $form->{language_values} = "";
 
 193   $query = qq|SELECT language_id, translation, longdescription
 
 196   my $trq = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
 
 197   while (my $tr = $trq->fetchrow_hashref("NAME_lc")) {
 
 198     $form->{language_values} .= "---+++---" . join('--++--', @{$tr}{qw(language_id translation longdescription)});
 
 202   # now get accno for taxes
 
 205        FROM chart c, partstax pt
 
 206        WHERE (pt.chart_id = c.id) AND (pt.parts_id = ?)|;
 
 207   $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
 
 208   while (my ($key) = $sth->fetchrow_array) {
 
 209     $form->{amount}{$key} = $key;
 
 215   my @referencing_tables = qw(invoice orderitems inventory rmaitems);
 
 216   my %column_map         = ( );
 
 217   my $parts_id           = conv_i($form->{id});
 
 219   $form->{orphaned}      = 1;
 
 221   foreach my $table (@referencing_tables) {
 
 222     my $column  = $column_map{$table} || 'parts_id';
 
 223     $query      = qq|SELECT $column FROM $table WHERE $column = ? LIMIT 1|;
 
 224     my ($found) = selectrow_query($form, $dbh, $query, $parts_id);
 
 227       $form->{orphaned} = 0;
 
 232   $form->{"unit_changeable"} = $form->{orphaned};
 
 236   $main::lxdebug->leave_sub();
 
 239 sub get_pricegroups {
 
 240   $main::lxdebug->enter_sub();
 
 242   my ($self, $myconfig, $form) = @_;
 
 244   my $dbh = $form->dbconnect($myconfig);
 
 247   my $query = qq|SELECT id, pricegroup FROM pricegroup|;
 
 248   my $pricegroups = selectall_hashref_query($form, $dbh, $query);
 
 251   foreach my $pg (@{ $pricegroups }) {
 
 252     $form->{"klass_$i"} = "$pg->{id}";
 
 253     $form->{"price_$i"} = $form->format_amount($myconfig, $form->{"price_$i"}, -2);
 
 254     $form->{"pricegroup_id_$i"} = "$pg->{id}";
 
 255     $form->{"pricegroup_$i"}    = "$pg->{pricegroup}";
 
 260   $form->{price_rows} = $i - 1;
 
 264   $main::lxdebug->leave_sub();
 
 269 sub retrieve_buchungsgruppen {
 
 270   $main::lxdebug->enter_sub();
 
 272   my ($self, $myconfig, $form) = @_;
 
 276   my $dbh = $form->dbconnect($myconfig);
 
 278   # get buchungsgruppen
 
 279   $query = qq|SELECT id, description FROM buchungsgruppen ORDER BY sortkey|;
 
 280   $form->{BUCHUNGSGRUPPEN} = selectall_hashref_query($form, $dbh, $query);
 
 282   $main::lxdebug->leave_sub();
 
 286   $main::lxdebug->enter_sub();
 
 288   my ($self, $myconfig, $form) = @_;
 
 290   # connect to database, turn off AutoCommit
 
 291   my $dbh = $form->get_standard_dbh;
 
 294   # make up a unique handle and store in partnumber field
 
 295   # then retrieve the record based on the unique handle to get the id
 
 296   # replace the partnumber field with the actual variable
 
 297   # add records for makemodel
 
 299   # if there is a $form->{id} then replace the old entry
 
 300   # delete all makemodel entries and add the new ones
 
 302   # undo amount formatting
 
 303   map { $form->{$_} = $form->parse_amount($myconfig, $form->{$_}) }
 
 304     qw(rop weight listprice sellprice gv lastcost);
 
 306   my $makemodel = (($form->{make_1}) || ($form->{model_1})) ? 1 : 0;
 
 308   $form->{assembly} = ($form->{item} eq 'assembly') ? 1 : 0;
 
 312   my $priceupdate = ', priceupdate = current_date';
 
 315     my $trans_number = SL::TransNumber->new(type => $form->{item}, dbh => $dbh, number => $form->{partnumber}, id => $form->{id});
 
 316     if (!$trans_number->is_unique) {
 
 317       $::lxdebug->leave_sub;
 
 322     $query = qq|SELECT sellprice, weight FROM parts WHERE id = ?|;
 
 323     my ($sellprice, $weight) = selectrow_query($form, $dbh, $query, conv_i($form->{id}));
 
 325     # if item is part of an assembly adjust all assemblies
 
 326     $query = qq|SELECT id, qty FROM assembly WHERE parts_id = ?|;
 
 327     $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
 
 328     while (my ($id, $qty) = $sth->fetchrow_array) {
 
 329       &update_assembly($dbh, $form, $id, $qty, $sellprice * 1, $weight * 1);
 
 333     if ($form->{item} ne 'service') {
 
 334       # delete makemodel records
 
 335       do_query($form, $dbh, qq|DELETE FROM makemodel WHERE parts_id = ?|, conv_i($form->{id}));
 
 338     if ($form->{item} eq 'assembly') {
 
 339       # delete assembly records
 
 340       do_query($form, $dbh, qq|DELETE FROM assembly WHERE id = ?|, conv_i($form->{id}));
 
 344     do_query($form, $dbh, qq|DELETE FROM partstax WHERE parts_id = ?|, conv_i($form->{id}));
 
 346     # delete translations
 
 347     do_query($form, $dbh, qq|DELETE FROM translation WHERE parts_id = ?|, conv_i($form->{id}));
 
 349     # Check whether or not the prices have changed. If they haven't
 
 350     # then 'priceupdate' should not be updated.
 
 351     my $previous_values = selectfirst_hashref_query($form, $dbh, qq|SELECT * FROM parts WHERE id = ?|, conv_i($form->{id})) || {};
 
 352     $priceupdate        = '' if (all { $previous_values->{$_} == $form->{$_} } qw(sellprice lastcost listprice));
 
 355     my $trans_number = SL::TransNumber->new(type => $form->{item}, dbh => $dbh, number => $form->{partnumber}, save => 1);
 
 357     if ($form->{partnumber} && !$trans_number->is_unique) {
 
 358       $::lxdebug->leave_sub;
 
 362     $form->{partnumber} ||= $trans_number->create_unique;
 
 364     ($form->{id}) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
 
 365     do_query($form, $dbh, qq|INSERT INTO parts (id, partnumber, unit) VALUES (?, ?, ?)|, $form->{id}, $form->{partnumber}, $form->{unit});
 
 367     $form->{orphaned} = 1;
 
 369   my $partsgroup_id = 0;
 
 371   if ($form->{partsgroup}) {
 
 372     (my $partsgroup, $partsgroup_id) = split(/--/, $form->{partsgroup});
 
 375   my ($subq_inventory, $subq_expense, $subq_income);
 
 376   if ($form->{"item"} eq "part") {
 
 378       qq|(SELECT bg.inventory_accno_id
 
 379           FROM buchungsgruppen bg
 
 380           WHERE bg.id = | . conv_i($form->{"buchungsgruppen_id"}, 'NULL') . qq|)|;
 
 382     $subq_inventory = "NULL";
 
 385   if ($form->{"item"} ne "assembly") {
 
 387       qq|(SELECT bg.expense_accno_id_0
 
 388           FROM buchungsgruppen bg
 
 389           WHERE bg.id = | . conv_i($form->{"buchungsgruppen_id"}, 'NULL') . qq|)|;
 
 391     $subq_expense = "NULL";
 
 410          buchungsgruppen_id = ?,
 
 412          inventory_accno_id = $subq_inventory,
 
 413          income_accno_id = (SELECT bg.income_accno_id_0 FROM buchungsgruppen bg WHERE bg.id = ?),
 
 414          expense_accno_id = $subq_expense,
 
 423          not_discountable = ?,
 
 429   @values = ($form->{partnumber},
 
 430              $form->{description},
 
 431              $makemodel ? 't' : 'f',
 
 432              $form->{assembly} ? 't' : 'f',
 
 442              conv_i($form->{buchungsgruppen_id}),
 
 443              conv_i($form->{payment_id}),
 
 444              conv_i($form->{buchungsgruppen_id}),
 
 445              $form->{obsolete} ? 't' : 'f',
 
 448              $form->{shop} ? 't' : 'f',
 
 452              $form->{has_sernumber} ? 't' : 'f',
 
 453              $form->{not_discountable} ? 't' : 'f',
 
 455              conv_i($partsgroup_id),
 
 456              conv_i($form->{price_factor_id}),
 
 459   do_query($form, $dbh, $query, @values);
 
 461   # delete translation records
 
 462   do_query($form, $dbh, qq|DELETE FROM translation WHERE parts_id = ?|, conv_i($form->{id}));
 
 464   if ($form->{language_values} ne "") {
 
 465     foreach my $item (split(/---\+\+\+---/, $form->{language_values})) {
 
 466       my ($language_id, $translation, $longdescription) = split(/--\+\+--/, $item);
 
 467       if ($translation ne "") {
 
 468         $query = qq|INSERT into translation (parts_id, language_id, translation, longdescription)
 
 469                     VALUES ( ?, ?, ?, ? )|;
 
 470         @values = (conv_i($form->{id}), conv_i($language_id), $translation, $longdescription);
 
 471         do_query($form, $dbh, $query, @values);
 
 476   # delete price records
 
 477   do_query($form, $dbh, qq|DELETE FROM prices WHERE parts_id = ?|, conv_i($form->{id}));
 
 479   # insert price records only if different to sellprice
 
 480   for my $i (1 .. $form->{price_rows}) {
 
 481     my $price = $form->parse_amount($myconfig, $form->{"price_$i"});
 
 483       $form->{"price_$i"} = $form->{sellprice};
 
 487          || $form->{"klass_$i"}
 
 488          || $form->{"pricegroup_id_$i"})
 
 489         and $price != $form->{sellprice}
 
 491       #$klass = $form->parse_amount($myconfig, $form->{"klass_$i"});
 
 492       $query = qq|INSERT INTO prices (parts_id, pricegroup_id, price) | .
 
 494       @values = (conv_i($form->{id}), conv_i($form->{"pricegroup_id_$i"}), $price);
 
 495       do_query($form, $dbh, $query, @values);
 
 499   # insert makemodel records
 
 500   unless ($form->{item} eq 'service') {
 
 503     for my $i (1 .. $form->{makemodel_rows}) {
 
 504       if (($form->{"make_$i"}) || ($form->{"model_$i"})) {
 
 506         $value = $form->parse_amount($myconfig, $form->{"lastcost_$i"});
 
 507         if ($value == $form->parse_amount($myconfig, $form->{"old_lastcost_$i"}))
 
 509             if ($form->{"lastupdate_$i"} eq "") {
 
 510                 $lastupdate = 'now()';
 
 512                 $lastupdate = $dbh->quote($form->{"lastupdate_$i"});
 
 515             $lastupdate = 'now()';
 
 517         $query = qq|INSERT INTO makemodel (parts_id, make, model, lastcost, lastupdate, sortorder) | .
 
 518                  qq|VALUES (?, ?, ?, ?, ?, ?)|;
 
 519         @values = (conv_i($form->{id}), conv_i($form->{"make_$i"}), $form->{"model_$i"}, $value, $lastupdate, conv_i($form->{"sortorder_$i"}) );
 
 521         do_query($form, $dbh, $query, @values);
 
 527   foreach my $item (split(/ /, $form->{taxaccounts})) {
 
 528     if ($form->{"IC_tax_$item"}) {
 
 530         qq|INSERT INTO partstax (parts_id, chart_id)
 
 531            VALUES (?, (SELECT id FROM chart WHERE accno = ?))|;
 
 532       @values = (conv_i($form->{id}), $item);
 
 533       do_query($form, $dbh, $query, @values);
 
 537   # add assembly records
 
 538   if ($form->{item} eq 'assembly') {
 
 540     for my $i (1 .. $form->{assembly_rows}) {
 
 541       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 543       if ($form->{"qty_$i"} != 0) {
 
 544         $form->{"bom_$i"} *= 1;
 
 545         $query = qq|INSERT INTO assembly (id, parts_id, qty, bom) | .
 
 546                  qq|VALUES (?, ?, ?, ?)|;
 
 547         @values = (conv_i($form->{id}), conv_i($form->{"id_$i"}), conv_i($form->{"qty_$i"}), $form->{"bom_$i"} ? 't' : 'f');
 
 548         do_query($form, $dbh, $query, @values);
 
 555     my $shippingdate = "$a[5]-$a[4]-$a[3]";
 
 557     $form->get_employee($dbh);
 
 561   #set expense_accno=inventory_accno if they are different => bilanz
 
 563     ($form->{expense_accno} != $form->{inventory_accno})
 
 564     ? $form->{inventory_accno}
 
 565     : $form->{expense_accno};
 
 567   # get tax rates and description
 
 569     ($form->{vc} eq "customer") ? $form->{income_accno} : $vendor_accno;
 
 571     qq|SELECT c.accno, c.description, t.rate, t.taxnumber
 
 573        WHERE (c.id = t.chart_id) AND (t.taxkey IN (SELECT taxkey_id FROM chart where accno = ?))
 
 575   my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
 
 577   $form->{taxaccount} = "";
 
 578   while (my $ptr = $stw->fetchrow_hashref("NAME_lc")) {
 
 579     $form->{taxaccount} .= "$ptr->{accno} ";
 
 580     if (!($form->{taxaccount2} =~ /\Q$ptr->{accno}\E/)) {
 
 581       $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
 582       $form->{"$ptr->{accno}_description"} = $ptr->{description};
 
 583       $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
 584       $form->{taxaccount2} .= " $ptr->{accno} ";
 
 588   CVar->save_custom_variables(dbh           => $dbh,
 
 590                               trans_id      => $form->{id},
 
 595   my $rc = $dbh->commit;
 
 597   $main::lxdebug->leave_sub();
 
 602 sub update_assembly {
 
 603   $main::lxdebug->enter_sub();
 
 605   my ($dbh, $form, $id, $qty, $sellprice, $weight) = @_;
 
 607   my $query = qq|SELECT id, qty FROM assembly WHERE parts_id = ?|;
 
 608   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
 610   while (my ($pid, $aqty) = $sth->fetchrow_array) {
 
 611     &update_assembly($dbh, $form, $pid, $aqty * $qty, $sellprice, $weight);
 
 616     qq|UPDATE parts SET sellprice = sellprice + ?, weight = weight + ?
 
 618   my @values = ($qty * ($form->{sellprice} - $sellprice),
 
 619              $qty * ($form->{weight} - $weight), conv_i($id));
 
 620   do_query($form, $dbh, $query, @values);
 
 622   $main::lxdebug->leave_sub();
 
 625 sub retrieve_assemblies {
 
 626   $main::lxdebug->enter_sub();
 
 628   my ($self, $myconfig, $form) = @_;
 
 630   # connect to database
 
 631   my $dbh = $form->dbconnect($myconfig);
 
 633   my $where = qq|NOT p.obsolete|;
 
 636   if ($form->{partnumber}) {
 
 637     $where .= qq| AND (p.partnumber ILIKE ?)|;
 
 638     push(@values, '%' . $form->{partnumber} . '%');
 
 641   if ($form->{description}) {
 
 642     $where .= qq| AND (p.description ILIKE ?)|;
 
 643     push(@values, '%' . $form->{description} . '%');
 
 646   # retrieve assembly items
 
 648     qq|SELECT p.id, p.partnumber, p.description,
 
 649          p.bin, p.onhand, p.rop,
 
 650          (SELECT sum(p2.inventory_accno_id)
 
 651           FROM parts p2, assembly a
 
 652           WHERE (p2.id = a.parts_id) AND (a.id = p.id)) AS inventory
 
 654        WHERE NOT p.obsolete AND p.assembly $where|;
 
 656   $form->{assembly_items} = selectall_hashref_query($form, $dbh, $query, @values);
 
 660   $main::lxdebug->leave_sub();
 
 664   $main::lxdebug->enter_sub();
 
 666   my ($self, $myconfig, $form) = @_;
 
 667   my @values = (conv_i($form->{id}));
 
 668   # connect to database, turn off AutoCommit
 
 669   my $dbh = $form->dbconnect_noauto($myconfig);
 
 671   my %columns = ( "assembly" => "id", "parts" => "id" );
 
 673   for my $table (qw(prices partstax makemodel inventory assembly translation parts)) {
 
 674     my $column = defined($columns{$table}) ? $columns{$table} : "parts_id";
 
 675     do_query($form, $dbh, qq|DELETE FROM $table WHERE $column = ?|, @values);
 
 679   my $rc = $dbh->commit;
 
 682   $main::lxdebug->leave_sub();
 
 688   $main::lxdebug->enter_sub();
 
 690   my ($self, $myconfig, $form) = @_;
 
 692   my $i = $form->{assembly_rows};
 
 694   my $where = qq|1 = 1|;
 
 697   my %columns = ("partnumber" => "p", "description" => "p", "partsgroup" => "pg");
 
 699   while (my ($column, $table) = each(%columns)) {
 
 700     next unless ($form->{"${column}_$i"});
 
 701     $where .= qq| AND ${table}.${column} ILIKE ?|;
 
 702     push(@values, '%' . $form->{"${column}_$i"} . '%');
 
 706     $where .= qq| AND NOT (p.id = ?)|;
 
 707     push(@values, conv_i($form->{id}));
 
 710   # Search for part ID overrides all other criteria.
 
 711   if ($form->{"id_${i}"}) {
 
 712     $where  = qq|p.id = ?|;
 
 713     @values = ($form->{"id_${i}"});
 
 716   if ($form->{partnumber}) {
 
 717     $where .= qq| ORDER BY p.partnumber|;
 
 719     $where .= qq| ORDER BY p.description|;
 
 722   # connect to database
 
 723   my $dbh = $form->dbconnect($myconfig);
 
 726     qq|SELECT p.id, p.partnumber, p.description, p.sellprice,
 
 727        p.weight, p.onhand, p.unit, pg.partsgroup, p.lastcost,
 
 728        p.price_factor_id, pfac.factor AS price_factor
 
 730        LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 731        LEFT JOIN price_factors pfac ON pfac.id = p.price_factor_id
 
 733   $form->{item_list} = selectall_hashref_query($form, $dbh, $query, @values);
 
 737   $main::lxdebug->leave_sub();
 
 742 # Warning, deep magic ahead.
 
 743 # This function gets all parts from the database according to the filters specified
 
 746 #   sort revers  - sorting field + direction
 
 749 # simple filter strings (every one of those also has a column flag prefixed with 'l_' associated):
 
 750 #   partnumber ean description partsgroup microfiche drawing
 
 753 #   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
 
 756 #   itemstatus  = active | onhand | short | obsolete | orphaned
 
 757 #   searchitems = part | assembly | service
 
 760 #   make model                               - makemodel
 
 761 #   serialnumber transdatefrom transdateto   - invoice/orderitems
 
 764 #   bought sold onorder ordered rfq quoted   - aggreg joins with invoices/orders
 
 765 #   l_linetotal l_subtotal                   - aggreg joins to display totals (complicated) - NOT IMPLEMENTED here, implementation at frontend
 
 766 #   l_soldtotal                              - aggreg join to display total of sold quantity
 
 767 #   onhand                                   - as above, but masking the simple itemstatus results (doh!)
 
 768 #   short                                    - NOT IMPLEMENTED as form filter, only as itemstatus option
 
 769 #   l_serialnumber                           - belonges to serialnumber filter
 
 770 #   l_deliverydate                           - displays deliverydate is sold etc. flags are active
 
 771 #   l_soldtotal                              - aggreg join to display total of sold quantity, works as long as there's no bullshit in soldtotal
 
 774 #   onhand                                   - as above, but masking the simple itemstatus results (doh!)
 
 776 #   search by overrides of description
 
 778 # disabled sanity checks and changes:
 
 779 #  - searchitems = assembly will no longer disable bought
 
 780 #  - searchitems = service  will no longer disable make and model, although services don't have make/model, it doesn't break the query
 
 781 #  - itemstatus  = orphaned will no longer disable onhand short bought sold onorder ordered rfq quoted transdate[from|to]
 
 782 #  - itemstatus  = obsolete will no longer disable onhand, short
 
 783 #  - allow sorting by ean
 
 784 #  - serialnumber filter also works if l_serialnumber isn't ticked
 
 785 #  - sorting will now change sorting if the requested sorting column isn't checked and doesn't get checked as a side effect
 
 788   $main::lxdebug->enter_sub();
 
 790   my ($self, $myconfig, $form) = @_;
 
 791   my $dbh = $form->get_standard_dbh($myconfig);
 
 793   $form->{parts}     = +{ };
 
 794   $form->{soldtotal} = undef if $form->{l_soldtotal}; # security fix. top100 insists on putting strings in there...
 
 796   my @simple_filters       = qw(partnumber ean description partsgroup microfiche drawing onhand);
 
 797   my @makemodel_filters    = qw(make model);
 
 798   my @invoice_oi_filters   = qw(serialnumber soldtotal);
 
 799   my @apoe_filters         = qw(transdate);
 
 800   my @like_filters         = (@simple_filters, @invoice_oi_filters);
 
 801   my @all_columns          = (@simple_filters, @makemodel_filters, @apoe_filters, qw(serialnumber));
 
 802   my @simple_l_switches    = (@all_columns, qw(listprice sellprice lastcost priceupdate weight unit bin rop image));
 
 803   my @oe_flags             = qw(bought sold onorder ordered rfq quoted);
 
 804   my @qsooqr_flags         = qw(invnumber ordnumber quonumber trans_id name module qty);
 
 805   my @deliverydate_flags   = qw(deliverydate);
 
 806 #  my @other_flags          = qw(onhand); # ToDO: implement these
 
 807 #  my @inactive_flags       = qw(l_subtotal short l_linetotal);
 
 809   my @select_tokens = qw(id factor);
 
 810   my @where_tokens  = qw(1=1);
 
 811   my @group_tokens  = ();
 
 813   my %joins_needed  = ();
 
 816     partsgroup => 'LEFT JOIN partsgroup pg      ON (pg.id       = p.partsgroup_id)',
 
 817     makemodel  => 'LEFT JOIN makemodel mm       ON (mm.parts_id = p.id)',
 
 818     pfac       => 'LEFT JOIN price_factors pfac ON (pfac.id     = p.price_factor_id)',
 
 821          SELECT parts_id, description, serialnumber, trans_id, unit, sellprice, qty,          assemblyitem,         deliverydate, 'invoice'    AS ioi, id FROM invoice UNION
 
 822          SELECT parts_id, description, serialnumber, trans_id, unit, sellprice, qty, FALSE AS assemblyitem, NULL AS deliverydate, 'orderitems' AS ioi, id FROM orderitems
 
 823        ) AS ioi ON ioi.parts_id = p.id|,
 
 826          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
 
 827          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
 
 828          SELECT id, transdate, 'oe' AS module, ordnumber, quonumber, NULL AS invnumber,          quotation,         customer_id,         vendor_id, reqdate AS deliverydate, 'orderitems' AS ioi FROM oe
 
 829        ) AS apoe ON ((ioi.trans_id = apoe.id) AND (ioi.ioi = apoe.ioi))|,
 
 832            SELECT id, name, 'customer' AS cv FROM customer UNION
 
 833            SELECT id, name, 'vendor'   AS cv FROM vendor
 
 834          ) AS cv ON cv.id = apoe.customer_id OR cv.id = apoe.vendor_id|,
 
 835     mv         => 'LEFT JOIN vendor AS mv ON mv.id = mm.make',
 
 837   my @join_order = qw(partsgroup makemodel mv invoice_oi apoe cv pfac);
 
 840      deliverydate => 'apoe.', serialnumber => 'ioi.',
 
 841      transdate    => 'apoe.', trans_id     => 'ioi.',
 
 842      module       => 'apoe.', name         => 'cv.',
 
 843      ordnumber    => 'apoe.', make         => 'mm.',
 
 844      quonumber    => 'apoe.', model        => 'mm.',
 
 845      invnumber    => 'apoe.', partsgroup   => 'pg.',
 
 846      lastcost     => 'p.',  , soldtotal    => ' ',
 
 848      'SUM(ioi.qty)' => ' ',
 
 851      serialnumber => 'ioi.',
 
 852      quotation    => 'apoe.',
 
 858   # if the join condition in these blocks are met, the column
 
 859   # of the scecified table will gently override (coalesce actually) the original value
 
 860   # use it to conditionally coalesce values from subtables
 
 861   my @column_override = (
 
 862     #  column name,   prefix,  joins_needed
 
 863     [ 'description',  'ioi.',  'invoice_oi'  ],
 
 864     [ 'deliverydate', 'ioi.',  'invoice_oi'  ],
 
 865     [ 'transdate',    'apoe.', 'apoe'        ],
 
 866     [ 'unit',         'ioi.',  'invoice_oi'  ],
 
 867     [ 'sellprice',    'ioi.',  'invoice_oi'  ],
 
 870   # careful with renames. these are HARD, and any filters done on the original column will break
 
 871   my %renamed_columns = (
 
 872     'factor'       => 'price_factor',
 
 873     'SUM(ioi.qty)' => 'soldtotal',
 
 874     'ioi.id'       => 'ioi_id',
 
 878   if (($form->{searchitems} eq 'assembly') && $form->{l_lastcost}) {
 
 879     @simple_l_switches = grep { $_ ne 'lastcost' } @simple_l_switches;
 
 882   my $make_token_builder = sub {
 
 883     my $joins_needed = shift;
 
 885       my ($col, $alias) = @_;
 
 886       my @coalesce_tokens =
 
 887         map  { ($_->[1] || 'p.') . $_->[0] }
 
 888         grep { !$_->[2] || $joins_needed->{$_->[2]} }
 
 889         grep {  $_->[0] eq $col }
 
 890         @column_override, [ $col, $table_prefix{$col} ];
 
 892       my $coalesce = scalar @coalesce_tokens > 1;
 
 894         ? sprintf 'COALESCE(%s)', join ', ', @coalesce_tokens
 
 895         : shift                              @coalesce_tokens)
 
 896         . ($alias && ($coalesce || $renamed_columns{$col})
 
 897         ?  " AS " . ($renamed_columns{$col} || $col)
 
 902   #===== switches and simple filters ========#
 
 904   # special case transdate
 
 905   if (grep { $form->{$_} } qw(transdatefrom transdateto)) {
 
 906     $form->{"l_transdate"} = 1;
 
 907     push @select_tokens, 'transdate';
 
 908     for (qw(transdatefrom transdateto)) {
 
 909       next unless $form->{$_};
 
 910       push @where_tokens, sprintf "transdate %s ?", /from$/ ? '>=' : '<=';
 
 911       push @bind_vars,    $form->{$_};
 
 915   if ($form->{"partsgroup_id"}) {
 
 916     $form->{"l_partsgroup"} = '1'; # show the column
 
 917     push @where_tokens, "pg.id = ?";
 
 918     push @bind_vars, $form->{"partsgroup_id"};
 
 921   foreach (@like_filters) {
 
 922     next unless $form->{$_};
 
 923     $form->{"l_$_"} = '1'; # show the column
 
 924     push @where_tokens, "$table_prefix{$_}$_ ILIKE ?";
 
 925     push @bind_vars,    "%$form->{$_}%";
 
 928   foreach (@simple_l_switches) {
 
 929     next unless $form->{"l_$_"};
 
 930     push @select_tokens, $_;
 
 933   for ($form->{searchitems}) {
 
 934     push @where_tokens, 'p.inventory_accno_id > 0'     if /part/;
 
 935     push @where_tokens, 'p.inventory_accno_id IS NULL' if /service/;
 
 936     push @where_tokens, 'NOT p.assembly'               if /service/;
 
 937     push @where_tokens, '    p.assembly'               if /assembly/;
 
 940   for ($form->{itemstatus}) {
 
 941     push @where_tokens, 'p.id NOT IN
 
 942         (SELECT DISTINCT parts_id FROM invoice UNION
 
 943          SELECT DISTINCT parts_id FROM assembly UNION
 
 944          SELECT DISTINCT parts_id FROM orderitems)'    if /orphaned/;
 
 945     push @where_tokens, 'p.onhand = 0'                 if /orphaned/;
 
 946     push @where_tokens, 'NOT p.obsolete'               if /active/;
 
 947     push @where_tokens, '    p.obsolete',              if /obsolete/;
 
 948     push @where_tokens, 'p.onhand > 0',                if /onhand/;
 
 949     push @where_tokens, 'p.onhand < p.rop',            if /short/;
 
 952   my $q_assembly_lastcost =
 
 953     qq|(SELECT SUM(a_lc.qty * p_lc.lastcost / COALESCE(pfac_lc.factor, 1))
 
 955         LEFT JOIN parts p_lc            ON (a_lc.parts_id        = p_lc.id)
 
 956         LEFT JOIN price_factors pfac_lc ON (p_lc.price_factor_id = pfac_lc.id)
 
 957         WHERE (a_lc.id = p.id)) AS lastcost|;
 
 958   $table_prefix{$q_assembly_lastcost} = ' ';
 
 960   # special case makemodel search
 
 961   # all_parts is based upon the assumption that every parameter is named like the column it represents
 
 962   # unfortunately make would have to match vendor.name which is already taken for vendor.name in bsooqr mode.
 
 963   # fortunately makemodel doesn't need to be displayed later, so adding a special clause to where_token is sufficient.
 
 965     push @where_tokens, 'mv.name ILIKE ?';
 
 966     push @bind_vars, "%$form->{make}%";
 
 968   if ($form->{model}) {
 
 969     push @where_tokens, 'mm.model ILIKE ?';
 
 970     push @bind_vars, "%$form->{model}%";
 
 973   # special case: sorting by partnumber
 
 974   # since partnumbers are expected to be prefixed integers, a special sorting is implemented sorting first lexically by prefix and then by suffix.
 
 975   # and yes, that expression is designed to hold that array of regexes only once, so the map is kinda messy, sorry about that.
 
 976   # ToDO: implement proper functional sorting
 
 977   # Nette Idee von Sven, gibt aber Probleme wenn die Artikelnummern groesser als 32bit sind. Korrekt waere es, dass Sort-Natural-Modul zu nehmen
 
 978   # Ich lass das mal hier drin, damit die Idee erhalten bleibt jb 28.5.2009 bug 1018
 
 979   #$form->{sort} = join ', ', map { push @select_tokens, $_; ($table_prefix{$_} = "substring(partnumber,'[") . $_ } qw|^[:digit:]]+') [:digit:]]+')::INTEGER|
 
 980   #  if $form->{sort} eq 'partnumber';
 
 982   #my $order_clause = " ORDER BY $form->{sort} $sort_order";
 
 985   $limit_clause = " LIMIT 100"                   if $form->{top100};
 
 986   $limit_clause = " LIMIT " . $form->{limit} * 1 if $form->{limit} * 1;
 
 988   #=== joins and complicated filters ========#
 
 990   my $bsooqr        = any { $form->{$_} } @oe_flags;
 
 991   my @bsooqr_tokens = ();
 
 993   push @select_tokens, @qsooqr_flags, 'quotation', 'cv', 'ioi.id', 'ioi.ioi'  if $bsooqr;
 
 994   push @select_tokens, @deliverydate_flags                                    if $bsooqr && $form->{l_deliverydate};
 
 995   push @select_tokens, $q_assembly_lastcost                                   if ($form->{searchitems} eq 'assembly') && $form->{l_lastcost};
 
 996   push @bsooqr_tokens, q|module = 'ir' AND NOT ioi.assemblyitem|              if $form->{bought};
 
 997   push @bsooqr_tokens, q|module = 'is' AND NOT ioi.assemblyitem|              if $form->{sold};
 
 998   push @bsooqr_tokens, q|module = 'oe' AND NOT quotation AND cv = 'customer'| if $form->{ordered};
 
 999   push @bsooqr_tokens, q|module = 'oe' AND NOT quotation AND cv = 'vendor'|   if $form->{onorder};
 
1000   push @bsooqr_tokens, q|module = 'oe' AND     quotation AND cv = 'customer'| if $form->{quoted};
 
1001   push @bsooqr_tokens, q|module = 'oe' AND     quotation AND cv = 'vendor'|   if $form->{rfq};
 
1002   push @where_tokens, join ' OR ', map { "($_)" } @bsooqr_tokens              if $bsooqr;
 
1004   $joins_needed{partsgroup}  = 1;
 
1005   $joins_needed{pfac}        = 1;
 
1006   $joins_needed{makemodel}   = 1 if grep { $form->{$_} || $form->{"l_$_"} } @makemodel_filters;
 
1007   $joins_needed{mv}          = 1 if $joins_needed{makemodel};
 
1008   $joins_needed{cv}          = 1 if $bsooqr;
 
1009   $joins_needed{apoe}        = 1 if $joins_needed{cv}   || grep { $form->{$_} || $form->{"l_$_"} } @apoe_filters;
 
1010   $joins_needed{invoice_oi}  = 1 if $joins_needed{apoe} || grep { $form->{$_} || $form->{"l_$_"} } @invoice_oi_filters;
 
1012   # in bsoorq, use qtys instead of onhand
 
1013   if ($joins_needed{invoice_oi}) {
 
1014     $renamed_columns{onhand} = 'onhand_before_bsooqr';
 
1015     $renamed_columns{qty}    = 'onhand';
 
1018   # special case for description search.
 
1019   # up in the simple filter section the description filter got interpreted as something like: WHERE description ILIKE '%$form->{description}%'
 
1020   # now we'd like to search also for the masked description entered in orderitems and invoice, so...
 
1021   # find the old entries in of @where_tokens and @bind_vars, and adjust them
 
1022   if ($joins_needed{invoice_oi}) {
 
1023     for (my ($wi, $bi) = (0)x2; $wi <= $#where_tokens; $bi++ if $where_tokens[$wi++] =~ /\?/) {
 
1024       next unless $where_tokens[$wi] =~ /\bdescription ILIKE/;
 
1025       splice @where_tokens, $wi, 1, 'p.description ILIKE ? OR ioi.description ILIKE ?';
 
1026       splice @bind_vars,    $bi, 0, $bind_vars[$bi];
 
1031   # now the master trick: soldtotal.
 
1032   if ($form->{l_soldtotal}) {
 
1033     push @where_tokens, 'NOT ioi.qty = 0';
 
1034     push @group_tokens, @select_tokens;
 
1035      map { s/.*\sAS\s+//si } @group_tokens;
 
1036     push @select_tokens, 'SUM(ioi.qty)';
 
1039   #============= build query ================#
 
1041   my $token_builder = $make_token_builder->(\%joins_needed);
 
1043   my @sort_cols    = (@simple_filters, qw(id bin priceupdate onhand invnumber ordnumber quonumber name serialnumber soldtotal deliverydate));
 
1044      $form->{sort} = 'id' unless grep { $form->{"l_$_"} } grep { $form->{sort} eq $_ } @sort_cols; # sort by id if unknown or invisible column
 
1045   my $sort_order   = ($form->{revers} ? ' DESC' : ' ASC');
 
1046   my $order_clause = " ORDER BY " . $token_builder->($form->{sort}) . ($form->{revers} ? ' DESC' : ' ASC');
 
1048   my $select_clause = join ', ',    map { $token_builder->($_, 1) } @select_tokens;
 
1049   my $join_clause   = join ' ',     @joins{ grep $joins_needed{$_}, @join_order };
 
1050   my $where_clause  = join ' AND ', map { "($_)" } @where_tokens;
 
1051   my $group_clause  = ' GROUP BY ' . join ', ',    map { $token_builder->($_) } @group_tokens if scalar @group_tokens;
 
1053   my %oe_flag_to_cvar = (
 
1054     bought   => 'invoice',
 
1056     onorder  => 'orderitems',
 
1057     ordered  => 'orderitems',
 
1058     rfq      => 'orderitems',
 
1059     quoted   => 'orderitems',
 
1062   my ($cvar_where, @cvar_values) = CVar->build_filter_query(
 
1064     trans_id_field => $bsooqr ? 'ioi.id': 'p.id',
 
1066     sub_module     => $bsooqr ? [ uniq grep { $oe_flag_to_cvar{$form->{$_}} } @oe_flags ] : undef,
 
1070     $where_clause .= qq| AND ($cvar_where)|;
 
1071     push @bind_vars, @cvar_values;
 
1074   my $query = <<"  SQL";
 
1075     SELECT DISTINCT $select_clause
 
1084   $form->{parts} = selectall_hashref_query($form, $dbh, $query, @bind_vars);
 
1086   map { $_->{onhand} *= 1 } @{ $form->{parts} };
 
1088   # post processing for assembly parts lists (bom)
 
1089   # for each part get the assembly parts and add them into the partlist.
 
1091   if ($form->{searchitems} eq 'assembly' && $form->{bom}) {
 
1093       qq|SELECT p.id, p.partnumber, p.description, a.qty AS onhand,
 
1095            p.sellprice, p.listprice, p.lastcost,
 
1096            p.rop, p.weight, p.priceupdate,
 
1097            p.image, p.drawing, p.microfiche,
 
1100          INNER JOIN assembly a ON (p.id = a.parts_id)
 
1103     my $sth = prepare_query($form, $dbh, $query);
 
1105     foreach my $item (@{ $form->{parts} }) {
 
1106       push(@assemblies, $item);
 
1107       do_statement($form, $sth, $query, conv_i($item->{id}));
 
1109       while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
1110         $ref->{assemblyitem} = 1;
 
1111         map { $ref->{$_} /= $ref->{factor} || 1 } qw(sellprice listprice lastcost);
 
1112         push(@assemblies, $ref);
 
1117     # copy assemblies to $form->{parts}
 
1118     $form->{parts} = \@assemblies;
 
1121   $main::lxdebug->leave_sub();
 
1123   return wantarray ? @{ $form->{parts} } : $form->{parts};
 
1126 sub _create_filter_for_priceupdate {
 
1127   $main::lxdebug->enter_sub();
 
1130   my $myconfig = \%main::myconfig;
 
1131   my $form     = $main::form;
 
1134   my $where = '1 = 1';
 
1136   foreach my $item (qw(partnumber drawing microfiche make model pg.partsgroup)) {
 
1138     $column =~ s/.*\.//;
 
1139     next unless ($form->{$column});
 
1141     $where .= qq| AND $item ILIKE ?|;
 
1142     push(@where_values, '%' . $form->{$column} . '%');
 
1145   foreach my $item (qw(description serialnumber)) {
 
1146     next unless ($form->{$item});
 
1148     $where .= qq| AND (${item} ILIKE ?)|;
 
1149     push(@where_values, '%' . $form->{$item} . '%');
 
1153   # items which were never bought, sold or on an order
 
1154   if ($form->{itemstatus} eq 'orphaned') {
 
1156       qq| AND (p.onhand = 0)
 
1159               SELECT DISTINCT parts_id FROM invoice
 
1161               SELECT DISTINCT parts_id FROM assembly
 
1163               SELECT DISTINCT parts_id FROM orderitems
 
1166   } elsif ($form->{itemstatus} eq 'active') {
 
1167     $where .= qq| AND p.obsolete = '0'|;
 
1169   } elsif ($form->{itemstatus} eq 'obsolete') {
 
1170     $where .= qq| AND p.obsolete = '1'|;
 
1172   } elsif ($form->{itemstatus} eq 'onhand') {
 
1173     $where .= qq| AND p.onhand > 0|;
 
1175   } elsif ($form->{itemstatus} eq 'short') {
 
1176     $where .= qq| AND p.onhand < p.rop|;
 
1180   foreach my $column (qw(make model)) {
 
1181     next unless ($form->{$column});
 
1182     $where .= qq| AND p.id IN (SELECT DISTINCT parts_id FROM makemodel WHERE $column ILIKE ?|;
 
1183     push(@where_values, '%' . $form->{$column} . '%');
 
1186   $main::lxdebug->leave_sub();
 
1188   return ($where, @where_values);
 
1191 sub get_num_matches_for_priceupdate {
 
1192   $main::lxdebug->enter_sub();
 
1196   my $myconfig = \%main::myconfig;
 
1197   my $form     = $main::form;
 
1199   my $dbh      = $form->get_standard_dbh($myconfig);
 
1201   my ($where, @where_values) = $self->_create_filter_for_priceupdate();
 
1203   my $num_updated = 0;
 
1206   for my $column (qw(sellprice listprice)) {
 
1207     next if ($form->{$column} eq "");
 
1215             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1217     my ($result)  = selectfirst_array_query($form, $dbh, $query, @where_values);
 
1218     $num_updated += $result if (0 <= $result);
 
1227           LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1228           WHERE $where) AND (pricegroup_id = ?)|;
 
1229   my $sth = prepare_query($form, $dbh, $query);
 
1231   for my $i (1 .. $form->{price_rows}) {
 
1232     next if ($form->{"price_$i"} eq "");
 
1234     my ($result)  = do_statement($form, $sth, $query, @where_values, conv_i($form->{"pricegroup_id_$i"}));
 
1235     $num_updated += $result if (0 <= $result);
 
1239   $main::lxdebug->leave_sub();
 
1241   return $num_updated;
 
1245   $main::lxdebug->enter_sub();
 
1247   my ($self, $myconfig, $form) = @_;
 
1249   my ($where, @where_values) = $self->_create_filter_for_priceupdate();
 
1250   my $num_updated = 0;
 
1252   # connect to database
 
1253   my $dbh = $form->dbconnect_noauto($myconfig);
 
1255   for my $column (qw(sellprice listprice)) {
 
1256     next if ($form->{$column} eq "");
 
1258     my $value = $form->parse_amount($myconfig, $form->{$column});
 
1261     if ($form->{"${column}_type"} eq "percent") {
 
1262       $value = ($value / 100) + 1;
 
1267       qq|UPDATE parts SET $column = $column $operator ?
 
1271             LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1273     my $result    = do_query($form, $dbh, $query, $value, @where_values);
 
1274     $num_updated += $result if (0 <= $result);
 
1278     qq|UPDATE prices SET price = price + ?
 
1282           LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1283           WHERE $where) AND (pricegroup_id = ?)|;
 
1284   my $sth_add = prepare_query($form, $dbh, $q_add);
 
1287     qq|UPDATE prices SET price = price * ?
 
1291           LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1292           WHERE $where) AND (pricegroup_id = ?)|;
 
1293   my $sth_multiply = prepare_query($form, $dbh, $q_multiply);
 
1295   for my $i (1 .. $form->{price_rows}) {
 
1296     next if ($form->{"price_$i"} eq "");
 
1298     my $value = $form->parse_amount($myconfig, $form->{"price_$i"});
 
1301     if ($form->{"pricegroup_type_$i"} eq "percent") {
 
1302       $result = do_statement($form, $sth_multiply, $q_multiply, ($value / 100) + 1, @where_values, conv_i($form->{"pricegroup_id_$i"}));
 
1304       $result = do_statement($form, $sth_add, $q_add, $value, @where_values, conv_i($form->{"pricegroup_id_$i"}));
 
1307     $num_updated += $result if (0 <= $result);
 
1311   $sth_multiply->finish();
 
1313   my $rc= $dbh->commit;
 
1316   $main::lxdebug->leave_sub();
 
1318   return $num_updated;
 
1322   $main::lxdebug->enter_sub();
 
1324   my ($self, $module, $myconfig, $form) = @_;
 
1326   # connect to database
 
1327   my $dbh = $form->dbconnect($myconfig);
 
1329   my @values = ('%' . $module . '%');
 
1334       qq|SELECT c.accno, c.description, c.link, c.id,
 
1335            p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
 
1336          FROM chart c, parts p
 
1337          WHERE (c.link LIKE ?) AND (p.id = ?)
 
1339     push(@values, conv_i($form->{id}));
 
1343       qq|SELECT c.accno, c.description, c.link, c.id,
 
1344            d.inventory_accno_id, d.income_accno_id, d.expense_accno_id
 
1345          FROM chart c, defaults d
 
1350   my $sth = prepare_execute_query($form, $dbh, $query, @values);
 
1351   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
1352     foreach my $key (split(/:/, $ref->{link})) {
 
1353       if ($key =~ /\Q$module\E/) {
 
1354         if (   ($ref->{id} eq $ref->{inventory_accno_id})
 
1355             || ($ref->{id} eq $ref->{income_accno_id})
 
1356             || ($ref->{id} eq $ref->{expense_accno_id})) {
 
1357           push @{ $form->{"${module}_links"}{$key} },
 
1358             { accno       => $ref->{accno},
 
1359               description => $ref->{description},
 
1360               selected    => "selected" };
 
1361           $form->{"${key}_default"} = "$ref->{accno}--$ref->{description}";
 
1363           push @{ $form->{"${module}_links"}{$key} },
 
1364             { accno       => $ref->{accno},
 
1365               description => $ref->{description},
 
1373   # get buchungsgruppen
 
1374   $form->{BUCHUNGSGRUPPEN} = selectall_hashref_query($form, $dbh, qq|SELECT id, description FROM buchungsgruppen|);
 
1377   $form->{payment_terms} = selectall_hashref_query($form, $dbh, qq|SELECT id, description FROM payment_terms ORDER BY sortkey|);
 
1380     ($form->{priceupdate}) = selectrow_query($form, $dbh, qq|SELECT current_date|);
 
1384   $main::lxdebug->leave_sub();
 
1387 # get partnumber, description, unit, sellprice and soldtotal with choice through $sortorder for Top100
 
1389   $main::lxdebug->enter_sub();
 
1391   my ($self, $myconfig, $form, $sortorder) = @_;
 
1392   my $dbh   = $form->dbconnect($myconfig);
 
1393   my $order = qq| p.partnumber|;
 
1394   my $where = qq|1 = 1|;
 
1397   if ($sortorder eq "all") {
 
1398     $where .= qq| AND (partnumber ILIKE ?) AND (description ILIKE ?)|;
 
1399     push(@values, '%' . $form->{partnumber} . '%', '%' . $form->{description} . '%');
 
1401   } elsif ($sortorder eq "partnumber") {
 
1402     $where .= qq| AND (partnumber ILIKE ?)|;
 
1403     push(@values, '%' . $form->{partnumber} . '%');
 
1405   } elsif ($sortorder eq "description") {
 
1406     $where .= qq| AND (description ILIKE ?)|;
 
1407     push(@values, '%' . $form->{description} . '%');
 
1408     $order = "description";
 
1413     qq|SELECT id, partnumber, description, unit, sellprice
 
1415        WHERE $where ORDER BY $order|;
 
1417   my $sth = prepare_execute_query($form, $dbh, $query, @values);
 
1420   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
1421     if (($ref->{partnumber} eq "*") && ($ref->{description} eq "")) {
 
1426     $form->{"id_$j"}          = $ref->{id};
 
1427     $form->{"partnumber_$j"}  = $ref->{partnumber};
 
1428     $form->{"description_$j"} = $ref->{description};
 
1429     $form->{"unit_$j"}        = $ref->{unit};
 
1430     $form->{"sellprice_$j"}   = $ref->{sellprice};
 
1431     $form->{"soldtotal_$j"}   = get_soldtotal($dbh, $ref->{id});
 
1437   $main::lxdebug->leave_sub();
 
1442 # gets sum of sold part with part_id
 
1444   $main::lxdebug->enter_sub();
 
1446   my ($dbh, $id) = @_;
 
1448   my $query = qq|SELECT sum(qty) FROM invoice WHERE parts_id = ?|;
 
1449   my ($sum) = selectrow_query($main::form, $dbh, $query, conv_i($id));
 
1452   $main::lxdebug->leave_sub();
 
1455 }    #end get_soldtotal
 
1457 sub retrieve_languages {
 
1458   $main::lxdebug->enter_sub();
 
1460   my ($self, $myconfig, $form) = @_;
 
1462   # connect to database
 
1463   my $dbh = $form->dbconnect($myconfig);
 
1469   if ($form->{language_values} ne "") {
 
1471       qq|SELECT l.id, l.description, tr.translation, tr.longdescription
 
1473          LEFT OUTER JOIN translation tr ON (tr.language_id = l.id) AND (tr.parts_id = ?)
 
1474          ORDER BY lower(l.description)|;
 
1475     @values = (conv_i($form->{id}));
 
1478     $query = qq|SELECT id, description
 
1480                 ORDER BY lower(description)|;
 
1483   my $languages = selectall_hashref_query($form, $dbh, $query, @values);
 
1487   $main::lxdebug->leave_sub();
 
1492 sub follow_account_chain {
 
1493   $main::lxdebug->enter_sub(2);
 
1495   my ($self, $form, $dbh, $transdate, $accno_id, $accno) = @_;
 
1497   my @visited_accno_ids = ($accno_id);
 
1501   $form->{ACCOUNT_CHAIN_BY_ID} ||= {
 
1502     map { $_->{id} => $_ }
 
1503       selectall_hashref_query($form, $dbh, <<SQL, $transdate) };
 
1504     SELECT c.id, c.new_chart_id, date(?) >= c.valid_from AS is_valid, cnew.accno
 
1506     LEFT JOIN chart cnew ON c.new_chart_id = cnew.id
 
1507     WHERE NOT c.new_chart_id IS NULL AND (c.new_chart_id > 0)
 
1511     my $ref = $form->{ACCOUNT_CHAIN_BY_ID}->{$accno_id};
 
1512     last unless ($ref && $ref->{"is_valid"} &&
 
1513                  !grep({ $_ == $ref->{"new_chart_id"} } @visited_accno_ids));
 
1514     $accno_id = $ref->{"new_chart_id"};
 
1515     $accno = $ref->{"accno"};
 
1516     push(@visited_accno_ids, $accno_id);
 
1519   $main::lxdebug->leave_sub(2);
 
1521   return ($accno_id, $accno);
 
1524 sub retrieve_accounts {
 
1525   $main::lxdebug->enter_sub;
 
1528   my $myconfig = shift;
 
1530   my $dbh      = $form->get_standard_dbh;
 
1531   my %args     = @_;     # index => part_id
 
1533   $form->{taxzone_id} *= 1;
 
1535   return unless grep $_, values %args; # shortfuse if no part_id supplied
 
1537   # transdate madness.
 
1539   if ($form->{type} eq "invoice") {
 
1540     if (($form->{vc} eq "vendor") || !$form->{deliverydate}) {
 
1541       $transdate = $form->{invdate};
 
1543       $transdate = $form->{deliverydate};
 
1545   } elsif (($form->{type} eq "credit_note") || ($form->{script} eq 'ir.pl')) {
 
1546     $transdate = $form->{invdate};
 
1548     $transdate = $form->{transdate};
 
1551   if ($transdate eq "") {
 
1552     $transdate = DateTime->today_local->to_lxoffice;
 
1554     $transdate = $dbh->quote($transdate);
 
1557   my $inc_exp = $form->{"vc"} eq "customer" ? "income_accno_id" : "expense_accno_id";
 
1559   my @part_ids = grep { $_ } values %args;
 
1560   my $in       = join ',', ('?') x @part_ids;
 
1562   my %accno_by_part = map { $_->{id} => $_ }
 
1563     selectall_hashref_query($form, $dbh, <<SQL, @part_ids);
 
1565       p.id, p.inventory_accno_id AS is_part,
 
1566       bg.inventory_accno_id,
 
1567       bg.income_accno_id_$form->{taxzone_id} AS income_accno_id,
 
1568       bg.expense_accno_id_$form->{taxzone_id} AS expense_accno_id,
 
1569       c1.accno AS inventory_accno,
 
1570       c2.accno AS income_accno,
 
1571       c3.accno AS expense_accno
 
1573     LEFT JOIN buchungsgruppen bg ON p.buchungsgruppen_id = bg.id
 
1574     LEFT JOIN chart c1 ON bg.inventory_accno_id = c1.id
 
1575     LEFT JOIN chart c2 ON bg.income_accno_id_$form->{taxzone_id} = c2.id
 
1576     LEFT JOIN chart c3 ON bg.expense_accno_id_$form->{taxzone_id} = c3.id
 
1580   my $sth_tax = prepare_query($::form, $dbh, <<SQL);
 
1581     SELECT c.accno, t.taxdescription AS description, t.rate, t.taxnumber
 
1583     LEFT JOIN chart c ON c.id = t.chart_id
 
1587        WHERE tk.chart_id = ? AND startdate <= ?
 
1588        ORDER BY startdate DESC LIMIT 1)
 
1591   while (my ($index => $part_id) = each %args) {
 
1592     my $ref = $accno_by_part{$part_id} or next;
 
1594     $ref->{"inventory_accno_id"} = undef unless $ref->{"is_part"};
 
1597     for my $type (qw(inventory income expense)) {
 
1598       next unless $ref->{"${type}_accno_id"};
 
1599       ($accounts{"${type}_accno_id"}, $accounts{"${type}_accno"}) =
 
1600         $self->follow_account_chain($form, $dbh, $transdate, $ref->{"${type}_accno_id"}, $ref->{"${type}_accno"});
 
1603     $form->{"${_}_accno_$index"} = $accounts{"${_}_accno"} for qw(inventory income expense);
 
1605     $sth_tax->execute($accounts{$inc_exp}, quote_db_date($transdate));
 
1606     $ref = $sth_tax->fetchrow_hashref or next;
 
1608     $form->{"taxaccounts_$index"} = $ref->{"accno"};
 
1609     $form->{"taxaccounts"} .= "$ref->{accno} "if $form->{"taxaccounts"} !~ /$ref->{accno}/;
 
1611     $form->{"$ref->{accno}_${_}"} = $ref->{$_} for qw(rate description taxnumber);
 
1616   $::lxdebug->leave_sub;
 
1619 sub get_basic_part_info {
 
1620   $main::lxdebug->enter_sub();
 
1625   Common::check_params(\%params, qw(id));
 
1627   my @ids      = 'ARRAY' eq ref $params{id} ? @{ $params{id} } : ($params{id});
 
1630     $main::lxdebug->leave_sub();
 
1634   my $myconfig = \%main::myconfig;
 
1635   my $form     = $main::form;
 
1637   my $dbh      = $form->get_standard_dbh($myconfig);
 
1639   my $query    = qq|SELECT * FROM parts WHERE id IN (| . join(', ', ('?') x scalar(@ids)) . qq|)|;
 
1641   my $info     = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
 
1643   if ('' eq ref $params{id}) {
 
1644     $info = $info->[0] || { };
 
1646     $main::lxdebug->leave_sub();
 
1650   my %info_map = map { $_->{id} => $_ } @{ $info };
 
1652   $main::lxdebug->leave_sub();
 
1657 sub prepare_parts_for_printing {
 
1658   $main::lxdebug->enter_sub();
 
1663   my $myconfig = \%main::myconfig;
 
1664   my $form     = $main::form;
 
1666   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
1668   my $prefix   = $params{prefix} || 'id_';
 
1669   my $rowcount = defined $params{rowcount} ? $params{rowcount} : $form->{rowcount};
 
1671   my @part_ids = keys %{ { map { $_ => 1 } grep { $_ } map { $form->{"${prefix}${_}"} } (1 .. $rowcount) } };
 
1674     $main::lxdebug->leave_sub();
 
1678   my $placeholders = join ', ', ('?') x scalar(@part_ids);
 
1679   my $query        = qq|SELECT mm.parts_id, mm.model, mm.lastcost, v.name AS make
 
1681                         LEFT JOIN vendor v ON (mm.make = v.id)
 
1682                         WHERE mm.parts_id IN ($placeholders)|;
 
1686   my $sth          = prepare_execute_query($form, $dbh, $query, @part_ids);
 
1688   while (my $ref = $sth->fetchrow_hashref()) {
 
1689     $makemodel{$ref->{parts_id}} ||= [];
 
1690     push @{ $makemodel{$ref->{parts_id}} }, $ref;
 
1695   my @columns = qw(ean image microfiche drawing weight);
 
1697   $query      = qq|SELECT id, | . join(', ', @columns) . qq|
 
1699                    WHERE id IN ($placeholders)|;
 
1701   my %data    = selectall_as_map($form, $dbh, $query, 'id', \@columns, @part_ids);
 
1703   map { $form->{TEMPLATE_ARRAYS}{$_} = [] } (qw(make model), @columns);
 
1705   foreach my $i (1 .. $rowcount) {
 
1706     my $id = $form->{"${prefix}${i}"};
 
1710     foreach (@columns) {
 
1711       push @{ $form->{TEMPLATE_ARRAYS}{$_} }, $data{$id}->{$_};
 
1714     push @{ $form->{TEMPLATE_ARRAYS}{make} },  [];
 
1715     push @{ $form->{TEMPLATE_ARRAYS}{model} }, [];
 
1717     next if (!$makemodel{$id});
 
1719     foreach my $ref (@{ $makemodel{$id} }) {
 
1720       map { push @{ $form->{TEMPLATE_ARRAYS}{$_}->[-1] }, $ref->{$_} } qw(make model);
 
1724   $main::lxdebug->leave_sub();