本文整理汇总了TypeScript中claims/models/settlement.Settlement类的典型用法代码示例。如果您正苦于以下问题:TypeScript Settlement类的具体用法?TypeScript Settlement怎么用?TypeScript Settlement使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Settlement类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should return Offer when defendant made an offer', () => {
const myInput: any = input()
const offer: Offer = myInput.partyStatements[0].offer
const actual: Settlement = new Settlement().deserialize(myInput)
expect(actual.getDefendantOffer().completionDate.format('YYYY-DD-MM')).to.be.eq(offer.completionDate)
expect(actual.getDefendantOffer().content).to.be.eq(offer.content)
})
示例2: requestHandler
static async requestHandler (req: express.Request, res: express.Response, next: express.NextFunction): Promise<void> {
const claim: Claim = res.locals.claim
const settlement: Settlement = claim.settlement
const claimantResponse: ClaimantResponse = claim.claimantResponse
if (!claimantResponse || claimantResponse.type !== ClaimantResponseType.ACCEPTATION
|| AcceptationClaimantResponse.deserialize(claimantResponse).formaliseOption !== FormaliseOption.SETTLEMENT) {
logger.warn(`Claim ${claim.claimNumber} no acceptance claimant response for claim`)
res.redirect(Paths.dashboardPage.uri)
} else if (!settlement || settlement.isSettled() || settlement.isOfferRejected()) {
logger.warn(`Claim ${claim.claimNumber} no suitable settlement agreement for claim`)
res.redirect(Paths.dashboardPage.uri)
} else {
next()
}
}
示例3: isSettlementAgreementRejected
get isSettlementAgreementRejected (): boolean {
if (!this.claimantResponse || this.claimantResponse.type !== ClaimantResponseType.ACCEPTATION) {
return false
}
const claimantResponse: AcceptationClaimantResponse = this.claimantResponse
return claimantResponse.formaliseOption === FormaliseOption.SETTLEMENT
&& this.settlement && this.settlement.isOfferRejected()
}
示例4: stateHistory
get stateHistory (): State[] {
const statuses = [{ status: this.status }]
if (this.isOfferRejected() && !this.isSettlementReached() && !this.settlement.isThroughAdmissions() && !this.moneyReceivedOn) {
statuses.push({ status: ClaimStatus.OFFER_REJECTED })
} else if (this.isOfferAccepted() && !this.isSettlementReached() && !this.settlement.isThroughAdmissions() && !this.moneyReceivedOn) {
statuses.push({ status: ClaimStatus.OFFER_ACCEPTED })
} else if (this.isOfferSubmitted() && !this.settlement.isThroughAdmissions() && !this.moneyReceivedOn && !this.isSettlementReached()) {
statuses.push({ status: ClaimStatus.OFFER_SUBMITTED })
}
if (this.eligibleForCCJAfterBreachedSettlementTerms) {
statuses.push({ status: ClaimStatus.ELIGIBLE_FOR_CCJ_AFTER_BREACHED_SETTLEMENT })
}
if (this.isPaidInFullLinkEligible()) {
statuses.push({ status: ClaimStatus.PAID_IN_FULL_LINK_ELIGIBLE })
}
return statuses
}
示例5: eligibleForCCJAfterBreachedSettlementTerms
get eligibleForCCJAfterBreachedSettlementTerms (): boolean {
if (this.response && this.settlement && this.settlement.isThroughAdmissionsAndSettled()) {
const lastOffer: Offer = this.settlement.getLastOffer()
if (lastOffer && lastOffer.paymentIntention) {
const paymentOption = lastOffer.paymentIntention.paymentOption
switch (paymentOption) {
case PaymentOption.BY_SPECIFIED_DATE:
return !this.countyCourtJudgmentRequestedAt
&& isPastDeadline(MomentFactory.currentDateTime(),
(this.settlement.partyStatements.filter(o => o.type === StatementType.OFFER.value).pop().offer.completionDate))
case PaymentOption.INSTALMENTS:
return !this.countyCourtJudgmentRequestedAt
&& isPastDeadline(MomentFactory.currentDateTime(),
(this.settlement.partyStatements.filter(o => o.type === StatementType.OFFER.value).pop().offer.paymentIntention.repaymentPlan.firstPaymentDate))
default:
throw new Error(`Payment option ${paymentOption} is not supported`)
}
}
}
return false
}
示例6: defendantOffer
get defendantOffer (): Offer {
if (!this.settlement) {
return undefined
}
return this.settlement.getDefendantOffer()
}