本文整理汇总了TypeScript中claimant-response/helpers/amountHelper.AmountHelper.calculateTotalAmount方法的典型用法代码示例。如果您正苦于以下问题:TypeScript AmountHelper.calculateTotalAmount方法的具体用法?TypeScript AmountHelper.calculateTotalAmount怎么用?TypeScript AmountHelper.calculateTotalAmount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类claimant-response/helpers/amountHelper.AmountHelper
的用法示例。
在下文中一共展示了AmountHelper.calculateTotalAmount方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should return settlement amount and claim fee when the claimant settled for a lower amount', () => {
draft = new DraftClaimantResponse().deserialize(
{
settleAdmitted: {
admitted: {
option: 'yes'
}
}
}
)
expect(AmountHelper.calculateTotalAmount(claim, draft)).to.equal((claim.response as PartialAdmissionResponse).amount + claim.claimData.feeAmountInPennies / 100)
})
示例2: getPaymentIntention
ErrorHandling.apply(async (req: express.Request, res: express.Response) => {
const draft: Draft<DraftClaimantResponse> = res.locals.claimantResponseDraft
const mediationDraft: Draft<MediationDraft> = res.locals.mediationDraft
const claim: Claim = res.locals.claim
const alreadyPaid: boolean = StatesPaidHelper.isResponseAlreadyPaid(claim)
const paymentIntention: PaymentIntention = alreadyPaid ? undefined : getPaymentIntention(draft.document, claim)
res.render(Paths.checkAndSendPage.associatedView, {
draft: draft.document,
claim: claim,
totalAmount: AmountHelper.calculateTotalAmount(claim, res.locals.draft.document),
paymentIntention: paymentIntention,
alreadyPaid: alreadyPaid,
amount: alreadyPaid ? StatesPaidHelper.getAlreadyPaidAmount(claim) : undefined,
mediationEnabled: FeatureToggles.isEnabled('mediation'),
mediationDraft: mediationDraft.document
})
})
示例3: totalAmount
totalAmount (claim: Claim, draft: DraftClaimantResponse): number {
return AmountHelper.calculateTotalAmount(claim, draft)
}