Direct Debit: add field CreditorReferenceID.

This commit is contained in:
langfr
2024-08-07 21:51:15 +01:00
parent 63e0ecb42d
commit b7b0dd28f9
6 changed files with 66 additions and 14 deletions

View File

@@ -63,6 +63,7 @@ public class Invoice implements IExportableTransaction {
protected String specifiedProcuringProjectName = null;
protected String despatchAdviceReferencedDocumentID = null;
protected String vatDueDateTypeCode = null;
protected String creditorReferenceID; // required when direct debit is used.
public Invoice() {
ZFItems = new ArrayList<>();
@@ -878,4 +879,13 @@ public class Invoice implements IExportableTransaction {
return this;
}
public String getCreditorReferenceID() {
return creditorReferenceID;
}
public Invoice setCreditorReferenceID(String creditorReferenceID) {
this.creditorReferenceID = creditorReferenceID;
return this;
}
}