accrual: Add total divider lines.

This commit is contained in:
Brett Smith 2020-08-22 12:39:43 -04:00
parent 4f223642ed
commit dfdb9b65d5
2 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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+',