mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
798570 Budget totals for income, expenses and remaining to budget incorrect when increasing the number of periods.
This commit is contained in:
parent
4cc766b07a
commit
372a36eeb9
@ -1547,11 +1547,13 @@ The function will step through to only display the columns that are set
|
||||
void
|
||||
gnc_budget_view_refresh (GncBudgetView *budget_view)
|
||||
{
|
||||
// Column identifiers
|
||||
const gint GNC_BUDGET_VIEW_CODE_COL = 1;
|
||||
const gint GNC_BUDGET_VIEW_DESC_COL = 2;
|
||||
const gint GNC_BUDGET_VIEW_START_PERIODS_COL = 3;
|
||||
// The Totals column will be after the periods columns.
|
||||
// Column identifiers
|
||||
enum {
|
||||
code_column = 1,
|
||||
description_column = 2,
|
||||
startPeriods_column = 3
|
||||
// The Totals column will be after the periods columns.
|
||||
};
|
||||
|
||||
GncBudgetViewPrivate *priv;
|
||||
gint num_periods;
|
||||
@ -1595,13 +1597,13 @@ gnc_budget_view_refresh (GncBudgetView *budget_view)
|
||||
// set visibility of the account code columns
|
||||
code_col = gnc_tree_view_find_column_by_name (GNC_TREE_VIEW(priv->tree_view), "account-code");
|
||||
gtk_tree_view_column_set_visible (code_col, priv->show_account_code);
|
||||
code_col = gtk_tree_view_get_column (GTK_TREE_VIEW(priv->totals_tree_view), GNC_BUDGET_VIEW_CODE_COL);
|
||||
code_col = gtk_tree_view_get_column (GTK_TREE_VIEW(priv->totals_tree_view), code_column);
|
||||
gtk_tree_view_column_set_visible (code_col, priv->show_account_code);
|
||||
|
||||
// set visibility of the account description columns
|
||||
desc_col = gnc_tree_view_find_column_by_name (GNC_TREE_VIEW(priv->tree_view), "description");
|
||||
gtk_tree_view_column_set_visible (desc_col, priv->show_account_desc);
|
||||
desc_col = gtk_tree_view_get_column (GTK_TREE_VIEW(priv->totals_tree_view), GNC_BUDGET_VIEW_DESC_COL);
|
||||
desc_col = gtk_tree_view_get_column (GTK_TREE_VIEW(priv->totals_tree_view), description_column);
|
||||
gtk_tree_view_column_set_visible (desc_col, priv->show_account_desc);
|
||||
|
||||
/* If we're creating new columns to be appended to already existing
|
||||
@ -1614,7 +1616,7 @@ gnc_budget_view_refresh (GncBudgetView *budget_view)
|
||||
gtk_tree_view_remove_column (GTK_TREE_VIEW(priv->tree_view), col);
|
||||
priv->total_col = NULL;
|
||||
col = gtk_tree_view_get_column (GTK_TREE_VIEW(priv->totals_tree_view),
|
||||
GNC_BUDGET_VIEW_START_PERIODS_COL + num_periods_visible);
|
||||
startPeriods_column + num_periods_visible);
|
||||
gtk_tree_view_remove_column (GTK_TREE_VIEW(priv->totals_tree_view), col);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user