Bug 798070 - Revert "Do not create additional opening balance account on creating new gnucash file"

The changes from this commit break the addition of opening balances when
creating new files.

This reverts commit a2aca9da66.
This commit is contained in:
Ralf Habacker 2021-01-02 11:46:05 +01:00
parent 89da0f10b0
commit d319e7d4d8

View File

@ -1423,6 +1423,13 @@ on_finish (GtkAssistant *gtkassistant,
ENTER (" ");
com = gnc_currency_edit_get_currency (GNC_CURRENCY_EDIT(data->currency_selector));
if (data->our_account_tree)
{
gnc_account_foreach_descendant (data->our_account_tree,
(AccountCb)starting_balance_helper,
data);
}
// delete before we suspend GUI events, and then muck with the model,
// because the model doesn't seem to handle this correctly.
if (data->initial_category)
@ -1445,13 +1452,6 @@ on_finish (GtkAssistant *gtkassistant,
gnc_resume_gui_refresh ();
if (data->our_account_tree)
{
gnc_account_foreach_descendant (data->our_account_tree,
(AccountCb)starting_balance_helper,
data);
}
if (when_completed)
{
(*when_completed)();