#982: SEPATransferResult.kt

projectforge-business/src/main/kotlin/org/projectforge/business/fibu/SEPATransferResult.kt SEPA Result Data Class, projectforge-business/src/main/kotlin/org/projectforge/business/fibu/SEPATransferResult.kt 73 lines · 38 code · 27 comments · 8 blank
Data class holding the outcome of a SEPA transfer generation run: generated XML content, list of processed and unprocessed invoices, error messages, and export metadata (counts, totals).

Structure

A simple data container with the following fields:

FieldTypePurpose
xmlContentString?The generated pain.001 SEPA XML document
processedInvoicesList<RechnungDO>Invoices successfully included in the transfer
unprocessedInvoicesList<RechnungDO>Invoices excluded due to validation errors
errorMessagesList<String>Human-readable error messages for each issue
totalAmountBigDecimal?Total sum of all transfers in the XML
numberOfTransactionsIntCount of individual SEPA payment transactions

Git History

868d6abb7 2025 -> 2026
63081666f Source file headers: 2024-> 2025.
b6092df09 Copyright 2023 -> 2024
ab45d51fa Copyright 2001-2022 -> 2001-2023.
e4a9008d4 SEPA Export for invoices added.