We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50202e4 commit 22692e6Copy full SHA for 22692e6
apps/condo/domains/billing/schema/AllResidentBillingReceiptsService.js
@@ -194,7 +194,7 @@ const AllResidentBillingReceiptsService = new GQLCustomSchema('AllResidentBillin
194
if (acquiringContextId) {
195
const formula = await getAcquiringIntegrationContextFormula(context, acquiringContextId)
196
const feeCalculator = new FeeDistribution(formula, billingCategory.id)
197
- const { explicitFee } = feeCalculator.calculate(Big(toPay).minus(Big(newPaid)).toFixed(2))
+ const { explicitFee } = feeCalculator.calculate(Big(toPay).minus(Big(newPaid)))
198
fee = String(explicitFee)
199
}
200
receiptsWithPayments.push(({
0 commit comments