Projekt

Allgemein

Profil

Herunterladen (38,5 KB) Statistiken
| Zweig: | Markierung: | Revision:
83914eeb Moritz Bunkus
#=====================================================================
# LX-Office ERP
# Copyright (C) 2004
# Based on SQL-Ledger Version 2.1.9
# Web http://www.lx-office.org
#############################################################################
# SQL-Ledger, Accounting
# Copyright (c) 1998-2002
#
# Author: Dieter Simader
# Email: dsimader@sql-ledger.org
# Web: http://www.sql-ledger.org
#
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
f7b15d43 Christian Wittmer
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1335, USA.
83914eeb Moritz Bunkus
#
#######################################################################
#
# warehouse and packinglist
#
#######################################################################

use List::Util qw(min max first);
use POSIX qw(strftime);

use SL::Form;
use SL::User;

use SL::AM;
use SL::CT;
use SL::IC;
use SL::WH;
use SL::OE;
use SL::ReportGenerator;

4e9adbf7 Thomas Heck
use SL::DB::Part;

83914eeb Moritz Bunkus
use Data::Dumper;

require "bin/mozilla/common.pl";
require "bin/mozilla/reportgenerator.pl";

13dcc338 Sven Schöling
use strict;

83914eeb Moritz Bunkus
# parserhappy(R):

# contents of the "transfer_type" table:
# $locale->text('back')
# $locale->text('correction')
# $locale->text('disposed')
# $locale->text('found')
# $locale->text('missing')
# $locale->text('stock')
5d154bd1 Moritz Bunkus
# $locale->text('shipped')
83914eeb Moritz Bunkus
# $locale->text('transfer')
# $locale->text('used')
# $locale->text('return_material')
# $locale->text('release_material')
638f06c4 Jan Büren
# $locale->text('assembled')
83914eeb Moritz Bunkus
# --------------------------------------------------------------------
# Transfer
# --------------------------------------------------------------------

sub transfer_warehouse_selection {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
$main::auth->assert('warehouse_management');

my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
$form->get_lists('warehouses' => { 'key' => 'WAREHOUSES',
'bins' => 'BINS', });

show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });

07948c34 Moritz Bunkus
my $units = AM->retrieve_units(\%myconfig, $form);
4e9adbf7 Thomas Heck
my $part = 0;
if ( $form->{parts_id} ) {
$part = SL::DB::Part->new();
$part->id($form->{parts_id});
$part->load();
}

8c6da403 Jan Büren
# der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
4e9adbf7 Thomas Heck
$form->{UNITS} = AM->unit_select_data($units, $form->{unit}, 0, $part ? $part->unit : 0);
83914eeb Moritz Bunkus
if (scalar @{ $form->{WAREHOUSES} }) {
$form->{warehouse_id} ||= $form->{WAREHOUSES}->[0]->{id};
$form->{bin_id} ||= $form->{WAREHOUSES}->[0]->{BINS}->[0]->{id};
}

my $content;

if ($form->{trans_type} eq 'removal') {
$form->{nextsub} = "removal_parts_selection";
$form->{title} = $locale->text('Removal from Warehouse');
$content = $form->parse_html_template('wh/warehouse_selection');

} elsif (!$form->{trans_type} || ($form->{trans_type} eq 'transfer')) {
$form->{nextsub} = "transfer_parts_selection";
$form->{title} = $locale->text('Transfer');
$content = $form->parse_html_template('wh/warehouse_selection');

4f63ea87 Geoffrey Richardson
} elsif ($form->{trans_type} eq 'assembly') {
eb3f8a46 Geoffrey Richardson
$form->{title} = $locale->text('Produce Assembly');
4f63ea87 Geoffrey Richardson
$content = $form->parse_html_template('wh/warehouse_selection_assembly');
83914eeb Moritz Bunkus
}

$form->header();
print $content;

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

sub transfer_parts_selection {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

$main::auth->assert('warehouse_management');
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
transfer_or_removal_prepare_contents('direction' => 'transfer');

$form->{title} = $locale->text('Transfer');
$form->header();
print $form->parse_html_template("wh/transfer_parts_selection");

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

sub transfer_or_removal_prepare_contents {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
$main::auth->assert('warehouse_management');
83914eeb Moritz Bunkus
my %args = @_;

13dcc338 Sven Schöling
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;

83914eeb Moritz Bunkus
$form->get_lists('warehouses' => { 'key' => 'WAREHOUSES',
'bins' => 'BINS', });

my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
$form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);

my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];

$form->{initial_warehouse_idx} = $warehouse_idx;
$form->{warehouse_description} = $warehouse->{description};
$warehouse->{selected} = 1;

$form->show_generic_error($locale->text("The source warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });

096f9e3e Bernd Bleßmann
map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit ean);
83914eeb Moritz Bunkus
$form->{sort} = 'bindescription';
my @contents = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id},
"bin_id" => $form->{bin_id},
"chargenumber" => $form->{chargenumber},
096f9e3e Bernd Bleßmann
"bestbefore" => $form->{bestbefore},
5d497700 Moritz Bunkus
"partsid" => $form->{part_id},
"ean" => $form->{ean});
83914eeb Moritz Bunkus
b2d4ba3d Moritz Bunkus
if (0 == scalar(@contents)) {
$form->show_generic_error($locale->text("The selected warehouse is empty, or no stocked items where found that match the filter settings."));
}
83914eeb Moritz Bunkus
07948c34 Moritz Bunkus
my $all_units = AM->retrieve_units(\%myconfig, $form);
83914eeb Moritz Bunkus
foreach (@contents) {
$_->{qty} = $form->format_amount_units('amount' => $_->{qty},
'part_unit' => $_->{partunit},
'conv_units' => 'convertible');
my $this_unit = $_->{partunit};

if ($all_units->{$_->{partunit}} && ($all_units->{g}->{base_unit} eq $all_units->{$_->{partunit}}->{base_unit})) {
$this_unit = "kg";
}

$_->{UNITS} = AM->unit_select_data($all_units, $this_unit, 0, $_->{partunit});
}

my $transfer_types = WH->retrieve_transfer_types($args{direction});
map { $_->{description} = $locale->text($_->{description}) } @{ $transfer_types };

$form->{CONTENTS} = \@contents;
$form->{TRANSFER_TYPES} = $transfer_types;

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}


sub transfer_parts {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
$main::auth->assert('warehouse_management');

my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
$form->get_lists('warehouses' => { 'key' => 'WAREHOUSES', 'bins' => 'BINS' });

my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
$form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);

my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];

$form->show_generic_error($locale->text("The source warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });

096f9e3e Bernd Bleßmann
map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit);
83914eeb Moritz Bunkus
$form->{sort} = 'bindescription';
my @contents = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id});
07948c34 Moritz Bunkus
my $all_units = AM->retrieve_units(\%myconfig, $form);
83914eeb Moritz Bunkus
my @transfers;

foreach my $row (1 .. $form->{rowcount}) {
$form->{"qty_$row"} =~ s/^\s*//;
$form->{"qty_$row"} =~ s/\s*$//;
next if (!$form->{"qty_$row"});

my $bin_idx = get_bin_idx($warehouse_idx, $form->{"src_bin_id_$row"});
$form->show_generic_error($locale->text("The selected bin does not exist.")) if (-1 == $bin_idx);
my $bin = $warehouse->{BINS}->[$bin_idx];

my $orig_qty = $form->{"qty_$row"} . " " . $form->{"unit_$row"};

my $transfer = {
'src_warehouse_id' => $form->{warehouse_id},
'transfer_type_id' => $form->{transfer_type_id},
};

096f9e3e Bernd Bleßmann
map { $transfer->{$_} = $form->{"${_}_${row}"} } qw(src_bin_id chargenumber bestbefore parts_id qty dst_warehouse_id dst_bin_id);
83914eeb Moritz Bunkus
my $entry;

foreach (@contents) {
096f9e3e Bernd Bleßmann
if (($_->{binid} == $transfer->{src_bin_id}) && ($_->{parts_id} == $transfer->{parts_id}) && ($_->{chargenumber} eq $transfer->{chargenumber}) && $_->{bestbefore} eq $transfer->{bestbefore}) {
83914eeb Moritz Bunkus
$entry = $_;
last;
}
}

if (!$entry) {
$form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
$form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
}

$transfer->{qty} = $form->parse_amount(\%myconfig, $transfer->{qty}) * $all_units->{$form->{"unit_$row"}}->{factor};
$transfer->{qty} /= $all_units->{$entry->{partunit}}->{factor} || 1;

if (($entry->{qty} < $transfer->{qty}) || (0 >= $transfer->{qty})) {
$form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
$form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
}

$transfer->{comment} = $form->{comment};
5a923b79 Jan Büren
$transfer->{change_default_bin} = $form->{change_default_bin};
83914eeb Moritz Bunkus
push @transfers, $transfer;

$entry->{qty} -= $transfer->{qty};
}

if (!scalar @transfers) {
$form->show_generic_information($locale->text('Nothing has been selected for transfer.'));
09479f02 Moritz Bunkus
$::dispatcher->end_request;
83914eeb Moritz Bunkus
}

WH->transfer(@transfers);

$form->{trans_type} = 'transfer';
$form->{saved_message} = $locale->text('The parts have been transferred.');

transfer_warehouse_selection();

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

# --------------------------------------------------------------------
# Transfer: stock
# --------------------------------------------------------------------

4f63ea87 Geoffrey Richardson
# --------------------------------------------------------------------
# Transfer: assemblies
fa73b837 Sven Schöling
# Dies ist die Auswahlmaske für ein assembly.
4f63ea87 Geoffrey Richardson
# Die ist einfach von transfer_assembly_update_part kopiert und nur um den trans_type (assembly) korrigiert worden
# Es wäre schön, hier nochmal check_assembly_max_create auf, um die max. Fertigungszahl herauszufinden.
# Ich lass das mal als auskommentierte Idee bestehen jb 18.3.09
# --------------------------------------------------------------------

sub transfer_assembly_update_part {
13dcc338 Sven Schöling
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
4f63ea87 Geoffrey Richardson
$form->{trans_type} = 'assembly';
$form->{qty} = $form->parse_amount(\%myconfig, $form->{qty});

5d497700 Moritz Bunkus
if (!$form->{parts_id}) {
delete $form->{partunit};
4f63ea87 Geoffrey Richardson
transfer_warehouse_selection();
5d497700 Moritz Bunkus
return;
4f63ea87 Geoffrey Richardson
}

5d497700 Moritz Bunkus
my $part = SL::DB::Part->new(id => $::form->{parts_id})->load;
@{$form}{qw(parts_id partnumber description)} = ($part->id, $part->partnumber, $part->description);

transfer_stock_get_partunit();
transfer_warehouse_selection();
4f63ea87 Geoffrey Richardson
}
13dcc338 Sven Schöling
83914eeb Moritz Bunkus
sub transfer_stock_part_selected {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();
83914eeb Moritz Bunkus
my $part = shift;

13dcc338 Sven Schöling
my $form = $main::form;

ccbd47d7 Jan Büren
@{$form}{qw(parts_id partnumber description ean warehouse_id bin_id)} = @{$part}{qw(id partnumber description ean warehouse_id bin_id)};
83914eeb Moritz Bunkus
transfer_stock_get_partunit();
transfer_warehouse_selection();

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

sub transfer_stock_get_partunit {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

my $form = $main::form;
83914eeb Moritz Bunkus
if ($form->{parts_id}) {
my $part_info = IC->get_basic_part_info('id' => $form->{parts_id});
$form->{partunit} = $part_info->{unit};
}

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

4f63ea87 Geoffrey Richardson
# vorüberlegung jb 22.2.2009
# wir benötigen für diese funktion, die anzahl die vom erzeugnis hergestellt werden soll. vielleicht direkt per js fehleingaben verhindern?
# ferner dann nochmal mit check_asssembly_max_create gegenprüfen und dann transaktionssicher wegbuchen.
# 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
# Manko ist derzeit noch, dass unterschiedliche Lagerplätze, bzw. das Quelllager an sich nicht ausgewählt werden können.
# Laut Absprache in KW11 09 übernimmt mb hier den rest im April ... jb 18.3.09
64c39b74 Geoffrey Richardson
4f63ea87 Geoffrey Richardson
sub create_assembly {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
4f63ea87 Geoffrey Richardson
$form->{qty} = $form->parse_amount(\%myconfig, $form->{qty});
if ($form->{qty} <= 0) {
a8459f49 Moritz Bunkus
$form->show_generic_error($locale->text('Invalid quantity.'));
64c39b74 Geoffrey Richardson
}
fa73b837 Sven Schöling
# TODO Es wäre schön, hier schon die maximale Anzahl der zu fertigenden Erzeugnisse zu haben
b65a230d Sven Schöling
#else { if ($form->{qty} > $maxcreate) { #s.o.
a8459f49 Moritz Bunkus
# $form->show_generic_error($locale->text('Can not create that quantity with current stock'));
# $form->show_generic_error('Maximale Stückzahl' . $maxcreate);
b65a230d Sven Schöling
# }
64c39b74 Geoffrey Richardson
# }
4f63ea87 Geoffrey Richardson
if (!$form->{warehouse_id} || !$form->{bin_id}) {
$form->error($locale->text('The warehouse or the bin is missing.'));
}
f2d34a8e Bernd Bleßmann
4b31e6ba Bernd Bleßmann
if (!$::instance_conf->get_show_bestbefore) {
f2d34a8e Bernd Bleßmann
$form->{bestbefore} = '';
}

64c39b74 Geoffrey Richardson
# 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
# Anm. jb 18.3. vielleicht auch nur meine unwissenheit in perl-datenstrukturen
4f63ea87 Geoffrey Richardson
my %TRANSFER = (
'transfer_type' => 'assembly',
4bd1e2f8 Sven Schöling
'login' => $::myconfig{login},
4f63ea87 Geoffrey Richardson
'dst_warehouse_id' => $form->{warehouse_id},
'dst_bin_id' => $form->{bin_id},
'chargenumber' => $form->{chargenumber},
096f9e3e Bernd Bleßmann
'bestbefore' => $form->{bestbefore},
a25cb06e Moritz Bunkus
'assembly_id' => $form->{parts_id},
4f63ea87 Geoffrey Richardson
'qty' => $form->{qty},
'unit' => $form->{unit},
64c39b74 Geoffrey Richardson
'comment' => $form->{comment}
4f63ea87 Geoffrey Richardson
);

my $ret = WH->transfer_assembly (%TRANSFER);
64c39b74 Geoffrey Richardson
# Frage: Ich pack in den return-wert auch gleich die Fehlermeldung. Irgendwelche Nummern als Fehlerkonstanten definieren find ich auch nicht besonders schick...
# Ideen? jb 18.3.09
4f63ea87 Geoffrey Richardson
if ($ret ne "1"){
64c39b74 Geoffrey Richardson
# 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
a8459f49 Moritz Bunkus
$form->show_generic_error($ret);
4f63ea87 Geoffrey Richardson
}

096f9e3e Bernd Bleßmann
delete @{$form}{qw(parts_id partnumber description qty unit chargenumber bestbefore comment)};
4f63ea87 Geoffrey Richardson
$form->{saved_message} = $locale->text('The assembly has been created.');
$form->{trans_type} = 'assembly';

transfer_warehouse_selection();

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
4f63ea87 Geoffrey Richardson
}

83914eeb Moritz Bunkus
# --------------------------------------------------------------------
# Transfer: removal
# --------------------------------------------------------------------

sub removal_parts_selection {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

$main::auth->assert('warehouse_management');
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
transfer_or_removal_prepare_contents('direction' => 'out');

$form->{title} = $locale->text('Removal');
$form->header();
print $form->parse_html_template("wh/removal_parts_selection");

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

sub remove_parts {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

$main::auth->assert('warehouse_management');
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
$form->get_lists('warehouses' => { 'key' => 'WAREHOUSES',
'bins' => 'BINS', });

my $warehouse_idx = get_warehouse_idx($form->{warehouse_id});
$form->show_generic_error($locale->text("The selected warehouse does not exist.")) if (-1 == $warehouse_idx);

my $warehouse = $form->{WAREHOUSES}->[$warehouse_idx];

$form->show_generic_error($locale->text("The warehouse does not contain any bins.")) if (0 == scalar @{ $warehouse->{BINS} });

096f9e3e Bernd Bleßmann
map { $form->{"l_$_"} = 'Y' } qw(parts_id qty warehouseid binid partnumber partdescription bindescription chargenumber bestbefore partunit);
83914eeb Moritz Bunkus
$form->{sort} = 'bindescription';
my @contents = WH->get_warehouse_report("warehouse_id" => $form->{warehouse_id});
07948c34 Moritz Bunkus
my $all_units = AM->retrieve_units(\%myconfig, $form);
83914eeb Moritz Bunkus
my @transfers;

foreach my $row (1 .. $form->{rowcount}) {
$form->{"qty_$row"} =~ s/^\s*//;
$form->{"qty_$row"} =~ s/\s*$//;
next if (!$form->{"qty_$row"});

my $bin_idx = get_bin_idx($warehouse_idx, $form->{"src_bin_id_$row"});
$form->show_generic_error($locale->text("The selected bin does not exist.")) if (-1 == $bin_idx);
my $bin = $warehouse->{BINS}->[$bin_idx];

my $orig_qty = $form->{"qty_$row"} . " " . $form->{"unit_$row"};

my $transfer = {
'src_warehouse_id' => $form->{warehouse_id},
'transfer_type_id' => $form->{transfer_type_id},
};

096f9e3e Bernd Bleßmann
map { $transfer->{$_} = $form->{"${_}_${row}"} } qw(src_bin_id chargenumber bestbefore parts_id qty);
83914eeb Moritz Bunkus
my $entry;

foreach (@contents) {
096f9e3e Bernd Bleßmann
if (($_->{binid} == $transfer->{src_bin_id}) && ($_->{parts_id} == $transfer->{parts_id}) && ($_->{chargenumber} eq $transfer->{chargenumber}) && ($_->{bestbefore} eq $transfer->{bestbefore})) {
83914eeb Moritz Bunkus
$entry = $_;
last;
}
}

if (!$entry) {
$form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
$form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
}

$transfer->{qty} = $form->parse_amount(\%myconfig, $transfer->{qty}) * $all_units->{$form->{"unit_$row"}}->{factor};
$transfer->{qty} /= $all_units->{$entry->{partunit}}->{factor} || 1;

if (($entry->{qty} < $transfer->{qty}) || (0 >= $transfer->{qty})) {
$form->error($locale->text("There is not enough left of '#1' in bin '#2' for the removal of #3.",
$form->{"partdescription_$row"}, $bin->{description}, $orig_qty));
}

$transfer->{comment} = $form->{comment};

push @transfers, $transfer;

$entry->{qty} -= $transfer->{qty};
}

if (!scalar @transfers) {
$form->show_generic_information($locale->text('Nothing has been selected for removal.'));
09479f02 Moritz Bunkus
$::dispatcher->end_request;
83914eeb Moritz Bunkus
}

WH->transfer(@transfers);

$form->{trans_type} = 'removal';
$form->{saved_message} = $locale->text('The parts have been removed.');

transfer_warehouse_selection();

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

# --------------------------------------------------------------------
# Journal
# --------------------------------------------------------------------

sub journal {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
$main::auth->assert('warehouse_management');

my $form = $main::form;
my %myconfig = %main::myconfig;
1de53cbf Sven Donath
my $locale = $main::locale;
83914eeb Moritz Bunkus
1de53cbf Sven Donath
$form->{title} = $locale->text('Report about warehouse transactions');
83914eeb Moritz Bunkus
$form->get_lists('warehouses' => { 'key' => 'WAREHOUSES',
'bins' => 'BINS', });

show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });

$form->header();
print $form->parse_html_template("wh/journal_filter", { "UNITS" => AM->unit_select_data(AM->retrieve_units(\%myconfig, $form)) });

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

sub generate_journal {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
$main::auth->assert('warehouse_management');

my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
$form->{title} = $locale->text("WHJournal");
$form->{sort} ||= 'date';

34035b33 Martin Helmling
$form->{report_generator_output_format} = 'HTML' if !$form->{report_generator_output_format};

83914eeb Moritz Bunkus
my %filter;
65d2537d Martin Helmling
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);
83914eeb Moritz Bunkus
# filter stuff
65d2537d Martin Helmling
map { $filter{$_} = $form->{$_} if ($form->{$_}) } qw(warehouse_id bin_id classification_id partnumber description chargenumber bestbefore);
83914eeb Moritz Bunkus
$filter{qty_op} = WH->convert_qty_op($form->{qty_op});
if ($filter{qty_op}) {
13dcc338 Sven Schöling
$form->isblank("qty", $locale->text('Quantity missing.'));
$form->isblank("qty_unit", $locale->text('Unit missing.'));
83914eeb Moritz Bunkus
$filter{qty} = $form->{qty};
$filter{qty_unit} = $form->{qty_unit};
}
# /filter stuff

my $report = SL::ReportGenerator->new(\%myconfig, $form);

my @hidden_variables = map { "l_${_}" } @columns;
096f9e3e Bernd Bleßmann
push @hidden_variables, qw(warehouse_id bin_id partnumber description chargenumber bestbefore qty_op qty qty_unit fromdate todate);
65d2537d Martin Helmling
push @hidden_variables, qw(classification_id);
83914eeb Moritz Bunkus
my %column_defs = (
'date' => { 'text' => $locale->text('Date'), },
'trans_id' => { 'text' => $locale->text('Trans Id'), },
'trans_type' => { 'text' => $locale->text('Trans Type'), },
'comment' => { 'text' => $locale->text('Comment'), },
'warehouse_from' => { 'text' => $locale->text('Warehouse From'), },
'warehouse_to' => { 'text' => $locale->text('Warehouse To'), },
'bin_from' => { 'text' => $locale->text('Bin From'), },
'bin_to' => { 'text' => $locale->text('Bin To'), },
'partnumber' => { 'text' => $locale->text('Part Number'), },
65d2537d Martin Helmling
'type_and_classific'
=> { 'text' => $locale->text('Type'), },
4b937d1a Sven Donath
'partdescription' => { 'text' => $locale->text('Part Description'), },
83914eeb Moritz Bunkus
'chargenumber' => { 'text' => $locale->text('Charge Number'), },
096f9e3e Bernd Bleßmann
'bestbefore' => { 'text' => $locale->text('Best Before'), },
83914eeb Moritz Bunkus
'qty' => { 'text' => $locale->text('Qty'), },
34035b33 Martin Helmling
'unit' => { 'text' => $locale->text('Part Unit'), },
'partunit' => { 'text' => $locale->text('Unit'), },
83914eeb Moritz Bunkus
'employee' => { 'text' => $locale->text('Employee'), },
'projectnumber' => { 'text' => $locale->text('Project Number'), },
17409513 Moritz Bunkus
'oe_id' => { 'text' => $locale->text('Document'), },
83914eeb Moritz Bunkus
);

my $href = build_std_url('action=generate_journal', grep { $form->{$_} } @hidden_variables);
34035b33 Martin Helmling
my $page = $::form->{page} || 1;
map { $column_defs{$_}->{link} = $href ."&page=".$page. "&sort=${_}&order=" . Q($_ eq $form->{sort} ? 1 - $form->{order} : $form->{order}) } @columns;
83914eeb Moritz Bunkus
my %column_alignment = map { $_ => 'right' } qw(qty);

map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
65d2537d Martin Helmling
$column_defs{type_and_classific}->{visible} = 1;
$column_defs{type_and_classific}->{link} ='';
83914eeb Moritz Bunkus
$report->set_columns(%column_defs);
$report->set_column_order(@columns);

19688fca Moritz Bunkus
$report->set_export_options('generate_journal', @hidden_variables, qw(sort order));
83914eeb Moritz Bunkus
$report->set_sort_indicator($form->{sort}, $form->{order});

$report->set_options('output_format' => 'HTML',
'title' => $form->{title},
19688fca Moritz Bunkus
'attachment_basename' => strftime($locale->text('warehouse_journal_list') . '_%Y%m%d', localtime time));
83914eeb Moritz Bunkus
$report->set_options_from_form();
a873249c Moritz Bunkus
$locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
83914eeb Moritz Bunkus
my $all_units = AM->retrieve_units(\%myconfig, $form);
my @contents = WH->get_warehouse_journal(%filter);

17409513 Moritz Bunkus
my %doc_types = ( 'sales_quotation' => { script => 'oe', title => $locale->text('Sales quotation') },
'sales_order' => { script => 'oe', title => $locale->text('Sales Order') },
'request_quotation' => { script => 'oe', title => $locale->text('Request quotation') },
'purchase_order' => { script => 'oe', title => $locale->text('Purchase Order') },
'sales_delivery_order' => { script => 'do', title => $locale->text('Sales delivery order') },
'purchase_delivery_order' => { script => 'do', title => $locale->text('Purchase delivery order') },
'sales_invoice' => { script => 'is', title => $locale->text('Sales Invoice') },
'purchase_invoice' => { script => 'ir', title => $locale->text('Purchase Invoice') },
);

65d2537d Martin Helmling
my $allrows = 0;
$allrows = 1 if $form->{report_generator_output_format} ne 'HTML' ;
21889585 Sven Schöling
65d2537d Martin Helmling
# manual paginating
my $pages = {};
$pages->{per_page} = $::form->{per_page} || 15;
my $first_nr = ($page - 1) * $pages->{per_page};
my $last_nr = $first_nr + $pages->{per_page};
my $idx = 0;
21889585 Sven Schöling
13dcc338 Sven Schöling
foreach my $entry (@contents) {
65d2537d Martin Helmling
$entry->{type_and_classific} = $::request->presenter->type_abbreviation($entry->{part_type}).
$::request->presenter->classification_abbreviation($entry->{classification_id});
83914eeb Moritz Bunkus
$entry->{qty} = $form->format_amount_units('amount' => $entry->{qty},
'part_unit' => $entry->{partunit},
'conv_units' => 'convertible');
$entry->{trans_type} = $locale->text($entry->{trans_type});

my $row = { };

foreach my $column (@columns) {
$row->{$column} = {
'data' => $entry->{$column},
'align' => $column_alignment{$column},
};
}

7886b2fe Moritz Bunkus
$row->{trans_type}->{raw_data} = $entry->{trans_type};
83914eeb Moritz Bunkus
17409513 Moritz Bunkus
if ($form->{l_oe_id}) {
$row->{oe_id}->{data} = '';
my $info = $entry->{oe_id_info};

if ($info && $info->{id} && $info->{type} && $doc_types{$info->{type}}) {
$row->{oe_id} = { data => $doc_types{ $info->{type} }->{title} . ' ' . $info->{number},
link => build_std_url('script=' . $doc_types{ $info->{type} }->{script} . '.pl', 'action=edit', 'id=' . $info->{id}, 'type=' . $info->{type}) };
}
}

34035b33 Martin Helmling
if ( $allrows || ($idx >= $first_nr && $idx < $last_nr )) {
$report->add_data($row);
}
$idx++;
83914eeb Moritz Bunkus
}

34035b33 Martin Helmling
if ( ! $allrows ) {
$pages->{max} = SL::DB::Helper::Paginated::ceil($idx, $pages->{per_page}) || 1;
$pages->{page} = $page < 1 ? 1: $page > $pages->{max} ? $pages->{max}: $page;
$pages->{common} = [ grep { $_->{visible} } @{ SL::DB::Helper::Paginated::make_common_pages($pages->{page}, $pages->{max}) } ];

$report->set_options('raw_bottom_info_text' => $form->parse_html_template('common/paginate',
{ 'pages' => $pages , 'base_url' => $href}) );
}
83914eeb Moritz Bunkus
$report->generate_with_headers();

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

# --------------------------------------------------------------------
# Report
# --------------------------------------------------------------------

sub report {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

$main::auth->assert('warehouse_contents | warehouse_management');
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
$form->get_lists('warehouses' => { 'key' => 'WAREHOUSES',
'bins' => 'BINS', });

show_no_warehouses_error() if (!scalar @{ $form->{WAREHOUSES} });

1de53cbf Sven Donath
$form->{title} = $locale->text("Report about warehouse contents");
83914eeb Moritz Bunkus
$form->header();
print $form->parse_html_template("wh/report_filter",
{ "nextsub" => "generate_report",
"WAREHOUSES" => $form->{WAREHOUSES},
"UNITS" => AM->unit_select_data(AM->retrieve_units(\%myconfig, $form)) });

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

sub generate_report {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

$main::auth->assert('warehouse_contents | warehouse_management');
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
1de53cbf Sven Donath
$form->{title} = $locale->text("Report about warehouse contents");
83914eeb Moritz Bunkus
$form->{sort} ||= 'partnumber';
34035b33 Martin Helmling
$form->{sort} ||= 'partunit';
83914eeb Moritz Bunkus
my $sort_col = $form->{sort};

my %filter;
65d2537d Martin Helmling
my @columns = qw(warehousedescription bindescription partnumber type_and_classific partdescription chargenumber bestbefore comment qty partunit stock_value);
83914eeb Moritz Bunkus
# filter stuff
65d2537d Martin Helmling
map { $filter{$_} = $form->{$_} if ($form->{$_}) } qw(warehouse_id bin_id classification_id partnumber description chargenumber bestbefore date include_invalid_warehouses);
83914eeb Moritz Bunkus
bea5a6c5 Jan Büren
# show filter stuff also in report
my @options;
65d2537d Martin Helmling
my $currentdate = $form->current_date(\%myconfig);
push @options, $locale->text('Printdate') . " : ".$locale->date(\%myconfig, $currentdate, 1);

bea5a6c5 Jan Büren
# dispatch all options
my $dispatch_options = {
71d8ea65 Jan Büren
warehouse_id => sub { push @options, $locale->text('Warehouse') . " : " .
SL::DB::Manager::Warehouse->find_by(id => $form->{warehouse_id})->description},
bin_id => sub { push @options, $locale->text('Bin') . " : " .
SL::DB::Manager::Bin->find_by(id => $form->{bin_id})->description},
partnumber => sub { push @options, $locale->text('Partnumber') . " : $form->{partnumber}"},
65d2537d Martin Helmling
classification_id => sub { push @options, $locale->text('Parts Classification'). " : ".
SL::DB::Manager::PartClassification->get_first(where => [ id => $form->{classification_id} ] )->description; },
71d8ea65 Jan Büren
description => sub { push @options, $locale->text('Description') . " : $form->{description}"},
chargenumber => sub { push @options, $locale->text('Charge Number') . " : $form->{chargenumber}"},
bestbefore => sub { push @options, $locale->text('Best Before') . " : $form->{bestbefore}"},
bea5a6c5 Jan Büren
include_invalid_warehouses => sub { push @options, $locale->text('Include invalid warehouses ')},
};
foreach (keys %filter) {
71d8ea65 Jan Büren
$dispatch_options->{$_}->() if $dispatch_options->{$_};
bea5a6c5 Jan Büren
}
65d2537d Martin Helmling
push @options, $locale->text('Stock Qty for Date') . " " . $locale->date(\%myconfig, $form->{date}?$form->{date}:$currentdate, 1);

bea5a6c5 Jan Büren
# / end show filter stuff also in report

83914eeb Moritz Bunkus
$filter{qty_op} = WH->convert_qty_op($form->{qty_op});
if ($filter{qty_op}) {
13dcc338 Sven Schöling
$form->isblank("qty", $locale->text('Quantity missing.'));
$form->isblank("qty_unit", $locale->text('Unit missing.'));
83914eeb Moritz Bunkus
$filter{qty} = $form->{qty};
$filter{qty_unit} = $form->{qty_unit};
}
# /filter stuff

$form->{subtotal} = '' if (!first { $_ eq $sort_col } qw(partnumber partdescription));

34035b33 Martin Helmling
$form->{report_generator_output_format} = 'HTML' if !$form->{report_generator_output_format};
83914eeb Moritz Bunkus
my $report = SL::ReportGenerator->new(\%myconfig, $form);

my @hidden_variables = map { "l_${_}" } @columns;
34035b33 Martin Helmling
push @hidden_variables, qw(warehouse_id bin_id partnumber partstypes_id description chargenumber bestbefore qty_op qty qty_unit partunit l_warehousedescription l_bindescription);
3cdcdc91 Jan Büren
push @hidden_variables, qw(include_empty_bins subtotal include_invalid_warehouses date);
65d2537d Martin Helmling
push @hidden_variables, qw(classification_id);
83914eeb Moritz Bunkus
my %column_defs = (
'warehousedescription' => { 'text' => $locale->text('Warehouse'), },
'bindescription' => { 'text' => $locale->text('Bin'), },
'partnumber' => { 'text' => $locale->text('Part Number'), },
65d2537d Martin Helmling
'type_and_classific' => { 'text' => $locale->text('Type'), },
4b937d1a Sven Donath
'partdescription' => { 'text' => $locale->text('Part Description'), },
83914eeb Moritz Bunkus
'chargenumber' => { 'text' => $locale->text('Charge Number'), },
096f9e3e Bernd Bleßmann
'bestbefore' => { 'text' => $locale->text('Best Before'), },
83914eeb Moritz Bunkus
'qty' => { 'text' => $locale->text('Qty'), },
34035b33 Martin Helmling
'partunit' => { 'text' => $locale->text('Unit'), },
82498fb7 Moritz Bunkus
'stock_value' => { 'text' => $locale->text('Stock value'), },
83914eeb Moritz Bunkus
);

my $href = build_std_url('action=generate_report', grep { $form->{$_} } @hidden_variables);
34035b33 Martin Helmling
my $page = $::form->{page} || 1;
map { $column_defs{$_}->{link} = $href . "&page=".$page."&sort=${_}&order=" . Q($_ eq $sort_col ? 1 - $form->{order} : $form->{order}) } @columns;
83914eeb Moritz Bunkus
82498fb7 Moritz Bunkus
my %column_alignment = map { $_ => 'right' } qw(qty stock_value);
83914eeb Moritz Bunkus
map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;

65d2537d Martin Helmling
$column_defs{type_and_classific}->{visible} = 1;
$column_defs{type_and_classific}->{link} ='';

83914eeb Moritz Bunkus
$report->set_columns(%column_defs);
$report->set_column_order(@columns);

19688fca Moritz Bunkus
$report->set_export_options('generate_report', @hidden_variables, qw(sort order));
83914eeb Moritz Bunkus
$report->set_sort_indicator($sort_col, $form->{order});

bea5a6c5 Jan Büren
$report->set_options('top_info_text' => join("\n", @options),
'output_format' => 'HTML',
83914eeb Moritz Bunkus
'title' => $form->{title},
19688fca Moritz Bunkus
'attachment_basename' => strftime($locale->text('warehouse_report_list') . '_%Y%m%d', localtime time));
83914eeb Moritz Bunkus
$report->set_options_from_form();
a873249c Moritz Bunkus
$locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
83914eeb Moritz Bunkus
my $all_units = AM->retrieve_units(\%myconfig, $form);
my @contents = WH->get_warehouse_report(%filter);

my $idx = 0;

82498fb7 Moritz Bunkus
my @subtotals_columns = qw(qty stock_value);
my %subtotals = map { $_ => 0 } @subtotals_columns;

my $total_stock_value = 0;

34035b33 Martin Helmling
my $allrows = 0;
$allrows = 1 if $form->{report_generator_output_format} ne 'HTML' ;

# manual paginating
my $pages = {};
$pages->{per_page} = $::form->{per_page} || 20;
my $first_nr = ($page - 1) * $pages->{per_page};
my $last_nr = $first_nr + $pages->{per_page};

13dcc338 Sven Schöling
foreach my $entry (@contents) {
65d2537d Martin Helmling
$entry->{type_and_classific} = $::request->presenter->type_abbreviation($entry->{part_type}).
$::request->presenter->classification_abbreviation($entry->{classification_id});
82498fb7 Moritz Bunkus
map { $subtotals{$_} += $entry->{$_} } @subtotals_columns;
$total_stock_value += $entry->{stock_value} * 1;
34035b33 Martin Helmling
$entry->{qty} = $form->format_amount(\%myconfig, $entry->{qty});
# $entry->{qty} = $form->format_amount_units('amount' => $entry->{qty},
# 'part_unit' => $entry->{partunit},
# 'conv_units' => 'convertible');
82498fb7 Moritz Bunkus
$entry->{stock_value} = $form->format_amount(\%myconfig, $entry->{stock_value} * 1, 2);
83914eeb Moritz Bunkus
13dcc338 Sven Schöling
my $row_set = [ { map { $_ => { 'data' => $entry->{$_}, 'align' => $column_alignment{$_} } } @columns } ];
83914eeb Moritz Bunkus
0185267e Thomas Heck
if ( ($form->{subtotal} eq 'Y' && !$form->{report_generator_csv_options_for_import} )
83914eeb Moritz Bunkus
&& (($idx == (scalar @contents - 1))
|| ($entry->{$sort_col} ne $contents[$idx + 1]->{$sort_col}))) {

my $row = { map { $_ => { 'data' => '', 'class' => 'listsubtotal', 'align' => $column_alignment{$_}, } } @columns };
34035b33 Martin Helmling
$row->{qty}->{data} = $form->format_amount(\%myconfig, $subtotals{qty});
# $row->{qty}->{data} = $form->format_amount_units('amount' => $subtotals{qty} * 1,
# 'part_unit' => $entry->{partunit},
# 'conv_units' => 'convertible');
82498fb7 Moritz Bunkus
$row->{stock_value}->{data} = $form->format_amount(\%myconfig, $subtotals{stock_value} * 1, 2);

%subtotals = map { $_ => 0 } @subtotals_columns;
83914eeb Moritz Bunkus
push @{ $row_set }, $row;
}

34035b33 Martin Helmling
if ( $allrows || ($idx >= $first_nr && $idx < $last_nr )) {
21889585 Sven Schöling
$report->add_data($row_set);
34035b33 Martin Helmling
}
83914eeb Moritz Bunkus
$idx++;
}

0185267e Thomas Heck
if ( $column_defs{stock_value}->{visible} && !$form->{report_generator_csv_options_for_import} ) {
82498fb7 Moritz Bunkus
$report->add_separator();

my $row = { map { $_ => { 'data' => '', 'class' => 'listsubtotal', } } @columns };

my $left_col = first { $column_defs{$_}->{visible} } @columns;

$row->{$left_col}->{data} = $locale->text('Total stock value');
$row->{stock_value}->{data} = $form->format_amount(\%myconfig, $total_stock_value, 2);
$row->{stock_value}->{align} = 'right';

$report->add_data($row);
}

83914eeb Moritz Bunkus
$report->generate_with_headers();

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

# --------------------------------------------------------------------
# Utility functions
# --------------------------------------------------------------------

sub show_no_warehouses_error {
13dcc338 Sven Schöling
$main::lxdebug->enter_sub();

my $form = $main::form;
my %myconfig = %main::myconfig;
my $locale = $main::locale;
83914eeb Moritz Bunkus
e1bfe807 Geoffrey Richardson
my $msg = $locale->text('No warehouse has been created yet or the quantity of the bins is not configured yet.') . ' ';
83914eeb Moritz Bunkus
4bd1e2f8 Sven Schöling
if ($main::auth->check_right($::myconfig{login}, 'config')) {
83914eeb Moritz Bunkus
$msg .= $locale->text('You can create warehouses and bins via the menu "System -> Warehouses".');
} else {
$msg .= $locale->text('Please ask your administrator to create warehouses and bins.');
}

$form->show_generic_error($msg);

13dcc338 Sven Schöling
$main::lxdebug->leave_sub();
83914eeb Moritz Bunkus
}

sub get_warehouse_idx {
my ($warehouse_id) = @_;

13dcc338 Sven Schöling
my $form = $main::form;

83914eeb Moritz Bunkus
for (my $i = 0; $i < scalar @{$form->{WAREHOUSES}}; $i++) {
return $i if ($form->{WAREHOUSES}->[$i]->{id} == $warehouse_id);
}

return -1;
}

sub get_bin_idx {
my ($warehouse_index, $bin_id) = @_;

13dcc338 Sven Schöling
my $form = $main::form;

83914eeb Moritz Bunkus
my $warehouse = $form->{WAREHOUSES}->[$warehouse_index];

return -1 if (!$warehouse);

for (my $i = 0; $i < scalar @{ $warehouse->{BINS} }; $i++) {
return $i if ($warehouse->{BINS}->[$i]->{id} == $bin_id);
}

return -1;
}

fa73b837 Sven Schöling
sub new_item {
$main::lxdebug->enter_sub();
my %params = @_;

13dcc338 Sven Schöling
my $form = $main::form;

fa73b837 Sven Schöling
# change callback
$form->{old_callback} = $form->escape($form->{callback}, 1);
$form->{callback} = $form->escape("$form->{script}?action=$params{action}", 1);

# save all form variables except action in a previousform variable
my $previousform = join '&', map { my $value = $form->{$_}; $value =~ s/&/%26/; "$_=$value" } grep { !/action/ } keys %$form;
13dcc338 Sven Schöling
my @HIDDENS = ();
fa73b837 Sven Schöling
# push @HIDDENS, { 'name' => 'previousform', 'value' => $form->escape($previousform, 1) };
push @HIDDENS, map +{ 'name' => $_, 'value' => $form->{$_} }, qw(partnumber description unit vc sellprice ean);
push @HIDDENS, { 'name' => 'taxaccount2', 'value' => $form->{taxaccounts} };
push @HIDDENS, { 'name' => 'notes', 'value' => $form->{longdescription} };

$form->header();
print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );

$main::lxdebug->leave_sub();
}

83914eeb Moritz Bunkus
sub update {
13dcc338 Sven Schöling
my $form = $main::form;
83914eeb Moritz Bunkus
call_sub($form->{update_nextsub} || $form->{nextsub});
}

sub continue {
13dcc338 Sven Schöling
my $form = $main::form;
83914eeb Moritz Bunkus
call_sub($form->{continue_nextsub} || $form->{nextsub});
}

sub stock {
13dcc338 Sven Schöling
my $form = $main::form;
83914eeb Moritz Bunkus
call_sub($form->{stock_nextsub} || $form->{nextsub});
}

1;
66022cbd Sven Schöling
__END__

=head1 NAME

bin/mozilla/wh.pl - Warehouse frontend.

=head1 FUNCTIONS

=over 4

=item new_item

call new item dialogue from warehouse masks.

PARAMS:
action => name of sub to be called when new item is done

=back

=cut