|
| Hledger.Cli.Commands.Register |
|
|
| Description |
| A ledger-compatible register command.
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
| A register report is a list of postings to an account or set of
accounts, with a running total. Postings may be actual postings, or
virtual postings aggregated over a reporting interval.
|
|
|
| The data for a single register report line item, representing one posting.
|
|
|
| Print a register report.
|
|
|
| Render a register report as plain text suitable for console output.
|
|
|
| Render one register report line item as plain text. Eg:
date (10) description (20) account (22) amount (11) balance (12)
DDDDDDDDDD dddddddddddddddddddd aaaaaaaaaaaaaaaaaaaaaa AAAAAAAAAAA AAAAAAAAAAAA
^ displayed for first postings^
only, otherwise blank
|
|
|
| Get a register report with the specified options for this journal.
|
|
|
| Generate register report line items.
|
|
|
| Generate one register report line item, from a flag indicating
whether to include transaction info, a posting, and the current running
balance.
|
|
|
| Date-sort and split a list of postings into three spans - postings matched
by the given display expression, and the preceding and following postings.
|
|
|
| Does this display expression allow this posting to be displayed ?
Raises an error if the display expression can't be parsed.
|
|
|
| Parse a hledger display expression, which is a simple date test like
d>[DATE] or d<=[DATE], and return a Posting-matching predicate.
|
|
|
| Convert a list of postings into summary postings. Summary postings
are one per account per interval and aggregated to the specified depth
if any.
|
|
|
Given a date span (representing a reporting interval) and a list of
postings within it: aggregate the postings so there is only one per
account, and adjust their date/description so that they will render
as a summary for this interval.
As usual with date spans the end date is exclusive, but for display
purposes we show the previous day as end date, like ledger.
When a depth argument is present, postings to accounts of greater
depth are aggregated where possible.
The showempty flag includes spans with no postings and also postings
with 0 amount.
|
|
|
| Clip the account names to the specified depth in a list of postings.
|
|
|
| Clip a posting's account name to the specified depth.
|
|
|
|
| Produced by Haddock version 2.6.1 |