Fix #1126 IncludedNote SubjectCode ACB, INV

This commit is contained in:
A422382
2026-05-27 12:15:23 +02:00
parent 7a28c24c91
commit 938d23dc87
2 changed files with 17 additions and 2 deletions

View File

@@ -72,6 +72,14 @@ public class IncludedNote {
return new IncludedNote(content, SubjectCode.PMD);
}
public static IncludedNote additionalInformationNote(String content) {
return new IncludedNote(content, SubjectCode.ACB);
}
public static IncludedNote invoiceInstructionNote(String content) {
return new IncludedNote(content, SubjectCode.INV);
}
public static IncludedNote unspecifiedNote(String content) {
return new IncludedNote(content, null);
}

View File

@@ -53,7 +53,14 @@ public enum SubjectCode {
/**
* Payment term
*/
AAB
AAB,
/**
* Additional information
*/
ACB,
/**
* Invoice instruction
*/
INV
}