Fix #1126 IncludedNote SubjectCode ACB, INV
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -53,7 +53,14 @@ public enum SubjectCode {
|
||||
/**
|
||||
* Payment term
|
||||
*/
|
||||
AAB
|
||||
|
||||
AAB,
|
||||
/**
|
||||
* Additional information
|
||||
*/
|
||||
ACB,
|
||||
/**
|
||||
* Invoice instruction
|
||||
*/
|
||||
INV
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user