mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
4f05ddcf2a
commit
82f7170740
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user