diff --git a/conservancy_beancount/reports/fund.py b/conservancy_beancount/reports/fund.py index a796686d6b627568ec6a0dfb8cfac2b241445cfb..71eaf69bcae2ec69630c9551b7e07c8774e170d6 100644 --- a/conservancy_beancount/reports/fund.py +++ b/conservancy_beancount/reports/fund.py @@ -214,7 +214,9 @@ class ODSReport(core.BaseODS[str, None]): # Write the expanded fund report. start_spreadsheet() will see we've # written the first sheet and adapt. super().write(iter(row_list)) + self.write_balance_row("", self.sheet_totals, self.style_total) self.write_balances("Unrestricted", fund=core.Fund.UNRESTRICTED) + self.write_balance_row("", self.sheet_totals, self.style_bottomline) self.set_open_sheet(self.sheet)