From: Sven Schöling Date: Fri, 11 Oct 2013 12:25:00 +0000 (+0200) Subject: Ungültige Lager beim Einlagern ausblenden. X-Git-Tag: release-3.1.0beta1~58 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=446556531b74ff759a6ee6a338ff83325863a6d0;p=kivitendo-erp.git Ungültige Lager beim Einlagern ausblenden. behebt #2377 --- diff --git a/SL/Controller/Inventory.pm b/SL/Controller/Inventory.pm index 2a5b8de4a..f3f29388d 100644 --- a/SL/Controller/Inventory.pm +++ b/SL/Controller/Inventory.pm @@ -123,7 +123,7 @@ sub _check_warehouses { } sub init_warehouses { - SL::DB::Manager::Warehouse->get_all; + SL::DB::Manager::Warehouse->get_all(query => [ or => [ invalid => 0, invalid => undef ]]); } sub init_units { @@ -150,8 +150,8 @@ sub set_target_from_part { sub sanitize_target { my ($self) = @_; - $self->warehouse(SL::DB::Manager::Warehouse->get_first) if !$self->warehouse || !$self->warehouse->id; - $self->bin ($self->warehouse->bins->[0]) if !$self->bin || !$self->bin->id; + $self->warehouse($self->warehouses->[0]) if !$self->warehouse || !$self->warehouse->id; + $self->bin ($self->warehouse->bins->[0]) if !$self->bin || !$self->bin->id; } sub load_part_from_form {