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


TypeScript StatesPaidHelper.isAlreadyPaidLessThanAmount方法代码示例

本文整理汇总了TypeScript中claimant-response/helpers/statesPaidHelper.StatesPaidHelper.isAlreadyPaidLessThanAmount方法的典型用法代码示例。如果您正苦于以下问题:TypeScript StatesPaidHelper.isAlreadyPaidLessThanAmount方法的具体用法?TypeScript StatesPaidHelper.isAlreadyPaidLessThanAmount怎么用?TypeScript StatesPaidHelper.isAlreadyPaidLessThanAmount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在claimant-response/helpers/statesPaidHelper.StatesPaidHelper的用法示例。


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

示例1: renderView

function renderView (form: Form<ClaimSettled>, res: express.Response): void {
  const claim: Claim = res.locals.claim

  res.render(Paths.settleClaimPage.associatedView,{
    form: form,
    totalAmount: StatesPaidHelper.getAlreadyPaidAmount(claim),
    paidInFull: !StatesPaidHelper.isAlreadyPaidLessThanAmount(claim)
  })
}
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:9,代码来源:settle-claim.ts

示例2: it

    it('Should return false for full defense', () => {
      const claim: Claim = new Claim().deserialize(
        {
          ...sampleClaimObj,
          response: defenceWithAmountClaimedAlreadyPaidData
        }
      )

      expect(StatesPaidHelper.isAlreadyPaidLessThanAmount(claim)).to.be.equal(false)
    })
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:10,代码来源:statesPaidHelper.ts

示例3: renderView

function renderView (res: express.Response, page: number): void {
  const claim: Claim = res.locals.claim
  const alreadyPaid: boolean = StatesPaidHelper.isResponseAlreadyPaid(claim)

  res.render(Paths.defendantsResponsePage.associatedView, {
    claim: claim,
    page: page,
    alreadyPaid: alreadyPaid,
    partiallyPaid: alreadyPaid ? StatesPaidHelper.isAlreadyPaidLessThanAmount(claim) : undefined
  })
}
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:11,代码来源:defendants-response.ts

示例4: expect

 expect(() => StatesPaidHelper.isAlreadyPaidLessThanAmount(claim)).to.throw(Error, StatesPaidHelper.RESPONSE_TYPE_NOT_SUPPORTED)
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:1,代码来源:statesPaidHelper.ts

示例5:

const stateGuardRequestHandler: express.RequestHandler = GuardFactory.create((res: express.Response): boolean => {
  const claim: Claim = res.locals.claim
  return StatesPaidHelper.isAlreadyPaidLessThanAmount(claim)
}, (req: express.Request): void => {
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:4,代码来源:part-payment-received.ts

示例6: buildStatesPaidHowYouWantToRespondSection

  static buildStatesPaidHowYouWantToRespondSection (draft: DraftClaimantResponse, claim: Claim, mediationDraft: MediationDraft): TaskList {
    const tasks: TaskListItem[] = []
    const response: FullDefenceResponse | PartialAdmissionResponse = claim.response as FullDefenceResponse | PartialAdmissionResponse
    const externalId: string = claim.externalId

    if (response.responseType === ResponseType.FULL_DEFENCE) {
      tasks.push(
        new TaskListItem('Accept or reject their response',
          Paths.settleClaimPage.evaluateUri({ externalId: externalId }),
          ClaimSettledTask.isCompleted(draft)
        ))
    } else {
      if (StatesPaidHelper.isAlreadyPaidLessThanAmount(claim)) {
        tasks.push(
          new TaskListItem(`Have you been paid the ${ NumberFormatter.formatMoney(response.amount) }?`,
            Paths.partPaymentReceivedPage.evaluateUri({ externalId: externalId }),
            PartPaymentReceivedTask.isCompleted(draft)
          ))

        if (draft.partPaymentReceived && draft.partPaymentReceived.received.option === YesNoOption.YES) {
          tasks.push(
            new TaskListItem(`Settle the claim for ${ NumberFormatter.formatMoney(response.amount) }?`,
              Paths.settleClaimPage.evaluateUri({ externalId: externalId }),
              ClaimSettledTask.isCompleted(draft)
            ))
        }
      } else {
        tasks.push(
          new TaskListItem(`Have you been paid the full ${ NumberFormatter.formatMoney(claim.totalAmountTillDateOfIssue) }?`,
            Paths.settleClaimPage.evaluateUri({ externalId: externalId }),
            ClaimSettledTask.isCompleted(draft)
          ))
      }
    }

    if (claim.response.freeMediation === YesNoOption.YES) {
      if ((draft.accepted && draft.accepted.accepted.option === YesNoOption.NO) ||
        (draft.partPaymentReceived && draft.partPaymentReceived.received.option === YesNoOption.NO)) {
        if (FeatureToggles.isEnabled('mediation')) {
          const path = MediationPaths.freeMediationPage.evaluateUri({ externalId: claim.externalId })
          tasks.push(
            new TaskListItem(
              'Free telephone mediation',
              path,
              FreeMediationTask.isCompleted(draft, mediationDraft)
            ))
        } else {
          const path = Paths.freeMediationPage.evaluateUri({ externalId: claim.externalId })
          tasks.push(
            new TaskListItem(
              'Consider free mediation',
              path,
              FreeMediationTask.isCompleted(draft, mediationDraft)
            ))
        }
      }
    }

    return new TaskList('Your response', tasks)

  }
开发者ID:hmcts,项目名称:cmc-citizen-frontend,代码行数:61,代码来源:taskListBuilder.ts


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