Revision 8b7b7701
Von Thomas Heck vor etwa 12 Jahren hinzugefügt
SL/Controller/CsvImport/Base.pm | ||
---|---|---|
185 | 185 |
my $value = $entry->{raw_data}->{ "cvar_" . $config->name }; |
186 | 186 |
my $column = $type_to_column{ $config->type } || die "Program logic error: unknown custom variable storage type"; |
187 | 187 |
|
188 |
push @cvars, SL::DB::CustomVariable->new(config_id => $config->id, $column => $value); |
|
188 |
push @cvars, SL::DB::CustomVariable->new(config_id => $config->id, $column => $value, sub_module => '');
|
|
189 | 189 |
} |
190 | 190 |
|
191 | 191 |
$entry->{object}->custom_variables(\@cvars); |
Auch abrufbar als: Unified diff
CSV-Import für benutzerdefinierte Variablen gefixt
Sollte nun mit allen CSV-Imports funktionieren. Der alte Fix
hat nur mit Customer/Vendor funktioniert.