Date Calculation Method
DateCalcMethodKind
Payment date calculation method
Values
| Key | Value | Description |
|---|---|---|
BANK | 101231 | Banking |
USUAL | 101232 | Standard |
IGNORE_DATE | 101233 | Ignore Offset |
MONTH_LAST_DAY | 101234 | Month Last Day |
MONTH_LAST_DAY_EXT | 101235 | Lease Date Calculation |
Definition
typescript
export enum DateCalcMethodKind {
/** Banking */
BANK = 101231,
/** Standard */
USUAL = 101232,
/** Ignore Offset */
IGNORE_DATE = 101233,
/** Month Last Day */
MONTH_LAST_DAY = 101234,
/** Lease Date Calculation */
MONTH_LAST_DAY_EXT = 101235,
}
export const DateCalcMethodKindValues = [
DateCalcMethodKind.BANK,
DateCalcMethodKind.USUAL,
DateCalcMethodKind.IGNORE_DATE,
DateCalcMethodKind.MONTH_LAST_DAY,
DateCalcMethodKind.MONTH_LAST_DAY_EXT,
];