当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript paymentSchedule.PaymentSchedule类代码示例

本文整理汇总了TypeScript中ccj/form/models/paymentSchedule.PaymentSchedule的典型用法代码示例。如果您正苦于以下问题:TypeScript PaymentSchedule类的具体用法?TypeScript PaymentSchedule怎么用?TypeScript PaymentSchedule使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了PaymentSchedule类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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)
    })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:paymentSchedule.ts

示例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
  }
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:13,代码来源:repaymentPlan.ts

示例3: describe

describe('Payment schedule type view filter', () => {
  PaymentSchedule.all()
    .forEach(type => {
      it(`should map '${type.value}' to '${type.displayValue}'`, () => {
        expect(PaymentScheduleTypeViewFilter.render(type.value)).to.equal(type.displayValue)
      })
    })

  it('should throw an error for anything else', () => {
    expect(() => PaymentScheduleTypeViewFilter.render('EVERY_YEAR')).to.throw(Error)
  })

  it('should throw an error for null', () => {
    expect(() => PaymentScheduleTypeViewFilter.render(null)).to.throw(Error)
  })
})
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:16,代码来源:payment-schedule-type-view-filter.ts

示例4: 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
}
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:18,代码来源:ccjModelConverter.ts

示例5: render

 export function render (value: string): string {
   return PaymentSchedule.of(value).displayValue
 }
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:3,代码来源:payment-schedule-type-view-filter.ts


注:本文中的ccj/form/models/paymentSchedule.PaymentSchedule类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。