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);
 
  44 use SL::Helper::Flash qw(flash_later);
 
  48 use SL::Helper::Inventory qw(produce_assembly);
 
  49 use SL::Locale::String qw(t8);
 
  50 use SL::ReportGenerator;
 
  51 use SL::Presenter::Tag qw(checkbox_tag);
 
  52 use SL::Presenter::Part;
 
  58 require "bin/mozilla/common.pl";
 
  59 require "bin/mozilla/reportgenerator.pl";
 
  65 # contents of the "transfer_type" table:
 
  66 #  $locale->text('back')
 
  67 #  $locale->text('correction')
 
  68 #  $locale->text('disposed')
 
  69 #  $locale->text('found')
 
  70 #  $locale->text('missing')
 
  71 #  $locale->text('stock')
 
  72 #  $locale->text('shipped')
 
  73 #  $locale->text('transfer')
 
  74 #  $locale->text('used')
 
  75 #  $locale->text('return_material')
 
  76 #  $locale->text('release_material')
 
  77 #  $locale->text('assembled')
 
  78 #  $locale->text('stocktaking')
 
  80 # --------------------------------------------------------------------
 
  82 # --------------------------------------------------------------------
 
  84 sub transfer_warehouse_selection {
 
  85   $main::lxdebug->enter_sub();
 
  87   $main::auth->assert('warehouse_management');
 
  89   my $form     = $main::form;
 
  90   my %myconfig = %main::myconfig;
 
  91   my $locale   = $main::locale;
 
  93   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
  96   show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });
 
  98   my $units      = AM->retrieve_units(\%myconfig, $form);
 
 101   if ( $form->{parts_id} ) {
 
 102     $part = SL::DB::Part->new();
 
 103     $part->id($form->{parts_id});
 
 107   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
 
 108   $form->{UNITS} = AM->unit_select_data($units, $form->{unit}, 0, $part ? $part->unit : 0);
 
 110   if (scalar @{ $form->{WAREHOUSES} }) {
 
 111     $form->{warehouse_id} ||= $form->{WAREHOUSES}->[0]->{id};
 
 112     $form->{bin_id}       ||= $form->{WAREHOUSES}->[0]->{BINS}->[0]->{id};
 
 117   if ($form->{trans_type} eq 'removal') {
 
 118     setup_wh_transfer_warehouse_selection_action_bar("removal_parts_selection");
 
 119     $form->{title}   = $locale->text('Removal from Warehouse');
 
 120     $content         = $form->parse_html_template('wh/warehouse_selection');
 
 122   } elsif (!$form->{trans_type} || ($form->{trans_type} eq 'transfer')) {
 
 123     setup_wh_transfer_warehouse_selection_action_bar("transfer_parts_selection");
 
 124     $form->{title}   = $locale->text('Transfer');
 
 125     $content         = $form->parse_html_template('wh/warehouse_selection');
 
 127   } elsif ($form->{trans_type} eq 'assembly') {
 
 128     setup_wh_transfer_warehouse_selection_assembly_action_bar();
 
 129     $form->{title} = $locale->text('Produce Assembly');
 
 130     $content       = $form->parse_html_template('wh/warehouse_selection_assembly');
 
 136   $main::lxdebug->leave_sub();
 
 139 sub transfer_parts_selection {
 
 140   $main::lxdebug->enter_sub();
 
 142   $main::auth->assert('warehouse_management');
 
 144   my $form     = $main::form;
 
 145   my %myconfig = %main::myconfig;
 
 146   my $locale   = $main::locale;
 
 148   transfer_or_removal_prepare_contents('direction' => 'transfer');
 
 150   setup_wh_transfer_parts_action_bar();
 
 152   $form->{title} = $locale->text('Transfer');
 
 154   print $form->parse_html_template("wh/transfer_parts_selection");
 
 156   $main::lxdebug->leave_sub();
 
 159 sub transfer_or_removal_prepare_contents {
 
 160   $main::lxdebug->enter_sub();
 
 162   $main::auth->assert('warehouse_management');
 
 166   my $form     = $main::form;
 
 167   my %myconfig = %main::myconfig;
 
 168   my $locale   = $main::locale;
 
 170   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
 171                                      'bins'   => 'BINS', });
 
 173   my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
 
 174   $form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);
 
 176   my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];
 
 178   $form->{initial_warehouse_idx} = $warehouse_idx;
 
 179   $form->{warehouse_description} = $warehouse->{description};
 
 180   $warehouse->{selected}         = 1;
 
 182   $form->show_generic_error($locale->text("The source warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });
 
 184   map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit ean);
 
 186   $form->{sort} = 'bindescription';
 
 187   my @contents  = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id},
 
 188                                            "bin_id"       => $form->{bin_id},
 
 189                                            "chargenumber" => $form->{chargenumber},
 
 190                                            "bestbefore"   => $form->{bestbefore},
 
 191                                            "partsid"      => $form->{part_id},
 
 192                                            "ean"          => $form->{ean});
 
 194   if (0 == scalar(@contents)) {
 
 195     $form->show_generic_error($locale->text("The selected warehouse is empty, or no stocked items where found that match the filter settings."));
 
 198   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 200   foreach (@contents) {
 
 201     $_->{qty} = $form->format_amount_units('amount'     => $_->{qty},
 
 202                                            'part_unit'  => $_->{partunit},
 
 203                                            'conv_units' => 'convertible');
 
 204     my $this_unit = $_->{partunit};
 
 206     if ($all_units->{$_->{partunit}} && ($all_units->{g}->{base_unit} eq $all_units->{$_->{partunit}}->{base_unit})) {
 
 210     $_->{UNITS} = AM->unit_select_data($all_units, $this_unit, 0, $_->{partunit});
 
 213   my $transfer_types = WH->retrieve_transfer_types($args{direction});
 
 214   map { $_->{description} = $locale->text($_->{description}) } @{ $transfer_types };
 
 216   $form->{CONTENTS}       = \@contents;
 
 217   $form->{TRANSFER_TYPES} = $transfer_types;
 
 219   $main::lxdebug->leave_sub();
 
 224   $main::lxdebug->enter_sub();
 
 226   $main::auth->assert('warehouse_management');
 
 228   my $form     = $main::form;
 
 229   my %myconfig = %main::myconfig;
 
 230   my $locale   = $main::locale;
 
 232   $form->get_lists('warehouses' => { 'key' => 'WAREHOUSES', 'bins' => 'BINS' });
 
 234   my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
 
 235   $form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);
 
 237   my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];
 
 239   $form->show_generic_error($locale->text("The source warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });
 
 241   map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit);
 
 243   $form->{sort} = 'bindescription';
 
 244   my @contents  = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id});
 
 245   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 249   foreach my $row (1 .. $form->{rowcount}) {
 
 250     $form->{"qty_$row"} =~ s/^\s*//;
 
 251     $form->{"qty_$row"} =~ s/\s*$//;
 
 252     next if (!$form->{"qty_$row"});
 
 254     my $bin_idx = get_bin_idx($warehouse_idx, $form->{"src_bin_id_$row"});
 
 255     $form->show_generic_error($locale->text("The selected bin does not exist.")) if (-1 == $bin_idx);
 
 256     my $bin     = $warehouse->{BINS}->[$bin_idx];
 
 258     my $orig_qty = $form->{"qty_$row"} . " " . $form->{"unit_$row"};
 
 261       'src_warehouse_id' => $form->{warehouse_id},
 
 262       'transfer_type_id' => $form->{transfer_type_id},
 
 265     map { $transfer->{$_} = $form->{"${_}_${row}"} } qw(src_bin_id chargenumber bestbefore parts_id qty dst_warehouse_id dst_bin_id);
 
 269     foreach (@contents) {
 
 270       if (($_->{binid} == $transfer->{src_bin_id}) && ($_->{parts_id} == $transfer->{parts_id}) && ($_->{chargenumber} eq $transfer->{chargenumber}) && $_->{bestbefore} eq $transfer->{bestbefore}) {
 
 277       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 278                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 281     $transfer->{qty}  = $form->parse_amount(\%myconfig, $transfer->{qty}) * $all_units->{$form->{"unit_$row"}}->{factor};
 
 282     $transfer->{qty} /= $all_units->{$entry->{partunit}}->{factor} || 1;
 
 284     if (($entry->{qty} < $transfer->{qty}) || (0 >= $transfer->{qty})) {
 
 285       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 286                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 289     $transfer->{comment} = $form->{comment};
 
 290     $transfer->{change_default_bin} = $form->{change_default_bin};
 
 292     push @transfers, $transfer;
 
 294     $entry->{qty} -= $transfer->{qty};
 
 297   if (!scalar @transfers) {
 
 298     $form->show_generic_information($locale->text('Nothing has been selected for transfer.'));
 
 299     $::dispatcher->end_request;
 
 302   WH->transfer(@transfers);
 
 304   $form->{trans_type}    = 'transfer';
 
 305   $form->{saved_message} = $locale->text('The parts have been transferred.');
 
 307   transfer_warehouse_selection();
 
 309   $main::lxdebug->leave_sub();
 
 312 # --------------------------------------------------------------------
 
 314 # --------------------------------------------------------------------
 
 316 # --------------------------------------------------------------------
 
 317 # Transfer: assemblies
 
 318 # Dies ist die Auswahlmaske für ein assembly.
 
 319 # Die ist einfach von transfer_assembly_update_part kopiert und nur um den trans_type (assembly) korrigiert worden
 
 320 # Es wäre schön, hier nochmal check_assembly_max_create auf, um die max. Fertigungszahl herauszufinden.
 
 321 # Ich lass das mal als auskommentierte Idee bestehen jb 18.3.09
 
 322 # --------------------------------------------------------------------
 
 324 sub transfer_assembly_update_part {
 
 325   my $form     = $main::form;
 
 326   my %myconfig = %main::myconfig;
 
 327   my $locale   = $main::locale;
 
 329   $form->{trans_type} = 'assembly';
 
 330   $form->{qty}        = $form->parse_amount(\%myconfig, $form->{qty});
 
 332   if (!$form->{parts_id}) {
 
 333     delete $form->{partunit};
 
 334     transfer_warehouse_selection();
 
 339   my $part = SL::DB::Part->new(id => $::form->{parts_id})->load;
 
 340   @{$form}{qw(parts_id partnumber description)} = ($part->id, $part->partnumber, $part->description);
 
 342   transfer_stock_get_partunit();
 
 343   transfer_warehouse_selection();
 
 346 sub transfer_stock_part_selected {
 
 347   $main::lxdebug->enter_sub();
 
 351   my $form     = $main::form;
 
 353   @{$form}{qw(parts_id partnumber description ean warehouse_id bin_id)} = @{$part}{qw(id partnumber description ean warehouse_id bin_id)};
 
 355   transfer_stock_get_partunit();
 
 356   transfer_warehouse_selection();
 
 358   $main::lxdebug->leave_sub();
 
 361 sub transfer_stock_get_partunit {
 
 362   $main::lxdebug->enter_sub();
 
 364   my $form     = $main::form;
 
 366   if ($form->{parts_id}) {
 
 367     my $part_info     = IC->get_basic_part_info('id' => $form->{parts_id});
 
 368     $form->{partunit} = $part_info->{unit};
 
 371   $main::lxdebug->leave_sub();
 
 374 sub create_assembly {
 
 375   $main::lxdebug->enter_sub();
 
 377   my $form     = $main::form;
 
 378   my %myconfig = %main::myconfig;
 
 379   my $locale   = $main::locale;
 
 381   $form->{qty} = $form->parse_amount(\%myconfig, $form->{qty});
 
 382   if ($form->{qty} <= 0) {
 
 383     $form->show_generic_error($locale->text('Invalid quantity.'));
 
 385   if (!$form->{warehouse_id} || !$form->{bin_id}) {
 
 386     $form->error($locale->text('The warehouse or the bin is missing.'));
 
 388   # need part and bin object
 
 389   my ($bin, $assembly);
 
 390   $assembly = SL::DB::Manager::Part->find_by(id => $form->{parts_id}, part_type => 'assembly');
 
 391   $form->show_generic_error($locale->text('Invalid assembly')) unless ref $assembly eq 'SL::DB::Part';
 
 393   $bin = SL::DB::Manager::Bin->find_by(id => $form->{bin_id});
 
 394   $form->show_generic_error($locale->text('Invalid bin')) unless ref $bin eq 'SL::DB::Bin';
 
 396   if (!$::instance_conf->get_show_bestbefore) {
 
 397     $form->{bestbefore} = '';
 
 401               part           => $assembly,               # target assembly
 
 402               qty            => $form->{qty},            # qty
 
 404               bin            => $bin,                    # needed unless a global standard target is configured
 
 405               chargenumber   => $form->{chargenumber},   # optional
 
 406               bestbefore     => $form->{bestbefore},
 
 407               comment        => $form->{comment},        # optional
 
 410   delete @{$form}{qw(parts_id partnumber description qty unit chargenumber bestbefore comment)};
 
 412   $form->{saved_message} = $locale->text('The assembly has been created.');
 
 413   $form->{trans_type}    = 'assembly';
 
 415   transfer_warehouse_selection();
 
 417   $main::lxdebug->leave_sub();
 
 420 # --------------------------------------------------------------------
 
 422 # --------------------------------------------------------------------
 
 424 sub removal_parts_selection {
 
 425   $main::lxdebug->enter_sub();
 
 427   $main::auth->assert('warehouse_management');
 
 429   my $form     = $main::form;
 
 430   my %myconfig = %main::myconfig;
 
 431   my $locale   = $main::locale;
 
 433   transfer_or_removal_prepare_contents('direction' => 'out');
 
 435   setup_wh_removal_parts_selection_action_bar();
 
 437   $form->{title} = $locale->text('Removal');
 
 439   print $form->parse_html_template("wh/removal_parts_selection");
 
 441   $main::lxdebug->leave_sub();
 
 445   $main::lxdebug->enter_sub();
 
 447   $main::auth->assert('warehouse_management');
 
 449   my $form     = $main::form;
 
 450   my %myconfig = %main::myconfig;
 
 451   my $locale   = $main::locale;
 
 453   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
 454                                      'bins'   => 'BINS', });
 
 456   my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
 
 457   $form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);
 
 459   my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];
 
 461   $form->show_generic_error($locale->text("The warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });
 
 463   map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit);
 
 465   $form->{sort} = 'bindescription';
 
 466   my @contents  = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id});
 
 467   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 471   foreach my $row (1 .. $form->{rowcount}) {
 
 472     $form->{"qty_$row"} =~ s/^\s*//;
 
 473     $form->{"qty_$row"} =~ s/\s*$//;
 
 474     next if (!$form->{"qty_$row"});
 
 476     my $bin_idx = get_bin_idx($warehouse_idx, $form->{"src_bin_id_$row"});
 
 477     $form->show_generic_error($locale->text("The selected bin does not exist.")) if (-1 == $bin_idx);
 
 478     my $bin     = $warehouse->{BINS}->[$bin_idx];
 
 480     my $orig_qty = $form->{"qty_$row"} . " " . $form->{"unit_$row"};
 
 483       'src_warehouse_id' => $form->{warehouse_id},
 
 484       'transfer_type_id' => $form->{transfer_type_id},
 
 487     map { $transfer->{$_} = $form->{"${_}_${row}"} } qw(src_bin_id chargenumber bestbefore parts_id qty);
 
 491     foreach (@contents) {
 
 492       if (($_->{binid} == $transfer->{src_bin_id}) && ($_->{parts_id} == $transfer->{parts_id}) && ($_->{chargenumber} eq $transfer->{chargenumber}) && ($_->{bestbefore} eq $transfer->{bestbefore})) {
 
 499       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 500                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 503     $transfer->{qty}  = $form->parse_amount(\%myconfig, $transfer->{qty}) * $all_units->{$form->{"unit_$row"}}->{factor};
 
 504     $transfer->{qty} /= $all_units->{$entry->{partunit}}->{factor} || 1;
 
 506     if (($entry->{qty} < $transfer->{qty}) || (0 >= $transfer->{qty})) {
 
 507       $form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
 
 508                                  $form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
 
 511     $transfer->{comment} = $form->{comment};
 
 513     push @transfers, $transfer;
 
 515     $entry->{qty} -= $transfer->{qty};
 
 518   if (!scalar @transfers) {
 
 519     $form->show_generic_information($locale->text('Nothing has been selected for removal.'));
 
 520     $::dispatcher->end_request;
 
 523   WH->transfer(@transfers);
 
 525   $form->{trans_type}    = 'removal';
 
 526   $form->{saved_message} = $locale->text('The parts have been removed.');
 
 528   transfer_warehouse_selection();
 
 530   $main::lxdebug->leave_sub();
 
 533 sub disassemble_assembly {
 
 534   $main::lxdebug->enter_sub();
 
 536   $main::auth->assert('warehouse_management');
 
 538   my $form = $main::form;
 
 540   croak("No assembly ids") unless scalar @{ $form->{ids}} > 0;
 
 542   # everything in one transaction
 
 543   my $db = SL::DB::Inventory->new->db;
 
 544   $db->with_transaction(sub {
 
 546     foreach my $trans_id (@{ $::form->{ids}} )  {
 
 547       SL::DB::Manager::Inventory->delete_all(where => [ trans_id => $trans_id ]);
 
 548       flash_later('info', t8("Disassembly successful for trans_id #1",  $trans_id));
 
 552   }) || die t8('error while disassembling for trans_ids #1 : #2', $form->{ids})  . $db->error . "\n";
 
 554   $main::lxdebug->leave_sub();
 
 558 # --------------------------------------------------------------------
 
 560 # --------------------------------------------------------------------
 
 563   $main::lxdebug->enter_sub();
 
 565   $main::auth->assert('warehouse_management');
 
 567   my $form     = $main::form;
 
 568   my %myconfig = %main::myconfig;
 
 569   my $locale   = $main::locale;
 
 571   $form->{title} = $locale->text('Report about warehouse transactions');
 
 572   $form->get_lists('warehouses' => { 'key'  => 'WAREHOUSES',
 
 573                                      'bins' => 'BINS', });
 
 575   show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });
 
 577   setup_wh_journal_action_bar();
 
 580   print $form->parse_html_template("wh/journal_filter", { "UNITS" => AM->unit_select_data(AM->retrieve_units(\%myconfig, $form)) });
 
 582   $main::lxdebug->leave_sub();
 
 585 sub generate_journal {
 
 586   $main::lxdebug->enter_sub();
 
 588   $main::auth->assert('warehouse_management');
 
 590   my $form     = $main::form;
 
 591   my %myconfig = %main::myconfig;
 
 592   my $locale   = $main::locale;
 
 594   setup_wh_journal_list_all_action_bar();
 
 595   $form->{title}   = $locale->text("WHJournal");
 
 596   $form->{sort}  ||= 'date';
 
 598   $form->{report_generator_output_format} = 'HTML' if !$form->{report_generator_output_format};
 
 601   my @columns = qw(ids 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);
 
 604   map { $filter{$_} = $form->{$_} if ($form->{$_}) } qw(warehouse_id bin_id classification_id partnumber description chargenumber bestbefore transtype_id transtype_ids comment projectnumber);
 
 606   $filter{qty_op} = WH->convert_qty_op($form->{qty_op});
 
 607   if ($filter{qty_op}) {
 
 608     $form->isblank("qty",      $locale->text('Quantity missing.'));
 
 609     $form->isblank("qty_unit", $locale->text('Unit missing.'));
 
 611     $filter{qty}      = $form->{qty};
 
 612     $filter{qty_unit} = $form->{qty_unit};
 
 616   my $allrows        = !!($form->{report_generator_output_format} ne 'HTML') ;
 
 620   my $page           = $::form->{page} || 1;
 
 621   $pages->{per_page} = $::form->{per_page} || 15;
 
 622   my $first_nr       = ($page - 1) * $pages->{per_page};
 
 623   my $last_nr        = $first_nr + $pages->{per_page};
 
 625   # no optimisation if qty op
 
 626   if ( !$allrows && $form->{maxrows} && !$filter{qty_op}) {
 
 627     $filter{limit}  = $pages->{per_page};
 
 628     $filter{offset} = ($page - 1) * $pages->{per_page};
 
 630     $last_nr        = $pages->{per_page};
 
 633   my $old_l_trans_id = $form->{l_trans_id};
 
 634   my @contents  = WH->get_warehouse_journal(%filter);
 
 635   $form->{l_trans_id} = $old_l_trans_id;
 
 638   if (!$form->{maxrows}) {
 
 639     $form->{maxrows} = scalar @contents ;
 
 642   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 644   my @hidden_variables = map { "l_${_}" } @columns;
 
 645   push @hidden_variables, qw(warehouse_id bin_id partnumber description chargenumber bestbefore qty_op qty qty_unit unit partunit fromdate todate transtype_ids comment projectnumber);
 
 646   push @hidden_variables, qw(classification_id);
 
 649     'ids'             => { raw_header_data => checkbox_tag("", id => "check_all", checkall  => "[data-checkall=1]") },
 
 650     'date'            => { 'text' => $locale->text('Date'), },
 
 651     'trans_id'        => { 'text' => $locale->text('Trans Id'), },
 
 652     'trans_type'      => { 'text' => $locale->text('Trans Type'), },
 
 653     'comment'         => { 'text' => $locale->text('Comment'), },
 
 654     'warehouse_from'  => { 'text' => $locale->text('Warehouse From'), },
 
 655     'warehouse_to'    => { 'text' => $locale->text('Warehouse To'), },
 
 656     'bin_from'        => { 'text' => $locale->text('Bin From'), },
 
 657     'bin_to'          => { 'text' => $locale->text('Bin To'), },
 
 658     'partnumber'      => { 'text' => $locale->text('Part Number'), },
 
 660                       => { 'text' => $locale->text('Type'), },
 
 661     'partdescription' => { 'text' => $locale->text('Part Description'), },
 
 662     'chargenumber'    => { 'text' => $locale->text('Charge Number'), },
 
 663     'bestbefore'      => { 'text' => $locale->text('Best Before'), },
 
 664     'qty'             => { 'text' => $locale->text('Qty'), },
 
 665     'unit'            => { 'text' => $locale->text('Part Unit'), },
 
 666     'partunit'        => { 'text' => $locale->text('Unit'), },
 
 667     'employee'        => { 'text' => $locale->text('Employee'), },
 
 668     'projectnumber'   => { 'text' => $locale->text('Project Number'), },
 
 669     'oe_id'           => { 'text' => $locale->text('Document'), },
 
 672   if ($form->{transtype_ids} && 'ARRAY' eq ref $form->{transtype_ids}) {
 
 673     for (my $i = 0; $i < scalar(@{ $form->{transtype_ids} }); $i++) {
 
 674       delete $form->{transtype_ids}[$i] if $form->{transtype_ids}[$i] eq '';
 
 676     $form->{transtype_ids} = join(",", @{ $form->{transtype_ids} });
 
 679   my $href = build_std_url('action=generate_journal', grep { $form->{$_} } @hidden_variables);
 
 680   $href .= "&maxrows=".$form->{maxrows};
 
 682   map { $column_defs{$_}->{link} = $href ."&page=".$page. "&sort=${_}&order=" . Q($_ eq $form->{sort} ? 1 - $form->{order} : $form->{order}) } @columns;
 
 684   my %column_alignment = map { $_ => 'right' } qw(qty);
 
 686   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 687   $column_defs{partunit}->{visible} = 1;
 
 688   $column_defs{type_and_classific}->{visible} = 1;
 
 689   $column_defs{type_and_classific}->{link} ='';
 
 690   $column_defs{ids}->{visible} = 1;
 
 692   $report->set_columns(%column_defs);
 
 693   $report->set_column_order(@columns);
 
 695   $report->set_export_options('generate_journal', @hidden_variables, qw(sort order));
 
 697   $report->set_sort_indicator($form->{sort}, $form->{order});
 
 699   $report->set_options('output_format'        => 'HTML',
 
 700                        'title'                => $form->{title},
 
 701                        'attachment_basename'  => strftime($locale->text('warehouse_journal_list') . '_%Y%m%d', localtime time));
 
 702   $report->set_options_from_form();
 
 703   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
 705   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 707   my %doc_types = ( 'sales_quotation'         => { script => 'oe', title => $locale->text('Sales quotation') },
 
 708                     'sales_order'             => { script => 'oe', title => $locale->text('Sales Order') },
 
 709                     'request_quotation'       => { script => 'oe', title => $locale->text('Request quotation') },
 
 710                     'purchase_order'          => { script => 'oe', title => $locale->text('Purchase Order') },
 
 711                     'sales_delivery_order'    => { script => 'do', title => $locale->text('Sales delivery order') },
 
 712                     'purchase_delivery_order' => { script => 'do', title => $locale->text('Purchase delivery order') },
 
 713                     'sales_invoice'           => { script => 'is', title => $locale->text('Sales Invoice') },
 
 714                     'purchase_invoice'        => { script => 'ir', title => $locale->text('Purchase Invoice') },
 
 718   my $undo_date  = DateTime->today->subtract(days => $::instance_conf->get_undo_transfer_interval);
 
 719   foreach my $entry (@contents) {
 
 720     $entry->{type_and_classific} = SL::Presenter::Part::type_abbreviation($entry->{part_type}) .
 
 721                                    SL::Presenter::Part::classification_abbreviation($entry->{classification_id});
 
 722     $entry->{qty}        = $form->format_amount(\%myconfig, $entry->{qty});
 
 723     $entry->{assembled} = $entry->{trans_type} eq 'assembled' ? 1 : '';
 
 724     $entry->{trans_type} = $locale->text($entry->{trans_type});
 
 727     foreach my $column (@columns) {
 
 729         'data'  => $entry->{$column},
 
 730         'align' => $column_alignment{$column},
 
 734     if ($entry->{assembled}) {
 
 735       my $insertdate = DateTime->from_kivitendo($entry->{shippingdate});
 
 736       if (ref $undo_date eq 'DateTime' && ref $insertdate eq 'DateTime' && $insertdate > $undo_date) {
 
 737         $row->{ids}->{raw_data} = checkbox_tag("ids[]", value => $entry->{trans_id}, "data-checkall" => 1);
 
 740     $row->{trans_type}->{raw_data} = $entry->{trans_type};
 
 741     if ($form->{l_oe_id}) {
 
 742       $row->{oe_id}->{data} = '';
 
 743       my $info              = $entry->{oe_id_info};
 
 745       if ($info && $info->{id} && $info->{type} && $doc_types{$info->{type}}) {
 
 746         $row->{oe_id} = { data => $doc_types{ $info->{type} }->{title} . ' ' . $info->{number},
 
 747                           link => build_std_url('script=' . $doc_types{ $info->{type} }->{script} . '.pl', 'action=edit', 'id=' . $info->{id}, 'type=' . $info->{type}) };
 
 751     if ( $allrows || ($idx >= $first_nr && $idx < $last_nr )) {
 
 752       $report->add_data($row);
 
 758     $report->set_options(
 
 759       raw_top_info_text     => $form->parse_html_template('wh/report_top'),
 
 760       raw_bottom_info_text  => $form->parse_html_template('wh/report_bottom', { callback => $href }),
 
 763       $pages->{max}  = SL::DB::Helper::Paginated::ceil($form->{maxrows}, $pages->{per_page}) || 1;
 
 764       $pages->{page} = $page < 1 ? 1: $page > $pages->{max} ? $pages->{max}: $page;
 
 765       $pages->{common} = [ grep { $_->{visible} } @{ SL::DB::Helper::Paginated::make_common_pages($pages->{page}, $pages->{max}) } ];
 
 767       $report->set_options('raw_bottom_info_text' =>  $form->parse_html_template('wh/report_bottom', { callback => $href }) . $form->parse_html_template('common/paginate',
 
 768                                                             { 'pages' => $pages , 'base_url' => $href.'&sort='.$form->{sort}.'&order='.$form->{order}}) );
 
 770   $report->generate_with_headers();
 
 772   $main::lxdebug->leave_sub();
 
 775 # --------------------------------------------------------------------
 
 777 # --------------------------------------------------------------------
 
 780   $main::lxdebug->enter_sub();
 
 782   $main::auth->assert('warehouse_contents | warehouse_management');
 
 784   my $form     = $main::form;
 
 785   my %myconfig = %main::myconfig;
 
 786   my $locale   = $main::locale;
 
 788   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
 789                                      'bins'   => 'BINS', });
 
 791   show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });
 
 793   my $CVAR_CONFIGS = SL::DB::Manager::CustomVariableConfig->get_all_sorted(where => [ module => 'IC' ]);
 
 794   my $INCLUDABLE_CVAR_CONFIGS = [ grep { $_->includeable } @{ $CVAR_CONFIGS } ];
 
 796   $form->{title}   = $locale->text("Report about warehouse contents");
 
 798   setup_wh_report_action_bar();
 
 801   print $form->parse_html_template("wh/report_filter",
 
 802                                    { "WAREHOUSES" => $form->{WAREHOUSES},
 
 803                                      "UNITS"      => AM->unit_select_data(AM->retrieve_units(\%myconfig, $form)),
 
 804                                      # "CVAR_CONFIGS"            => $CVAR_CONFIGS, # nyi searchable cvars
 
 805                                      "INCLUDABLE_CVAR_CONFIGS" => $INCLUDABLE_CVAR_CONFIGS,
 
 808   $main::lxdebug->leave_sub();
 
 811 sub generate_report {
 
 812   $main::lxdebug->enter_sub();
 
 814   $main::auth->assert('warehouse_contents | warehouse_management');
 
 816   my $form     = $main::form;
 
 817   my %myconfig = %main::myconfig;
 
 818   my $locale   = $main::locale;
 
 820   my $cvar_configs = CVar->get_configs('module' => 'IC');
 
 822   $form->{title}   = $locale->text("Report about warehouse contents");
 
 823   $form->{sort}  ||= 'partnumber';
 
 824   my $sort_col     = $form->{sort};
 
 827   my @columns = qw(warehousedescription bindescription partnumber type_and_classific partdescription chargenumber bestbefore comment qty partunit list_price purchase_price stock_value);
 
 830   map { $filter{$_} = $form->{$_} if ($form->{$_}) } qw(warehouse_id bin_id classification_id partnumber description chargenumber bestbefore date include_invalid_warehouses);
 
 832   # show filter stuff also in report
 
 834   my $currentdate = $form->current_date(\%myconfig);
 
 835   push @options, $locale->text('Printdate') . " : ".$locale->date(\%myconfig, $currentdate, 1);
 
 837   # dispatch all options
 
 838   my $dispatch_options = {
 
 839    warehouse_id   => sub { push @options, $locale->text('Warehouse') . " : " .
 
 840                                             SL::DB::Manager::Warehouse->find_by(id => $form->{warehouse_id})->description},
 
 841    bin_id         => sub { push @options, $locale->text('Bin') . " : " .
 
 842                                             SL::DB::Manager::Bin->find_by(id => $form->{bin_id})->description},
 
 843    partnumber     => sub { push @options, $locale->text('Partnumber')     . " : $form->{partnumber}"},
 
 844    classification_id => sub { push @options, $locale->text('Parts Classification'). " : ".
 
 845                                                SL::DB::Manager::PartClassification->get_first(where => [ id => $form->{classification_id} ] )->description; },
 
 846    description    => sub { push @options, $locale->text('Description')    . " : $form->{description}"},
 
 847    chargenumber   => sub { push @options, $locale->text('Charge Number')  . " : $form->{chargenumber}"},
 
 848    bestbefore     => sub { push @options, $locale->text('Best Before')    . " : $form->{bestbefore}"},
 
 849    include_invalid_warehouses    => sub { push @options, $locale->text('Include invalid warehouses ')},
 
 851   foreach (keys %filter) {
 
 852    $dispatch_options->{$_}->() if $dispatch_options->{$_};
 
 854   push @options, $locale->text('Stock Qty for Date') . " " . $locale->date(\%myconfig, $form->{date}?$form->{date}:$currentdate, 1);
 
 856   # / end show filter stuff also in report
 
 858   $filter{qty_op} = WH->convert_qty_op($form->{qty_op});
 
 859   if ($filter{qty_op}) {
 
 860     $form->isblank("qty",      $locale->text('Quantity missing.'));
 
 861     $form->isblank("qty_unit", $locale->text('Unit missing.'));
 
 863     $filter{qty}      = $form->{qty};
 
 864     $filter{qty_unit} = $form->{qty_unit};
 
 868   $form->{report_generator_output_format} = 'HTML' if !$form->{report_generator_output_format};
 
 871   my $allrows        = $form->{report_generator_output_format} eq 'HTML' ? $form->{allrows} : 1;
 
 872   my $page           = $::form->{page} || 1;
 
 874   $pages->{per_page} = $::form->{per_page} || 20;
 
 875   my $first_nr       = ($page - 1) * $pages->{per_page};
 
 876   my $last_nr        = $first_nr + $pages->{per_page};
 
 878   # no optimisation if qty op
 
 879   if ( !$allrows && $form->{maxrows} && !$filter{qty_op}) {
 
 880     $filter{limit}  = $pages->{per_page};
 
 881     $filter{offset} = ($page - 1) * $pages->{per_page};
 
 883     $last_nr        = $pages->{per_page};
 
 886   my @contents  = WH->get_warehouse_report(%filter);
 
 889   if (!$form->{maxrows}) {
 
 890     $form->{maxrows} = scalar @contents ;
 
 893   $form->{subtotal} = '' if (!first { $_ eq $sort_col } qw(partnumber partdescription));
 
 895   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 897   my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
 
 898   push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
 
 900   my @hidden_variables = map { "l_${_}" } @columns;
 
 901   push @hidden_variables, qw(warehouse_id bin_id partnumber partstypes_id description chargenumber bestbefore qty_op qty qty_unit partunit l_warehousedescription l_bindescription);
 
 902   push @hidden_variables, qw(include_empty_bins subtotal include_invalid_warehouses date);
 
 903   push @hidden_variables, qw(classification_id stock_value_basis allrows);
 
 906     'warehousedescription' => { 'text' => $locale->text('Warehouse'), },
 
 907     'bindescription'       => { 'text' => $locale->text('Bin'), },
 
 908     'partnumber'           => { 'text' => $locale->text('Part Number'), },
 
 909     'type_and_classific'   => { 'text' => $locale->text('Type'), },
 
 910     'partdescription'      => { 'text' => $locale->text('Part Description'), },
 
 911     'chargenumber'         => { 'text' => $locale->text('Charge Number'), },
 
 912     'bestbefore'           => { 'text' => $locale->text('Best Before'), },
 
 913     'qty'                  => { 'text' => $locale->text('Qty'), },
 
 914     'partunit'             => { 'text' => $locale->text('Unit'), },
 
 915     'stock_value'          => { 'text' => $locale->text('Stock value'), },
 
 916     'purchase_price'       => { 'text' => $locale->text('Purchase price'), },
 
 917     'list_price'           => { 'text' => $locale->text('List Price'), },
 
 920   my $href = build_std_url('action=generate_report', grep { $form->{$_} } @hidden_variables);
 
 921   $href .= "&maxrows=".$form->{maxrows};
 
 922   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
 
 923   %column_defs = (%column_defs, %column_defs_cvars);
 
 925   map { $column_defs{$_}->{link} = $href . "&page=".$page."&sort=${_}&order=" . Q($_ eq $sort_col ? 1 - $form->{order} : $form->{order}) } @columns;
 
 927   my %column_alignment = map { $_ => 'right' } qw(qty list_price purchase_price stock_value);
 
 929   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 931   $column_defs{partunit}->{visible}           = 1;
 
 932   $column_defs{type_and_classific}->{visible} = 1;
 
 933   $column_defs{type_and_classific}->{link} ='';
 
 935   $report->set_columns(%column_defs);
 
 936   $report->set_column_order(@columns);
 
 938   $report->set_export_options('generate_report', @hidden_variables, qw(sort order));
 
 940   $report->set_sort_indicator($sort_col, $form->{order});
 
 942   $report->set_options('top_info_text'        => join("\n", @options),
 
 943                        'output_format'        => 'HTML',
 
 944                        'title'                => $form->{title},
 
 945                        'attachment_basename'  => strftime($locale->text('warehouse_report_list') . '_%Y%m%d', localtime time));
 
 946   $report->set_options_from_form();
 
 947   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
 948   CVar->add_custom_variables_to_report('module'         => 'IC',
 
 949                                        'trans_id_field' => 'parts_id',
 
 950                                        'configs'        => $cvar_configs,
 
 951                                        'column_defs'    => \%column_defs,
 
 952                                        'data'           => \@contents);
 
 954   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 957   my @subtotals_columns = qw(qty stock_value);
 
 958   my %subtotals         = map { $_ => 0 } @subtotals_columns;
 
 960   my $total_stock_value = 0;
 
 962   foreach my $entry (@contents) {
 
 964     $entry->{type_and_classific} = SL::Presenter::Part::type_abbreviation($entry->{part_type}).
 
 965                                    SL::Presenter::Part::classification_abbreviation($entry->{classification_id});
 
 966     map { $subtotals{$_} += $entry->{$_} } @subtotals_columns;
 
 967     $total_stock_value   += $entry->{stock_value} * 1;
 
 968     $entry->{qty}         = $form->format_amount(\%myconfig, $entry->{qty});
 
 969 #    $entry->{qty}         = $form->format_amount_units('amount'     => $entry->{qty},
 
 970 #                                                       'part_unit'  => $entry->{partunit},
 
 971 #                                                       'conv_units' => 'convertible');
 
 972     $entry->{stock_value} = $form->format_amount(\%myconfig, $entry->{stock_value} * 1, 2);
 
 973     $entry->{purchase_price} = $form->format_amount(\%myconfig, $entry->{purchase_price} * 1, 2);
 
 974     $entry->{list_price}     = $form->format_amount(\%myconfig, $entry->{list_price}     * 1, 2);
 
 976     my $row_set = [ { map { $_ => { 'data' => $entry->{$_}, 'align' => $column_alignment{$_} } } @columns } ];
 
 978     if ( ($form->{subtotal} eq 'Y' && !$form->{report_generator_csv_options_for_import} )
 
 979         && (($idx == (scalar @contents - 1))
 
 980             || ($entry->{$sort_col} ne $contents[$idx + 1]->{$sort_col}))) {
 
 982       my $row = { map { $_ => { 'data' => '', 'class' => 'listsubtotal', 'align' => $column_alignment{$_}, } } @columns };
 
 983       $row->{qty}->{data}         = $form->format_amount(\%myconfig, $subtotals{qty});
 
 984 #      $row->{qty}->{data}         = $form->format_amount_units('amount'     => $subtotals{qty} * 1,
 
 985 #                                                               'part_unit'  => $entry->{partunit},
 
 986 #                                                               'conv_units' => 'convertible');
 
 987       $row->{stock_value}->{data} = $form->format_amount(\%myconfig, $subtotals{stock_value} * 1, 2);
 
 988       $row->{purchase_price}->{data} = $form->format_amount(\%myconfig, $subtotals{purchase_price} * 1, 2);
 
 989       $row->{list_price}->{data}     = $form->format_amount(\%myconfig, $subtotals{list_price}     * 1, 2);
 
 991       %subtotals                  = map { $_ => 0 } @subtotals_columns;
 
 993       push @{ $row_set }, $row;
 
 996     if ( $allrows || ($idx >= $first_nr && $idx < $last_nr )) {
 
 997         $report->add_data($row_set);
 
1002   if ( $column_defs{stock_value}->{visible} && !$form->{report_generator_csv_options_for_import} ) {
 
1003     $report->add_separator();
 
1005     my $row                      = { map { $_ => { 'data' => '', 'class' => 'listsubtotal', } } @columns };
 
1007     my $left_col                 = first { $column_defs{$_}->{visible} } @columns;
 
1009     $row->{$left_col}->{data}    = $locale->text('Total stock value');
 
1010     $row->{stock_value}->{data}  = $form->format_amount(\%myconfig, $total_stock_value, 2);
 
1011     $row->{stock_value}->{align} = 'right';
 
1013     $report->add_data($row);
 
1016     $pages->{max}  = SL::DB::Helper::Paginated::ceil($form->{maxrows}, $pages->{per_page}) || 1;
 
1017     $pages->{page} = $page < 1 ? 1: $page > $pages->{max} ? $pages->{max}: $page;
 
1018     $pages->{common} = [ grep { $_->{visible} } @{ SL::DB::Helper::Paginated::make_common_pages($pages->{page}, $pages->{max}) } ];
 
1020     $report->set_options('raw_bottom_info_text' => $form->parse_html_template('common/paginate',
 
1021                                                                               {'pages' => $pages , 'base_url' => $href}) );
 
1024   $report->generate_with_headers();
 
1026   $main::lxdebug->leave_sub();
 
1029 # --------------------------------------------------------------------
 
1031 # --------------------------------------------------------------------
 
1033 sub show_no_warehouses_error {
 
1034   $main::lxdebug->enter_sub();
 
1036   my $form     = $main::form;
 
1037   my %myconfig = %main::myconfig;
 
1038   my $locale   = $main::locale;
 
1040   my $msg = $locale->text('No warehouse has been created yet or the quantity of the bins is not configured yet.') . ' ';
 
1042   if ($main::auth->check_right($::myconfig{login}, 'config')) {
 
1043     $msg .= $locale->text('You can create warehouses and bins via the menu "System -> Warehouses".');
 
1045     $msg .= $locale->text('Please ask your administrator to create warehouses and bins.');
 
1048   $form->show_generic_error($msg);
 
1050   $main::lxdebug->leave_sub();
 
1053 sub get_warehouse_idx {
 
1054   my ($warehouse_id) = @_;
 
1056   my $form     = $main::form;
 
1058   for (my $i = 0; $i < scalar @{$form->{WAREHOUSES}}; $i++) {
 
1059     return $i if ($form->{WAREHOUSES}->[$i]->{id} == $warehouse_id);
 
1066   my ($warehouse_index, $bin_id) = @_;
 
1068   my $form     = $main::form;
 
1070   my $warehouse = $form->{WAREHOUSES}->[$warehouse_index];
 
1072   return -1 if (!$warehouse);
 
1074   for (my $i = 0; $i < scalar @{ $warehouse->{BINS} }; $i++) {
 
1075     return $i if ($warehouse->{BINS}->[$i]->{id} == $bin_id);
 
1082   $main::lxdebug->enter_sub();
 
1085   my $form     = $main::form;
 
1088   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
1089   $form->{callback}     = $form->escape("$form->{script}?action=$params{action}", 1);
 
1091   # save all form variables except action in a previousform variable
 
1092   my $previousform = join '&', map { my $value = $form->{$_}; $value =~ s/&/%26/; "$_=$value" } grep { !/action/ } keys %$form;
 
1095 #  push @HIDDENS,      { 'name' => 'previousform', 'value' => $form->escape($previousform, 1) };
 
1096   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} }, qw(partnumber description unit vc sellprice ean);
 
1097   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
 
1098   push @HIDDENS,      { 'name' => 'notes',        'value' => $form->{longdescription} };
 
1101   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
 
1103   $main::lxdebug->leave_sub();
 
1107   my $form     = $main::form;
 
1108   call_sub($form->{update_nextsub} || $form->{nextsub});
 
1112   my $form     = $main::form;
 
1113   call_sub($form->{continue_nextsub} || $form->{nextsub});
 
1117   my $form     = $main::form;
 
1118   call_sub($form->{stock_nextsub} || $form->{nextsub});
 
1121 sub setup_wh_transfer_warehouse_selection_action_bar {
 
1124   for my $bar ($::request->layout->get('actionbar')) {
 
1128         submit    => [ '#form', { action => $action } ],
 
1129         accesskey => 'enter',
 
1135 sub setup_wh_transfer_warehouse_selection_assembly_action_bar {
 
1138   for my $bar ($::request->layout->get('actionbar')) {
 
1142         submit    => [ '#form', { action => 'transfer_assembly_update_part' } ],
 
1143         accesskey => 'enter',
 
1147         submit   => [ '#form', { action => 'create_assembly' } ],
 
1148         disabled => $::form->{parts_id} ? undef : $::locale->text('No assembly has been selected yet.'),
 
1154 sub setup_wh_transfer_parts_action_bar {
 
1157   for my $bar ($::request->layout->get('actionbar')) {
 
1161         submit    => [ '#form', { action => 'transfer_parts' } ],
 
1162         accesskey => 'enter',
 
1166         call => [ 'kivi.history_back' ],
 
1172 sub setup_wh_removal_parts_selection_action_bar {
 
1175   for my $bar ($::request->layout->get('actionbar')) {
 
1179         submit    => [ '#form', { action => 'remove_parts' } ],
 
1180         accesskey => 'enter',
 
1184         call => [ 'kivi.history_back' ],
 
1190 sub setup_wh_report_action_bar {
 
1193   for my $bar ($::request->layout->get('actionbar')) {
 
1197         submit    => [ '#form', { action => 'generate_report' } ],
 
1198         accesskey => 'enter',
 
1204 sub setup_wh_journal_action_bar {
 
1207   for my $bar ($::request->layout->get('actionbar')) {
 
1211         submit    => [ '#form', { action => 'generate_journal' } ],
 
1212         accesskey => 'enter',
 
1217 sub setup_wh_journal_list_all_action_bar {
 
1219   for my $bar ($::request->layout->get('actionbar')) {
 
1222         action => [ t8('Actions') ],
 
1224           t8('Disassemble Assembly'),
 
1225             submit => [ '#form', { action => 'disassemble_assembly' } ],
 
1226             checks => [ [ 'kivi.check_if_entries_selected', '[name="ids[]"]' ] ],
 
1240 bin/mozilla/wh.pl - Warehouse frontend.
 
1248 call new item dialogue from warehouse masks.
 
1251   action  => name of sub to be called when new item is done