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
This commit is contained in:
Derek Atkins 2007-12-02 16:51:13 +00:00
parent 879ed4470f
commit 144398aac4

View File

@ -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 );
}