Restore the original sort ordering which is grouping by parent

account, and then sorting within a group first by account code and
then by account name.  Partial fix for #345385.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14454 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2006-06-28 03:46:25 +00:00
parent 4f05ddcf2a
commit 82f7170740
3 changed files with 7 additions and 10 deletions

View File

@ -1,5 +1,12 @@
2006-06-27 David Hampton <hampton@employees.org>
* src/report/standard-reports/portfolio.scm:
* src/report/standard-reports/advanced-portfolio.scm: Restore the
original sort ordering which is grouping by parent account, and
then sorting within a group first by account code and then by
account name. Partial fix for #345385.
* src/quotes/gnc-fq-update.in:
* src/quotes/gnc-fq-check.in:
* src/quotes/gnc-fq-helper.in:

View File

@ -645,11 +645,6 @@
table
headercols)
(set! accounts (sort accounts
(lambda (a b)
(string<? (gnc:account-get-name a)
(gnc:account-get-name b)))))
(table-add-stock-rows
table accounts to-date currency price-fn exchange-fn
include-empty include-gains show-symbol show-listing show-shares show-price

View File

@ -231,11 +231,6 @@
(_ "Price")
(_ "Value")))
(set! accounts (sort accounts
(lambda (a b)
(string<? (gnc:account-get-name a)
(gnc:account-get-name b)))))
(table-add-stock-rows
table accounts to-date currency
exchange-fn price-fn include-empty collector)