feat: show account group on account reconciliation form

This commit is contained in:
Herculino Trotta
2024-10-20 11:55:52 -03:00
parent 1909184d55
commit b77e48ef42
3 changed files with 4 additions and 2 deletions

View File

@@ -122,6 +122,7 @@ class AccountBalanceForm(forms.Form):
self.currency_prefix = self.initial.get("prefix", "")
self.currency_decimal_places = self.initial.get("decimal_places", 2)
self.account_name = self.initial.get("account_name", "")
self.account_group = self.initial.get("account_group", None)
self.current_balance = self.initial.get("current_balance", 0)
self.helper = FormHelper()