本文整理汇总了TypeScript中ccj/form/models/paymentSchedule.PaymentSchedule.of方法的典型用法代码示例。如果您正苦于以下问题:TypeScript PaymentSchedule.of方法的具体用法?TypeScript PaymentSchedule.of怎么用?TypeScript PaymentSchedule.of使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ccj/form/models/paymentSchedule.PaymentSchedule
的用法示例。
在下文中一共展示了PaymentSchedule.of方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should return valid object for valid input', () => {
const paymentSchedule: PaymentSchedule = PaymentSchedule.of(PaymentSchedule.EACH_WEEK.value)
expect(paymentSchedule instanceof PaymentSchedule).to.equal(true)
expect(paymentSchedule.value).to.equal(PaymentSchedule.EACH_WEEK.value)
expect(paymentSchedule.displayValue).to.equal(PaymentSchedule.EACH_WEEK.displayValue)
})
示例2: deserialize
deserialize (input?: any): RepaymentPlan {
if (input) {
this.instalmentAmount = input.instalmentAmount
this.firstPaymentDate = MomentFactory.parse(input.firstPaymentDate)
this.paymentSchedule = PaymentSchedule.of(input.paymentSchedule)
if (input.completionDate) {
this.completionDate = MomentFactory.parse(input.completionDate)
}
this.paymentLength = input.paymentLength
}
return this
}
示例3: getRepaymentPlanForm
export function getRepaymentPlanForm (claim: Claim, draft: DraftWrapper<DraftCCJ>): RepaymentPlanForm {
if (draft.document.paymentOption.option === PaymentType.INSTALMENTS) {
if ((claim.settlement && (claim.settlementReachedAt || claim.settlement.isOfferRejectedByDefendant())) || claim.hasDefendantNotSignedSettlementAgreementInTime()) {
const coreRepaymentPlan: CoreRepaymentPlan = claim.settlement.getLastOffer().paymentIntention.repaymentPlan
const firstPaymentDate: Moment = calculateMonthIncrement(MomentFactory.currentDate(), 1)
const paymentSchedule: PaymentSchedule = PaymentSchedule.of(coreRepaymentPlan.paymentSchedule)
const alreadyPaid: number = (draft.document.paidAmount.amount || 0)
const remainingAmount: number = claim.totalAmountTillToday - alreadyPaid
const repaymentPlanForm: RepaymentPlanForm = new RepaymentPlanForm(
remainingAmount,
coreRepaymentPlan.instalmentAmount,
new LocalDate(firstPaymentDate.year(), firstPaymentDate.month() + 1, firstPaymentDate.date()),
paymentSchedule)
return repaymentPlanForm
}
}
return draft.document.repaymentPlan
}
示例4: render
export function render (value: string): string {
return PaymentSchedule.of(value).displayValue
}