Skip to content

Commit

Permalink
Documentation update: FPC 3 is supported
Browse files Browse the repository at this point in the history
  • Loading branch information
aspettl committed Oct 1, 2016
1 parent 310f704 commit 72b8431
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Ziel dieses Projekts ist eine einzelne Delphi-Unit, mit deren Hilfe man relativ
Für eine bessere Kompatibilität mit verschiedenen deutschen Banken sollte in einer XML-Datei nur ein "\<PmtInf\>"-Block enthalten sein, d.h. z.B., nur ein Lastschrift-Datum und alle Buchungen mit dem gleichen Typ (FRST/RCUR etc.). Das Dateiformat unterstützt zwar mehrere dieser Blöcke, aber nicht alle Banken akzeptieren dies. Zudem sollte die Anzahl der Datensätze limitiert werden, die maximale Anzahl wie z.B. 500 ist bei der eigenen Bank anzufragen.

*Achtung:*
Die Datei ist noch in der Entwicklung! Sie wurde aber bereits mehrfach für Testbuchungen verwendet, ist beim Autor im Produktiveinsatz und der XML-Output hat für einfache Testfälle die Prüfung durch eine Drittsoftware bestanden. Getestet wurde die Unit unter Delphi 6 Professional und Lazarus (mit FPC 2.6), sie sollte auch mit neueren Delphi-Versionen funktionieren.
Die Datei ist noch in der Entwicklung! Sie wurde aber bereits mehrfach für Testbuchungen verwendet, ist beim Autor im Produktiveinsatz und der XML-Output hat für einfache Testfälle die Prüfung durch eine Drittsoftware bestanden. Getestet wurde die Unit unter Delphi 6 Professional und Lazarus (mit FPC 2.6 und 3.0), sie sollte auch mit neueren Versionen funktionieren.
Soweit gesetzlich zulässig ist jegliche Haftung ausgeschlossen! Für mehr Details siehe Lizenztext.

## Autor / Lizenz:
Expand Down
7 changes: 4 additions & 3 deletions SEPACreditTransfer.pas
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ interface
//
// Note that all strings in these units are interpreted with respect to the
// default behavior of the development environment, i.e.,
// a) for Delphi < 2009: ANSI strings
// b) for Delphi >= 2009: Unicode strings
// c) for Lazarus: no encoding specified, ANSI is assumed
// a) for Delphi < 2009: ANSI strings
// b) for Delphi >= 2009: Unicode strings
// c) for Lazarus with FPC 2.6: no encoding specified, ANSI is assumed
// d) for Lazarus with FPC 3.0: codepage-aware strings

TCreditTransferTransactionInformation = class
private
Expand Down
7 changes: 4 additions & 3 deletions SEPADirectDebit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ interface
//
// Note that all strings in these units are interpreted with respect to the
// default behavior of the development environment, i.e.,
// a) for Delphi < 2009: ANSI strings
// b) for Delphi >= 2009: Unicode strings
// c) for Lazarus: no encoding specified, ANSI is assumed
// a) for Delphi < 2009: ANSI strings
// b) for Delphi >= 2009: Unicode strings
// c) for Lazarus with FPC 2.6: no encoding specified, ANSI is assumed
// d) for Lazarus with FPC 3.0: codepage-aware strings

TAmendmentInformationDetails = class
private
Expand Down

0 comments on commit 72b8431

Please sign in to comment.