diff --git a/conservancy_beancount/plugin/meta_approval.py b/conservancy_beancount/plugin/meta_approval.py index d32fec7..809ffd0 100644 --- a/conservancy_beancount/plugin/meta_approval.py +++ b/conservancy_beancount/plugin/meta_approval.py @@ -37,7 +37,7 @@ class MetaApproval(core._RequireLinksPostingMetadataHook): assets_sum = decimal.Decimal(0) creditcard_sum = decimal.Decimal(0) for post in data.iter_postings(txn): - if post.is_payment(): + if post.is_payment(self.payment_threshold): assets_sum += post.units.number or 0 elif post.account.is_under(self.CREDIT_CARD_ACCT): creditcard_sum += post.units.number or 0