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