From dfdb9b65d5cbde8397ce171cc5257e730dcfc209 2020-08-22 16:39:43 From: Brett Smith Date: 2020-08-22 16:39:43 Subject: [PATCH] accrual: Add total divider lines. --- diff --git a/conservancy_beancount/reports/accrual.py b/conservancy_beancount/reports/accrual.py index bb9ebfa46b3c365ff1e3db7e892b785b45a891a1..7362341fc099a884056eb401a5fabbe944a7b118 100644 --- a/conservancy_beancount/reports/accrual.py +++ b/conservancy_beancount/reports/accrual.py @@ -340,7 +340,7 @@ class AgingODS(core.BaseODS[AccrualPostings, data.Account]): numbercolumnsspanned=text_span, ), *(odf.table.TableCell() for _ in range(1, text_span)), - self.balance_cell(total_balance), + self.balance_cell(total_balance, stylename=self.style_total), ) age_range = f"Under {last_age_text}" else: @@ -363,7 +363,7 @@ class AgingODS(core.BaseODS[AccrualPostings, data.Account]): numbercolumnsspanned=text_span, ), *(odf.table.TableCell() for _ in range(1, text_span)), - self.balance_cell(total_balance), + self.balance_cell(total_balance, stylename=self.style_bottomline), ) def write_row(self, row: AccrualPostings) -> None: diff --git a/setup.py b/setup.py index e6c61ead44bb7b922288c5d3db0a00e396409a97..9979dc3c3ab2ff50b4c75dae8fe5e29bb36424e6 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup setup( name='conservancy_beancount', description="Plugin, library, and reports for reading Conservancy's books", - version='1.8.7', + version='1.8.8', author='Software Freedom Conservancy', author_email='info@sfconservancy.org', license='GNU AGPLv3+',