X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FCsvImport.pm;h=99f53c0bd8852b440e75662ebe8f80a08ea74701;hb=fc41222c61dbee590005f04c50e8603581462543;hp=806429d7d46848fdd8cd7462d3af16a3ad9244df;hpb=13b5fc65921f5c030a64a3c6f2faf4c822bc14a4;p=kivitendo-erp.git diff --git a/SL/Controller/CsvImport.pm b/SL/Controller/CsvImport.pm index 806429d7d..99f53c0bd 100644 --- a/SL/Controller/CsvImport.pm +++ b/SL/Controller/CsvImport.pm @@ -4,9 +4,14 @@ use strict; use SL::DB::Buchungsgruppe; use SL::DB::CsvImportProfile; +use SL::DB::Unit; use SL::Helper::Flash; use SL::SessionFile; +use SL::Controller::CsvImport::Contact; use SL::Controller::CsvImport::CustomerVendor; +use SL::Controller::CsvImport::Part; +use SL::Controller::CsvImport::Shipto; +use SL::Controller::CsvImport::Project; use List::MoreUtils qw(none); @@ -14,8 +19,9 @@ 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 - import_status errors headers data num_imported num_importable) ], + 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) ], + 'scalar --get_set_init' => [ qw(worker) ] ); __PACKAGE__->run_before('check_auth'); @@ -64,6 +70,26 @@ sub action_destroy { $self->redirect_to(action => 'new', 'profile.type' => $self->type); } +sub action_download_sample { + my $self = shift; + + $self->profile_from_form; + $self->setup_help; + + my $file_name = 'csv_import_sample_' . $self->type . '.csv'; + my $file = SL::SessionFile->new($file_name, mode => '>', encoding => $self->profile->get('charset')); + my $csv = Text::CSV_XS->new({ binary => 1, map { ( $_ => $self->profile->get($_) ) } qw(sep_char escape_char quote_char),}); + + $csv->print($file->fh, [ map { $_->{name} } @{ $self->displayable_columns } ]); + $file->fh->print("\r\n"); + $csv->print($file->fh, [ map { $_->{description} } @{ $self->displayable_columns } ]); + $file->fh->print("\r\n"); + + $file->fh->close; + + $self->send_file($file->file_name, name => $file_name); +} + # # filters # @@ -75,7 +101,7 @@ sub check_auth { sub check_type { my ($self) = @_; - die "Invalid CSV import type" if none { $_ eq $::form->{profile}->{type} } qw(parts customers_vendors addresses contacts); + die "Invalid CSV import type" if none { $_ eq $::form->{profile}->{type} } qw(parts customers_vendors addresses contacts projects); $self->type($::form->{profile}->{type}); } @@ -117,9 +143,15 @@ sub render_inputs { : $self->type eq 'addresses' ? $::locale->text('CSV import: shipping addresses') : $self->type eq 'contacts' ? $::locale->text('CSV import: contacts') : $self->type eq 'parts' ? $::locale->text('CSV import: parts and services') + : $self->type eq 'projects' ? $::locale->text('CSV import: projects') : die; - $self->all_buchungsgruppen(SL::DB::Manager::Buchungsgruppe->get_all_sorted); + if ($self->{type} eq 'parts') { + $self->all_buchungsgruppen(SL::DB::Manager::Buchungsgruppe->get_all_sorted); + $self->all_units(SL::DB::Manager::Unit->get_all_sorted); + } + + $self->setup_help; $self->render('csv_import/form', title => $title); } @@ -141,15 +173,20 @@ sub test_and_import { return $self->action_new; } - my $worker = $self->{type} eq 'customers_vendors' ? SL::Controller::CsvImport::CustomerVendor->new(controller => $self, file => $file) - : die "Program logic error"; + $self->file($file); + + my $worker = $self->worker(); $worker->run; + + $self->num_imported(0); $worker->save_objects if !$params{test}; - $self->num_importable(scalar grep { !$_ } map { scalar @{ $_->{errors} } } @{ $self->data }); + $self->num_importable(scalar grep { !$_ } map { scalar @{ $_->{errors} } } @{ $self->data || [] }); $self->import_status($params{test} ? 'tested' : 'imported'); + flash('info', $::locale->text('Objects have been imported.')) if !$params{test}; + $self->action_new; } @@ -188,6 +225,10 @@ sub profile_from_form { push @settings, { key => "${type}_char", value => $char }; } + if ($self->type eq 'parts') { + $::form->{settings}->{sellprice_adjustment} = $::form->parse_amount(\%::myconfig, $::form->{settings}->{sellprice_adjustment}); + } + delete $::form->{profile}->{id}; $self->profile($existing_profile || SL::DB::CsvImportProfile->new); $self->profile->assign_attributes(%{ $::form->{profile} }); @@ -216,4 +257,28 @@ sub csv_file_name { return "csv-import-" . $self->type . ".csv"; } +sub init_worker { + my $self = shift; + + my @args = (controller => $self); + + if ( $self->file() ) { + push(@args, file => $self->file()); + } + + return $self->{type} eq 'customers_vendors' ? SL::Controller::CsvImport::CustomerVendor->new(@args) + : $self->{type} eq 'contacts' ? SL::Controller::CsvImport::Contact->new(@args) + : $self->{type} eq 'addresses' ? SL::Controller::CsvImport::Shipto->new(@args) + : $self->{type} eq 'parts' ? SL::Controller::CsvImport::Part->new(@args) + : $self->{type} eq 'projects' ? SL::Controller::CsvImport::Project->new(@args) + : die "Program logic error"; +} + +sub setup_help { + my ($self) = @_; + + $self->worker->setup_displayable_columns; +} + + 1;