4 # optional: background jobable
9 use parent qw(Rose::Object);
16 use List::MoreUtils qw(any);
17 use List::UtilsBy qw(partition_by sort_by);
19 use SL::DB::Helper::ALL; # since we work on meta data, we need everything
20 use SL::DB::Helper::Mappings;
21 use SL::Locale::String qw(t8);
23 use Rose::Object::MakeMethods::Generic (
24 scalar => [ qw(from to writer company location) ],
25 'scalar --get_set_init' => [ qw(files tempfiles export_ids tables) ],
30 # name: short name, translated
31 # description: long description, translated
32 # transdate: column used to filter from/to, empty if table is filtered otherwise
33 # keep: arrayref of columns that should be saved for further referencing
34 # tables: arrayref with one column and one or many table.column references that were kept earlier
36 chart => { name => t8('Charts'), description => t8('Chart of Accounts'), primary_key => 'accno', columns => [ qw(id accno description) ], },
37 customer => { name => t8('Customers'), description => t8('Customer Master Data'), columns => [ qw(id name department_1 department_2 street zipcode city country contact phone fax email notes customernumber taxnumber obsolete ustid) ] },
38 vendor => { name => t8('Vendors'), description => t8('Vendor Master Data'), columns => [ qw(id name department_1 department_2 street zipcode city country contact phone fax email notes customernumber taxnumber obsolete ustid) ] },
41 my %datev_column_defs = (
42 acc_trans_id => { type => 'Rose::DB::Object::Metadata::Column::Integer', text => t8('ID'), },
43 amount => { type => 'Rose::DB::Object::Metadata::Column::Numeric', text => t8('Amount'), },
44 credit_accname => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Credit Account Name'), },
45 credit_accno => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Credit Account'), },
46 debit_accname => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Debit Account Name'), },
47 debit_accno => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Debit Account'), },
48 invnumber => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Reference'), },
49 name => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Name'), },
50 notes => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Notes'), },
51 tax => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Tax'), },
52 taxdescription => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('tax_taxdescription'), },
53 taxkey => { type => 'Rose::DB::Object::Metadata::Column::Integer', text => t8('Taxkey'), },
54 tax_accname => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Tax Account Name'), },
55 tax_accno => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Tax Account'), },
56 transdate => { type => 'Rose::DB::Object::Metadata::Column::Date', text => t8('Invoice Date'), },
57 vcnumber => { type => 'Rose::DB::Object::Metadata::Column::Text', text => t8('Customer/Vendor Number'), },
58 customer_id => { type => 'Rose::DB::Object::Metadata::Column::Integer', text => t8('Customer (database ID)'), },
59 vendor_id => { type => 'Rose::DB::Object::Metadata::Column::Integer', text => t8('Vendor (database ID)'), },
60 itime => { type => 'Rose::DB::Object::Metadata::Column::Date', text => t8('Create Date'), },
63 my @datev_columns = qw(
67 transdate invnumber amount
68 debit_accno debit_accname
69 credit_accno credit_accname
71 tax_accno tax_accname taxkey
75 # rows in this listing are tiers.
76 # tables may depend on ids in a tier above them
77 my @export_table_order = qw(
78 ar ap gl oe delivery_orders
79 invoice orderitems delivery_order_items
86 # needed because the standard dbh sets datestyle german and we don't want to mess with that
87 my $date_format = 'DD.MM.YYYY';
88 my $number_format = '1000.00';
90 my $myconfig = { numberformat => $number_format };
92 # callbacks that produce the xml spec for these column types
94 'Rose::DB::Object::Metadata::Column::Integer' => sub { $_[0]->tag('Numeric') }, # see Caveats for integer issues
95 'Rose::DB::Object::Metadata::Column::BigInt' => sub { $_[0]->tag('Numeric') }, # see Caveats for integer issues
96 'Rose::DB::Object::Metadata::Column::Text' => sub { $_[0]->tag('AlphaNumeric') },
97 'Rose::DB::Object::Metadata::Column::Varchar' => sub { $_[0]->tag('AlphaNumeric') },
98 'Rose::DB::Object::Metadata::Column::Character' => sub { $_[0]->tag('AlphaNumeric') },
99 'Rose::DB::Object::Metadata::Column::Numeric' => sub { $_[0]->tag('Numeric', sub { $_[0]->tag('Accuracy', 5) }) },
100 'Rose::DB::Object::Metadata::Column::Date' => sub { $_[0]->tag('Date', sub { $_[0]->tag('Format', $date_format) }) },
101 'Rose::DB::Object::Metadata::Column::Timestamp' => sub { $_[0]->tag('Date', sub { $_[0]->tag('Format', $date_format) }) },
102 'Rose::DB::Object::Metadata::Column::Float' => sub { $_[0]->tag('Numeric') },
103 'Rose::DB::Object::Metadata::Column::Boolean' => sub { $_[0]
104 ->tag('AlphaNumeric')
105 ->tag('Map', sub { $_[0]
107 ->tag('To', t8('true'))
109 ->tag('Map', sub { $_[0]
111 ->tag('To', t8('false'))
113 ->tag('Map', sub { $_[0]
115 ->tag('To', t8('false'))
120 sub generate_export {
124 $self->from && 'DateTime' eq ref $self->from or die 'need from date';
125 $self->to && 'DateTime' eq ref $self->to or die 'need to date';
126 $self->from <= $self->to or die 'from date must be earlier or equal than to date';
127 $self->tables && @{ $self->tables } or die 'need tables';
128 for (@{ $self->tables }) {
129 next if $known_tables{$_};
130 die "unknown table '$_'";
133 # get data from those tables and save to csv
134 # for that we need to build queries that fetch all the columns
135 for ($self->sorted_tables) {
136 $self->do_csv_export($_);
139 $self->do_datev_csv_export;
145 $self->files->{'gdpdu-01-08-2002.dtd'} = File::Spec->catfile('users', 'gdpdu-01-08-2002.dtd');
148 my ($fh, $zipfile) = File::Temp::tempfile();
149 my $zip = Archive::Zip->new;
151 while (my ($name, $file) = each %{ $self->files }) {
152 $zip->addFile($file, $name);
155 $zip->writeToFileHandle($fh) == Archive::Zip::AZ_OK() or die 'error writing zip file';
164 my ($fh, $filename) = File::Temp::tempfile();
165 binmode($fh, ':utf8');
167 $self->files->{'INDEX.XML'} = $filename;
168 push @{ $self->tempfiles }, $filename;
170 my $writer = XML::Writer->new(
175 $self->writer($writer);
176 $self->writer->xmlDecl('UTF-8');
177 $self->writer->doctype('DataSet', undef, "gdpdu-01-08-2002.dtd");
178 $self->tag('DataSet', sub { $self
179 ->tag('Version', '1.0')
180 ->tag('DataSupplier', sub { $self
181 ->tag('Name', $self->client_name)
182 ->tag('Location', $self->client_location)
183 ->tag('Comment', $self->make_comment)
185 ->tag('Media', sub { $self
186 ->tag('Name', t8('DataSet #1', 1));
187 for (reverse $self->sorted_tables) { $self # see CAVEATS for table order
190 $self->do_datev_xml_table;
197 my ($self, $table) = @_;
198 my $writer = $self->writer;
200 $self->tag('Table', sub { $self
201 ->tag('URL', "$table.csv")
202 ->tag('Name', $known_tables{$table}{name})
203 ->tag('Description', $known_tables{$table}{description})
204 ->tag('Validity', sub { $self
205 ->tag('Range', sub { $self
206 ->tag('From', $self->from->to_kivitendo(dateformat => 'dd.mm.yyyy'))
207 ->tag('To', $self->to->to_kivitendo(dateformat => 'dd.mm.yyyy'))
209 ->tag('Format', $date_format)
212 ->tag('DecimalSymbol', '.')
213 ->tag('DigitGroupingSymbol', '|') # see CAVEATS in documentation
214 ->tag('VariableLength', sub { $self
215 ->tag('ColumnDelimiter', ',') # see CAVEATS for missing RecordDelimiter
216 ->tag('TextEncapsulator', '"')
218 ->foreign_keys($table)
225 my $package = SL::DB::Helper::Mappings::get_package_for_table($table);
228 my $use_white_list = 0;
229 if ($known_tables{$table}{columns}) {
231 $white_list{$_} = 1 for @{ $known_tables{$table}{columns} || [] };
234 # PrimaryKeys must come before regular columns, so partition first
236 $known_tables{$table}{primary_key}
237 ? 1 * ($_ eq $known_tables{$table}{primary_key})
238 : 1 * $_->is_primary_key_member
240 $use_white_list ? $white_list{$_->name} : 1
241 } $package->meta->columns;
245 my ($self, $table) = @_;
247 my %cols_by_primary_key = _table_columns($table);
249 for my $column (@{ $cols_by_primary_key{1} }) {
250 my $type = $column_types{ ref $column };
252 die "unknown col type @{[ ref $column ]}" unless $type;
254 $self->tag('VariablePrimaryKey', sub { $self
255 ->tag('Name', $column->name);
260 for my $column (@{ $cols_by_primary_key{0} }) {
261 my $type = $column_types{ ref $column };
263 die "unknown col type @{[ ref $column]}" unless $type;
265 $self->tag('VariableColumn', sub { $self
266 ->tag('Name', $column->name);
275 my ($self, $table) = @_;
276 my $package = SL::DB::Helper::Mappings::get_package_for_table($table);
278 my %requested = map { $_ => 1 } @{ $self->tables };
280 for my $rel ($package->meta->foreign_keys) {
281 next unless $requested{ $rel->class->meta->table };
283 # ok, now extract the columns used as foreign key
284 my %key_columns = $rel->key_columns;
286 if (1 != keys %key_columns) {
287 die "multi keys? we don't support this currently. fix it please";
290 if ($table eq $rel->class->meta->table) {
291 # self referential foreign keys are a PITA to export correctly. skip!
295 $self->tag('ForeignKey', sub {
296 $_[0]->tag('Name', $_) for keys %key_columns;
297 $_[0]->tag('References', $rel->class->meta->table);
302 sub do_datev_xml_table {
304 my $writer = $self->writer;
306 $self->tag('Table', sub { $self
307 ->tag('URL', "transactions.csv")
308 ->tag('Name', t8('Transactions'))
309 ->tag('Description', t8('Transactions'))
310 ->tag('Validity', sub { $self
311 ->tag('Range', sub { $self
312 ->tag('From', $self->from->to_kivitendo(dateformat => 'dd.mm.yyyy'))
313 ->tag('To', $self->to->to_kivitendo(dateformat => 'dd.mm.yyyy'))
315 ->tag('Format', $date_format)
318 ->tag('DecimalSymbol', '.')
319 ->tag('DigitGroupingSymbol', '|') # see CAVEATS in documentation
320 ->tag('VariableLength', sub { $self
321 ->tag('ColumnDelimiter', ',') # see CAVEATS for missing RecordDelimiter
322 ->tag('TextEncapsulator', '"')
330 my ($self, $table) = @_;
332 my %cols_by_primary_key = partition_by { 1 * $datev_column_defs{$_}{primary_key} } @datev_columns;
334 for my $column (@{ $cols_by_primary_key{1} }) {
335 my $type = $column_types{ $datev_column_defs{$column}{type} };
337 die "unknown col type @{[ $column ]}" unless $type;
339 $self->tag('VariablePrimaryKey', sub { $self
340 ->tag('Name', $column);
345 for my $column (@{ $cols_by_primary_key{0} }) {
346 my $type = $column_types{ $datev_column_defs{$column}{type} };
348 die "unknown col type @{[ ref $column]}" unless $type;
350 $self->tag('VariableColumn', sub { $self
351 ->tag('Name', $column);
359 sub datev_foreign_keys {
362 $self->tag('ForeignKey', sub { $_[0]
363 ->tag('Name', 'customer_id')
364 ->tag('References', 'customer')
366 $self->tag('ForeignKey', sub { $_[0]
367 ->tag('Name', 'vendor_id')
368 ->tag('References', 'vendor')
370 $self->tag('ForeignKey', sub { $_[0]
372 ->tag('References', 'chart')
373 }) for qw(debit_accno credit_accno tax_accno);
376 sub do_datev_csv_export {
379 my $datev = SL::DATEV->new(from => $self->from, to => $self->to);
381 $datev->_get_transactions(from_to => $datev->fromto);
383 for my $transaction (@{ $datev->{DATEV} }) {
384 for my $entry (@{ $transaction }) {
385 $entry->{sortkey} = join '-', map { lc } (DateTime->from_kivitendo($entry->{transdate})->strftime('%Y%m%d'), $entry->{name}, $entry->{reference});
389 my @transactions = sort_by { $_->[0]->{sortkey} } @{ $datev->{DATEV} };
391 my $csv = Text::CSV_XS->new({ binary => 1, eol => "\r\n", sep_char => ",", quote_char => '"' });
393 my ($fh, $filename) = File::Temp::tempfile();
394 binmode($fh, ':utf8');
396 $self->files->{"transactions.csv"} = $filename;
397 push @{ $self->tempfiles }, $filename;
399 for my $transaction (@transactions) {
400 my $is_payment = any { $_->{link} =~ m{A[PR]_paid} } @{ $transaction };
402 my ($soll, $haben) = map { $transaction->[$_] } ($transaction->[0]->{amount} > 0 ? (1, 0) : (0, 1));
403 my $tax = defined($soll->{tax_amount}) ? $soll : defined($haben->{tax_amount}) ? $haben : {};
404 my $amount = defined($soll->{net_amount}) ? $soll : $haben;
405 $haben->{notes} = ($haben->{memo} || $soll->{memo}) if $haben->{memo} || $soll->{memo};
406 $haben->{notes} //= '';
407 $haben->{notes} = SL::HTML::Util->strip($haben->{notes});
408 $haben->{notes} =~ s{\r}{}g;
409 $haben->{notes} =~ s{\n+}{ }g;
412 amount => $::form->format_amount($myconfig, abs($amount->{amount}),5),
413 debit_accno => $soll->{accno},
414 debit_accname => $soll->{accname},
415 credit_accno => $haben->{accno},
416 credit_accname => $haben->{accname},
417 tax => defined $amount->{net_amount} ? $::form->format_amount($myconfig, abs($amount->{amount}) - abs($amount->{net_amount}), 5) : 0,
418 notes => $haben->{notes},
419 (map { ($_ => $tax->{$_}) } qw(taxkey tax_accname tax_accno taxdescription)),
420 (map { ($_ => ($haben->{$_} // $soll->{$_})) } qw(acc_trans_id invnumber name vcnumber transdate itime customer_id vendor_id)),
423 $row{$_} =~ s/\r?\n/ /g for @datev_columns; # see CAVEATS
425 $csv->print($fh, [ map { $row{$_} } @datev_columns ]);
428 # and build xml spec for it
432 my ($self, $table) = @_;
434 my $csv = Text::CSV_XS->new({ binary => 1, eol => "\r\n", sep_char => ",", quote_char => '"' });
436 my ($fh, $filename) = File::Temp::tempfile();
437 binmode($fh, ':utf8');
439 $self->files->{"$table.csv"} = $filename;
440 push @{ $self->tempfiles }, $filename;
442 # in the right order (primary keys first)
443 my %cols_by_primary_key = _table_columns($table);
444 my @columns = (@{ $cols_by_primary_key{1} }, @{ $cols_by_primary_key{0} });
445 my %col_index = do { my $i = 0; map {; "$_" => $i++ } @columns };
447 # and normalize date stuff
448 my @select_tokens = map { (ref $_) =~ /Time/ ? $_->name . '::date' : $_->name } @columns;
452 if ($known_tables{$table}{transdate}) {
454 push @where_tokens, "$known_tables{$table}{transdate} >= ?";
455 push @values, $self->from;
458 push @where_tokens, "$known_tables{$table}{transdate} <= ?";
459 push @values, $self->to;
462 if ($known_tables{$table}{tables}) {
463 my ($col, @col_specs) = @{ $known_tables{$table}{tables} };
466 my ($ftable, $fkey) = split /\./, $_;
467 if (!exists $self->export_ids->{$ftable}{$fkey}) {
468 # check if we forgot to keep it
469 if (!grep { $_ eq $fkey } @{ $known_tables{$ftable}{keep} || [] }) {
470 die "unknown table spec '$_' for table $table, did you forget to keep $fkey in $ftable?"
472 # hmm, most likely just an empty set.
473 $self->export_ids->{$ftable}{$fkey} = {};
476 $ids{$_}++ for keys %{ $self->export_ids->{$ftable}{$fkey} };
479 push @where_tokens, "$col IN (@{[ join ',', ('?') x keys %ids ]})";
480 push @values, keys %ids;
482 push @where_tokens, '1=0';
486 my $where_clause = @where_tokens ? 'WHERE ' . join ' AND ', @where_tokens : '';
488 my $query = "SELECT " . join(', ', @select_tokens) . " FROM $table $where_clause";
490 my $sth = $::form->get_standard_dbh->prepare($query);
491 $sth->execute(@values) or die "error executing query $query: " . $sth->errstr;
493 while (my $row = $sth->fetch) {
494 for my $keep_col (@{ $known_tables{$table}{keep} || [] }) {
495 next if !$row->[$col_index{$keep_col}];
496 $self->export_ids->{$table}{$keep_col} ||= {};
497 $self->export_ids->{$table}{$keep_col}{$row->[$col_index{$keep_col}]}++;
499 s/\r\n/ /g for @$row; # see CAVEATS
501 $csv->print($fh, $row) or $csv->error_diag;
507 my ($self, $tag, $content) = @_;
509 $self->writer->startTag($tag);
510 if ('CODE' eq ref $content) {
513 $self->writer->characters($content);
515 $self->writer->endTag;
520 my $gdpdu_version = API_VERSION();
521 my $kivi_version = $::form->read_version;
522 my $person = $::myconfig{name};
523 my $contact = join ', ',
524 (t8("Email") . ": $::myconfig{email}" ) x!! $::myconfig{email},
525 (t8("Tel") . ": $::myconfig{tel}" ) x!! $::myconfig{tel},
526 (t8("Fax") . ": $::myconfig{fax}" ) x!! $::myconfig{fax};
528 t8('DataSet for GDPdU version #1. Created with kivitendo #2 by #3 (#4)',
529 $gdpdu_version, $kivi_version, $person, $contact
537 sub client_location {
544 my %given = map { $_ => 1 } @{ $self->tables };
546 grep { $given{$_} } @export_table_order;
550 my ($self, $yesno) = @_;
552 $self->tables(\@export_table_order) if $yesno;
555 sub init_files { +{} }
556 sub init_export_ids { +{} }
557 sub init_tempfiles { [] }
558 sub init_tables { [ grep { $known_tables{$_} } @export_table_order ] }
561 DateTime->new(year => 2002, month => 8, day => 14)->to_kivitendo;
565 unlink $_ for @{ $_[0]->tempfiles || [] };
576 SL::GDPDU - IDEA export generator
584 Create new export object. C<PARAMS> may contain:
590 The name of the company, needed for the supplier header
594 Location of the company, needed for the suupplier header
600 Will only include records in the specified date range. Data pulled from other
601 tables will be culled to match what is needed for these records.
605 A list of tables to be exported.
609 Alternative to C<tables>, enables all known tables.
613 =item C<generate_export>
615 Do the work. Will return an absolut path to a temp file where all export files
626 Date format is shit. The official docs state that only C<YY>, C<YYYY>, C<MM>,
627 and C<DD> are supported, timestamps do not exist.
631 Number parsing seems to be fragile. Official docs state that behaviour for too
632 low C<Accuracy> settings is undefined. Accuracy of 0 is not taken to mean
633 Integer but instead generates a warning for redudancy.
635 There is no dedicated integer type.
639 Currently C<ar> and C<ap> have a foreign key to themself with the name
640 C<storno_id>. If this foreign key is present in the C<INDEX.XML> then the
641 storno records have to be too. Since this is extremely awkward to code and
642 confusing for the examiner as to why there are records outside of the time
643 range, this export skips all self-referential foreign keys.
647 Documentation for foreign keys is extremely weird. Instead of giving column
648 maps it assumes that foreign keys map to the primary keys given for the target
649 table, and in that order. Foreign keys to keys that are not primary seems to be
650 impossible. Changing type is also not allowed (which actually makes sense).
651 Hopefully there are no bugs there.
655 It's currently disallowed to export the whole dataset. It's not clear if this
660 It is not possible to set an empty C<DigiGroupingSymbol> since then the import
661 will just work with the default. This was asked in their forum, and the
662 response actually was:
664 Einfache Lösung: Definieren Sie das Tausendertrennzeichen als Komma, auch
665 wenn es nicht verwendet wird. Sollten Sie das Komma bereits als Feldtrenner
666 verwenden, so wählen Sie als Tausendertrennzeichen eine Alternative wie das
669 L<http://www.gdpdu-portal.com/forum/index.php?mode=thread&id=1392>
673 It is not possible to define a C<RecordDelimiter> with XML entities. 

674 generates the error message:
676 C<RecordDelimiter>-Wert (
) sollte immer aus ein oder zwei Zeichen
679 Instead we just use the implicit default RecordDelimiter CRLF.
685 Foreign keys seem only to work with previously defined tables (which would be
690 The CSV import library used in IDEA is not able to parse newlines (or more
691 exactly RecordDelimiter) in data. So this export substites all of these with
698 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>