X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FCsvImport.pm;h=790d477cf21c19a5e6cd37df0118d1be9363fcef;hb=4b65183fea159f1912c806b159cee0fbbcbe7f46;hp=b74b04be038926c822cbd8471030d2abec34a3d4;hpb=d180d84e035a21291e2dc186b4430e3336998156;p=kivitendo-erp.git diff --git a/SL/Controller/CsvImport.pm b/SL/Controller/CsvImport.pm index b74b04be0..790d477cf 100644 --- a/SL/Controller/CsvImport.pm +++ b/SL/Controller/CsvImport.pm @@ -17,6 +17,7 @@ use SL::Controller::CsvImport::Inventory; use SL::Controller::CsvImport::Shipto; use SL::Controller::CsvImport::Project; use SL::Controller::CsvImport::Order; +use SL::Controller::CsvImport::ARTransaction; use SL::JSON; use SL::Controller::CsvImport::BankTransaction; use SL::BackgroundJob::CsvImport; @@ -30,8 +31,8 @@ use parent qw(SL::Controller::Base); use Rose::Object::MakeMethods::Generic ( scalar => [ qw(type profile file all_profiles all_charsets sep_char all_sep_chars quote_char all_quote_chars escape_char all_escape_chars all_buchungsgruppen all_units - import_status errors headers raw_data_headers info_headers data num_imported num_importable displayable_columns file all_taxzones) ], - 'scalar --get_set_init' => [ qw(worker task_server) ], + import_status errors headers raw_data_headers info_headers data num_importable displayable_columns file all_taxzones) ], + 'scalar --get_set_init' => [ qw(worker task_server num_imported mappings) ], 'array' => [ progress_tracker => { }, add_progress_tracker => { interface => 'add', hash_key => 'progress_tracker' }, @@ -100,7 +101,7 @@ sub action_result { $self->profile($profile); if ($data->{errors} and my $first_error = $data->{errors}->[0]) { - flash('error', $::locale->text('There was an error parsing the csv file: #1 in line #2.', $first_error->[2], $first_error->[0])); + flash('error', $::locale->text('There was an error parsing the csv file: #1 in line #2: #3', $first_error->[2], $first_error->[0], $first_error->[1])); } if ($data->{progress}{finished} || $data->{errors}) { @@ -212,6 +213,53 @@ sub action_report { $self->render('csv_import/report', { layout => !($params{no_layout} || $::form->{no_layout}) }); } +sub action_add_empty_mapping_line { + my ($self) = @_; + + $self->profile_from_form; + $self->setup_help; + + $self->js + ->append('#csv_import_mappings', $self->render('csv_import/_mapping_item', { layout => 0, output => 0 })) + ->hide('#mapping_empty') + ->render; +} + +sub action_add_mapping_from_upload { + my ($self) = @_; + + $self->profile_from_form; + $self->setup_help; + + my $file = SL::SessionFile->new($self->csv_file_name, mode => '<', encoding => $self->profile->get('charset')); + if (!$file->fh) { + $self->js + ->flash('error', t8('No file has been uploaded yet.')) + ->render; + return; + } + + my $csv = SL::Helper::Csv->new( + file => $file->file_name, + map { $_ => $self->profile->get($_) } qw(sep_char escape_char quote_char), + ); + + $csv->_open_file; + my $header = $csv->check_header; + + for my $field (@$header) { + next if $self->mappings_for_profile->{$field}; + $self->js->append( + '#csv_import_mappings', + $self->render('csv_import/_mapping_item', { layout => 0, output => 0 }, item => { from => $field }), + ); + } + + $self->js + ->hide('#mapping_empty') + ->render; +} + # # filters @@ -224,7 +272,7 @@ sub check_auth { sub check_type { my ($self) = @_; - die "Invalid CSV import type" if none { $_ eq $::form->{profile}->{type} } qw(parts inventories customers_vendors addresses contacts projects orders bank_transactions); + die "Invalid CSV import type" if none { $_ eq $::form->{profile}->{type} } qw(parts inventories customers_vendors addresses contacts projects orders bank_transactions ar_transactions); $self->type($::form->{profile}->{type}); } @@ -270,9 +318,10 @@ sub render_inputs { : $self->type eq 'projects' ? $::locale->text('CSV import: projects') : $self->type eq 'orders' ? $::locale->text('CSV import: orders') : $self->type eq 'bank_transactions' ? $::locale->text('CSV import: bank transactions') + : $self->type eq 'ar_transactions' ? $::locale->text('CSV import: ar transactions') : die; - if ($self->{type} eq 'customers_vendors' or $self->{type} eq 'orders' ) { + if ($self->{type} eq 'customers_vendors' or $self->{type} eq 'orders' or $self->{type} eq 'ar_transactions' ) { $self->all_taxzones(SL::DB::Manager::TaxZone->get_all_sorted(query => [ obsolete => 0 ])); }; @@ -370,6 +419,7 @@ sub load_default_profile { $profile ||= SL::DB::CsvImportProfile->new(type => $self->{type}, login => $::myconfig{login}); $self->profile($profile); + $self->mappings(SL::JSON::from_json($self->profile->get('json_mappings'))) if $self->profile->get('json_mappings'); $self->worker->set_profile_defaults; $self->profile->set_defaults; } @@ -414,6 +464,9 @@ sub profile_from_form { $self->profile->assign_attributes(%{ $::form->{profile} }); $self->profile->settings(map({ { key => $_, value => $::form->{settings}->{$_} } } keys %{ $::form->{settings} }), @settings); + + $self->profile->set('json_mappings', JSON::to_json($self->mappings)); + $self->profile->set_defaults; } @@ -626,9 +679,12 @@ sub init_worker { : $self->{type} eq 'projects' ? SL::Controller::CsvImport::Project->new(@args) : $self->{type} eq 'orders' ? SL::Controller::CsvImport::Order->new(@args) : $self->{type} eq 'bank_transactions' ? SL::Controller::CsvImport::BankTransaction->new(@args) + : $self->{type} eq 'ar_transactions' ? SL::Controller::CsvImport::ARTransaction->new(@args) : die "Program logic error"; } +sub init_num_imported { 0 } + sub setup_help { my ($self) = @_; @@ -659,4 +715,12 @@ sub check_task_server { 1; } +sub mappings_for_profile { + +{ map { $_->{from} => $_->{to} } @{ $_[0]->mappings } } +} + +sub init_mappings { + [ grep { $_->{from} } @{ $::form->{mappings} || [] } ] +} + 1;