DespatchAdviceID

This commit is contained in:
jstaerk
2022-03-21 15:30:24 +01:00
parent 58b13598b3
commit 3ee042df8a
5 changed files with 41 additions and 10 deletions

View File

@@ -56,8 +56,9 @@ public class Invoice implements IExportableTransaction {
protected Date invoiceReferencedIssueDate;
protected String specifiedProcuringProjectID = null;
protected String specifiedProcuringProjectName = null;
protected String despatchAdviceReferencedDocumentID = null;
public Invoice() {
public Invoice() {
ZFItems = new ArrayList<>();
setCurrency("EUR");
}
@@ -667,6 +668,18 @@ public class Invoice implements IExportableTransaction {
return this;
}
@Override
public String getDespatchAdviceReferencedDocumentID() {
return despatchAdviceReferencedDocumentID;
}
public Invoice setDespatchAdviceReferencedDocumentID(String despatchAdviceReferencedDocumentID) {
this.despatchAdviceReferencedDocumentID = despatchAdviceReferencedDocumentID;
return this;
}
@Override
public String getSpecifiedProcuringProjectName() {
return specifiedProcuringProjectName;