goledger icon indicating copy to clipboard operation
goledger copied to clipboard

Ledger implementation in golang

Results 17 goledger issues
Sort by recently updated
recently updated
newest added

I can't download github.com/prataprc/color, how do I compile?

Foretell command should be able generate future transactions based on account declaration and cleared transactions.

task

Floating point computations lead to approximations, leading to round off errors and even functional errors. Example in dblentry/transactions.go:340 ```go if unbc.amount != 0.0 { unbcs = append(unbcs, unbc) } ```

bug

A transaction can have a textual “code”. This has no meaning and is only displayed by the print command. Checking accounts often use codes like DEP, XFER, etc., as well...

task

A very useful report is to show what your obligations are versus what expenditures have actually been recorded. Refer: [ledger-cli:cleared-report](http://ledger-cli.org/3.0/doc/ledger3.html#Cleared-Report)

task

There are many places in ledger-cli where value expression is used. This issues tracks all such places in case we decide to implement: * ``--period-sort VEXPR`` Sort postings within each...

task

ledger-cli supports budgeting and forecasting. This issue is used to track the places whether it needs to be implemented: * ``--budget`` Display how close your postings meet your budget. *...

task

Take for instance the following directive: ```text account MyCompany:Expense:Computer:Software payee Circuit City ``` and transactions under apply block: ```text apply account MyCompany 2004/09/29 Circuit City Expenses:Computer:Unknown $100.00 Liabilities:Payable:Myname $-100.00 2004/10/15...

task

Either supplied as command line parameter or loaded from ~/.ledgerrc This can be useful in setting up the ledger shell.

task

There are three ways of filtering out accruals. - filter all receivables - filter all payables - filter both receivables and payables.

task