diff --git a/apps/edr-passenger-api/src/modules/payments/payments.service.ts b/apps/edr-passenger-api/src/modules/payments/payments.service.ts index 495edc17c..36d3fbd1d 100644 --- a/apps/edr-passenger-api/src/modules/payments/payments.service.ts +++ b/apps/edr-passenger-api/src/modules/payments/payments.service.ts @@ -259,8 +259,9 @@ export class PaymentsService { chargeAmount = this.currencyService.displayMinorToChargeMajor(booking.totalMinor, 'ETB'); } else { // Booking is in ETB — convert to the provider's settlement currency. - chargeAmount = await this.currencyService.convertEtbMinorToChargeMajor( + chargeAmount = await this.currencyService.convertMinorToChargeMajor( booking.totalMinor, + 'ETB', chargeCurrency, ); }