summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/item.h1
-rw-r--r--src/xact.cc2
-rw-r--r--test/regress/issue2220.test8
3 files changed, 10 insertions, 1 deletions
diff --git a/src/item.h b/src/item.h
index c21450e8..84f062ab 100644
--- a/src/item.h
+++ b/src/item.h
@@ -86,6 +86,7 @@ public:
#define ITEM_GENERATED 0x01 // posting was not found in a journal
#define ITEM_TEMP 0x02 // posting is a managed temporary
#define ITEM_NOTE_ON_NEXT_LINE 0x04 // did we see a note on the next line?
+#define ITEM_INFERRED 0x08 // bucketed item
enum state_t { UNCLEARED = 0, CLEARED, PENDING };
diff --git a/src/xact.cc b/src/xact.cc
index 961ff010..55e816cb 100644
--- a/src/xact.cc
+++ b/src/xact.cc
@@ -210,7 +210,7 @@ bool xact_base_t::finalize()
// been set.
if (journal && journal->bucket && posts.size() == 1 && ! balance.is_null()) {
- null_post = new post_t(journal->bucket, ITEM_GENERATED);
+ null_post = new post_t(journal->bucket, ITEM_INFERRED);
null_post->_state = (*posts.begin())->_state;
add_post(null_post);
}
diff --git a/test/regress/issue2220.test b/test/regress/issue2220.test
new file mode 100644
index 00000000..095d0f63
--- /dev/null
+++ b/test/regress/issue2220.test
@@ -0,0 +1,8 @@
+bucket Liabilities:CreditCard
+
+2023/01/01 * Payment
+ Assets:Checking $-34.86
+
+test reg --monthly --related ^Assets:Checking
+23-Jan-01 - 23-Jan-31 Liabilities:CreditCard $34.86 $34.86
+end test