[JITERA] Add VND Currency Support to Account and Statistics Services
Created by: chi-jitera
Overview
This pull request introduces support for the Vietnamese Dong (VND) in the existing currency conversion system. The changes involve updating the Currency enum in both the account and statistics services to include VND, as well as ensuring that the conversion logic accommodates this new currency.
Changes
-
Statistics Service:
- Updated the
Currencyenum located atstatistics-service/src/main/java/com/piggymetrics/statistics/domain/Currency.javato includeVND. - Modified any logic that retrieves exchange rates to ensure VND is included in the supported currencies.
- Updated the
-
Account Service:
- Updated the
Currencyenum located ataccount-service/src/main/java/com/piggymetrics/account/domain/Currency.javato includeVND. - Ensured that the conversion logic is updated to handle conversions to and from VND.
- Updated the
These changes will allow users to perform currency conversions involving VND, enhancing the functionality of our currency conversion system.