You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I liked ledger-web very much, but I'm using 3-4 currencies simultaneously, and therefore ledger-web is useless in my case.
Reports show some numbers but without currencies attached, and they get it obviously wrong (for example, income is in currency CUR1 and expenses are in currency CUR2). When I'm using ledger command, I use -X option to see everything converted to a single currency.
Also, I use Russian names for accounts (like 'Активы' instead of 'Assets') and have to manually tweak reports to replace account names. It would be nice if it would be possible to specify mapping in the config file.
The text was updated successfully, but these errors were encountered:
There's a commodity entity in the database (according to the Readme), although I can't get it to do anything: trying to get a simple monthly report to show it:
<% @query = query do %>
select
xtn_month as "Month",
account as "Account",
sum(amount) as "Total",
commodity as "Currency"
from
ledger
where
(account ~ 'Income'
or account ~ 'Expenses')
and xtn_date between :from and :to
group by
xtn_month,
account
order by
xtn_month,
account
<% end %>
<div class="page-title">
<h1>Monthly</h1>
</div>
<%= table @query %>```
I liked ledger-web very much, but I'm using 3-4 currencies simultaneously, and therefore ledger-web is useless in my case.
Reports show some numbers but without currencies attached, and they get it obviously wrong (for example, income is in currency CUR1 and expenses are in currency CUR2). When I'm using ledger command, I use -X option to see everything converted to a single currency.
Also, I use Russian names for accounts (like 'Активы' instead of 'Assets') and have to manually tweak reports to replace account names. It would be nice if it would be possible to specify mapping in the config file.
The text was updated successfully, but these errors were encountered: