From 144398aac41c7840332799531a9567f014fecefc Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Sun, 2 Dec 2007 16:51:13 +0000 Subject: [PATCH] A reminder of where we need to set the income/expense accounts for the auto-interest payments during the reconciliation process. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16609 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/window-reconcile.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gnome/window-reconcile.c b/src/gnome/window-reconcile.c index 96fd4aae93..21d00d7f86 100644 --- a/src/gnome/window-reconcile.c +++ b/src/gnome/window-reconcile.c @@ -453,6 +453,8 @@ recnInterestXferWindow( startRecnWindowData *data) _("Payment From") ); gnc_xfer_dialog_set_from_show_button_active( data->xferData, TRUE ); + // XXX: Set "from" account from previous interest payment. + gnc_xfer_dialog_set_to_account_label( data->xferData, _("Reconcile Account") ); gnc_xfer_dialog_select_to_account( data->xferData, data->account ); @@ -472,6 +474,8 @@ recnInterestXferWindow( startRecnWindowData *data) _("Payment To") ); gnc_xfer_dialog_set_to_show_button_active( data->xferData, TRUE ); + // XXX: Set "to" account from previous interest payment. + /* Quickfill based on the reconcile account, which is the "From" acct. */ gnc_xfer_dialog_quickfill_to_account( data->xferData, FALSE ); }