Merge branch 'master' of https://github.com/ladapos/mustangproject into ladapos-master

This commit is contained in:
langfr
2026-05-28 15:12:57 +01:00
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
}