Skip to content

Commit

Permalink
Matt Martin <matt.martin@ieee.org>'s patch to fix b0rken SX-list-proc…
Browse files Browse the repository at this point in the history
…essing

in since-last-run dialog  [before: 'break' out of processing further SXes
if a given SX in the list has no instances; now: 'continue' to other SXes
which may have instances yet].


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5748 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
jsled committed Oct 30, 2001
1 parent d4940d8 commit 8e904bc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 12 additions & 8 deletions src/doc/TODO-schedxactions
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,16 @@ X create a template register
. tab order

. SX editor
. 'Cancel' button should auto-cancel ledger changes
X 'Cancel' button should auto-cancel ledger changes
. tab order

. make-from-transaction
X credit/debit pull-over issues
X need to remove '-' from printed credit value.
X pull accounts over.
X pull initial SX name from the Transaction name?
. need start-date on Make dialog
. [initially starts as the next occurance after the created-from SX,
X need start-date on Make dialog
X [initially starts as the next occurance after the created-from SX,
which may not be the Right Thing]
. better frequency guess?
. non-trivial problem
Expand Down Expand Up @@ -126,7 +126,7 @@ X create a template register
stating there's nothing to do].
. Double-clicking on auto-create list should jump to transaction
. register of first split?
. double-clicking a reminder should [probably] move it up to the to-create
X double-clicking a reminder should [probably] move it up to the to-create
list.
X Easy UI way of moving through the SXes which need variable bindings.
[This presently is: click "Ok" and the next clist row which needs
Expand All @@ -150,7 +150,7 @@ X create a template register
. deal better with formulas in template transactions [real FormulaCell]
. recognize purely numeric template transactions and balance at
template-creation time.
. balance transaction via variable cancellation?
. balance transaction with vars?

. GNCFrequency
. initial-settings synchronization [start date, optionmenus]
Expand Down Expand Up @@ -236,11 +236,15 @@ X General

. Since-last-run
. correct "Back" button behavior in new Druid paradigm
. correct "Cancel" behavior in Druid
. reset SX state to before creation
. delete any created SXes.
. restore any obsolete-n-deleted SXes.
. tab-order on variable-entry window isn't always correct.
X any [horizontal] window size change height-grows the top/auto-create GL.
X always goes one date past the instantiation date.
. tab-order on variable-entry window isn't always correct.
? credit and debit seem reversed at instantiation time...
. this is fixed, but is the fix correct?
X credit and debit seem reversed at instantiation time...
X this is fixed, but is the fix correct?

. SX-from-trans
. you can delete a freshly-from-trans'd SX from the list with the
Expand Down
2 changes: 1 addition & 1 deletion src/gnome/dialog-sxsincelast.c
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ sxsincelast_populate( sxSinceLastData *sxsld )
&sxsld->toRemoveList );

if ( instanceList == NULL ) {
break;
continue;
}

xaccSchedXactionGetAutoCreate( sx, &autocreateState,
Expand Down

0 comments on commit 8e904bc

Please sign in to comment.