Description
Description
In the situation where one has yyyy-opening.journal
and yyyy-closing.journal
for a specific year,
running one of the hledger built-in financial reports on one specific year, the user will be faced with empty reports
$ hledger bal 2017-include.journal
--------------------
0
because hledger-flow adds an include to yyyy-closing.journal
in the yyyy-include.journal
, which effectively brings all the counters back to zero.
Expectation
I would expect hledger <any report> -f yyyy-include.journal
to just work
Solution
The yyyy-opening.journal
include stays in yyyy-include.journal
, but yyyy-closing.journal
include needs to move to the all-years.journal
file, as evidenced by the all.journal in the full-fledged-hledger project. This ensures that reports work on a per-year yyyy-include.journal
basis, and that reports also work on an aggregated all-years.journal
basis, with the important caveat that the very last yyyy-closing.journal
must not be part of the all-years.journal
(even if one such file is present on the file system), otherwise we encounter the same problem of empty reports on an aggegated all-years.journal
basis.
I hope that makes sense, it's a bit tricky to explain.
Version and Runtime Information
This include behaviour has been present in hledger-flow as far back as I can remember using it.
Additional context
I only found this bug because I'm trying to use hledger-flow import
for my imports, while using full-fledged-hledger
's export.hs
for my reports, and I got confused that I was getting empty reports.