當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript CourtDecisionHelper.createCourtDecision方法代碼示例

本文整理匯總了TypeScript中shared/helpers/CourtDecisionHelper.CourtDecisionHelper.createCourtDecision方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript CourtDecisionHelper.createCourtDecision方法的具體用法?TypeScript CourtDecisionHelper.createCourtDecision怎麽用?TypeScript CourtDecisionHelper.createCourtDecision使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在shared/helpers/CourtDecisionHelper.CourtDecisionHelper的用法示例。


在下文中一共展示了CourtDecisionHelper.createCourtDecision方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it('should create DEFENDANT decision when defendant payment intention is most reasonable with pay by instalments', () => {
   claim = new Claim().deserialize({
     ...claimStoreServiceMock.sampleClaimObj,
     ...claimStoreServiceMock.sampleFullAdmissionWithPaymentByInstalmentsResponseObjWithNoDisposableIncome
   })
   draft = new DraftClaimantResponse().deserialize({
     alternatePaymentMethod: {
       paymentOption: {
         option: {
           value: 'INSTALMENTS',
           displayValue: 'By instalments'
         }
       },
       paymentPlan: {
         totalAmount: 3326.59,
         instalmentAmount: 1000,
         firstPaymentDate: {
           year: 2019,
           month: 1,
           day: 1
         },
         paymentSchedule: {
           value: 'EACH_WEEK',
           displayValue: 'Each week'
         },
         completionDate: '2019-10-01',
         paymentLength: '1'
       }
     },
     courtDetermination: { disposableIncome: 0 }
   })
   expect(CourtDecisionHelper.createCourtDecision(claim, draft)).to.equal(DecisionType.DEFENDANT)
 })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:33,代碼來源:courtDecisionHelper.ts

示例2: buildPostSubmissionUri

  buildPostSubmissionUri (req: express.Request, res: express.Response): string {
    const claim: Claim = res.locals.claim
    const draft: DraftClaimantResponse = res.locals.draft.document
    const claimResponse = claim.response as FullAdmissionResponse | PartialAdmissionResponse

    const externalId: string = req.params.externalId

    const courtDecision = CourtDecisionHelper.createCourtDecision(claim, draft)
    switch (courtDecision) {
      case DecisionType.NOT_APPLICABLE_IS_BUSINESS:
        return Paths.taskListPage.evaluateUri({ externalId: externalId })
      case DecisionType.COURT: {
        return Paths.courtOfferedSetDatePage.evaluateUri({ externalId: externalId })
      }
      case DecisionType.DEFENDANT: {
        if (claimResponse.paymentIntention.paymentOption === PaymentOption.INSTALMENTS) {
          return Paths.courtOfferedInstalmentsPage.evaluateUri({ externalId: externalId })
        }

        if (claimResponse.paymentIntention.paymentOption === PaymentOption.BY_SPECIFIED_DATE) {
          return Paths.courtOfferedSetDatePage.evaluateUri({ externalId: externalId })
        }
        break
      }
      case DecisionType.CLAIMANT:
      case DecisionType.CLAIMANT_IN_FAVOUR_OF_DEFENDANT: {
        return Paths.payBySetDateAcceptedPage.evaluateUri({ externalId: externalId })
      }
    }
  }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:30,代碼來源:payment-date.ts

示例3: saveDraft

  async saveDraft (locals: { user: User; draft: Draft<DraftClaimantResponse>, claim: Claim }): Promise<void> {
    const decisionType: DecisionType = CourtDecisionHelper.createCourtDecision(locals.claim, locals.draft.document)
    if (decisionType !== DecisionType.NOT_APPLICABLE_IS_BUSINESS) {
      locals.draft.document.courtDetermination.decisionType = decisionType

      const courtCalculatedPaymentIntention = PaymentPlanPage.generateCourtCalculatedPaymentIntention(locals.draft.document, locals.claim)
      if (courtCalculatedPaymentIntention) {
        locals.draft.document.courtDetermination.courtPaymentIntention = courtCalculatedPaymentIntention
      }
      locals.draft.document.courtDetermination.courtDecision = PaymentPlanPage.generateCourtOfferedPaymentIntention(locals.draft.document, locals.claim, decisionType)
    }
    return super.saveDraft(locals)
  }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:13,代碼來源:payment-plan.ts

示例4: getCourtDecision

 static getCourtDecision (draft: DraftClaimantResponse, claim: Claim): DecisionType {
   return CourtDecisionHelper.createCourtDecision(claim, draft)
 }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:3,代碼來源:payment-option.ts


注:本文中的shared/helpers/CourtDecisionHelper.CourtDecisionHelper.createCourtDecision方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。