Fix #1001 : IncludedNote SubjectCode PMD AAB

This commit is contained in:
Zahi YOUSFI
2025-12-30 16:41:17 +01:00
parent eae7d95920
commit ab4b9eb8d2
2 changed files with 21 additions and 2 deletions

View File

@@ -64,6 +64,14 @@ public class IncludedNote {
return new IncludedNote(content, SubjectCode.AAK); return new IncludedNote(content, SubjectCode.AAK);
} }
public static IncludedNote paymetTermNote(String content) {
return new IncludedNote(content, SubjectCode.AAB);
}
public static IncludedNote paymentDetailRemittanceInformationNote(String content) {
return new IncludedNote(content, SubjectCode.PMD);
}
public static IncludedNote unspecifiedNote(String content) { public static IncludedNote unspecifiedNote(String content) {
return new IncludedNote(content, null); return new IncludedNote(content, null);
} }

View File

@@ -44,5 +44,16 @@ public enum SubjectCode {
/** /**
* Payment information * Payment information
*/ */
PMT PMT,
/**
* Payment detail/remittance information
*/
PMD,
/**
* Payment term
*/
AAB
} }