1 #=====================================================================
6 # Email: p.reetz@linet-services.de
7 # Web: http://www.lx-office.org
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #======================================================================
25 #======================================================================
32 $main::lxdebug->enter_sub();
34 my ($self, $myconfig, $form) = @_;
37 my $dbh = $form->dbconnect($myconfig);
39 $query = qq|SELECT * FROM datev|;
40 $sth = $dbh->prepare($query);
41 $sth->execute || $form->dberror($query);
43 my $ref = $sth->fetchrow_hashref(NAME_lc);
45 map { $form->{$_} = $ref->{$_} } keys %$ref;
49 $main::lxdebug->leave_sub();
52 sub save_datev_stamm {
53 $main::lxdebug->enter_sub();
55 my ($self, $myconfig, $form) = @_;
58 my $dbh = $form->dbconnect_noauto($myconfig);
60 $query = qq|DELETE FROM datev|;
61 $dbh->do($query) || $form->dberror($query);
63 $query = qq|INSERT INTO datev
64 (beraternr, beratername, dfvkz, mandantennr, datentraegernr, abrechnungsnr) VALUES
66 . $dbh->quote($form->{beraternr}) . qq|,|
67 . $dbh->quote($form->{beratername}) . qq|,|
68 . $dbh->quote($form->{dfvkz}) . qq|,
70 . $dbh->quote($form->{mandantennr}) . qq|,|
71 . $dbh->quote($form->{datentraegernr}) . qq|,|
72 . $dbh->quote($form->{abrechnungsnr}) . qq|)|;
73 $sth = $dbh->prepare($query);
74 $sth->execute || $form->dberror($query);
79 $main::lxdebug->leave_sub();
83 $main::lxdebug->enter_sub();
85 my ($self, $myconfig, $form) = @_;
88 if ($form->{exporttype} == 0) {
89 $rc = &kne_buchungsexport($myconfig, $form);
91 $rc = &kne_stammdatenexport($myconfig, $form);
94 $main::lxdebug->leave_sub();
100 $main::lxdebug->enter_sub();
102 my ($self, $myconfig, $form) = @_;
104 # connect to database
105 my $dbh = $form->dbconnect_noauto($myconfig);
108 $main::lxdebug->leave_sub();
112 $main::lxdebug->enter_sub();
114 my ($zeitraum, $monat, $quartal, $transdatefrom, $transdateto) = @_;
116 $fromto = "transdate >= ";
121 if ($zeitraum eq "monat") {
123 $monat eq "1" && do {
124 $form->{fromdate} = "1.1.$jahr";
125 $form->{todate} = "31.1.$jahr";
128 $monat eq "2" && do {
129 $form->{fromdate} = "1.2.$jahr";
131 #this works from 1901 to 2099, 1900 and 2100 fail.
132 $leap = ($jahr % 4 == 0) ? "29" : "28";
133 $form->{todate} = "$leap.2.$jahr";
136 $monat eq "3" && do {
137 $form->{fromdate} = "1.3.$jahr";
138 $form->{todate} = "31.3.$jahr";
141 $monat eq "4" && do {
142 $form->{fromdate} = "1.4.$jahr";
143 $form->{todate} = "30.4.$jahr";
146 $monat eq "5" && do {
147 $form->{fromdate} = "1.5.$jahr";
148 $form->{todate} = "31.5.$jahr";
151 $monat eq "6" && do {
152 $form->{fromdate} = "1.6.$jahr";
153 $form->{todate} = "30.6.$jahr";
156 $monat eq "7" && do {
157 $form->{fromdate} = "1.7.$jahr";
158 $form->{todate} = "31.7.$jahr";
161 $monat eq "8" && do {
162 $form->{fromdate} = "1.8.$jahr";
163 $form->{todate} = "31.8.$jahr";
166 $monat eq "9" && do {
167 $form->{fromdate} = "1.9.$jahr";
168 $form->{todate} = "30.9.$jahr";
171 $monat eq "10" && do {
172 $form->{fromdate} = "1.10.$jahr";
173 $form->{todate} = "31.10.$jahr";
176 $monat eq "11" && do {
177 $form->{fromdate} = "1.11.$jahr";
178 $form->{todate} = "30.11.$jahr";
181 $monat eq "12" && do {
182 $form->{fromdate} = "1.12.$jahr";
183 $form->{todate} = "31.12.$jahr";
188 "'" . $form->{fromdate} . "' and transdate <= '" . $form->{todate} . "'";
191 elsif ($zeitraum eq "quartal") {
194 "'01.01." . $jahr . "' and transdate <= '31.03." . $jahr . "'";
195 } elsif ($quartal == 2) {
197 "'01.04." . $jahr . "' and transdate <= '30.06." . $jahr . "'";
198 } elsif ($quartal == 3) {
200 "'01.07." . $jahr . "' and transdate <= '30.09." . $jahr . "'";
201 } elsif ($quartal == 4) {
203 "'01.10." . $jahr . "' and transdate <= '31.12." . $jahr . "'";
207 elsif ($zeitraum eq "zeit") {
209 "'" . $transdatefrom . "' and transdate <= '" . $transdateto . "'";
212 $main::lxdebug->leave_sub();
217 sub get_transactions {
218 $main::lxdebug->enter_sub();
220 my ($myconfig, $form, $fromto) = @_;
222 # connect to database
223 my $dbh = $form->dbconnect($myconfig);
225 $fromto =~ s/transdate/ac\.transdate/g;
227 $query = qq|SELECT taxkey, rate FROM tax|;
228 $sth = $dbh->prepare($query);
229 $sth->execute || $form->dberror($query);
231 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
232 $taxes{ $ref->{taxkey} } = $ref->{rate};
238 qq|SELECT ac.oid, ac.transdate, ac.trans_id,ar.id, ac.amount, ac.taxkey, ar.invnumber, ar.duedate, ar.amount as umsatz,
239 ct.name, c.accno, c.taxkey_id as charttax, c.datevautomatik, c.id, t.chart_id, t.rate FROM acc_trans ac,ar ar, customer ct,
240 chart c LEFT JOIN tax t ON
241 (t.chart_id=c.id)WHERE $fromto AND ac.trans_id=ar.id AND ac.trans_id=ar.id
242 AND ar.customer_id=ct.id AND ac.chart_id=c.id
244 SELECT ac.oid, ac.transdate, ac.trans_id,ap.id, ac.amount, ac.taxkey, ap.invnumber, ap.duedate, ap.amount as umsatz,
245 ct.name, c.accno, c.taxkey_id as charttax, c.datevautomatik, c.id, t.chart_id, t.rate FROM acc_trans ac, ap ap, vendor ct, chart c LEFT JOIN tax t ON
247 WHERE $fromto AND ac.trans_id=ap.id AND ap.vendor_id=ct.id AND ac.chart_id=c.id
249 SELECT ac.oid, ac.transdate, ac.trans_id,gl.id, ac.amount, ac.taxkey, gl.reference AS invnumber, gl.transdate AS duedate, ac.amount as umsatz,
250 gl.description AS name, c.accno, c.taxkey_id as charttax, c.datevautomatik, c.id, t.chart_id, t.rate FROM acc_trans ac, gl gl,
251 chart c LEFT JOIN tax t ON
252 (t.chart_id=c.id) WHERE $fromto AND ac.trans_id=gl.id AND ac.chart_id=c.id
253 ORDER BY trans_id, oid|;
255 $sth = $dbh->prepare($query);
256 $sth->execute || $form->dberror($query);
261 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
265 if (($counter % 500) == 0) {
269 $count += $ref->{amount};
271 while (abs($count) > 0.01 || $firstrun) {
272 $ref2 = $sth->fetchrow_hashref(NAME_lc);
274 $count += $ref2->{amount};
279 if (scalar(@{$i}) > 2) {
280 for my $j (0 .. (scalar(@{$i}) - 1)) {
281 if (abs($i->[$j]->{'amount'}) > abs($absumsatz)) {
282 $absumsatz = $i->[$j]->{'amount'};
286 $ml = ($i->[0]->{'umsatz'} > 0) ? 1 : -1;
287 for my $j (0 .. (scalar(@{$i}) - 1)) {
288 if ( ($j != $notsplitindex)
289 && ($i->[$j]->{'chart_id'} eq "")
290 && ( $i->[$j]->{'taxkey'} eq ""
291 || $i->[$j]->{'taxkey'} eq "0"
292 || $i->[$j]->{'taxkey'} eq "1"
293 || $i->[$j]->{'taxkey'} eq "10"
294 || $i->[$j]->{'taxkey'} eq "11")
297 map({ $blubb{$_} = $i->[$notsplitindex]->{$_}; }
298 keys(%{ $i->[$notsplitindex] }));
299 $absumsatz += $i->[$j]->{'amount'};
300 $blubb{'amount'} = $i->[$j]->{'amount'} * (-1);
301 $blubb{'umsatz'} = abs($i->[$j]->{'amount'}) * $ml;
302 $i->[$j]->{'umsatz'} = abs($i->[$j]->{'amount'}) * $ml;
303 push @{ $splits[$g] }, \%blubb; #$i->[$notsplitindex];
304 push @{ $splits[$g] }, $i->[$j];
305 push @{ $form->{DATEV} }, \@{ $splits[$g] };
307 } elsif (($j != $notsplitindex) && ($i->[$j]->{'chart_id'} eq "")) {
309 ($i->[$j]->{'amount'} * (1 + $taxes{ $i->[$j]->{'taxkey'} }));
311 map({ $blubb{$_} = $i->[$notsplitindex]->{$_}; }
312 keys(%{ $i->[$notsplitindex] }));
313 $test = 1 + $taxes{ $i->[$j]->{'taxkey'} };
315 $form->round_amount(($i->[$j]->{'amount'} * $test * -1), 2);
318 abs($form->round_amount(($i->[$j]->{'amount'} * $test), 2)) * $ml;
320 $i->[$j]->{'umsatz'} =
321 abs($form->round_amount(($i->[$j]->{'amount'} * $test), 2)) * $ml;
323 push @{ $splits[$g] }, \%blubb;
324 push @{ $splits[$g] }, $i->[$j];
325 push @{ $form->{DATEV} }, \@{ $splits[$g] };
331 if (abs($absumsatz) > 0.01) {
332 $form->error("Datev-Export fehlgeschlagen! Bei Transaktion $i->[0]->{trans_id}\n");
335 push @{ $form->{DATEV} }, \@{$i};
342 $main::lxdebug->leave_sub();
345 sub make_kne_data_header {
346 $main::lxdebug->enter_sub();
348 my ($myconfig, $form, $fromto) = @_;
350 # connect to database
351 my $dbh = $form->dbconnect($myconfig);
357 $anwendungsnr = ($fromto) ? "\x31\x31" : "\x31\x33";
358 while (length($form->{datentraegernr}) < 3) {
359 $form->{datentraegernr} = "\x30" . $form->{datentraegernr};
362 $header = "\x1D\x18\x31" . $form->{datentraegernr} . $anwendungsnr;
364 $dfvkz = $form->{dfvkz};
365 while (length($dfvkz) < 2) {
366 $dfvkz = "\x30" . $dfvkz;
370 $beraternr = $form->{beraternr};
371 while (length($beraternr) < 7) {
372 $beraternr = "\x30" . $beraternr;
374 $header .= $beraternr;
376 $mandantennr = $form->{mandantennr};
377 while (length($mandantennr) < 5) {
378 $mandantennr = "\x30" . $mandantennr;
380 $header .= $mandantennr;
382 $abrechnungsnr = $form->{abrechnungsnr} . $jahr;
383 while (length($abrechnungsnr) < 6) {
384 $abrechnungsnr = "\x30" . $abrechnungsnr;
386 $header .= $abrechnungsnr;
388 $fromto =~ s/transdate|>=|and|\'|<=//g;
389 my ($from, $to) = split / /, $fromto;
394 my ($fday, $fmonth, $fyear) = split /\./, $from;
395 if (length($fmonth) < 2) {
396 $fmonth = "0" . $fmonth;
398 if (length($fday) < 2) {
401 $from = $fday . $fmonth . substr($fyear, -2, 2);
409 my ($tday, $tmonth, $tyear) = split /\./, $to;
410 if (length($tmonth) < 2) {
411 $tmonth = "0" . $tmonth;
413 if (length($tday) < 2) {
416 $to = $tday . $tmonth . substr($tyear, -2, 2);
422 $primanota = "\x30\x30\x31";
423 $header .= $primanota;
426 $passwort = $form->{passwort};
427 while (length($passwort) < 4) {
428 $passwort = "\x30" . $passwort;
430 $header .= $passwort;
432 $anwendungsinfo = "\x20" x 16;
433 $header .= $anwendungsinfo;
434 $inputinfo = "\x20" x 16;
435 $header .= $inputinfo;
440 if ($form->{exporttype} == 0) {
441 $versionssatz = "\xB5" . "1,";
443 $versionssatz = "\xB6" . "1,";
446 $query = qq| select accno from chart limit 1|;
447 $sth = $dbh->prepare($query);
448 $sth->execute || $form->dberror($query);
449 my $ref = $sth->fetchrow_hashref(NAME_lc);
451 $accnolength = $ref->{accno};
454 $versionssatz .= length($accnolength);
455 $versionssatz .= ",";
456 $versionssatz .= length($accnolength);
457 $versionssatz .= ",SELF" . "\x1C\x79";
461 $header .= $versionssatz;
463 $main::lxdebug->leave_sub();
469 $main::lxdebug->enter_sub();
471 my ($date, $six) = @_;
473 ($day, $month, $year) = split /\./, $date;
476 $day = substr($day, 1, 1);
478 if (length($month) < 2) {
479 $month = "0" . $month;
481 if (length($year) > 2) {
482 $year = substr($year, -2, 2);
486 $date = $day . $month . $year;
488 $date = $day . $month;
491 $main::lxdebug->leave_sub();
497 $main::lxdebug->enter_sub();
499 my ($umsatz, $stellen) = @_;
502 ($vorkomma, $nachkomma) = split /\./, $umsatz;
505 for ($i = $stellen; $i >= $stellen + 2 - length($vorkomma); $i--) {
509 for ($i = 3; $i > length($nachkomma); $i--) {
512 $umsatz = $vorkomma . substr($nachkomma, 0, 2);
514 $main::lxdebug->leave_sub();
519 sub make_ed_versionset {
520 $main::lxdebug->enter_sub();
522 my ($header, $filename, $blockcount, $fromto) = @_;
524 $versionset = "V" . substr($filename, 2, 5);
525 $versionset .= substr($header, 6, 22);
527 $versionset .= "0000" . substr($header, 28, 19);
529 $datum = "\x20" x 16;
530 $versionset .= $datum . "001" . substr($header, 28, 4);
532 while (length($blockcount) < 5) {
533 $blockcount = "0" . $blockcount;
535 $versionset .= $blockcount;
536 $versionset .= "001";
537 $versionset .= "\x20\x31";
538 $versionset .= substr($header, -12, 10) . " ";
539 $versionset .= "\x20" x 53;
541 $main::lxdebug->leave_sub();
547 $main::lxdebug->enter_sub();
549 my ($form, $fileno) = @_;
550 $datentraegernr = $form->{datentraegernr};
551 $beraternummer = $form->{beraternr};
552 $beratername = $form->{beratername};
553 $anzahl_dateien = $fileno;
555 while (length($datentraegernr) < 3) {
556 $datentraegernr .= " ";
559 while (length($beraternummer) < 7) {
560 $beraternummer .= " ";
563 while (length($beratername) < 9) {
567 while (length($anzahl_dateien) < 5) {
568 $anzahl_dateien = "0" . $anzahl_dateien;
572 $datentraegernr . "\x20\x20\x20" . $beraternummer . $beratername . "\x20";
573 $ev_header .= $anzahl_dateien . $anzahl_dateien;
574 $ev_header .= "\x20" x 95;
576 $main::lxdebug->leave_sub();
581 sub kne_buchungsexport {
582 $main::lxdebug->enter_sub();
584 my ($myconfig, $form) = @_;
586 my $export_path = "datev/";
587 my $filename = "ED00000";
595 <body>Export in Bearbeitung<br>
596 Buchungssätze verarbeitet:
600 &get_dates($form->{zeitraum}, $form->{monat},
601 $form->{quartal}, $form->{transdatefrom},
602 $form->{transdateto});
603 &get_transactions($myconfig, $form, $fromto);
605 print qq|<br>2. Durchlauf:|;
606 while (scalar(@{ $form->{DATEV} })) {
608 my $remaining_bytes = 256;
609 my $total_bytes = 256;
611 my $buchungssatz = "";
613 my $ed_filename = $export_path . $filename;
614 open(ED, "> $ed_filename") or die "can't open outputfile: $!\n";
615 $header = &make_kne_data_header($myconfig, $form, $fromto);
616 $remaining_bytes -= length($header);
618 while (scalar(@{ $form->{DATEV} }) > 0) {
619 $transaction = shift @{ $form->{DATEV} };
620 $trans_lines = scalar(@{$transaction});
622 if (($counter % 500) == 0) {
637 %umlaute = ('ä' => 'ae',
645 for (my $i = 0; $i < $trans_lines; $i++) {
646 if ($trans_lines == 2) {
647 if (abs($transaction->[$i]->{'amount'}) > abs($umsatz)) {
648 $umsatz = $transaction->[$i]->{'amount'};
651 if (abs($transaction->[$i]->{'umsatz'}) > abs($umsatz)) {
652 $umsatz = $transaction->[$i]->{'umsatz'};
655 if ($transaction->[$i]->{'datevautomatik'}) {
658 if ($transaction->[$i]->{'taxkey'}) {
659 $taxkey = $transaction->[$i]->{'taxkey'};
661 if ($transaction->[$i]->{'charttax'}) {
662 $charttax = $transaction->[$i]->{'charttax'};
664 if ( ($transaction->[$i]->{'id'} eq $transaction->[$i]->{'chart_id'})
665 && ($trans_lines > 2)) {
666 undef($transaction->[$i]);
667 } elsif ($transaction->[$i]->{'amount'} > 0) {
674 $umsatzsumme += abs($umsatz);
676 # Umwandlung von Umlauten und Sonderzeichen in erlaubte Zeichen bei Textfeldern
677 foreach $umlaut (keys(%umlaute)) {
678 $transaction->[$haben]->{'invnumber'} =~
679 s/${umlaut}/${umlaute{$umlaut}}/g;
680 $transaction->[$haben]->{'name'} =~ s/${umlaut}/${umlaute{$umlaut}}/g;
683 $transaction->[$haben]->{'invnumber'} =~ s/[^0-9A-Za-z\$\%\&\*\+\-\/]//g;
684 $transaction->[$haben]->{'name'} =~ s/[^0-9A-Za-z\$\%\&\*\+\-\ \/]//g;
686 $transaction->[$haben]->{'invnumber'} =
687 substr($transaction->[$haben]->{'invnumber'}, 0, 12);
688 $transaction->[$haben]->{'name'} =
689 substr($transaction->[$haben]->{'name'}, 0, 30);
690 $transaction->[$haben]->{'invnumber'} =~ s/\ *$//;
691 $transaction->[$haben]->{'name'} =~ s/\ *$//;
693 if ($trans_lines >= 2) {
695 $gegenkonto = "a" . $transaction->[$haben]->{'accno'};
696 $konto = "e" . $transaction->[$soll]->{'accno'};
697 if ($transaction->[$haben]->{'invnumber'} ne "") {
699 "\xBD" . $transaction->[$haben]->{'invnumber'} . "\x1C";
702 $datum .= &datetofour($transaction->[$haben]->{'transdate'}, 0);
703 $waehrung = "\xB3" . "EUR" . "\x1C";
704 if ($transaction->[$haben]->{'name'} ne "") {
705 $buchungstext = "\x1E" . $transaction->[$haben]->{'name'} . "\x1C";
707 if ($transaction->[$haben]->{'duedate'} ne "") {
709 . &datetofour($transaction->[$haben]->{'duedate'}, 1) . "\x1C";
713 if (($remaining_bytes - length("+" . &formatumsatz($umsatz, 0))) <= 6) {
714 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
715 $buchungssatz .= "\x00" x $fuellzeichen;
717 $total_bytes = ($blockcount) * 256;
719 $umsatz = abs($umsatz);
720 $vorzeichen = ($umsatz > 0) ? "+" : "-";
721 $buchungssatz .= $vorzeichen . &formatumsatz($umsatz, 0);
722 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
724 if ( ($taxkey || $datevautomatik)
725 && (!$datevautomatik || ($datevautomatik && ($charttax ne $taxkey)))) {
726 if (($remaining_bytes - length("\x6C" . "11")) <= 6) {
728 ($blockcount * 256 - length($buchungssatz . $header));
729 $buchungssatz .= "\x00" x $fuellzeichen;
731 $total_bytes = ($blockcount) * 256;
733 if (!$datevautomatik) {
734 $buchungssatz .= "\x6C" . $taxkey;
736 $buchungssatz .= "\x6C" . "4";
738 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
741 if (($remaining_bytes - length($gegenkonto)) <= 6) {
742 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
743 $buchungssatz .= "\x00" x $fuellzeichen;
745 $total_bytes = ($blockcount) * 256;
747 $buchungssatz .= $gegenkonto;
748 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
750 if (($remaining_bytes - length($belegfeld1)) <= 6) {
751 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
752 $buchungssatz .= "\x00" x $fuellzeichen;
754 $total_bytes = ($blockcount) * 256;
756 $buchungssatz .= $belegfeld1;
757 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
759 if (($remaining_bytes - length($belegfeld2)) <= 6) {
760 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
761 $buchungssatz .= "\x00" x $fuellzeichen;
763 $total_bytes = ($blockcount) * 256;
765 $buchungssatz .= $belegfeld2;
766 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
768 if (($remaining_bytes - length($datum)) <= 6) {
769 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
770 $buchungssatz .= "\x00" x $fuellzeichen;
772 $total_bytes = ($blockcount) * 256;
774 $buchungssatz .= $datum;
775 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
777 if (($remaining_bytes - length($konto)) <= 6) {
778 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
779 $buchungssatz .= "\x00" x $fuellzeichen;
781 $total_bytes = ($blockcount) * 256;
783 $buchungssatz .= $konto;
784 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
786 if (($remaining_bytes - length($buchungstext)) <= 6) {
787 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
788 $buchungssatz .= "\x00" x $fuellzeichen;
790 $total_bytes = ($blockcount) * 256;
792 $buchungssatz .= $buchungstext;
793 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
795 if (($remaining_bytes - (length($waehrung . "\x79"))) <= 6) {
796 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
797 $buchungssatz .= "\x00" x $fuellzeichen;
799 $total_bytes = ($blockcount) * 256;
801 $buchungssatz .= $waehrung . "\x79";
802 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
807 "x" . &formatumsatz($umsatzsumme, 14) . "\x79" . "\x7a";
809 256 - (length($header . $buchungssatz . $mandantenendsumme) % 256);
810 $dateiende = "\x00" x $fuellzeichen;
812 print(ED $buchungssatz);
813 print(ED $mandantenendsumme);
814 print(ED $dateiende);
817 $ed_versionset[$fileno] =
818 &make_ed_versionset($header, $filename, $blockcount, $fromto);
822 #Make EV Verwaltungsdatei
823 $ev_header = &make_ev_header($form, $fileno);
824 $ev_filename = $export_path . $evfile;
825 open(EV, "> $ev_filename") or die "can't open outputfile: EV01\n";
826 print(EV $ev_header);
828 foreach $file (@ed_versionset) {
829 print(EV $ed_versionset[$file]);
832 print qq|<br>Done. <br></body>
836 $main::lxdebug->leave_sub();
839 sub kne_stammdatenexport {
840 $main::lxdebug->enter_sub();
842 my ($myconfig, $form) = @_;
843 $form->{abrechnungsnr} = "99";
845 my $export_path = "datev/";
846 my $filename = "ED00000";
852 my $remaining_bytes = 256;
853 my $total_bytes = 256;
854 my $buchungssatz = "";
856 my $ed_filename = $export_path . $filename;
857 open(ED, "> $ed_filename") or die "can't open outputfile: $!\n";
858 $header = &make_kne_data_header($myconfig, $form, "");
859 $remaining_bytes -= length($header);
861 # connect to database
862 my $dbh = $form->dbconnect($myconfig);
865 qq|SELECT c.accno, c.description FROM chart c WHERE c.accno >=|
866 . $dbh->quote($form->{accnofrom}) . qq|
868 . $dbh->quote($form->{accnoto}) . qq| ORDER BY c.accno|;
870 $sth = $dbh->prepare($query);
871 $sth->execute || $form->dberror($query);
873 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
874 if (($remaining_bytes - length("t" . $ref->{'accno'})) <= 6) {
875 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
876 $buchungssatz .= "\x00" x $fuellzeichen;
878 $total_bytes = ($blockcount) * 256;
880 $buchungssatz .= "t" . $ref->{'accno'};
881 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
882 $ref->{'description'} =~ s/[^0-9A-Za-z\$\%\&\*\+\-\/]//g;
883 $ref->{'description'} = substr($ref->{'description'}, 0, 40);
884 $ref->{'description'} =~ s/\ *$//;
887 ($remaining_bytes - length("\x1E" . $ref->{'description'} . "\x1C\x79")
890 $fuellzeichen = ($blockcount * 256 - length($buchungssatz . $header));
891 $buchungssatz .= "\x00" x $fuellzeichen;
893 $total_bytes = ($blockcount) * 256;
895 $buchungssatz .= "\x1E" . $ref->{'description'} . "\x1C\x79";
896 $remaining_bytes = $total_bytes - length($buchungssatz . $header);
901 print(ED $buchungssatz);
902 $fuellzeichen = 256 - (length($header . $buchungssatz . "z") % 256);
903 $dateiende = "\x00" x $fuellzeichen;
905 print(ED $dateiende);
908 #Make EV Verwaltungsdatei
910 &make_ed_versionset($header, $filename, $blockcount, $fromto);
912 $ev_header = &make_ev_header($form, $fileno);
913 $ev_filename = $export_path . $evfile;
914 open(EV, "> $ev_filename") or die "can't open outputfile: EV01\n";
915 print(EV $ev_header);
917 foreach $file (@ed_versionset) {
918 print(EV $ed_versionset[$file]);
925 $main::lxdebug->leave_sub();