r23535 - gnucash/trunk/src/gnome - Add the ability to search for transactions that are, or are not, book closing entries.

Mike Alexander mta at code.gnucash.org
Tue Dec 10 17:17:01 EST 2013


Author: mta
Date: 2013-12-10 17:17:00 -0500 (Tue, 10 Dec 2013)
New Revision: 23535
Trac: http://svn.gnucash.org/trac/changeset/23535

Modified:
   gnucash/trunk/src/gnome/dialog-find-transactions.c
   gnucash/trunk/src/gnome/dialog-find-transactions2.c
Log:
Add the ability to search for transactions that are, or are not, book closing entries.

Modified: gnucash/trunk/src/gnome/dialog-find-transactions.c
===================================================================
--- gnucash/trunk/src/gnome/dialog-find-transactions.c	2013-12-10 19:57:43 UTC (rev 23534)
+++ gnucash/trunk/src/gnome/dialog-find-transactions.c	2013-12-10 22:17:00 UTC (rev 23535)
@@ -110,6 +110,9 @@
         params = gnc_search_param_prepend (params, N_("Balanced"), NULL,
                                            type, SPLIT_TRANS, TRANS_IS_BALANCED,
                                            NULL);
+        params = gnc_search_param_prepend (params, N_("Closing Entries"), NULL,
+                                           type, SPLIT_TRANS, TRANS_IS_CLOSING,
+                                           NULL);
         params = gnc_search_param_prepend (params, N_("Reconcile"), RECONCILED_MATCH_TYPE,
                                            type, SPLIT_RECONCILE, NULL);
         params = gnc_search_param_prepend (params, N_("Share Price"), NULL,

Modified: gnucash/trunk/src/gnome/dialog-find-transactions2.c
===================================================================
--- gnucash/trunk/src/gnome/dialog-find-transactions2.c	2013-12-10 19:57:43 UTC (rev 23534)
+++ gnucash/trunk/src/gnome/dialog-find-transactions2.c	2013-12-10 22:17:00 UTC (rev 23535)
@@ -111,6 +111,9 @@
         params = gnc_search_param_prepend (params, N_("Balanced"), NULL,
                                            type, SPLIT_TRANS, TRANS_IS_BALANCED,
                                            NULL);
+        params = gnc_search_param_prepend (params, N_("Closing Entries"), NULL,
+                                           type, SPLIT_TRANS, TRANS_IS_CLOSING,
+                                           NULL);
         params = gnc_search_param_prepend (params, N_("Reconcile"), RECONCILED_MATCH_TYPE,
                                            type, SPLIT_RECONCILE, NULL);
         params = gnc_search_param_prepend (params, N_("Share Price"), NULL,



More information about the gnucash-changes mailing list