1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   6 #############################################################################
 
   7 # SQL-Ledger, Accounting
 
   8 # Copyright (c) 1998-2002
 
  10 #  Author: Dieter Simader
 
  11 #   Email: dsimader@sql-ledger.org
 
  12 #     Web: http://www.sql-ledger.org
 
  15 # This program is free software; you can redistribute it and/or modify
 
  16 # it under the terms of the GNU General Public License as published by
 
  17 # the Free Software Foundation; either version 2 of the License, or
 
  18 # (at your option) any later version.
 
  20 # This program is distributed in the hope that it will be useful,
 
  21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  23 # GNU General Public License for more details.
 
  24 # You should have received a copy of the GNU General Public License
 
  25 # along with this program; if not, write to the Free Software
 
  26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
  29 #######################################################################
 
  31 # warehouse and packinglist
 
  33 #######################################################################
 
  35 use List::Util qw(min max first);
 
  36 use POSIX qw(strftime);
 
  46 use SL::ReportGenerator;
 
  52 require "bin/mozilla/common.pl";
 
  53 require "bin/mozilla/reportgenerator.pl";
 
  59 # contents of the "transfer_type" table:
 
  60 #  $locale->text('back')
 
  61 #  $locale->text('correction')
 
  62 #  $locale->text('disposed')
 
  63 #  $locale->text('found')
 
  64 #  $locale->text('missing')
 
  65 #  $locale->text('stock')
 
  66 #  $locale->text('shipped')
 
  67 #  $locale->text('transfer')
 
  68 #  $locale->text('used')
 
  69 #  $locale->text('return_material')
 
  70 #  $locale->text('release_material')
 
  71 #  $locale->text('assembled')
 
  73 # --------------------------------------------------------------------
 
  75 # --------------------------------------------------------------------
 
  77 sub transfer_warehouse_selection {
 
  78   $main::lxdebug->enter_sub();
 
  80   $main::auth->assert('warehouse_management');
 
  82   my $form     = $main::form;
 
  83   my %myconfig = %main::myconfig;
 
  84   my $locale   = $main::locale;
 
  86   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
  89   show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });
 
  91   my $units      = AM->retrieve_units(\%myconfig, $form);
 
  94   if ( $form->{parts_id} ) {
 
  95     $part = SL::DB::Part->new();
 
  96     $part->id($form->{parts_id});
 
 100   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
 
 101   $form->{UNITS} = AM->unit_select_data($units, $form->{unit}, 0, $part ? $part->unit : 0);
 
 103   if (scalar @{ $form->{WAREHOUSES} }) {
 
 104     $form->{warehouse_id} ||= $form->{WAREHOUSES}->[0]->{id};
 
 105     $form->{bin_id}       ||= $form->{WAREHOUSES}->[0]->{BINS}->[0]->{id};
 
 110   if ($form->{trans_type} eq 'removal') {
 
 111     $form->{nextsub} = "removal_parts_selection";
 
 112     $form->{title}   = $locale->text('Removal from Warehouse');
 
 113     $content         = $form->parse_html_template('wh/warehouse_selection');
 
 115   } elsif ($form->{trans_type} eq 'stock') {
 
 116     $form->{title} = $locale->text('Stock');
 
 117     $content       = $form->parse_html_template('wh/warehouse_selection_stock');
 
 119   } elsif (!$form->{trans_type} || ($form->{trans_type} eq 'transfer')) {
 
 120     $form->{nextsub} = "transfer_parts_selection";
 
 121     $form->{title}   = $locale->text('Transfer');
 
 122     $content         = $form->parse_html_template('wh/warehouse_selection');
 
 124   } elsif ($form->{trans_type} eq 'assembly') {
 
 125     $form->{title} = $locale->text('Produce Assembly');
 
 126     $content       = $form->parse_html_template('wh/warehouse_selection_assembly');
 
 132   $main::lxdebug->leave_sub();
 
 135 sub transfer_parts_selection {
 
 136   $main::lxdebug->enter_sub();
 
 138   $main::auth->assert('warehouse_management');
 
 140   my $form     = $main::form;
 
 141   my %myconfig = %main::myconfig;
 
 142   my $locale   = $main::locale;
 
 144   transfer_or_removal_prepare_contents('direction' => 'transfer');
 
 146   $form->{title} = $locale->text('Transfer');
 
 148   print $form->parse_html_template("wh/transfer_parts_selection");
 
 150   $main::lxdebug->leave_sub();
 
 153 sub transfer_or_removal_prepare_contents {
 
 154   $main::lxdebug->enter_sub();
 
 156   $main::auth->assert('warehouse_management');
 
 160   my $form     = $main::form;
 
 161   my %myconfig = %main::myconfig;
 
 162   my $locale   = $main::locale;
 
 164   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
 165                                      'bins'   => 'BINS', });
 
 167   my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
 
 168   $form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);
 
 170   my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];
 
 172   $form->{initial_warehouse_idx} = $warehouse_idx;
 
 173   $form->{warehouse_description} = $warehouse->{description};
 
 174   $warehouse->{selected}         = 1;
 
 176   $form->show_generic_error($locale->text("The source warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });
 
 178   map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit ean);
 
 180   $form->{sort} = 'bindescription';
 
 181   my @contents  = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id},
 
 182                                            "bin_id"       => $form->{bin_id},
 
 183                                            "chargenumber" => $form->{chargenumber},
 
 184                                            "bestbefore"   => $form->{bestbefore},
 
 185                                            "partnumber"   => $form->{partnumber},
 
 186                                            "ean"          => $form->{ean},
 
 187                                            "description"  => $form->{description});
 
 189   if (0 == scalar(@contents)) {
 
 190     $form->show_generic_error($locale->text("The selected warehouse is empty, or no stocked items where found that match the filter settings."));
 
 193   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 195   foreach (@contents) {
 
 196     $_->{qty} = $form->format_amount_units('amount'     => $_->{qty},
 
 197                                            'part_unit'  => $_->{partunit},
 
 198                                            'conv_units' => 'convertible');
 
 199     my $this_unit = $_->{partunit};
 
 201     if ($all_units->{$_->{partunit}} && ($all_units->{g}->{base_unit} eq $all_units->{$_->{partunit}}->{base_unit})) {
 
 205     $_->{UNITS} = AM->unit_select_data($all_units, $this_unit, 0, $_->{partunit});
 
 208   my $transfer_types = WH->retrieve_transfer_types($args{direction});
 
 209   map { $_->{description} = $locale->text($_->{description}) } @{ $transfer_types };
 
 211   $form->{CONTENTS}       = \@contents;
 
 212   $form->{TRANSFER_TYPES} = $transfer_types;
 
 214   $main::lxdebug->leave_sub();
 
 219   $main::lxdebug->enter_sub();
 
 221   $main::auth->assert('warehouse_management');
 
 223   my $form     = $main::form;
 
 224   my %myconfig = %main::myconfig;
 
 225   my $locale   = $main::locale;
 
 227   $form->get_lists('warehouses' => { 'key' => 'WAREHOUSES', 'bins' => 'BINS' });
 
 229   my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
 
 230   $form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);
 
 232   my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];
 
 234   $form->show_generic_error($locale->text("The source warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });
 
 236   map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit);
 
 238   $form->{sort} = 'bindescription';
 
 239   my @contents  = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id});
 
 240   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 244   foreach my $row (1 .. $form->{rowcount}) {
 
 245     $form->{"qty_$row"} =~ s/^\s*//;
 
 246     $form->{"qty_$row"} =~ s/\s*$//;
 
 247     next if (!$form->{"qty_$row"});
 
 249     my $bin_idx = get_bin_idx($warehouse_idx, $form->{"src_bin_id_$row"});
 
 250     $form->show_generic_error($locale->text("The selected bin does not exist.")) if (-1 == $bin_idx);
 
 251     my $bin     = $warehouse->{BINS}->[$bin_idx];
 
 253     my $orig_qty = $form->{"qty_$row"} . " " . $form->{"unit_$row"};
 
 256       'src_warehouse_id' => $form->{warehouse_id},
 
 257       'transfer_type_id' => $form->{transfer_type_id},
 
 260     map { $transfer->{$_} = $form->{"${_}_${row}"} } qw(src_bin_id chargenumber bestbefore parts_id qty dst_warehouse_id dst_bin_id);
 
 264     foreach (@contents) {
 
 265       if (($_->{binid} == $transfer->{src_bin_id}) && ($_->{parts_id} == $transfer->{parts_id}) && ($_->{chargenumber} eq $transfer->{chargenumber}) && $_->{bestbefore} eq $transfer->{bestbefore}) {
 
 272       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 273                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 276     $transfer->{qty}  = $form->parse_amount(\%myconfig, $transfer->{qty}) * $all_units->{$form->{"unit_$row"}}->{factor};
 
 277     $transfer->{qty} /= $all_units->{$entry->{partunit}}->{factor} || 1;
 
 279     if (($entry->{qty} < $transfer->{qty}) || (0 >= $transfer->{qty})) {
 
 280       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 281                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 284     $transfer->{comment} = $form->{comment};
 
 285     $transfer->{change_default_bin} = $form->{change_default_bin};
 
 287     push @transfers, $transfer;
 
 289     $entry->{qty} -= $transfer->{qty};
 
 292   if (!scalar @transfers) {
 
 293     $form->show_generic_information($locale->text('Nothing has been selected for transfer.'));
 
 294     $::dispatcher->end_request;
 
 297   WH->transfer(@transfers);
 
 299   $form->{trans_type}    = 'transfer';
 
 300   $form->{saved_message} = $locale->text('The parts have been transferred.');
 
 302   transfer_warehouse_selection();
 
 304   $main::lxdebug->leave_sub();
 
 307 # --------------------------------------------------------------------
 
 309 # --------------------------------------------------------------------
 
 311 sub transfer_stock_update_part {
 
 312   $main::lxdebug->enter_sub();
 
 314   my $form     = $main::form;
 
 315   my %myconfig = %main::myconfig;
 
 316   my $locale   = $main::locale;
 
 318   $form->{trans_type} = 'stock';
 
 319   $form->{qty}        = $form->parse_amount(\%myconfig, $form->{qty});
 
 321   if (!$form->{partnumber} && !$form->{description} && !$form->{ean}) {
 
 322     delete @{$form}{qw(parts_id partunit ean)};
 
 323     transfer_warehouse_selection();
 
 325   } elsif (($form->{partnumber} && ($form->{partnumber} ne $form->{old_partnumber})) || $form->{description} || $form->{ean}) {
 
 327 #    $form->{no_services}   = 1; # services may now be transfered. fix for Bug 1383.
 
 328     $form->{no_assemblies} = 0; # assemblies duerfen eingelagert werden (z.B. bei retouren)
 
 330     my $parts = Common->retrieve_parts(\%myconfig, $form, 'description', 1);
 
 332     if (!scalar @{ $parts }) {
 
 333       new_item(action => "transfer_stock_update_part");
 
 334     } elsif (scalar @{ $parts } == 1) {
 
 335       @{$form}{qw(parts_id partnumber description ean warehouse_id bin_id)} = @{$parts->[0]}{qw(id partnumber description ean warehouse_id bin_id)};
 
 336       transfer_stock_get_partunit();
 
 337       transfer_warehouse_selection();
 
 340       select_part('transfer_stock_part_selected', @{ $parts });
 
 344     transfer_stock_get_partunit();
 
 345     transfer_warehouse_selection();
 
 348   $main::lxdebug->leave_sub();
 
 351 # --------------------------------------------------------------------
 
 352 # Transfer: assemblies
 
 353 # Dies ist die Auswahlmaske für ein assembly.
 
 354 # Die ist einfach von transfer_assembly_update_part kopiert und nur um den trans_type (assembly) korrigiert worden
 
 355 # Es wäre schön, hier nochmal check_assembly_max_create auf, um die max. Fertigungszahl herauszufinden.
 
 356 # Ich lass das mal als auskommentierte Idee bestehen jb 18.3.09
 
 357 # --------------------------------------------------------------------
 
 359 sub transfer_assembly_update_part {
 
 360   $main::lxdebug->enter_sub();
 
 362   my $form     = $main::form;
 
 363   my %myconfig = %main::myconfig;
 
 364   my $locale   = $main::locale;
 
 366   $form->{trans_type} = 'assembly';
 
 367   $form->{qty}        = $form->parse_amount(\%myconfig, $form->{qty});
 
 369   if (!$form->{partnumber} && !$form->{description}) {
 
 370     delete @{$form}{qw(parts_id partunit)};
 
 371     transfer_warehouse_selection();
 
 373   } elsif (($form->{partnumber} && ($form->{partnumber} ne $form->{old_partnumber})) || $form->{description}) {
 
 374     $form->{assemblies} = 1;
 
 375     $form->{no_assemblies} = 0;
 
 376     my $parts = Common->retrieve_parts(\%myconfig, $form, 'description', 1);
 
 377     if (scalar @{ $parts } == 1) {
 
 378       @{$form}{qw(parts_id partnumber description)} = @{$parts->[0]}{qw(id partnumber description)};
 
 379       transfer_stock_get_partunit();
 
 380       transfer_warehouse_selection();
 
 382       select_part('transfer_stock_part_selected', @{ $parts });
 
 386     transfer_stock_get_partunit();
 
 387     transfer_warehouse_selection();
 
 390 # hier die oben benannte idee
 
 391 #    my $maxcreate = Common->check_assembly_max_create(assembly_id => $form->{parts_id}, dbh => $my_dbh);
 
 392   $main::lxdebug->leave_sub();
 
 395 sub transfer_stock_part_selected {
 
 396   $main::lxdebug->enter_sub();
 
 400   my $form     = $main::form;
 
 402   @{$form}{qw(parts_id partnumber description ean warehouse_id bin_id)} = @{$part}{qw(id partnumber description ean warehouse_id bin_id)};
 
 404   transfer_stock_get_partunit();
 
 405   transfer_warehouse_selection();
 
 407   $main::lxdebug->leave_sub();
 
 410 sub transfer_stock_get_partunit {
 
 411   $main::lxdebug->enter_sub();
 
 413   my $form     = $main::form;
 
 415   if ($form->{parts_id}) {
 
 416     my $part_info     = IC->get_basic_part_info('id' => $form->{parts_id});
 
 417     $form->{partunit} = $part_info->{unit};
 
 420   $main::lxdebug->leave_sub();
 
 423 # vorüberlegung jb 22.2.2009
 
 424 # wir benötigen für diese funktion, die anzahl die vom erzeugnis hergestellt werden soll. vielleicht direkt per js fehleingaben verhindern?
 
 425 # ferner dann nochmal mit check_asssembly_max_create gegenprüfen und dann transaktionssicher wegbuchen.
 
 426 # wir brauchen eine hilfsfunktion, die nee. brauchen wir nicht. der algorithmus läuft genau wie bei check max_create, nur dass hier auch eine lagerbewegung (verbraucht) stattfindet
 
 427 # Manko ist derzeit noch, dass unterschiedliche Lagerplätze, bzw. das Quelllager an sich nicht ausgewählt werden können.
 
 428 # Laut Absprache in KW11 09 Ã¼bernimmt mb hier den rest im April ... jb 18.3.09
 
 430 sub create_assembly {
 
 431   $main::lxdebug->enter_sub();
 
 433   my $form     = $main::form;
 
 434   my %myconfig = %main::myconfig;
 
 435   my $locale   = $main::locale;
 
 437   $form->{qty} = $form->parse_amount(\%myconfig, $form->{qty});
 
 438   if ($form->{qty} <= 0) {
 
 439     $form->show_generic_error($locale->text('Invalid quantity.'), 'back_button' => 1);
 
 441   # TODO Es wäre schön, hier schon die maximale Anzahl der zu fertigenden Erzeugnisse zu haben
 
 442   #else { if ($form->{qty} > $maxcreate) { #s.o.
 
 443   #     $form->show_generic_error($locale->text('Can not create that quantity with current stock'), 'back_button' => 1);
 
 444   #     $form->show_generic_error('Maximale Stückzahl' . $maxcreate , 'back_button' => 1);
 
 448   if (!$form->{warehouse_id} || !$form->{bin_id}) {
 
 449     $form->error($locale->text('The warehouse or the bin is missing.'));
 
 452   if (!$::instance_conf->get_show_bestbefore) {
 
 453       $form->{bestbefore} = '';
 
 456   # WIESO war das nicht vorher schon ein %HASH?? ein hash ist ein hash! das hat mich mehr als eine Stunde gekostet herauszufinden. grr. jb 3.3.2009
 
 457   # Anm. jb 18.3. vielleicht auch nur meine unwissenheit in perl-datenstrukturen
 
 459     'transfer_type'    => 'assembly',
 
 460     'login'            => $::myconfig{login},
 
 461     'dst_warehouse_id' => $form->{warehouse_id},
 
 462     'dst_bin_id'       => $form->{bin_id},
 
 463     'chargenumber'     => $form->{chargenumber},
 
 464     'bestbefore'       => $form->{bestbefore},
 
 465     'assembly_id'      => $form->{parts_id},
 
 466     'qty'              => $form->{qty},
 
 467     'unit'             => $form->{unit},
 
 468     'comment'          => $form->{comment}
 
 471   my $ret = WH->transfer_assembly (%TRANSFER);
 
 472   # Frage: Ich pack in den return-wert auch gleich die Fehlermeldung. Irgendwelche Nummern als Fehlerkonstanten definieren find ich auch nicht besonders schick...
 
 475     # Die locale-Funktion kann keine Double-Quotes escapen, deswegen hier erstmal so (ein wahrscheinlich immerwährender Hotfix) s.a. Frage davor jb 25.4.09
 
 476     $form->show_generic_error($ret, 'back_button' => 1);
 
 479   delete @{$form}{qw(parts_id partnumber description qty unit chargenumber bestbefore comment)};
 
 481   $form->{saved_message} = $locale->text('The assembly has been created.');
 
 482   $form->{trans_type}    = 'assembly';
 
 484   transfer_warehouse_selection();
 
 486   $main::lxdebug->leave_sub();
 
 490   $main::lxdebug->enter_sub();
 
 492   my $form     = $main::form;
 
 493   my %myconfig = %main::myconfig;
 
 494   my $locale   = $main::locale;
 
 496   $form->{qty} = $form->parse_amount(\%myconfig, $form->{qty});
 
 498   if ($form->{qty} <= 0) {
 
 499     $form->show_generic_error($locale->text('Invalid quantity.'), 'back_button' => 1);
 
 502   if (!$form->{warehouse_id} || !$form->{bin_id}) {
 
 503     $form->error($locale->text('The warehouse or the bin is missing.'));
 
 507     'transfer_type'    => 'stock',
 
 508     'dst_warehouse_id' => $form->{warehouse_id},
 
 509     'dst_bin_id'       => $form->{bin_id},
 
 510     'chargenumber'     => $form->{chargenumber},
 
 511     'bestbefore'       => $form->{bestbefore},
 
 512     'parts_id'         => $form->{parts_id},
 
 513     'qty'              => $form->{qty},
 
 514     'unit'             => $form->{unit},
 
 515     'comment'          => $form->{comment},
 
 518   WH->transfer($transfer);
 
 520   delete @{$form}{qw(parts_id partnumber description qty unit chargenumber bestbefore comment ean)};
 
 522   $form->{saved_message} = $locale->text('The parts have been stocked.');
 
 523   $form->{trans_type}    = 'stock';
 
 525   transfer_warehouse_selection();
 
 527   $main::lxdebug->leave_sub();
 
 530 # --------------------------------------------------------------------
 
 532 # --------------------------------------------------------------------
 
 534 sub removal_parts_selection {
 
 535   $main::lxdebug->enter_sub();
 
 537   $main::auth->assert('warehouse_management');
 
 539   my $form     = $main::form;
 
 540   my %myconfig = %main::myconfig;
 
 541   my $locale   = $main::locale;
 
 543   transfer_or_removal_prepare_contents('direction' => 'out');
 
 545   $form->{title} = $locale->text('Removal');
 
 547   print $form->parse_html_template("wh/removal_parts_selection");
 
 549   $main::lxdebug->leave_sub();
 
 553   $main::lxdebug->enter_sub();
 
 555   $main::auth->assert('warehouse_management');
 
 557   my $form     = $main::form;
 
 558   my %myconfig = %main::myconfig;
 
 559   my $locale   = $main::locale;
 
 561   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
 562                                      'bins'   => 'BINS', });
 
 564   my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
 
 565   $form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);
 
 567   my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];
 
 569   $form->show_generic_error($locale->text("The warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });
 
 571   map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit);
 
 573   $form->{sort} = 'bindescription';
 
 574   my @contents  = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id});
 
 575   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 579   foreach my $row (1 .. $form->{rowcount}) {
 
 580     $form->{"qty_$row"} =~ s/^\s*//;
 
 581     $form->{"qty_$row"} =~ s/\s*$//;
 
 582     next if (!$form->{"qty_$row"});
 
 584     my $bin_idx = get_bin_idx($warehouse_idx, $form->{"src_bin_id_$row"});
 
 585     $form->show_generic_error($locale->text("The selected bin does not exist.")) if (-1 == $bin_idx);
 
 586     my $bin     = $warehouse->{BINS}->[$bin_idx];
 
 588     my $orig_qty = $form->{"qty_$row"} . " " . $form->{"unit_$row"};
 
 591       'src_warehouse_id' => $form->{warehouse_id},
 
 592       'transfer_type_id' => $form->{transfer_type_id},
 
 595     map { $transfer->{$_} = $form->{"${_}_${row}"} } qw(src_bin_id chargenumber bestbefore parts_id qty);
 
 599     foreach (@contents) {
 
 600       if (($_->{binid} == $transfer->{src_bin_id}) && ($_->{parts_id} == $transfer->{parts_id}) && ($_->{chargenumber} eq $transfer->{chargenumber}) && ($_->{bestbefore} eq $transfer->{bestbefore})) {
 
 607       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 608                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 611     $transfer->{qty}  = $form->parse_amount(\%myconfig, $transfer->{qty}) * $all_units->{$form->{"unit_$row"}}->{factor};
 
 612     $transfer->{qty} /= $all_units->{$entry->{partunit}}->{factor} || 1;
 
 614     if (($entry->{qty} < $transfer->{qty}) || (0 >= $transfer->{qty})) {
 
 615       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 616                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 619     $transfer->{comment} = $form->{comment};
 
 621     push @transfers, $transfer;
 
 623     $entry->{qty} -= $transfer->{qty};
 
 626   if (!scalar @transfers) {
 
 627     $form->show_generic_information($locale->text('Nothing has been selected for removal.'));
 
 628     $::dispatcher->end_request;
 
 631   WH->transfer(@transfers);
 
 633   $form->{trans_type}    = 'removal';
 
 634   $form->{saved_message} = $locale->text('The parts have been removed.');
 
 636   transfer_warehouse_selection();
 
 638   $main::lxdebug->leave_sub();
 
 641 # --------------------------------------------------------------------
 
 643 # --------------------------------------------------------------------
 
 646   $main::lxdebug->enter_sub();
 
 648   $main::auth->assert('warehouse_management');
 
 650   my $form     = $main::form;
 
 651   my %myconfig = %main::myconfig;
 
 652   my $locale   = $main::locale;
 
 654   $form->{title} = $locale->text('Report about warehouse transactions');
 
 655   $form->get_lists('warehouses' => { 'key'  => 'WAREHOUSES',
 
 656                                      'bins' => 'BINS', });
 
 658   show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });
 
 661   print $form->parse_html_template("wh/journal_filter", { "UNITS" => AM->unit_select_data(AM->retrieve_units(\%myconfig, $form)) });
 
 663   $main::lxdebug->leave_sub();
 
 666 sub generate_journal {
 
 667   $main::lxdebug->enter_sub();
 
 669   $main::auth->assert('warehouse_management');
 
 671   my $form     = $main::form;
 
 672   my %myconfig = %main::myconfig;
 
 673   my $locale   = $main::locale;
 
 675   $form->{title}   = $locale->text("WHJournal");
 
 676   $form->{sort}  ||= 'date';
 
 678   $form->{report_generator_output_format} = 'HTML' if !$form->{report_generator_output_format};
 
 681   my @columns = qw(trans_id date warehouse_from bin_from warehouse_to bin_to partnumber type_and_classific partdescription chargenumber bestbefore trans_type comment qty unit partunit employee oe_id projectnumber);
 
 684   map { $filter{$_} = $form->{$_} if ($form->{$_}) } qw(warehouse_id bin_id classification_id partnumber description chargenumber bestbefore);
 
 686   $filter{qty_op} = WH->convert_qty_op($form->{qty_op});
 
 687   if ($filter{qty_op}) {
 
 688     $form->isblank("qty",      $locale->text('Quantity missing.'));
 
 689     $form->isblank("qty_unit", $locale->text('Unit missing.'));
 
 691     $filter{qty}      = $form->{qty};
 
 692     $filter{qty_unit} = $form->{qty_unit};
 
 696   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 698   my @hidden_variables = map { "l_${_}" } @columns;
 
 699   push @hidden_variables, qw(warehouse_id bin_id partnumber description chargenumber bestbefore qty_op qty qty_unit fromdate todate);
 
 700   push @hidden_variables, qw(classification_id);
 
 703     'date'            => { 'text' => $locale->text('Date'), },
 
 704     'trans_id'        => { 'text' => $locale->text('Trans Id'), },
 
 705     'trans_type'      => { 'text' => $locale->text('Trans Type'), },
 
 706     'comment'         => { 'text' => $locale->text('Comment'), },
 
 707     'warehouse_from'  => { 'text' => $locale->text('Warehouse From'), },
 
 708     'warehouse_to'    => { 'text' => $locale->text('Warehouse To'), },
 
 709     'bin_from'        => { 'text' => $locale->text('Bin From'), },
 
 710     'bin_to'          => { 'text' => $locale->text('Bin To'), },
 
 711     'partnumber'      => { 'text' => $locale->text('Part Number'), },
 
 713                       => { 'text' => $locale->text('Type'), },
 
 714     'partdescription' => { 'text' => $locale->text('Part Description'), },
 
 715     'chargenumber'    => { 'text' => $locale->text('Charge Number'), },
 
 716     'bestbefore'      => { 'text' => $locale->text('Best Before'), },
 
 717     'qty'             => { 'text' => $locale->text('Qty'), },
 
 718     'unit'            => { 'text' => $locale->text('Part Unit'), },
 
 719     'partunit'        => { 'text' => $locale->text('Unit'), },
 
 720     'employee'        => { 'text' => $locale->text('Employee'), },
 
 721     'projectnumber'   => { 'text' => $locale->text('Project Number'), },
 
 722     'oe_id'           => { 'text' => $locale->text('Document'), },
 
 725   my $href = build_std_url('action=generate_journal', grep { $form->{$_} } @hidden_variables);
 
 726   my $page = $::form->{page} || 1;
 
 727   map { $column_defs{$_}->{link} = $href ."&page=".$page. "&sort=${_}&order=" . Q($_ eq $form->{sort} ? 1 - $form->{order} : $form->{order}) } @columns;
 
 729   my %column_alignment = map { $_ => 'right' } qw(qty);
 
 731   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 732   $column_defs{type_and_classific}->{visible} = 1;
 
 733   $column_defs{type_and_classific}->{link} ='';
 
 735   $report->set_columns(%column_defs);
 
 736   $report->set_column_order(@columns);
 
 738   $report->set_export_options('generate_journal', @hidden_variables, qw(sort order));
 
 740   $report->set_sort_indicator($form->{sort}, $form->{order});
 
 742   $report->set_options('output_format'        => 'HTML',
 
 743                        'title'                => $form->{title},
 
 744                        'attachment_basename'  => strftime($locale->text('warehouse_journal_list') . '_%Y%m%d', localtime time));
 
 745   $report->set_options_from_form();
 
 746   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
 748   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 749   my @contents  = WH->get_warehouse_journal(%filter);
 
 751   my %doc_types = ( 'sales_quotation'         => { script => 'oe', title => $locale->text('Sales quotation') },
 
 752                     'sales_order'             => { script => 'oe', title => $locale->text('Sales Order') },
 
 753                     'request_quotation'       => { script => 'oe', title => $locale->text('Request quotation') },
 
 754                     'purchase_order'          => { script => 'oe', title => $locale->text('Purchase Order') },
 
 755                     'sales_delivery_order'    => { script => 'do', title => $locale->text('Sales delivery order') },
 
 756                     'purchase_delivery_order' => { script => 'do', title => $locale->text('Purchase delivery order') },
 
 757                     'sales_invoice'           => { script => 'is', title => $locale->text('Sales Invoice') },
 
 758                     'purchase_invoice'        => { script => 'ir', title => $locale->text('Purchase Invoice') },
 
 762   $allrows = 1 if $form->{report_generator_output_format} ne 'HTML' ;
 
 766   $pages->{per_page}        = $::form->{per_page} || 15;
 
 767   my $first_nr = ($page - 1) * $pages->{per_page};
 
 768   my $last_nr  = $first_nr + $pages->{per_page};
 
 771   foreach my $entry (@contents) {
 
 772     $entry->{type_and_classific} = $::request->presenter->type_abbreviation($entry->{part_type}).
 
 773                                    $::request->presenter->classification_abbreviation($entry->{classification_id});
 
 774     $entry->{qty}        = $form->format_amount_units('amount'     => $entry->{qty},
 
 775                                                       'part_unit'  => $entry->{partunit},
 
 776                                                       'conv_units' => 'convertible');
 
 777     $entry->{trans_type} = $locale->text($entry->{trans_type});
 
 781     foreach my $column (@columns) {
 
 783         'data'  => $entry->{$column},
 
 784         'align' => $column_alignment{$column},
 
 788     $row->{trans_type}->{raw_data} = $entry->{trans_type};
 
 790     if ($form->{l_oe_id}) {
 
 791       $row->{oe_id}->{data} = '';
 
 792       my $info              = $entry->{oe_id_info};
 
 794       if ($info && $info->{id} && $info->{type} && $doc_types{$info->{type}}) {
 
 795         $row->{oe_id} = { data => $doc_types{ $info->{type} }->{title} . ' ' . $info->{number},
 
 796                           link => build_std_url('script=' . $doc_types{ $info->{type} }->{script} . '.pl', 'action=edit', 'id=' . $info->{id}, 'type=' . $info->{type}) };
 
 800     if ( $allrows || ($idx >= $first_nr && $idx < $last_nr )) {
 
 801        $report->add_data($row);
 
 807       $pages->{max}  = SL::DB::Helper::Paginated::ceil($idx, $pages->{per_page}) || 1;
 
 808       $pages->{page} = $page < 1 ? 1: $page > $pages->{max} ? $pages->{max}: $page;
 
 809       $pages->{common} = [ grep { $_->{visible} } @{ SL::DB::Helper::Paginated::make_common_pages($pages->{page}, $pages->{max}) } ];
 
 811       $report->set_options('raw_bottom_info_text' => $form->parse_html_template('common/paginate',
 
 812                                                             { 'pages' => $pages , 'base_url' => $href}) );
 
 814   $report->generate_with_headers();
 
 816   $main::lxdebug->leave_sub();
 
 819 # --------------------------------------------------------------------
 
 821 # --------------------------------------------------------------------
 
 824   $main::lxdebug->enter_sub();
 
 826   $main::auth->assert('warehouse_contents | warehouse_management');
 
 828   my $form     = $main::form;
 
 829   my %myconfig = %main::myconfig;
 
 830   my $locale   = $main::locale;
 
 832   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
 833                                      'bins'   => 'BINS', });
 
 835   show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });
 
 837   $form->{title}   = $locale->text("Report about warehouse contents");
 
 840   print $form->parse_html_template("wh/report_filter",
 
 841                                    { "nextsub"    => "generate_report",
 
 842                                      "WAREHOUSES" => $form->{WAREHOUSES},
 
 843                                      "UNITS"      => AM->unit_select_data(AM->retrieve_units(\%myconfig, $form)) });
 
 845   $main::lxdebug->leave_sub();
 
 848 sub generate_report {
 
 849   $main::lxdebug->enter_sub();
 
 851   $main::auth->assert('warehouse_contents | warehouse_management');
 
 853   my $form     = $main::form;
 
 854   my %myconfig = %main::myconfig;
 
 855   my $locale   = $main::locale;
 
 857   $form->{title}   = $locale->text("Report about warehouse contents");
 
 858   $form->{sort}  ||= 'partnumber';
 
 859   $form->{sort}  ||= 'partunit';
 
 860   my $sort_col     = $form->{sort};
 
 863   my @columns = qw(warehousedescription bindescription partnumber type_and_classific partdescription chargenumber bestbefore comment qty partunit stock_value);
 
 866   map { $filter{$_} = $form->{$_} if ($form->{$_}) } qw(warehouse_id bin_id classification_id partnumber description chargenumber bestbefore date include_invalid_warehouses);
 
 868   # show filter stuff also in report
 
 870   my $currentdate = $form->current_date(\%myconfig);
 
 871   push @options, $locale->text('Printdate') . " : ".$locale->date(\%myconfig, $currentdate, 1);
 
 873   # dispatch all options
 
 874   my $dispatch_options = {
 
 875    warehouse_id   => sub { push @options, $locale->text('Warehouse') . " : " .
 
 876                                             SL::DB::Manager::Warehouse->find_by(id => $form->{warehouse_id})->description},
 
 877    bin_id         => sub { push @options, $locale->text('Bin') . " : " .
 
 878                                             SL::DB::Manager::Bin->find_by(id => $form->{bin_id})->description},
 
 879    partnumber     => sub { push @options, $locale->text('Partnumber')     . " : $form->{partnumber}"},
 
 880    classification_id => sub { push @options, $locale->text('Parts Classification'). " : ".
 
 881                                                SL::DB::Manager::PartClassification->get_first(where => [ id => $form->{classification_id} ] )->description; },
 
 882    description    => sub { push @options, $locale->text('Description')    . " : $form->{description}"},
 
 883    chargenumber   => sub { push @options, $locale->text('Charge Number')  . " : $form->{chargenumber}"},
 
 884    bestbefore     => sub { push @options, $locale->text('Best Before')    . " : $form->{bestbefore}"},
 
 885    include_invalid_warehouses    => sub { push @options, $locale->text('Include invalid warehouses ')},
 
 887   foreach (keys %filter) {
 
 888    $dispatch_options->{$_}->() if $dispatch_options->{$_};
 
 890   push @options, $locale->text('Stock Qty for Date') . " " . $locale->date(\%myconfig, $form->{date}?$form->{date}:$currentdate, 1);
 
 892   # / end show filter stuff also in report
 
 894   $filter{qty_op} = WH->convert_qty_op($form->{qty_op});
 
 895   if ($filter{qty_op}) {
 
 896     $form->isblank("qty",      $locale->text('Quantity missing.'));
 
 897     $form->isblank("qty_unit", $locale->text('Unit missing.'));
 
 899     $filter{qty}      = $form->{qty};
 
 900     $filter{qty_unit} = $form->{qty_unit};
 
 904   $form->{subtotal} = '' if (!first { $_ eq $sort_col } qw(partnumber partdescription));
 
 906   $form->{report_generator_output_format} = 'HTML' if !$form->{report_generator_output_format};
 
 907   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 909   my @hidden_variables = map { "l_${_}" } @columns;
 
 910   push @hidden_variables, qw(warehouse_id bin_id partnumber partstypes_id description chargenumber bestbefore qty_op qty qty_unit partunit l_warehousedescription l_bindescription);
 
 911   push @hidden_variables, qw(include_empty_bins subtotal include_invalid_warehouses date);
 
 912   push @hidden_variables, qw(classification_id);
 
 915     'warehousedescription' => { 'text' => $locale->text('Warehouse'), },
 
 916     'bindescription'       => { 'text' => $locale->text('Bin'), },
 
 917     'partnumber'           => { 'text' => $locale->text('Part Number'), },
 
 918     'type_and_classific'   => { 'text' => $locale->text('Type'), },
 
 919     'partdescription'      => { 'text' => $locale->text('Part Description'), },
 
 920     'chargenumber'         => { 'text' => $locale->text('Charge Number'), },
 
 921     'bestbefore'           => { 'text' => $locale->text('Best Before'), },
 
 922     'qty'                  => { 'text' => $locale->text('Qty'), },
 
 923     'partunit'             => { 'text' => $locale->text('Unit'), },
 
 924     'stock_value'          => { 'text' => $locale->text('Stock value'), },
 
 927   my $href = build_std_url('action=generate_report', grep { $form->{$_} } @hidden_variables);
 
 928   my $page = $::form->{page} || 1;
 
 929   map { $column_defs{$_}->{link} = $href . "&page=".$page."&sort=${_}&order=" . Q($_ eq $sort_col ? 1 - $form->{order} : $form->{order}) } @columns;
 
 931   my %column_alignment = map { $_ => 'right' } qw(qty stock_value);
 
 933   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 935   $column_defs{type_and_classific}->{visible} = 1;
 
 936   $column_defs{type_and_classific}->{link} ='';
 
 938   $report->set_columns(%column_defs);
 
 939   $report->set_column_order(@columns);
 
 941   $report->set_export_options('generate_report', @hidden_variables, qw(sort order));
 
 943   $report->set_sort_indicator($sort_col, $form->{order});
 
 945   $report->set_options('top_info_text'        => join("\n", @options),
 
 946                        'output_format'        => 'HTML',
 
 947                        'title'                => $form->{title},
 
 948                        'attachment_basename'  => strftime($locale->text('warehouse_report_list') . '_%Y%m%d', localtime time));
 
 949   $report->set_options_from_form();
 
 950   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
 952   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 953   my @contents  = WH->get_warehouse_report(%filter);
 
 957   my @subtotals_columns = qw(qty stock_value);
 
 958   my %subtotals         = map { $_ => 0 } @subtotals_columns;
 
 960   my $total_stock_value = 0;
 
 963   $allrows = 1 if $form->{report_generator_output_format} ne 'HTML' ;
 
 967   $pages->{per_page}        = $::form->{per_page} || 20;
 
 968   my $first_nr = ($page - 1) * $pages->{per_page};
 
 969   my $last_nr  = $first_nr + $pages->{per_page};
 
 971   foreach my $entry (@contents) {
 
 973     $entry->{type_and_classific} = $::request->presenter->type_abbreviation($entry->{part_type}).
 
 974                                    $::request->presenter->classification_abbreviation($entry->{classification_id});
 
 975     map { $subtotals{$_} += $entry->{$_} } @subtotals_columns;
 
 976     $total_stock_value   += $entry->{stock_value} * 1;
 
 977     $entry->{qty}         = $form->format_amount(\%myconfig, $entry->{qty});
 
 978 #    $entry->{qty}         = $form->format_amount_units('amount'     => $entry->{qty},
 
 979 #                                                       'part_unit'  => $entry->{partunit},
 
 980 #                                                       'conv_units' => 'convertible');
 
 981     $entry->{stock_value} = $form->format_amount(\%myconfig, $entry->{stock_value} * 1, 2);
 
 983     my $row_set = [ { map { $_ => { 'data' => $entry->{$_}, 'align' => $column_alignment{$_} } } @columns } ];
 
 985     if ( ($form->{subtotal} eq 'Y' && !$form->{report_generator_csv_options_for_import} )
 
 986         && (($idx == (scalar @contents - 1))
 
 987             || ($entry->{$sort_col} ne $contents[$idx + 1]->{$sort_col}))) {
 
 989       my $row = { map { $_ => { 'data' => '', 'class' => 'listsubtotal', 'align' => $column_alignment{$_}, } } @columns };
 
 990       $row->{qty}->{data}         = $form->format_amount(\%myconfig, $subtotals{qty});
 
 991 #      $row->{qty}->{data}         = $form->format_amount_units('amount'     => $subtotals{qty} * 1,
 
 992 #                                                               'part_unit'  => $entry->{partunit},
 
 993 #                                                               'conv_units' => 'convertible');
 
 994       $row->{stock_value}->{data} = $form->format_amount(\%myconfig, $subtotals{stock_value} * 1, 2);
 
 996       %subtotals                  = map { $_ => 0 } @subtotals_columns;
 
 998       push @{ $row_set }, $row;
 
1001     if ( $allrows || ($idx >= $first_nr && $idx < $last_nr )) {
 
1002       $report->add_data($row_set);
 
1007   if ( $column_defs{stock_value}->{visible} && !$form->{report_generator_csv_options_for_import} ) {
 
1008     $report->add_separator();
 
1010     my $row                      = { map { $_ => { 'data' => '', 'class' => 'listsubtotal', } } @columns };
 
1012     my $left_col                 = first { $column_defs{$_}->{visible} } @columns;
 
1014     $row->{$left_col}->{data}    = $locale->text('Total stock value');
 
1015     $row->{stock_value}->{data}  = $form->format_amount(\%myconfig, $total_stock_value, 2);
 
1016     $row->{stock_value}->{align} = 'right';
 
1018     $report->add_data($row);
 
1021   $report->generate_with_headers();
 
1023   $main::lxdebug->leave_sub();
 
1026 # --------------------------------------------------------------------
 
1028 # --------------------------------------------------------------------
 
1030 sub show_no_warehouses_error {
 
1031   $main::lxdebug->enter_sub();
 
1033   my $form     = $main::form;
 
1034   my %myconfig = %main::myconfig;
 
1035   my $locale   = $main::locale;
 
1037   my $msg = $locale->text('No warehouse has been created yet or the quantity of the bins is not configured yet.') . ' ';
 
1039   if ($main::auth->check_right($::myconfig{login}, 'config')) {
 
1040     $msg .= $locale->text('You can create warehouses and bins via the menu "System -> Warehouses".');
 
1042     $msg .= $locale->text('Please ask your administrator to create warehouses and bins.');
 
1045   $form->show_generic_error($msg);
 
1047   $main::lxdebug->leave_sub();
 
1050 sub get_warehouse_idx {
 
1051   my ($warehouse_id) = @_;
 
1053   my $form     = $main::form;
 
1055   for (my $i = 0; $i < scalar @{$form->{WAREHOUSES}}; $i++) {
 
1056     return $i if ($form->{WAREHOUSES}->[$i]->{id} == $warehouse_id);
 
1063   my ($warehouse_index, $bin_id) = @_;
 
1065   my $form     = $main::form;
 
1067   my $warehouse = $form->{WAREHOUSES}->[$warehouse_index];
 
1069   return -1 if (!$warehouse);
 
1071   for (my $i = 0; $i < scalar @{ $warehouse->{BINS} }; $i++) {
 
1072     return $i if ($warehouse->{BINS}->[$i]->{id} == $bin_id);
 
1079   $main::lxdebug->enter_sub();
 
1082   my $form     = $main::form;
 
1085   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
1086   $form->{callback}     = $form->escape("$form->{script}?action=$params{action}", 1);
 
1088   # save all form variables except action in a previousform variable
 
1089   my $previousform = join '&', map { my $value = $form->{$_}; $value =~ s/&/%26/; "$_=$value" } grep { !/action/ } keys %$form;
 
1092 #  push @HIDDENS,      { 'name' => 'previousform', 'value' => $form->escape($previousform, 1) };
 
1093   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} }, qw(partnumber description unit vc sellprice ean);
 
1094   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
 
1095   push @HIDDENS,      { 'name' => 'notes',        'value' => $form->{longdescription} };
 
1098   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
 
1100   $main::lxdebug->leave_sub();
 
1104   my $form     = $main::form;
 
1105   call_sub($form->{update_nextsub} || $form->{nextsub});
 
1109   my $form     = $main::form;
 
1110   call_sub($form->{continue_nextsub} || $form->{nextsub});
 
1114   my $form     = $main::form;
 
1115   call_sub($form->{stock_nextsub} || $form->{nextsub});
 
1124 bin/mozilla/wh.pl - Warehouse frontend.
 
1132 call new item dialogue from warehouse masks.
 
1135   action  => name of sub to be called when new item is done