Revision ca09815c
Von Tamino Steinert vor fast 2 Jahren hinzugefügt
SL/BackgroundJob/CheckBelowMinimumStock.pm | ||
---|---|---|
my $content_type = $filename =~ m/.html$/ ? 'text/html' : 'text/plain';
|
||
|
||
my @ids = @{$self->{job_obj}->data_as_hash->{ids}};
|
||
my @parts = @{SL::DB::Manager::Part->get_all(id => @ids)};
|
||
my @parts = @{SL::DB::Manager::Part->get_all(where => [id => @ids])};
|
||
|
||
|
||
my $table_head = html_tag('tr',
|
Auch abrufbar als: Unified diff
BJ: CheckBelowMinimumStock: FIX: nutze Artikel IDs korrekt