-
Notifications
You must be signed in to change notification settings - Fork 92
Description
Hi, It could be nice if we could have the following changes, they are not breaking changes I guess:
1. Having all currencies in the world as a choice of default currency.
In settings we set the actual currency as the default one.
2. Having the choice of the currency when adding an expense, if none is specified it default to the default currency.
I guess this one is important for people who travels a lot or may have expenses in a different currency (like online shopping for example).
3. Having a conversion in the default currency for an expense with another currency.
When an expense is added with a different currency than the default currency, an http call is made to fetch the correct conversion rate. If an error is returned then no converted amount is shown.
The Json payload will change because we have to add a "currency" field and a "convertedAmount" field but both could be instantiate as a default object and shown as is. (default currency for the "currency" field and 0 for "convertedAmount" which means that we don't show any conversion in the UI.
I have no bagage in Go or javascript but I can try to generate something.