Merge pull request #508 from WorkProg/patch-1

Update documentation for `IExportableTransaction.getReferenceNumber()`
This commit is contained in:
Jochen Staerk
2025-01-07 11:25:49 +01:00
committed by GitHub

View File

@@ -324,19 +324,20 @@ public interface IExportableTransaction {
} }
/** /**
* supplier identification assigned by the costumer * get the rounding amount
* (only to be usef for NL whose currency requires a rounding to 5ct)
* *
* @return the sender's identification * @return the Bigdecimal
*/ */
default BigDecimal getRoundingAmount() { default BigDecimal getRoundingAmount() {
return null; return null;
} }
/** /**
* get reference document number typically used for Invoice Corrections Will be * get BuyerReference (BT-10) an identifier assigned by the buyer and used
* added as IncludedNote in comfort profile * for internal routing. Used for the Leitweg-ID.
* *
* @return the ID of the document this document refers to * @return the BuyerReference of this document
*/ */
default String getReferenceNumber() { default String getReferenceNumber() {
return null; return null;