After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 150799 - register view - sort by num: sorts alphabetically instead of numerically
register view - sort by num: sorts alphabetically instead of numerically
Status: VERIFIED FIXED
Product: GnuCash
Classification: Other
Component: User Interface General
2.0.x
Other Linux
: Normal minor
: ---
Assigned To: Derek Atkins
Chris Shoemaker
Depends on:
Blocks: 347575
 
 
Reported: 2004-08-22 22:14 UTC by Thomas Bushnell, BSG
Modified: 2018-06-29 20:46 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Thomas Bushnell, BSG 2004-08-22 22:14:43 UTC
Create an account with some transactions numbered 998, 999, 1000, and 1001.
Notice that if View > Sort Order > Standard is selected, the sort is first by
date, then by number.  Now switch to View > Sort Order > Number, and it sorts by
number, but sorts the numbers alphabetically rather than numerically (so they
come in the order 1000, 1001, 998, 998).

This has been verified in gnucash 1.8.9 and the CVS 1.8 branch with latest
ChangeLog entry titled: 2004-18-21  Derek Atkins  <derek@ihtfp.com>.

This is Debian bug http://bugs.debian.org/242441.
Comment 1 Derek Atkins 2004-08-24 01:47:30 UTC
Yea, the "number" field is just another string (there is not requirement that
the contents be solely numeric).  There was a discussion on gnucash-devel a
while ago about this topic; what do you do about mix and matched numerics and
alpha-numerics when trying to sort on the number column?

For example, if I've got:
  998, 999, 1000, 1001, and "check#12" -- how should it sort these five entries?
Comment 2 Derek Atkins 2004-08-24 17:51:32 UTC
From private email:

> I'm sure it would be fine to do whatever is done with the "standard"
> sort mode.  That seems to sort first by date, then by number, and when
> it sorts by number, strictly numeric fields are sorted numerically.

Indeed, you're right -- the code is as follows (from
Transaction.c:xaccTransOrder()):

  /* otherwise, sort on number string */
  na = atoi(ta->num);
  nb = atoi(tb->num);
  if (na < nb) return -1;
  if (na > nb) return +1;

So I guess it does just do "atoi" and assume it's a number.  *shrugs*.. Ok.
Comment 3 Christian Stimming 2006-08-04 09:21:20 UTC
Does this issue also occur in the 2.0.x versions? Development on 1.8.x has stopped, so please upgrade to 2.0.x (most current is 2.0.1) and see whether this problem still occurs.
Comment 4 Christian Stimming 2006-08-23 12:26:34 UTC
Closing this bug report as no further information has been provided. Please feel free to reopen this bug if you can provide the information asked for.
Thanks!
Comment 5 Thomas Bushnell, BSG 2006-08-29 19:36:38 UTC
I have verified that this bug does still exist in gnucash 2.0.1.
Comment 6 David 2006-09-25 19:16:53 UTC
I confirm Thomas Bushnell's report: the num field still sorts alpha in 2.0.1.
Comment 7 Derek Atkins 2006-09-26 00:37:11 UTC
Okay, this is now fixed in Trunk in r14892.  I don't know if this major a change should get backported to 2.0 branch.  I'll leave that up to the other devs.
Comment 8 Derek Atkins 2006-09-27 13:40:31 UTC
Okay, a better patch is in r14903.
Comment 9 Derek Atkins 2006-09-27 14:05:16 UTC
(actually, 14903 missed one hunk -- it needs 14094, too)
Comment 10 Derek Atkins 2006-09-27 17:09:24 UTC
Backported to 2.0 in r14906.   This fix will be in 2.0.2.
Comment 11 John Ralls 2018-06-29 20:46:40 UTC
GnuCash bug tracking has moved to a new Bugzilla host. This bug has been copied to https://bugs.gnucash.org/show_bug.cgi?id=150799. Please update any external references or bookmarks.