-
|
Hi, loving WYGIWYH so far, it fits my needs pretty much perfectly. That being said, I have hit a small snag. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I would model those as separate accounts, one per currency. The app has multi-currency support, but the current So a real bank account with EUR and USD pockets would map more cleanly to something like: Then use the same group/name convention to keep them visually related. |
Beta Was this translation helpful? Give feedback.
-
|
Glad you're enjoying the app @Fasguy! @cookesan is spot on on how to model multi-currency accounts! Thanks for the answer by the way. The reasoning behind this is to simplify calculations and data ingestion, if each account could hold infinite currencies, it would be visual hell to display their totals for example, and you'd have to pick a currency every time you create a new transaction. Most banks I know of will let you know the total in each currency, so, short of the name, there's not much difference from real life.. |
Beta Was this translation helpful? Give feedback.
I would model those as separate accounts, one per currency.
The app has multi-currency support, but the current
Accountmodel has a single maincurrencyfield. It also hasexchange_currency, but that is described in the model as the default currency for exchange calculations, not as a second balance currency inside the same account.So a real bank account with EUR and USD pockets would map more cleanly to something like:
Then use the same group/name convention to keep them visually related.