Revision 5ee61c6f
Von Bernd Bleßmann vor etwa 3 Jahren hinzugefügt
bin/mozilla/wh.pl | ||
---|---|---|
817 | 817 |
my %myconfig = %main::myconfig; |
818 | 818 |
my $locale = $main::locale; |
819 | 819 |
|
820 |
my $cvar_configs = CVar->get_configs('module' => 'IC'); |
|
821 |
|
|
822 | 820 |
$form->{title} = $locale->text("Report about warehouse contents"); |
823 | 821 |
$form->{sort} ||= 'partnumber'; |
824 | 822 |
my $sort_col = $form->{sort}; |
... | ... | |
894 | 892 |
|
895 | 893 |
my $report = SL::ReportGenerator->new(\%myconfig, $form); |
896 | 894 |
|
895 |
my $cvar_configs = CVar->get_configs('module' => 'IC'); |
|
897 | 896 |
my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; |
898 | 897 |
push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables; |
899 | 898 |
|
Auch abrufbar als: Unified diff
Kosmetik: CVars für Lagerbestand: Variablendeklaration näher an Verwendung