From: Thomas Heck Date: Tue, 21 Aug 2012 07:55:49 +0000 (+0200) Subject: CSV-Import für benutzerdefinierte Variablen gefixt X-Git-Tag: release-3.0.0beta1~279 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=8b7b7701eb646c89dae0e8aad8cfc2c5276f8ad6;p=kivitendo-erp.git CSV-Import für benutzerdefinierte Variablen gefixt Sollte nun mit allen CSV-Imports funktionieren. Der alte Fix hat nur mit Customer/Vendor funktioniert. --- diff --git a/SL/Controller/CsvImport/Base.pm b/SL/Controller/CsvImport/Base.pm index 31d1d9ece..5aa6066b0 100644 --- a/SL/Controller/CsvImport/Base.pm +++ b/SL/Controller/CsvImport/Base.pm @@ -185,7 +185,7 @@ sub handle_cvars { my $value = $entry->{raw_data}->{ "cvar_" . $config->name }; my $column = $type_to_column{ $config->type } || die "Program logic error: unknown custom variable storage type"; - push @cvars, SL::DB::CustomVariable->new(config_id => $config->id, $column => $value); + push @cvars, SL::DB::CustomVariable->new(config_id => $config->id, $column => $value, sub_module => ''); } $entry->{object}->custom_variables(\@cvars);