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., 51 Franklin Street, Fifth Floor, Boston,
 
  30 #======================================================================
 
  32 # Administration module
 
  37 #======================================================================
 
  44 use List::MoreUtils qw(any);
 
  51 use SL::GenericTranslations;
 
  56   $main::lxdebug->enter_sub();
 
  58   # fetch chart-related data and set form fields
 
  59   # get_account is called by add_account in am.pl
 
  60   # always sets $form->{TAXKEY} and default_accounts
 
  61   # loads chart data when $form->{id} is passed
 
  63   my ($self, $myconfig, $form) = @_;
 
  65   # get default accounts
 
  66   map { $form->{$_} = $::instance_conf->{$_} } qw(inventory_accno_id income_accno_id expense_accno_id);
 
  69   my $taxes = SL::DB::Manager::Tax->get_all( with_objects => ['chart'] , sort_by => 'taxkey' );
 
  71   foreach my $tk ( @{$taxes} ) {
 
  72     push @{ $form->{TAXKEY} },  { id          => $tk->id,
 
  73                                   chart_accno => $tk->chart_id ? $tk->chart->accno : undef,
 
  74                                   taxkey      => $tk->taxkey,
 
  75                                   tax         => $tk->id . '--' . $tk->taxkey,
 
  82     my $chart_obj = SL::DB::Manager::Chart->find_by(id => $form->{id}) || die "Can't open chart";
 
  84     my @chart_fields = qw(accno description charttype category link pos_bilanz
 
  85                           pos_eur pos_er new_chart_id valid_from pos_bwa datevautomatik);
 
  86     foreach my $cf ( @chart_fields ) {
 
  87       $form->{"$cf"} = $chart_obj->$cf;
 
  90     my $active_taxkey = $chart_obj->get_active_taxkey;
 
  91     $form->{$_}  = $active_taxkey->$_ foreach qw(taxkey_id pos_ustva tax_id startdate);
 
  92     $form->{tax} = $active_taxkey->tax_id . '--' . $active_taxkey->taxkey_id;
 
  94     # check if there are any transactions for this chart
 
  95     $form->{orphaned} = $chart_obj->has_transaction ? 0 : 1;
 
  97     # check if new account is active
 
  98     # The old sql query was broken since at least 2006 and always returned 0
 
  99     $form->{new_chart_valid} = $chart_obj->new_chart_valid;
 
 101     # get the taxkeys of the account
 
 102     $form->{ACCOUNT_TAXKEYS} = [];
 
 103     foreach my $taxkey ( @{ $chart_obj->taxkeys } ) {
 
 104       push @{ $form->{ACCOUNT_TAXKEYS} }, { id             => $taxkey->id,
 
 105                                             chart_id       => $taxkey->chart_id,
 
 106                                             tax_id         => $taxkey->tax_id,
 
 107                                             taxkey_id      => $taxkey->taxkey_id,
 
 108                                             pos_ustva      => $taxkey->pos_ustva,
 
 109                                             startdate      => $taxkey->startdate->to_kivitendo,
 
 110                                             taxdescription => $taxkey->tax->taxdescription,
 
 111                                             rate           => $taxkey->tax->rate,
 
 112                                             accno          => defined $taxkey->tax->chart_id ? $taxkey->tax->chart->accno : undef,
 
 116     # get new accounts (Folgekonto). Find all charts with the same link
 
 117     $form->{NEWACCOUNT} = $chart_obj->db->dbh->selectall_arrayref('select id, accno,description from chart where link = ? order by accno', {Slice => {}}, $chart_obj->link);
 
 119   } else { # set to orphaned for new charts, so chart_type can be changed (needed by $AccountIsPosted)
 
 120     $form->{orphaned} = 1;
 
 123   $main::lxdebug->leave_sub();
 
 127   my ($self, $myconfig, $form) = @_;
 
 128   $main::lxdebug->enter_sub();
 
 130   my $rc = SL::DB->client->with_transaction(\&_save_account, $self, $myconfig, $form);
 
 132   $::lxdebug->leave_sub;
 
 137   # TODO: it should be forbidden to change an account to a heading if there
 
 138   # have been bookings to this account in the past
 
 140   my ($self, $myconfig, $form) = @_;
 
 142   my $dbh = SL::DB->client->dbh;
 
 144   for (qw(AR_include_in_dropdown AP_include_in_dropdown summary_account)) {
 
 145     $form->{$form->{$_}} = $form->{$_} if $form->{$_};
 
 148   # sanity check, can't have AR with AR_...
 
 149   if ($form->{AR} || $form->{AP} || $form->{IC}) {
 
 150     if (any { $form->{$_} } qw(AR_amount AR_tax AR_paid AP_amount AP_tax AP_paid IC_sale IC_cogs IC_taxpart IC_income IC_expense IC_taxservice)) {
 
 151       $form->error($::locale->text('It is not allowed that a summary account occurs in a drop-down menu!'));
 
 155   my @link_order = qw(AR AR_amount AR_tax AR_paid AP AP_amount AP_tax AP_paid IC IC_sale IC_cogs IC_taxpart IC_income IC_expense IC_taxservice);
 
 156   $form->{link} = join ':', grep $_, map $form->{$_}, @link_order;
 
 158   # strip blanks from accno
 
 159   map { $form->{$_} =~ s/ //g; } qw(accno);
 
 161   # collapse multiple (horizontal) whitespace in chart description (Ticket 148)
 
 162   map { $form->{$_} =~ s/\h+/ /g } qw(description);
 
 166   if ($form->{id} eq "NULL") {
 
 175   my @values = ($form->{accno});
 
 178     $query .= ' AND NOT id = ?';
 
 179     push(@values, $form->{id});
 
 182   my ($accno) = selectrow_query($form, $dbh, $query, @values);
 
 185     $form->error($::locale->text('Account number not unique!'));
 
 189   if (!$form->{id} || $form->{id} eq "") {
 
 190     $query = qq|SELECT nextval('id')|;
 
 191     ($form->{"id"}) = selectrow_query($form, $dbh, $query);
 
 192     $query = qq|INSERT INTO chart (id, accno, link) VALUES (?, ?, ?)|;
 
 193     do_query($form, $dbh, $query, $form->{"id"}, $form->{"accno"}, '');
 
 201     # if charttype is heading make sure certain values are empty
 
 202     # specifically, if charttype is changed from an existing account, empty the
 
 203     # fields unnecessary for headings, so that e.g. heading doesn't appear in
 
 204     # drop-down menues due to still having a valid "link" entry
 
 206     if ( $form->{charttype} eq 'H' ) {
 
 208       $form->{pos_bwa} = '';
 
 209       $form->{pos_bilanz} = '';
 
 210       $form->{pos_eur} = '';
 
 211       $form->{new_chart_id} = '';
 
 212       $form->{valid_from} = '';
 
 215     $query = qq|UPDATE chart SET
 
 232                   $form->{description},
 
 236                   conv_i($form->{pos_bwa}),
 
 237                   conv_i($form->{pos_bilanz}),
 
 238                   conv_i($form->{pos_eur}),
 
 239                   conv_i($form->{pos_er}),
 
 240                   conv_i($form->{new_chart_id}),
 
 241                   conv_date($form->{valid_from}),
 
 242                   ($form->{datevautomatik} eq 'T') ? 'true':'false',
 
 249   do_query($form, $dbh, $query, @values);
 
 255   my $MAX_TRIES = 10; # Maximum count of taxkeys in form
 
 259   for $tk_count (0 .. $MAX_TRIES) {
 
 263     # Check if the account already exists, else cancel
 
 265     print(STDERR "Keine Taxkeys weil ID =: $form->{id}\n");
 
 267     last READTAXKEYS if ( $form->{'id'} == 0);
 
 269     # check if there is a startdate
 
 270     if ( $form->{"taxkey_startdate_$tk_count"} eq '' ) {
 
 275     # Add valid taxkeys into the array
 
 278         id        => ($form->{"taxkey_id_$tk_count"} eq 'NEW') ? conv_i('') : conv_i($form->{"taxkey_id_$tk_count"}),
 
 279         tax_id    => conv_i($form->{"taxkey_tax_$tk_count"}),
 
 280         startdate => conv_date($form->{"taxkey_startdate_$tk_count"}),
 
 281         chart_id  => conv_i($form->{"id"}),
 
 282         pos_ustva => conv_i($form->{"taxkey_pos_ustva_$tk_count"}),
 
 283         delete    => ( $form->{"taxkey_del_$tk_count"} eq 'delete' ) ? '1' : '',
 
 290   for my $j (0 .. $#taxkeys){
 
 291     if ( defined $taxkeys[$j]{'id'} ){
 
 294       if ($taxkeys[$j]{'delete'}){
 
 296           DELETE FROM taxkeys WHERE id = ?
 
 299         @values = ($taxkeys[$j]{'id'});
 
 301         do_query($form, $dbh, $query, @values);
 
 310         SET taxkey_id = (SELECT taxkey FROM tax WHERE tax.id = ?),
 
 318         $taxkeys[$j]{'tax_id'},
 
 319         $taxkeys[$j]{'chart_id'},
 
 320         $taxkeys[$j]{'tax_id'},
 
 321         $taxkeys[$j]{'pos_ustva'},
 
 322         $taxkeys[$j]{'startdate'},
 
 325       do_query($form, $dbh, $query, @values);
 
 331         INSERT INTO taxkeys (
 
 338         VALUES ((SELECT taxkey FROM tax WHERE tax.id = ?), ?, ?, ?, ?)
 
 341         $taxkeys[$j]{'tax_id'},
 
 342         $taxkeys[$j]{'chart_id'},
 
 343         $taxkeys[$j]{'tax_id'},
 
 344         $taxkeys[$j]{'pos_ustva'},
 
 345         $taxkeys[$j]{'startdate'},
 
 348       do_query($form, $dbh, $query, @values);
 
 353   # Update chart.taxkey_id to the latest from taxkeys for this chart.
 
 359       WHERE taxkeys.chart_id = chart.id
 
 360       ORDER BY startdate DESC
 
 366   do_query($form, $dbh, $query, $form->{id});
 
 372   my ($self, $myconfig, $form) = @_;
 
 373   $main::lxdebug->enter_sub();
 
 375   my $rc = SL::DB->client->with_transaction(\&_delete_account, $self, $myconfig, $form);
 
 377   $::lxdebug->leave_sub;
 
 381 sub _delete_account {
 
 382   my ($self, $myconfig, $form) = @_;
 
 384   my $dbh = SL::DB->client->dbh;
 
 386   my $query = qq|SELECT count(*) FROM acc_trans a
 
 387                  WHERE a.chart_id = ?|;
 
 388   my ($count) = selectrow_query($form, $dbh, $query, $form->{id});
 
 394   # set inventory_accno_id, income_accno_id, expense_accno_id to defaults
 
 395   foreach my $type (qw(inventory income expense)) {
 
 398       qq|SET ${type}_accno_id = (SELECT ${type}_accno_id FROM defaults) | .
 
 399       qq|WHERE ${type}_accno_id = ?|;
 
 400     do_query($form, $dbh, $query, $form->{id});
 
 403   $query = qq|DELETE FROM tax
 
 405   do_query($form, $dbh, $query, $form->{id});
 
 407   # delete account taxkeys
 
 408   $query = qq|DELETE FROM taxkeys
 
 410   do_query($form, $dbh, $query, $form->{id});
 
 412   # delete chart of account record
 
 413   # last step delete chart, because we have a constraint
 
 415   $query = qq|DELETE FROM chart
 
 417   do_query($form, $dbh, $query, $form->{id});
 
 423   $main::lxdebug->enter_sub();
 
 425   my ($self, $myconfig, $form) = @_;
 
 427   my $dbh = SL::DB->client->dbh;
 
 429   my $query = qq|SELECT id, lead
 
 433   my $sth = $dbh->prepare($query);
 
 434   $sth->execute || $form->dberror($query);
 
 436   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 437     push @{ $form->{ALL} }, $ref;
 
 442   $main::lxdebug->leave_sub();
 
 446   $main::lxdebug->enter_sub();
 
 448   my ($self, $myconfig, $form) = @_;
 
 450   my $dbh = SL::DB->client->dbh;
 
 453     qq|SELECT l.id, l.lead | .
 
 456   my $sth = $dbh->prepare($query);
 
 457   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
 
 459   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
 461   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 465   $main::lxdebug->leave_sub();
 
 469   $main::lxdebug->enter_sub();
 
 471   my ($self, $myconfig, $form) = @_;
 
 474   my $dbh = SL::DB->client->dbh;
 
 476   my @values = ($form->{description});
 
 477   # id is the old record
 
 479     $query = qq|UPDATE leads SET
 
 482     push(@values, $form->{id});
 
 484     $query = qq|INSERT INTO leads
 
 488   do_query($form, $dbh, $query, @values);
 
 490   $main::lxdebug->leave_sub();
 
 494   $main::lxdebug->enter_sub();
 
 496   my ($self, $myconfig, $form) = @_;
 
 499   SL::DB->client->with_transaction(sub {
 
 500     $query = qq|DELETE FROM leads WHERE id = ?|;
 
 501     do_query($form, SL::DB->client->dbh, $query, $form->{id});
 
 503   }) or do { die SL::DB->client->error };
 
 505   $main::lxdebug->leave_sub();
 
 509   $main::lxdebug->enter_sub();
 
 511   my ($self, $myconfig, $form, $return_list) = @_;
 
 513   my $dbh = SL::DB->client->dbh;
 
 516     "SELECT id, description, template_code, article_code, " .
 
 517     "  output_numberformat, output_dateformat, output_longdates " .
 
 518     "FROM language ORDER BY description";
 
 520   my $sth = $dbh->prepare($query);
 
 521   $sth->execute || $form->dberror($query);
 
 525   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 526     push(@{ $ary }, $ref);
 
 531   $main::lxdebug->leave_sub();
 
 541   $main::lxdebug->enter_sub();
 
 543   my ($self, $myconfig, $form) = @_;
 
 545   my $dbh = SL::DB->client->dbh;
 
 548     "SELECT description, template_code, article_code, " .
 
 549     "  output_numberformat, output_dateformat, output_longdates " .
 
 550     "FROM language WHERE id = ?";
 
 551   my $sth = $dbh->prepare($query);
 
 552   $sth->execute($form->{"id"}) || $form->dberror($query . " ($form->{id})");
 
 554   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
 556   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 560   $main::lxdebug->leave_sub();
 
 563 sub get_language_details {
 
 564   $main::lxdebug->enter_sub();
 
 566   my ($self, $myconfig, $form, $id) = @_;
 
 568   my $dbh = SL::DB->client->dbh;
 
 571     "SELECT template_code, " .
 
 572     "  output_numberformat, output_dateformat, output_longdates " .
 
 573     "FROM language WHERE id = ?";
 
 574   my @res = selectrow_query($form, $dbh, $query, $id);
 
 576   $main::lxdebug->leave_sub();
 
 582   $main::lxdebug->enter_sub();
 
 584   my ($self, $myconfig, $form) = @_;
 
 586   SL::DB->client->with_transaction(sub {
 
 587     my $dbh = SL::DB->client->dbh;
 
 588     my (@values, $query);
 
 590     map({ push(@values, $form->{$_}); }
 
 591         qw(description template_code article_code
 
 592            output_numberformat output_dateformat output_longdates));
 
 594     # id is the old record
 
 597         "UPDATE language SET " .
 
 598         "  description = ?, template_code = ?, article_code = ?, " .
 
 599         "  output_numberformat = ?, output_dateformat = ?, " .
 
 600         "  output_longdates = ? " .
 
 602       push(@values, $form->{id});
 
 605         "INSERT INTO language (" .
 
 606         "  description, template_code, article_code, " .
 
 607         "  output_numberformat, output_dateformat, output_longdates" .
 
 608         ") VALUES (?, ?, ?, ?, ?, ?)";
 
 610     do_query($form, $dbh, $query, @values);
 
 612   }) or do { die SL::DB->client->error };
 
 614   $main::lxdebug->leave_sub();
 
 617 sub delete_language {
 
 618   $main::lxdebug->enter_sub();
 
 620   my ($self, $myconfig, $form) = @_;
 
 623   SL::DB->client->with_transaction(sub {
 
 624     my $dbh = SL::DB->client->dbh;
 
 626     foreach my $table (qw(generic_translations units_language)) {
 
 627       $query = qq|DELETE FROM $table WHERE language_id = ?|;
 
 628       do_query($form, $dbh, $query, $form->{"id"});
 
 631     $query = "DELETE FROM language WHERE id = ?";
 
 632     do_query($form, $dbh, $query, $form->{"id"});
 
 634   }) or do { die SL::DB->client->error };
 
 636   $main::lxdebug->leave_sub();
 
 639 sub prepare_template_filename {
 
 640   $main::lxdebug->enter_sub();
 
 642   my ($self, $myconfig, $form) = @_;
 
 644   my ($filename, $display_filename);
 
 646   if ($form->{type} eq "stylesheet") {
 
 647     $filename = "css/$myconfig->{stylesheet}";
 
 648     $display_filename = $myconfig->{stylesheet};
 
 651     $filename = $form->{formname};
 
 653     if ($form->{language}) {
 
 654       my ($id, $template_code) = split(/--/, $form->{language});
 
 655       $filename .= "_${template_code}";
 
 658     if ($form->{printer}) {
 
 659       my ($id, $template_code) = split(/--/, $form->{printer});
 
 660       $filename .= "_${template_code}";
 
 663     $filename .= "." . ($form->{format} eq "html" ? "html" : "tex");
 
 664     if ($form->{"formname"} =~ m|\.\.| || $form->{"formname"} =~ m|^/|) {
 
 665       $filename =~ s|.*/||;
 
 667     $display_filename = $filename;
 
 668     $filename = SL::DB::Default->get->templates . "/$filename";
 
 671   $main::lxdebug->leave_sub();
 
 673   return ($filename, $display_filename);
 
 678   $main::lxdebug->enter_sub();
 
 680   my ($self, $filename) = @_;
 
 682   my ($content, $lines) = ("", 0);
 
 686   if (open(TEMPLATE, $filename)) {
 
 694   $content = Encode::decode('utf-8-strict', $content);
 
 696   $main::lxdebug->leave_sub();
 
 698   return ($content, $lines);
 
 702   $main::lxdebug->enter_sub();
 
 704   my ($self, $filename, $content) = @_;
 
 710   if (open(TEMPLATE, ">", $filename)) {
 
 711     $content = Encode::encode('utf-8-strict', $content);
 
 712     $content =~ s/\r\n/\n/g;
 
 713     print(TEMPLATE $content);
 
 719   $main::lxdebug->leave_sub();
 
 724 sub save_preferences {
 
 725   $main::lxdebug->enter_sub();
 
 727   my ($self, $form) = @_;
 
 729   my $employee = SL::DB::Manager::Employee->find_by(login => $::myconfig{login});
 
 730   $employee->update_attributes(name => $form->{name});
 
 732   my $user = SL::DB::Manager::AuthUser->find_by(login => $::myconfig{login});
 
 733   $user->update_attributes(
 
 735       %{ $user->config_values },
 
 736       map { ($_ => $form->{$_}) } SL::DB::AuthUser::CONFIG_VARS(),
 
 739   $main::lxdebug->leave_sub();
 
 745   $main::lxdebug->enter_sub();
 
 750   my $myconfig = \%main::myconfig;
 
 751   my $form     = $main::form;
 
 753   my $dbh      = $params{dbh} || SL::DB->client->dbh;
 
 755   my $defaults = selectfirst_hashref_query($form, $dbh, qq|SELECT * FROM defaults|) || {};
 
 757   $defaults->{weightunit} ||= 'kg';
 
 759   $main::lxdebug->leave_sub();
 
 765   $main::lxdebug->enter_sub();
 
 767   my ($self, $myconfig, $form) = @_;
 
 769   my $dbh = SL::DB->client->dbh;
 
 771   my $query = qq|SELECT closedto, max_future_booking_interval, revtrans FROM defaults|;
 
 772   my $sth   = $dbh->prepare($query);
 
 773   $sth->execute || $form->dberror($query);
 
 775   ($form->{closedto}, $form->{max_future_booking_interval}, $form->{revtrans}) = $sth->fetchrow_array;
 
 779   $main::lxdebug->leave_sub();
 
 783   $main::lxdebug->enter_sub();
 
 785   my ($self, $myconfig, $form) = @_;
 
 787   SL::DB->client->with_transaction(sub {
 
 788     my $dbh = SL::DB->client->dbh;
 
 790     my ($query, @values);
 
 792     # is currently NEVER trueish (no more hidden revtrans in $form)
 
 793     # if ($form->{revtrans}) {
 
 794     #   $query = qq|UPDATE defaults SET closedto = NULL, revtrans = '1'|;
 
 795     # -> therefore you can only set this to false (which is already the default)
 
 796     # and this flag is currently only checked in gl.pl. TOOD Can probably be removed
 
 798       $query = qq|UPDATE defaults SET closedto = ?, max_future_booking_interval = ?, revtrans = '0'|;
 
 799       @values = (conv_date($form->{closedto}), conv_i($form->{max_future_booking_interval}));
 
 801     # set close in defaults
 
 802     do_query($form, $dbh, $query, @values);
 
 804   }) or do { die SL::DB->client->error };
 
 806   $main::lxdebug->leave_sub();
 
 810   my ($self, $units, $unit_name, $factor) = @_;
 
 812   $factor = 1 unless ($factor);
 
 814   my $unit = $units->{$unit_name};
 
 816   if (!defined($unit) || !$unit->{"base_unit"} ||
 
 817       ($unit_name eq $unit->{"base_unit"})) {
 
 818     return ($unit_name, $factor);
 
 821   return AM->get_base_unit($units, $unit->{"base_unit"}, $factor * $unit->{"factor"});
 
 825   $main::lxdebug->enter_sub();
 
 827   my ($self, $myconfig, $form, $prefix) = @_;
 
 830   my $dbh = SL::DB->client->dbh;
 
 832   my $query = "SELECT *, base_unit AS original_base_unit FROM units";
 
 834   my $sth = prepare_execute_query($form, $dbh, $query);
 
 837   while (my $ref = $sth->fetchrow_hashref()) {
 
 838     $units->{$ref->{"name"}} = $ref;
 
 842   my $query_lang = "SELECT id, template_code FROM language ORDER BY description";
 
 843   $sth = $dbh->prepare($query_lang);
 
 844   $sth->execute() || $form->dberror($query_lang);
 
 846   while (my $ref = $sth->fetchrow_hashref()) {
 
 847     push(@languages, $ref);
 
 851   $query_lang = "SELECT ul.localized, ul.localized_plural, l.id, l.template_code " .
 
 852     "FROM units_language ul " .
 
 853     "LEFT JOIN language l ON ul.language_id = l.id " .
 
 855   $sth = $dbh->prepare($query_lang);
 
 857   foreach my $unit (values(%{$units})) {
 
 858     ($unit->{"${prefix}base_unit"}, $unit->{"${prefix}factor"}) = AM->get_base_unit($units, $unit->{"name"});
 
 860     $unit->{"LANGUAGES"} = {};
 
 861     foreach my $lang (@languages) {
 
 862       $unit->{"LANGUAGES"}->{$lang->{"template_code"}} = { "template_code" => $lang->{"template_code"} };
 
 865     $sth->execute($unit->{"name"}) || $form->dberror($query_lang . " (" . $unit->{"name"} . ")");
 
 866     while (my $ref = $sth->fetchrow_hashref()) {
 
 867       map({ $unit->{"LANGUAGES"}->{$ref->{"template_code"}}->{$_} = $ref->{$_} } keys(%{$ref}));
 
 872   $main::lxdebug->leave_sub();
 
 877 sub retrieve_all_units {
 
 878   $main::lxdebug->enter_sub();
 
 882   if (!$::request->{cache}{all_units}) {
 
 883     $::request->{cache}{all_units} = $self->retrieve_units(\%main::myconfig, $main::form);
 
 886   $main::lxdebug->leave_sub();
 
 888   return $::request->{cache}{all_units};
 
 892 sub translate_units {
 
 893   $main::lxdebug->enter_sub();
 
 895   my ($self, $form, $template_code, $unit, $amount) = @_;
 
 897   my $units = $self->retrieve_units(\%main::myconfig, $form);
 
 899   my $h = $units->{$unit}->{"LANGUAGES"}->{$template_code};
 
 900   my $new_unit = $unit;
 
 902     if (($amount != 1) && $h->{"localized_plural"}) {
 
 903       $new_unit = $h->{"localized_plural"};
 
 904     } elsif ($h->{"localized"}) {
 
 905       $new_unit = $h->{"localized"};
 
 909   $main::lxdebug->leave_sub();
 
 915   $main::lxdebug->enter_sub();
 
 917   my ($self, $myconfig, $form, $units) = @_;
 
 919   my $dbh = SL::DB->client->dbh;
 
 921   map({ $_->{"in_use"} = 0; } values(%{$units}));
 
 923   foreach my $unit (values(%{$units})) {
 
 924     my $base_unit = $unit->{"original_base_unit"};
 
 926       $units->{$base_unit}->{"in_use"} = 1;
 
 927       $units->{$base_unit}->{"DEPENDING_UNITS"} = [] unless ($units->{$base_unit}->{"DEPENDING_UNITS"});
 
 928       push(@{$units->{$base_unit}->{"DEPENDING_UNITS"}}, $unit->{"name"});
 
 929       $base_unit = $units->{$base_unit}->{"original_base_unit"};
 
 933   foreach my $unit (values(%{$units})) {
 
 934     map({ $_ = $dbh->quote($_); } @{$unit->{"DEPENDING_UNITS"}});
 
 936     foreach my $table (qw(parts invoice orderitems)) {
 
 937       my $query = "SELECT COUNT(*) FROM $table WHERE unit ";
 
 939       if (0 == scalar(@{$unit->{"DEPENDING_UNITS"}})) {
 
 940         $query .= "= " . $dbh->quote($unit->{"name"});
 
 942         $query .= "IN (" . $dbh->quote($unit->{"name"}) . "," .
 
 943           join(",", map({ $dbh->quote($_) } @{$unit->{"DEPENDING_UNITS"}})) . ")";
 
 946       my ($count) = $dbh->selectrow_array($query);
 
 947       $form->dberror($query) if ($dbh->err);
 
 950         $unit->{"in_use"} = 1;
 
 956   $main::lxdebug->leave_sub();
 
 959 sub convertible_units {
 
 960   $main::lxdebug->enter_sub();
 
 964   my $filter_unit = shift;
 
 965   my $not_smaller = shift;
 
 969   $filter_unit = $units->{$filter_unit};
 
 971   foreach my $name (sort { lc $a cmp lc $b } keys %{ $units }) {
 
 972     my $unit = $units->{$name};
 
 974     if (($unit->{base_unit} eq $filter_unit->{base_unit}) &&
 
 975         (!$not_smaller || ($unit->{factor} >= $filter_unit->{factor}))) {
 
 976       push @{$conv_units}, $unit;
 
 980   my @sorted = sort { $b->{factor} <=> $a->{factor} } @{ $conv_units };
 
 982   $main::lxdebug->leave_sub();
 
 987 # if $a is translatable to $b, return the factor between them.
 
 990   $main::lxdebug->enter_sub(2);
 
 991   my ($this, $a, $b, $all_units) = @_;
 
 994     $all_units = $this->retrieve_all_units;
 
 997   $main::lxdebug->leave_sub(2) and return 0 unless $a && $b;
 
 998   $main::lxdebug->leave_sub(2) and return 0 unless $all_units->{$a} && $all_units->{$b};
 
 999   $main::lxdebug->leave_sub(2) and return 0 unless $all_units->{$a}{base_unit} eq $all_units->{$b}{base_unit};
 
1000   $main::lxdebug->leave_sub(2) and return $all_units->{$a}{factor} / $all_units->{$b}{factor};
 
1003 sub unit_select_data {
 
1004   $main::lxdebug->enter_sub();
 
1006   my ($self, $units, $selected, $empty_entry, $convertible_into) = @_;
 
1011     push(@{$select}, { "name" => "", "base_unit" => "", "factor" => "", "selected" => "" });
 
1014   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
 
1015     if (!$convertible_into ||
 
1016         ($units->{$convertible_into} &&
 
1017          ($units->{$convertible_into}->{base_unit} eq $units->{$unit}->{base_unit}))) {
 
1018       push @{$select}, { "name"      => $unit,
 
1019                          "base_unit" => $units->{$unit}->{"base_unit"},
 
1020                          "factor"    => $units->{$unit}->{"factor"},
 
1021                          "selected"  => ($unit eq $selected) ? "selected" : "" };
 
1025   $main::lxdebug->leave_sub();
 
1030 sub unit_select_html {
 
1031   $main::lxdebug->enter_sub();
 
1033   my ($self, $units, $name, $selected, $convertible_into) = @_;
 
1035   my $select = "<select name=${name}>";
 
1037   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
 
1038     if (!$convertible_into ||
 
1039         ($units->{$convertible_into} &&
 
1040          ($units->{$convertible_into}->{"base_unit"} eq $units->{$unit}->{"base_unit"}))) {
 
1041       $select .= "<option" . (($unit eq $selected) ? " selected" : "") . ">${unit}</option>";
 
1044   $select .= "</select>";
 
1046   $main::lxdebug->leave_sub();
 
1052   $main::lxdebug->enter_sub();
 
1056   my $units = $self->retrieve_all_units();
 
1061   while (2 <= scalar(@_)) {
 
1062     my $qty  = shift(@_);
 
1063     my $unit = $units->{shift(@_)};
 
1065     croak "No unit defined with name $unit" if (!defined $unit);
 
1068       $base_unit = $unit->{base_unit};
 
1069     } elsif ($base_unit ne $unit->{base_unit}) {
 
1070       croak "Adding values with incompatible base units $base_unit/$unit->{base_unit}";
 
1073     $sum += $qty * $unit->{factor};
 
1076   $main::lxdebug->leave_sub();
 
1082   $main::lxdebug->enter_sub();
 
1084   my ($self, $myconfig, $form, $name, $base_unit, $factor, $languages) = @_;
 
1086   SL::DB->client->with_transaction(sub {
 
1087     my $dbh = SL::DB->client->dbh;
 
1089     my $query = qq|SELECT COALESCE(MAX(sortkey), 0) + 1 FROM units|;
 
1090     my ($sortkey) = selectrow_query($form, $dbh, $query);
 
1092     $query = "INSERT INTO units (name, base_unit, factor, sortkey) " .
 
1093       "VALUES (?, ?, ?, ?)";
 
1094     do_query($form, $dbh, $query, $name, $base_unit, $factor, $sortkey);
 
1097       $query = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
 
1098       my $sth = $dbh->prepare($query);
 
1099       foreach my $lang (@{$languages}) {
 
1100         my @values = ($name, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
 
1101         $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
 
1106   }) or do { die SL::DB->client->error };
 
1108   $main::lxdebug->leave_sub();
 
1112   my ($self, $myconfig, $form, $units, $delete_units) = @_;
 
1113   $main::lxdebug->enter_sub();
 
1115   my $rc = SL::DB->client->with_transaction(\&_save_units, $self, $myconfig, $form, $units, $delete_units);
 
1117   $::lxdebug->leave_sub;
 
1122   my ($self, $myconfig, $form, $units, $delete_units) = @_;
 
1124   my $dbh = SL::DB->client->dbh;
 
1126   my ($base_unit, $unit, $sth, $query);
 
1128   $query = "DELETE FROM units_language";
 
1129   $dbh->do($query) || $form->dberror($query);
 
1131   if ($delete_units && (0 != scalar(@{$delete_units}))) {
 
1132     $query = "DELETE FROM units WHERE name IN (";
 
1133     map({ $query .= "?," } @{$delete_units});
 
1134     substr($query, -1, 1) = ")";
 
1135     $dbh->do($query, undef, @{$delete_units}) ||
 
1136       $form->dberror($query . " (" . join(", ", @{$delete_units}) . ")");
 
1139   $query = "UPDATE units SET name = ?, base_unit = ?, factor = ? WHERE name = ?";
 
1140   $sth = $dbh->prepare($query);
 
1142   my $query_lang = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
 
1143   my $sth_lang = $dbh->prepare($query_lang);
 
1145   foreach $unit (values(%{$units})) {
 
1146     $unit->{"depth"} = 0;
 
1147     my $base_unit = $unit;
 
1148     while ($base_unit->{"base_unit"}) {
 
1150       $base_unit = $units->{$base_unit->{"base_unit"}};
 
1154   foreach $unit (sort({ $a->{"depth"} <=> $b->{"depth"} } values(%{$units}))) {
 
1155     if ($unit->{"LANGUAGES"}) {
 
1156       foreach my $lang (@{$unit->{"LANGUAGES"}}) {
 
1157         next unless ($lang->{"id"} && $lang->{"localized"});
 
1158         my @values = ($unit->{"name"}, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
 
1159         $sth_lang->execute(@values) || $form->dberror($query_lang . " (" . join(", ", @values) . ")");
 
1163     next if ($unit->{"unchanged_unit"});
 
1165     my @values = ($unit->{"name"}, $unit->{"base_unit"}, $unit->{"factor"}, $unit->{"old_name"});
 
1166     $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
 
1170   $sth_lang->finish();
 
1176   $main::lxdebug->enter_sub();
 
1178   my ($self, $myconfig, $form) = @_;
 
1180   my $dbh = SL::DB->client->dbh;
 
1182   my $query = qq|SELECT
 
1186                    round(t.rate * 100, 2) AS rate,
 
1187                    (SELECT accno FROM chart WHERE id = chart_id) AS taxnumber,
 
1188                    (SELECT description FROM chart WHERE id = chart_id) AS account_description,
 
1189                    (SELECT accno FROM chart WHERE id = skonto_sales_chart_id) AS skonto_chart_accno,
 
1190                    (SELECT description FROM chart WHERE id = skonto_sales_chart_id) AS skonto_chart_description,
 
1191                    (SELECT accno FROM chart WHERE id = skonto_purchase_chart_id) AS skonto_chart_purchase_accno,
 
1192                    (SELECT description FROM chart WHERE id = skonto_purchase_chart_id) AS skonto_chart_purchase_description
 
1194                  ORDER BY taxkey, rate|;
 
1196   my $sth = $dbh->prepare($query);
 
1197   $sth->execute || $form->dberror($query);
 
1200   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
1201     push @{ $form->{TAX} }, $ref;
 
1206   $main::lxdebug->leave_sub();
 
1209 sub get_tax_accounts {
 
1210   $main::lxdebug->enter_sub();
 
1212   my ($self, $myconfig, $form) = @_;
 
1214   my $dbh = SL::DB->client->dbh;
 
1216   # get Accounts from chart
 
1217   my $query = qq{ SELECT
 
1219                  accno || ' - ' || description AS taxaccount
 
1221                WHERE link LIKE '%_tax%'
 
1225   my $sth = $dbh->prepare($query);
 
1226   $sth->execute || $form->dberror($query);
 
1228   $form->{ACCOUNTS} = [];
 
1229   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
1230     push @{ $form->{ACCOUNTS} }, $ref;
 
1233   $form->{AR_PAID} = SL::DB::Manager::Chart->get_all(where => [ link => { like => '%AR_paid%' } ], sort_by => 'accno ASC');
 
1234   $form->{AP_PAID} = SL::DB::Manager::Chart->get_all(where => [ link => { like => '%AP_paid%' } ], sort_by => 'accno ASC');
 
1236   $form->{skontochart_value_title_sub} = sub {
 
1240       $item->{accno} .' '. $item->{description},
 
1246   $main::lxdebug->leave_sub();
 
1250   $main::lxdebug->enter_sub();
 
1252   my ($self, $myconfig, $form) = @_;
 
1254   my $dbh = SL::DB->client->dbh;
 
1256   my $query = qq|SELECT
 
1259                    round(rate * 100, 2) AS rate,
 
1262                    (id IN (SELECT tax_id
 
1263                            FROM acc_trans)) AS tax_already_used,
 
1264                    skonto_sales_chart_id,
 
1265                    skonto_purchase_chart_id
 
1269   my $sth = $dbh->prepare($query);
 
1270   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
 
1272   my $ref = $sth->fetchrow_hashref("NAME_lc");
 
1274   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1278   # see if it is used by a taxkey
 
1279   $query = qq|SELECT count(*) FROM taxkeys
 
1280               WHERE tax_id = ? AND chart_id >0|;
 
1282   ($form->{orphaned}) = selectrow_query($form, $dbh, $query, $form->{id});
 
1284   $form->{orphaned} = !$form->{orphaned};
 
1287   if (!$form->{orphaned} ) {
 
1288     $query = qq|SELECT DISTINCT c.id, c.accno
 
1290                 JOIN   tax t ON (t.id = tk.tax_id)
 
1291                 JOIN chart c ON (c.id = tk.chart_id)
 
1292                 WHERE tk.tax_id = ?|;
 
1294     $sth = $dbh->prepare($query);
 
1295     $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
 
1297     $form->{TAXINUSE} = [];
 
1298     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
1299       push @{ $form->{TAXINUSE} }, $ref;
 
1305   $main::lxdebug->leave_sub();
 
1309   my ($self, $myconfig, $form) = @_;
 
1310   $main::lxdebug->enter_sub();
 
1312   my $rc = SL::DB->client->with_transaction(\&_save_tax, $self, $myconfig, $form);
 
1314   $::lxdebug->leave_sub;
 
1319   my ($self, $myconfig, $form) = @_;
 
1322   my $dbh = SL::DB->client->dbh;
 
1324   $form->{rate} = $form->{rate} / 100;
 
1326   my $chart_categories = '';
 
1327   $chart_categories .= 'A' if $form->{asset};
 
1328   $chart_categories .= 'L' if $form->{liability};
 
1329   $chart_categories .= 'Q' if $form->{equity};
 
1330   $chart_categories .= 'I' if $form->{revenue};
 
1331   $chart_categories .= 'E' if $form->{expense};
 
1332   $chart_categories .= 'C' if $form->{costs};
 
1334   my @values = ($form->{taxkey}, $form->{taxdescription}, $form->{rate}, conv_i($form->{chart_id}), conv_i($form->{chart_id}), conv_i($form->{skonto_sales_chart_id}), conv_i($form->{skonto_purchase_chart_id}), $chart_categories);
 
1335   if ($form->{id} ne "") {
 
1336     $query = qq|UPDATE tax SET
 
1341                   taxnumber                = (SELECT accno FROM chart WHERE id = ? ),
 
1342                   skonto_sales_chart_id    = ?,
 
1343                   skonto_purchase_chart_id = ?,
 
1344                   chart_categories         = ?
 
1349     ($form->{id}) = selectfirst_array_query($form, $dbh, qq|SELECT nextval('id')|);
 
1350     $query = qq|INSERT INTO tax (
 
1356                   skonto_sales_chart_id,
 
1357                   skonto_purchase_chart_id,
 
1361                 VALUES (?, ?, ?, ?, (SELECT accno FROM chart WHERE id = ?), ?, ?,  ?, ?)|;
 
1363   push(@values, $form->{id});
 
1364   do_query($form, $dbh, $query, @values);
 
1366   foreach my $language_id (keys %{ $form->{translations} }) {
 
1367     GenericTranslations->save('dbh'              => $dbh,
 
1368                               'translation_type' => 'SL::DB::Tax/taxdescription',
 
1369                               'translation_id'   => $form->{id},
 
1370                               'language_id'      => $language_id,
 
1371                               'translation'      => $form->{translations}->{$language_id});
 
1376   $main::lxdebug->enter_sub();
 
1378   my ($self, $myconfig, $form) = @_;
 
1381   SL::DB->client->with_transaction(sub {
 
1382     $query = qq|DELETE FROM tax WHERE id = ?|;
 
1383     do_query($form, SL::DB->client->dbh, $query, $form->{id});
 
1385   }) or do { die SL::DB->client->error };
 
1387   $main::lxdebug->leave_sub();
 
1390 sub save_price_factor {
 
1391   $main::lxdebug->enter_sub();
 
1393   my ($self, $myconfig, $form) = @_;
 
1395   SL::DB->client->with_transaction(sub {
 
1396     my $dbh = SL::DB->client->dbh;
 
1399     my @values = ($form->{description}, conv_i($form->{factor}));
 
1402       $query = qq|UPDATE price_factors SET description = ?, factor = ? WHERE id = ?|;
 
1403       push @values, conv_i($form->{id});
 
1406       $query = qq|INSERT INTO price_factors (description, factor, sortkey) VALUES (?, ?, (SELECT COALESCE(MAX(sortkey), 0) + 1 FROM price_factors))|;
 
1409     do_query($form, $dbh, $query, @values);
 
1411   }) or do { die SL::DB->client->error };
 
1413   $main::lxdebug->leave_sub();
 
1416 sub get_all_price_factors {
 
1417   $main::lxdebug->enter_sub();
 
1419   my ($self, $myconfig, $form) = @_;
 
1421   my $dbh = SL::DB->client->dbh;
 
1423   $form->{PRICE_FACTORS} = selectall_hashref_query($form, $dbh, qq|SELECT * FROM price_factors ORDER BY sortkey|);
 
1425   $main::lxdebug->leave_sub();
 
1428 sub get_price_factor {
 
1429   $main::lxdebug->enter_sub();
 
1431   my ($self, $myconfig, $form) = @_;
 
1433   # connect to database
 
1434   my $dbh = SL::DB->client->dbh;
 
1436   my $query = qq|SELECT description, factor,
 
1437                    ((SELECT COUNT(*) FROM parts      WHERE price_factor_id = ?) +
 
1438                     (SELECT COUNT(*) FROM invoice    WHERE price_factor_id = ?) +
 
1439                     (SELECT COUNT(*) FROM orderitems WHERE price_factor_id = ?)) = 0 AS orphaned
 
1440                  FROM price_factors WHERE id = ?|;
 
1442   ($form->{description}, $form->{factor}, $form->{orphaned}) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x 4);
 
1444   $main::lxdebug->leave_sub();
 
1447 sub delete_price_factor {
 
1448   $main::lxdebug->enter_sub();
 
1450   my ($self, $myconfig, $form) = @_;
 
1452   SL::DB->client->with_transaction(sub {
 
1453     do_query($form, SL::DB->client->dbh, qq|DELETE FROM price_factors WHERE id = ?|, conv_i($form->{id}));
 
1455   }) or do { die SL::DB->client->error };
 
1457   $main::lxdebug->leave_sub();
 
1460 sub save_warehouse {
 
1461   $main::lxdebug->enter_sub();
 
1463   my ($self, $myconfig, $form) = @_;
 
1465   SL::DB->client->with_transaction(sub {
 
1466     my $dbh = SL::DB->client->dbh;
 
1468     my ($query, @values, $sth);
 
1471       $query        = qq|SELECT nextval('id')|;
 
1472       ($form->{id}) = selectrow_query($form, $dbh, $query);
 
1474       $query        = qq|INSERT INTO warehouse (id, sortkey) VALUES (?, (SELECT COALESCE(MAX(sortkey), 0) + 1 FROM warehouse))|;
 
1475       do_query($form, $dbh, $query, $form->{id});
 
1478     do_query($form, $dbh, qq|UPDATE warehouse SET description = ?, invalid = ? WHERE id = ?|,
 
1479              $form->{description}, $form->{invalid} ? 't' : 'f', conv_i($form->{id}));
 
1481     if (0 < $form->{number_of_new_bins}) {
 
1482       my ($num_existing_bins) = selectfirst_array_query($form, $dbh, qq|SELECT COUNT(*) FROM bin WHERE warehouse_id = ?|, $form->{id});
 
1483       $query = qq|INSERT INTO bin (warehouse_id, description) VALUES (?, ?)|;
 
1484       $sth   = prepare_query($form, $dbh, $query);
 
1486       foreach my $i (1..$form->{number_of_new_bins}) {
 
1487         do_statement($form, $sth, $query, conv_i($form->{id}), "$form->{prefix}" . ($i + $num_existing_bins));
 
1493   }) or do { die SL::DB->client->error };
 
1495   $main::lxdebug->leave_sub();
 
1499   $main::lxdebug->enter_sub();
 
1501   my ($self, $myconfig, $form) = @_;
 
1503   SL::DB->client->with_transaction(sub {
 
1504     my $dbh = SL::DB->client->dbh;
 
1506     my ($query, @values, $sth);
 
1508     @values = map { $form->{"id_${_}"} } grep { $form->{"delete_${_}"} } (1..$form->{rowcount});
 
1511       $query = qq|DELETE FROM bin WHERE id IN (| . join(', ', ('?') x scalar(@values)) . qq|)|;
 
1512       do_query($form, $dbh, $query, @values);
 
1515     $query = qq|UPDATE bin SET description = ? WHERE id = ?|;
 
1516     $sth   = prepare_query($form, $dbh, $query);
 
1518     foreach my $row (1..$form->{rowcount}) {
 
1519       next if ($form->{"delete_${row}"});
 
1521       do_statement($form, $sth, $query, $form->{"description_${row}"}, conv_i($form->{"id_${row}"}));
 
1526   }) or do { die SL::DB->client->error };
 
1528   $main::lxdebug->leave_sub();
 
1531 sub delete_warehouse {
 
1532   $main::lxdebug->enter_sub();
 
1534   my ($self, $myconfig, $form) = @_;
 
1536   my $rc = SL::DB->client->with_transaction(sub {
 
1537     my $dbh = SL::DB->client->dbh;
 
1539     my $id      = conv_i($form->{id});
 
1540     my $query   = qq|SELECT i.bin_id FROM inventory i WHERE i.bin_id IN (SELECT b.id FROM bin b WHERE b.warehouse_id = ?) LIMIT 1|;
 
1541     my ($count) = selectrow_query($form, $dbh, $query, $id);
 
1547     do_query($form, $dbh, qq|DELETE FROM bin       WHERE warehouse_id = ?|, conv_i($form->{id}));
 
1548     do_query($form, $dbh, qq|DELETE FROM warehouse WHERE id           = ?|, conv_i($form->{id}));
 
1553   $main::lxdebug->leave_sub();
 
1558 sub get_all_warehouses {
 
1559   $main::lxdebug->enter_sub();
 
1561   my ($self, $myconfig, $form) = @_;
 
1563   my $dbh = SL::DB->client->dbh;
 
1565   my $query = qq|SELECT w.id, w.description, w.invalid,
 
1566                    (SELECT COUNT(b.description) FROM bin b WHERE b.warehouse_id = w.id) AS number_of_bins
 
1568                  ORDER BY w.sortkey|;
 
1570   $form->{WAREHOUSES} = selectall_hashref_query($form, $dbh, $query);
 
1572   $main::lxdebug->leave_sub();
 
1576   $main::lxdebug->enter_sub();
 
1578   my ($self, $myconfig, $form) = @_;
 
1580   my $dbh = SL::DB->client->dbh;
 
1582   my $id    = conv_i($form->{id});
 
1583   my $query = qq|SELECT w.description, w.invalid
 
1587   my $ref   = selectfirst_hashref_query($form, $dbh, $query, $id);
 
1589   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1593       (   EXISTS(SELECT i.bin_id FROM inventory i WHERE i.bin_id = b.id LIMIT 1)
 
1594        OR EXISTS(SELECT p.bin_id FROM parts     p WHERE p.bin_id = b.id LIMIT 1))
 
1597     WHERE b.warehouse_id = ?
 
1600   $form->{BINS} = selectall_hashref_query($form, $dbh, $query, conv_i($form->{id}));
 
1602   $main::lxdebug->leave_sub();