summaryrefslogtreecommitdiff
path: root/src/iterators.cc
Commit message (Collapse)AuthorAgeFilesLines
* Don't output extra commodity "posts"John Wiegley2009-10-311-30/+41
| | | | | If a posting has already been registered for a given date with a given price, don't register it again.
* Further improvements to handling temporariesJohn Wiegley2009-10-281-8/+3
|
* Fixed sorting in bal reports when --flat is usedJohn Wiegley2009-10-261-29/+31
| | | | | | | Note that sorting on the "total" is not the same thing as sorting on the "display_total" when multiple commodities are in use and the -X flag is selected! One should always sort on display_total, since that's the value which is shown in the report. 'T' is a synonym for display_total.
* Restored pricesdb command and --pricesdb-format optionJohn Wiegley2009-06-181-1/+3
|
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* The Great Renaming, Part IIJohn Wiegley2009-02-231-54/+54
| | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset.
* Simplify account total values before comparisonJohn Wiegley2009-02-191-0/+7
| | | | | | This way, if two account values are BALANCE types containing only a single AMOUNT, then it will do the sorting comparison of the amounts -- since otherwise balances are ignored for the purposes of sorting.
* Added some sort-related debugging codeJohn Wiegley2009-02-191-0/+6
|
* Allow for sorting of the balance reportJohn Wiegley2009-02-191-1/+29
| | | | | | Sorting is repeated at each level of the hierarchy, unless --flat was specified in which case it applies to the entire applicable accounts list.
* Fixed several unused value and param warningsJohn Wiegley2009-02-161-4/+1
|
* Removed an #if 0'd function from iterators.ccJohn Wiegley2009-02-141-45/+0
|
* Changed the semantics of the "prices" reportJohn Wiegley2009-02-131-8/+22
| | | | | | | | | | | | | | | The prices report now uses the following scheme: PAYEE -> name of commodity of price ACCOUNT -> name of commodity of item AMOUNT -> price DATE -> date of pricing However, the report does not show the payee. The only reason the payee is set is to enable clever querying. For example: ledger prices gold # show all known prices for GOLD ledger prices @gold # show all known prices *in* GOLD
* Restored the "prices" command.John Wiegley2009-02-121-0/+66
|
* Removed reference to session_t from the iterators module.John Wiegley2009-02-091-7/+7
|
* Threw away the "multiple parser" infrastructure.John Wiegley2009-02-071-35/+8
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Changed COMMODITY_STYLE_NOMARKET TO COMMODITY_NOMARKET.John Wiegley2009-01-191-1/+1
|
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+200
is in doc/, etc.