ledger
ledger copied to clipboard
Double-entry accounting system with a command-line reporting interface
For example, from one of the tests: ``` ; payroll taxes = /^Payroll/ Liabilities:Taxes:CFICA 0.062 Liabilities:Taxes:CMED 0.0145 $account:EFICA -0.062 $account:EMED -0.0145 ``` This reference to `$account` used to be hard-coded,...
I am trying to create a gtk frontend for ledger files written in Rust. For compatibility, I would like to use the original ledger-cli project to parse the ledger files...
I'm using version 3.1.2-20190205 and unable to upgrade, but I've found that if you create a directory with a file and a subdirectory in it: book1.txt ``` include a/book2.txt ```...
Note: the issue was created automatically with bugzilla2github Bugzilla bug ID: BZ#1206 From: Kuba Orlik (@kuba-orlik)
I use the following regex expression in an automated posting to match if the transaction month is Feb, Jun or Oct. `= /Expenses:Subscriptions:Netflix/ & expr date =~ /\/(02|06|10)\//` This results...
Consider the following automatic transaction: ``` commodity € payee Apple tag TVA account Assets:Bank account Expenses:Accessories account TVA:$account account TVA:Expenses:Accessories = /Expenses:?/ & %/TVA/ (TVA:$account) (tag("TVA")) 2025/04/10 * Apple ;...
The documentation mentions the date expression string `[this month]`, for example: https://ledger-cli.org/doc/ledger3.html#Value-Expressions ``` ledger -d "d>[this month]" register checking ``` I could not figure out what other strings can be...
It is inconvenient that `xact` does not use the current year or the year from last `year`. Instead some other value is used, I have not figured out which particular...
Note: the issue was created automatically with bugzilla2github Bugzilla bug ID: BZ#553 From: seanh
# Why Without number formatting, the generated output may look silly in terms of quantities, as quantities will have an arbitrary amount of decimals in the fractional part. # How...