Merge branch 'master' of https://github.com/ladapos/mustangproject into ladapos-master
This commit is contained in:
@@ -72,6 +72,14 @@ public class IncludedNote {
|
|||||||
return new IncludedNote(content, SubjectCode.PMD);
|
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) {
|
public static IncludedNote unspecifiedNote(String content) {
|
||||||
return new IncludedNote(content, null);
|
return new IncludedNote(content, null);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,7 +53,14 @@ public enum SubjectCode {
|
|||||||
/**
|
/**
|
||||||
* Payment term
|
* Payment term
|
||||||
*/
|
*/
|
||||||
AAB
|
AAB,
|
||||||
|
/**
|
||||||
|
* Additional information
|
||||||
|
*/
|
||||||
|
ACB,
|
||||||
|
/**
|
||||||
|
* Invoice instruction
|
||||||
|
*/
|
||||||
|
INV
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user