| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Fixes #157 / 9DF85DF2-4BF5-4931-A30C-2592A10BB5C0
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The --group-by option allows for most reports to be split up into
sections based on the varying value of EXPR. For example, to see
register subtotals by payee, use:
ledger reg --group-by=payee -s
This works for separated balances too:
ledger bal --group-by=payee
Another interesting possibility is seeing a register of all the accounts
affected by a related account:
ledger reg -r --group-by=payee
The option --group-title-format can be used to add a separator bar to
the group titles. The option --no-titles can be used to drop titles
altogether.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
The value expression "value" may be used to extract the wrapped value.
This is currently only used by the upcoming --group-title-format option.
|
| |
|
|
|
|
| |
true > false
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
The purpose of this option is to add special "<Rounding>" postings, to
ensure that a regiter's running total is *always* the sum of its
postings. Within --rounding, these adjustment postings are missing,
which was the behavior in Ledger 2.x. It can be orders of magnitude
slower to turn it on for large reports with many commodities.
|
| |
|
|
|
|
| |
Fixes 3AAB00ED-9904-4380-8988-16506B0AFE08
|
|
|
|
| |
Fixes 6A4AFDC2-DE87-48A5-A17D-B04120EE1F62
|
|
|
|
| |
Fixes 0F17CB7F-A000-4F99-8471-739948AD575F
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixes F4A477E6-C4F6-43B1-ABCC-4DC325C2869A
|
|
|
|
|
|
|
|
|
| |
Where display_account might be '(Expenses:Food)', account will always be
'Expenses:Food'. account is now used by all matching and query
operations, while display_account is used in the various report outputs
(besides balance, which never distinguished virtual accounts).
Fixes F2832452-4521-49A3-B854-F4E12CC4D82E
|
|
|
|
|
|
|
|
|
|
| |
It allows transactions like the following to auto-balance:
1999/08/16 Sell AAPL
Assets:Broker $585
Expense:Broker:Commissions $15
Assets:Broker -10 AAPL {$30} @ $60
Income:Capital Gains
|
|
|
|
|
|
|
|
| |
This is useful for making sure that the column containing the results of
--prepend-format is a consistent width throughout the report (including
those lines where it is not applied).
Fixes 64F9D913-75E1-4830-A3D9-29B72442E68B
|
| |
|
| |
|
|
|
|
| |
Fixes 15A80F68-F233-49D9-AF0C-9908BB6903BA
|
|
|
|
| |
Fixes EF57C685-2C18-49A1-9A8C-FB3BE6F99C41
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Fields are now:
Date,Code,Payee,Account,Commodity,Total,State,Note
Instead of outputting amounts potentially as $1,000.00 (which was an
error anyway), the output is now: $,1000.00. This makes the commodity
available in a separate field, and removes display of thousands markers.
Also, european formatting is always off.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
These three reports simply dump an unordered list (with the exception of
payees) shows all accounts, payees, and commodities represented in a
given report. This can be used to easily generate per-entity report,
for example:
ledger payees | \
while read payee; do \
echo ; echo $payee ; \
ledger reg payee "$payee" ; \
done
|
|
|
|
| |
Fixes 5CB52887-408E-48F0-8798-3C640D0295B3
|
|
|
|
| |
Fixes 89233B6D-CB21-4162-98E3-BE38B9336070
|
|
|
|
| |
Fixes 7B54CF80-45A4-4D50-A8D3-63272D60FA1B
|
|
|
|
| |
Fixes D53C98E5-506D-4CE5-91A3-7666FD33B65B
|
|
|
|
|
| |
account_id is the "whicheth" number for that posting within its
account. The xact_id is within its transaction.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
any() matches an expression against every post in a transaction or
account, and returns true if any of them are true. all() tests if all
are true. For example:
ledger -l 'account =~ /Expense/ & any(account =~ /MasterCard/)' reg
This reports every posting affecting an Expense account (regex match),
but only if some other posting in the same transaction affects the
MasterCard account.
Both functions also take a second boolean argument. If it is false, the
"source" posting is not considered. For example:
ledger -l 'any(/x/, false)'
This matches any posting where a *different* posting in the same
transaction contains the letter 'x'.
|
| |
|
| |
|
|
|
|
| |
This is really for debugging more than anything else.
|