Fix #1001 : IncludedNote SubjectCode PMD AAB
This commit is contained in:
@@ -63,7 +63,15 @@ public class IncludedNote {
|
||||
public static IncludedNote discountBonusNote(String content) {
|
||||
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) {
|
||||
return new IncludedNote(content, null);
|
||||
}
|
||||
|
||||
@@ -44,5 +44,16 @@ public enum SubjectCode {
|
||||
/**
|
||||
* Payment information
|
||||
*/
|
||||
PMT
|
||||
PMT,
|
||||
/**
|
||||
* Payment detail/remittance information
|
||||
*/
|
||||
|
||||
PMD,
|
||||
/**
|
||||
* Payment term
|
||||
*/
|
||||
AAB
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user