diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-09 17:27:54 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-09 17:27:54 -0400 |
commit | 6ca01af594148e12cd8e1da87302644a0bbae3a0 (patch) | |
tree | bb83af15a352e3125053a3d5c0761f8e395ed2c3 /src/item.h | |
parent | cad86ed87f3548aaf9d35890f2b686c2bf064368 (diff) | |
download | ledger-6ca01af594148e12cd8e1da87302644a0bbae3a0.tar.gz ledger-6ca01af594148e12cd8e1da87302644a0bbae3a0.tar.bz2 ledger-6ca01af594148e12cd8e1da87302644a0bbae3a0.zip |
Fixed the use of --effective and --date-format (-y).
Diffstat (limited to 'src/item.h')
-rw-r--r-- | src/item.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -126,8 +126,13 @@ public: virtual void parse_tags(const char * p, int current_year = -1); virtual void append_note(const char * p, int current_year = -1); + static bool use_effective_date; + virtual date_t date() const { assert(_date); + if (use_effective_date) + if (optional<date_t> effective = effective_date()) + return *effective; return *_date; } virtual optional<date_t> effective_date() const { |