X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FController%2FCsvImport%2FBaseMulti.pm;fp=SL%2FController%2FCsvImport%2FBaseMulti.pm;h=9ddb86beabe144e9057c628126428c688d465cf0;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=973a4ae8e93fe6f8a0673e4c004301585670eace;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44;p=kivitendo-erp.git diff --git a/SL/Controller/CsvImport/BaseMulti.pm b/SL/Controller/CsvImport/BaseMulti.pm index 973a4ae8e..9ddb86bea 100644 --- a/SL/Controller/CsvImport/BaseMulti.pm +++ b/SL/Controller/CsvImport/BaseMulti.pm @@ -2,7 +2,7 @@ package SL::Controller::CsvImport::BaseMulti; use strict; -use List::MoreUtils qw(pairwise); +use List::MoreUtils qw(pairwise firstidx); use SL::Helper::Csv; @@ -22,7 +22,7 @@ sub run { my $profile = $self->profile; - $self->csv(SL::Helper::Csv->new(file => $self->file->file_name, + $self->csv(SL::Helper::Csv->new(file => ('SCALAR' eq ref $self->file)? $self->file: $self->file->file_name, encoding => $self->controller->profile->get('charset'), profile => $profile, ignore_unknown_columns => 1, @@ -94,6 +94,17 @@ sub run { $::myconfig{numberformat} = $old_numberformat; } +sub init_manager_class { + my ($self) = @_; + + my @manager_classes; + foreach my $class (@{ $self->class }) { + $class =~ m/^SL::DB::(.+)/; + push @manager_classes, "SL::DB::Manager::" . $1; + } + $self->manager_class(\@manager_classes); +} + sub add_columns { my ($self, $row_ident, @columns) = @_; @@ -158,8 +169,12 @@ sub init_cvar_columns_by { sub handle_cvars { my ($self, $entry, %params) = @_; + return if @{ $entry->{errors} }; + return unless $entry->{object}->can('cvars_by_config'); + my %type_to_column = ( text => 'text_value', textfield => 'text_value', + htmlfield => 'text_value', select => 'text_value', date => 'timestamp_value_as_date', timestamp => 'timestamp_value_as_date', @@ -167,13 +182,21 @@ sub handle_cvars { bool => 'bool_value' ); $params{sub_module} ||= ''; + + # autovivify all cvars (cvars_by_config will do that for us) my @cvars; + @cvars = @{ $entry->{object}->cvars_by_config }; + foreach my $config (@{ $self->cvar_configs_by->{row_ident}->{$entry->{raw_data}->{datatype}} }) { next unless exists $entry->{raw_data}->{ "cvar_" . $config->name }; 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, sub_module => $params{sub_module}); + my $cvar = SL::DB::CustomVariable->new(config_id => $config->id, $column => $value, sub_module => $params{sub_module}); + + # replace autovivified cvar by new one + my $idx = firstidx { $_->config_id == $config->id } @cvars; + $cvars[$idx] = $cvar if -1 != $idx; } $entry->{object}->custom_variables(\@cvars) if @cvars; @@ -187,6 +210,18 @@ sub init_profile { eval "require " . $class; my %unwanted = map { ( $_ => 1 ) } (qw(itime mtime), map { $_->name } @{ $class->meta->primary_key_columns }); + + # TODO: exceptions for AccTransaction and Invoice wh + if ( $class =~ m/^SL::DB::AccTransaction/ ) { + my %unwanted_acc_trans = map { ( $_ => 1 ) } (qw(acc_trans_id trans_id cleared fx_transaction ob_transaction cb_transaction itime mtime chart_link tax_id description gldate memo source transdate), map { $_->name } @{ $class->meta->primary_key_columns }); + @unwanted{keys %unwanted_acc_trans} = values %unwanted_acc_trans; + }; + if ( $class =~ m/^SL::DB::Invoice/ ) { + # remove fields that aren't needed / shouldn't be set for ar transaction + my %unwanted_ar = map { ( $_ => 1 ) } (qw(closed currency currency_id datepaid dunning_config_id gldate invnumber_for_credit_note invoice marge_percent marge_total amount netamount paid shippingpoint shipto_id shipvia storno storno_id type cp_id), map { $_->name } @{ $class->meta->primary_key_columns }); + @unwanted{keys %unwanted_ar} = values %unwanted_ar; + }; + my %prof; $prof{datatype} = ''; for my $col ($class->meta->columns) { @@ -268,7 +303,7 @@ sub fix_field_lengths { my %field_lengths_by_ri = $self->field_lengths; foreach my $entry (@{ $self->controller->data }) { - next unless @{ $entry->{errors} }; + next unless defined $entry->{errors} && @{ $entry->{errors} }; my %field_lengths = %{ $field_lengths_by_ri{ $entry->{raw_data}->{datatype} } }; map { $entry->{object}->$_(substr($entry->{object}->$_, 0, $field_lengths{$_})) if $entry->{object}->$_ } keys %field_lengths; } @@ -279,4 +314,3 @@ sub fix_field_lengths { sub is_multiplexed { 1 } 1; -