X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FController%2FTopQuickSearch%2FArticle.pm;h=e689bbe81db14512c111130e96d283012909e9ce;hb=fc9829b3ee7076be97b2b9511994d18b0c6d4b84;hp=89f9d8d02ed4ac427b1e13f2daad7f20ab4da756;hpb=f8f23e033bb8a60e1bb56e44668b571525747f39;p=kivitendo-erp.git diff --git a/SL/Controller/TopQuickSearch/Article.pm b/SL/Controller/TopQuickSearch/Article.pm index 89f9d8d02..e689bbe81 100644 --- a/SL/Controller/TopQuickSearch/Article.pm +++ b/SL/Controller/TopQuickSearch/Article.pm @@ -56,7 +56,7 @@ sub redirect_to_search { controller => 'ic.pl', action => 'generate_report', all => $term, - (searchitems => $self->type) x!!$self->type, + (searchitems => $self->part_type) x!!$self->part_type, ); } @@ -64,13 +64,13 @@ sub redirect_to_part { my ($self, $term) = @_; SL::Controller::Base->new->url_for( - controller => 'ic.pl', - action => 'edit', - id => $term, + controller => 'controller.pl', + action => 'Part/edit', + 'part.id' => $term, ); } -sub type { +sub part_type { () } @@ -82,7 +82,8 @@ sub init_models { model => 'Part', source => { filter => { - (type => $self->type) x!!$self->type, + (part_type => $self->part_type) x!!$self->part_type, + or => [ obsolete => undef, obsolete => 0 ], 'all:substr:multi::ilike' => $::form->{term}, }, },