本文整理汇总了TypeScript中claimant-response/tasks/settleAdmittedTask.SettleAdmittedTask类的典型用法代码示例。如果您正苦于以下问题:TypeScript SettleAdmittedTask类的具体用法?TypeScript SettleAdmittedTask怎么用?TypeScript SettleAdmittedTask使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SettleAdmittedTask类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should not be completed when settle admitted object is undefined', () => {
expect(SettleAdmittedTask.isCompleted(undefined)).to.be.false
})
示例2: expect
YesNoOption.all().forEach(option => {
expect(SettleAdmittedTask.isCompleted(new SettleAdmitted(option))).to.be.true
})
示例3: buildHowYouWantToRespondSection
static buildHowYouWantToRespondSection (draft: DraftClaimantResponse, claim: Claim, mediationDraft: MediationDraft): TaskList {
if (StatesPaidHelper.isResponseAlreadyPaid(claim)) {
return this.buildStatesPaidHowYouWantToRespondSection(draft, claim, mediationDraft)
}
const externalId: string = claim.externalId
const tasks: TaskListItem[] = []
if (claim.response.responseType === ResponseType.FULL_DEFENCE
&& claim.response.freeMediation === YesNoOption.NO) {
tasks.push(
new TaskListItem(
'Accept or reject their response',
Paths.notImplementedYetPage.evaluateUri({ externalId: externalId }),
false
)
)
}
if (claim.response.responseType === ResponseType.PART_ADMISSION
&& claim.response.paymentIntention !== undefined) {
tasks.push(
new TaskListItem(
'Accept or reject the ' + NumberFormatter.formatMoney(claim.response.amount),
Paths.settleAdmittedPage.evaluateUri({ externalId: externalId }),
SettleAdmittedTask.isCompleted(draft.settleAdmitted)
)
)
if (draft.settleAdmitted
&& draft.settleAdmitted.admitted.option === YesNoOption.YES
&& claim.response.paymentIntention.paymentOption !== PaymentOption.IMMEDIATELY) {
tasks.push(
new TaskListItem(
'Accept or reject their repayment plan',
Paths.acceptPaymentMethodPage.evaluateUri({ externalId: externalId }),
AcceptPaymentMethodTask.isCompleted(draft.acceptPaymentMethod)
)
)
}
this.buildProposeAlternateRepaymentPlanTask(draft, tasks, externalId)
if (!claim.claimData.defendant.isBusiness() || (draft.acceptPaymentMethod && draft.acceptPaymentMethod.accept.option === YesNoOption.YES)) {
this.buildFormaliseRepaymentPlan(draft, tasks, externalId)
}
this.buildSignSettlementAgreement(draft, tasks, externalId)
this.buildRequestCountyCourtJudgment(draft, tasks, externalId)
if (claim.response.freeMediation === YesNoOption.YES
&& draft.settleAdmitted
&& draft.settleAdmitted.admitted.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)
))
}
}
}
if (claim.response.responseType === ResponseType.FULL_ADMISSION
&& claim.response.paymentIntention.paymentOption !== PaymentOption.IMMEDIATELY
) {
tasks.push(
new TaskListItem(
'Accept or reject their repayment plan',
Paths.acceptPaymentMethodPage.evaluateUri({ externalId: externalId }),
AcceptPaymentMethodTask.isCompleted(draft.acceptPaymentMethod)
)
)
this.buildProposeAlternateRepaymentPlanTask(draft, tasks, externalId)
if (!claim.claimData.defendant.isBusiness() || (draft.acceptPaymentMethod && draft.acceptPaymentMethod.accept.option === YesNoOption.YES)) {
this.buildFormaliseRepaymentPlan(draft, tasks, externalId)
}
this.buildSignSettlementAgreement(draft, tasks, externalId)
this.buildRequestCountyCourtJudgment(draft, tasks, externalId)
}
return new TaskList('How do you want to respond?', tasks)
}