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


TypeScript localDate.LocalDate类代码示例

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


在下文中一共展示了LocalDate类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

 it('should return instance with set fields from given object', () => {
   const date = new LocalDate()
   expect(new Offer().deserialize({
     offerText: 'offer Text',
     completionDate: date.asString()
   })).to.deep.equal(new Offer('offer Text', date))
 })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:offer.ts

示例2: retrieveDateOfBirthOfDefendant

 get retrieveDateOfBirthOfDefendant (): DateOfBirth {
   if (this.response && this.response.defendant.type === PartyType.INDIVIDUAL.value) {
     const defendantDateOfBirth: Moment = MomentFactory.parse((this.response.defendant as Individual).dateOfBirth)
     return new DateOfBirth(true, LocalDate.fromMoment(defendantDateOfBirth))
   }
   return undefined
 }
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:claim.ts

示例3: fromObject

  static fromObject (input?: any): DatePaid {
    if (!input) {
      return input
    }

    return new DatePaid(LocalDate.fromObject(input.date))
  }
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:datePaid.ts

示例4: it

    it('should use provided values', () => {
      const tenDaysAgo = LocalDate.fromMoment(MomentFactory.currentDate().subtract(10, 'days'))
      const row: ReportRow = new ReportRow('John Doe', tenDaysAgo)

      expect(row.expertName).to.equal('John Doe')
      expect(row.reportDate).to.deep.equal(tenDaysAgo)
    })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:reportRow.ts

示例5: it

    it('should accept affirmed reports with valid data', () => {
      const errors = validator.validateSync(new ExpertReports(true, [
        new ReportRow('B', LocalDate.fromMoment(MomentFactory.currentDate().subtract(1, 'day')))
      ]))

      expect(errors).to.be.empty
    })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:expertReports.ts

示例6: it

 it('should convert to CCJ - for a valid CCJ draft for full admission response paying by set date on breach of payment terms', () => {
   const draft: DraftCCJ = ccjDraftWithDefendantDOBKnown
   const claim: Claim = new Claim().deserialize(sampleClaimWithFullAdmissionWithSetDateResponseObj)
   const DOB: Moment = dob.toMoment()
   const countyCourtJudgment: CountyCourtJudgment = CCJModelConverter.convertForRequest(draft, claim)
   expect(countyCourtJudgment).to.be.deep.equal(new CountyCourtJudgment(DOB, PaymentOption.IMMEDIATELY, undefined, undefined, undefined, undefined, CountyCourtJudgmentType.ADMISSIONS))
 })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:7,代码来源:CCJModelConverter.ts


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