disable lot scrubbing during Check & Repair (#357370).

Lots are supposed to be disabled in the 2.0 release until we
	  get the cap-gains code working.  IMHO the cap-gains code should
	  deal with extra txn splits instead of creating additional txns.
BP


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14888 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2006-09-23 22:51:29 +00:00
parent b72c587350
commit bb5646f42c
4 changed files with 18 additions and 5 deletions

View File

@ -4,6 +4,14 @@
suspend events around the Commit(). Fixes #347089 when combined
with r14495.
* src/gnome/druid-acct-period.c:
* src/gnome/gnc-plugin-page-account-tree.c:
* src/gnome/window-reconcile.c:
disable lot scrubbing during Check & Repair (#357370).
Lots are supposed to be disabled in the 2.0 release until we
get the cap-gains code working. IMHO the cap-gains code should
deal with extra txn splits instead of creating additional txns.
2006-09-19 Christian Stimming <stimming@tuhh.de>
* configure.in: Remove mt940 module completely from the build and

View File

@ -393,7 +393,8 @@ scrub_all(void)
AccountGroup *group = gnc_get_current_group ();
xaccGroupScrubOrphans (group);
xaccGroupScrubImbalance (group);
xaccGroupScrubLots (group);
// XXX: Lots are disabled
//xaccGroupScrubLots (group);
}
/* =============================================================== */

View File

@ -1168,7 +1168,8 @@ gnc_plugin_page_account_tree_cmd_scrub (GtkAction *action, GncPluginPageAccountT
xaccAccountScrubOrphans (account);
xaccAccountScrubImbalance (account);
xaccAccountScrubLots (account);
// XXX: Lots are disabled
//xaccAccountScrubLots (account);
gnc_resume_gui_refresh ();
}
@ -1185,7 +1186,8 @@ gnc_plugin_page_account_tree_cmd_scrub_sub (GtkAction *action, GncPluginPageAcco
xaccAccountTreeScrubOrphans (account);
xaccAccountTreeScrubImbalance (account);
xaccAccountTreeScrubLots (account);
// XXX: Lots are disabled
//xaccAccountTreeScrubLots (account);
gnc_resume_gui_refresh ();
}
@ -1200,7 +1202,8 @@ gnc_plugin_page_account_tree_cmd_scrub_all (GtkAction *action, GncPluginPageAcco
xaccGroupScrubOrphans (group);
xaccGroupScrubImbalance (group);
xaccGroupScrubLots (group);
// XXX: Lots are disabled
//xaccGroupScrubLots (group);
gnc_resume_gui_refresh ();
}

View File

@ -1228,7 +1228,8 @@ gnc_recn_scrub_cb(GtkAction *action, gpointer data)
xaccAccountTreeScrubOrphans (account);
xaccAccountTreeScrubImbalance (account);
xaccAccountTreeScrubLots (account);
// XXX: Lots are disabled.
//xaccAccountTreeScrubLots (account);
gnc_resume_gui_refresh ();
}