Matus Goljer

Results 743 comments of Matus Goljer

~Even after the patch ledger still segfaults for me. There is a test included in the pull request but I think it doesn't test loading the data from stdin, but...

I'm running into the same issue. I've added one extra dummy posting to your example to setup EUR formatting ``` ledger = expr account =~ /^Expense:/ ; Value:: market(amount, post.date,...

> Just to confirm, can you describe the output you expected to see? > The expected report is to give 0.29 FOO (since no EUR price exists) and 16.72 EUR...

with the input as this ``` = expr account =~ /^Expenses/ and commodity != "Kc" ; Value:: market(amount / amount, post.date, exchange) ;; ##### HERE I do the amount /...

I have another use-case of `market`, which is kind of contrary to what we would want here :D ``` = /^Assets:Broker:Fio:Capital/ & expr 'real & ( payee =~ /Fio broker|Fund...

So, I figured it out. The `Value::` since it's with `::` resolves into a value which is calculated fully at the time the tag is added to the posting. So...

Apologies for the spam, but I just found this in the documentation > However, you can override this valuation logic by providing a commodity valuation expression in doubled parentheses. >...

I think you have to use `expr 'amount > 0'`. Using just `amount > 0 ` doesn't even do anything for me at all and such a query matches nothing....

I just run into this issue. If I understand correctly, OP wants to be able to only manage metadata with terraform (for example for providing descriptions or ownership information etc)...