Monday, February 17, 2025
1 change · 18.0
Resolved issues and error corrections
The subscription portal now shows renewal amounts using the correct currency conversion instead of only changing the currency symbol. This prevents customers in multi-currency setups from seeing or paying an incorrectly low or high amount when extending a subscription.
Original PR description
The recurring subscription amount displayed in the sidebar of the subscription order portal view is incorrect. For companies using multiple currencies, the displayed amount is based on the database's…
The recurring subscription amount displayed in the sidebar of the subscription order portal view is incorrect. For companies using multiple currencies, the displayed amount is based on the database's base currency but is shown with the expected currency symbol. This discrepancy can cause issues when extending a subscription, as clients may not be charged the correct amount. For example, a product priced at €10 EUR should require the customer to pay ¥75.15 CNY. However, due to the previous use of the total_amount field, the customer only needed to pay ¥10 CNY to extend their subscription. The total_amount_currency field resolves this issue by correctly converting and displaying the amount in the expected currency. Before Fix:  After Fix:  Task-4484696