Sort of accounts was buggy; it never made the final else due to bad regexes.
This fix now has the sort working correctly.
This commit is contained in:
parent
2fad8fe238
commit
e317e1f23e
2 changed files with 33 additions and 24 deletions
|
|
@ -86,35 +86,40 @@ print CHART_OUTPUT "\"BEGINNING:\",\"$formattedBeginDate\",";
|
||||||
print CHART_OUTPUT "\"ENDING:\",\"$formattedEndDate\"\n";
|
print CHART_OUTPUT "\"ENDING:\",\"$formattedEndDate\"\n";
|
||||||
|
|
||||||
sub preferredAccountSorting ($$) {
|
sub preferredAccountSorting ($$) {
|
||||||
if ($_[0] =~ /^Assets/) {
|
if ($_[0] =~ /^Assets/ and $_[1] !~ /^Assets/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Assets/) {
|
} elsif ($_[1] =~ /^Assets/ and $_[0] !~ /^Assets/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^Liabilities/ and $_[1] !~ /^Assets/) {
|
} elsif ($_[0] =~ /^Liabilities/ and $_[1] !~ /^(Assets|Liabilities)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Liabilities/ and $_[0] !~ /^Assets/) {
|
} elsif ($_[1] =~ /^Liabilities/ and $_[0] !~ /^(Assets|Liabilities)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^(Accrued)/ and $_[1] !~ /^(Assets|Liabilities)/) {
|
} elsif ($_[0] =~ /^(Accrued:[^:]+Receivable)/ and $_[1] !~ /^(Assets|Liabilities|Accrued:[^:]+Receivable)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^(Accrued)/ and $_[0] !~ /^(Assets|Liabilities)/) {
|
} elsif ($_[1] =~ /^(Accrued:[^:]+Receivable)/ and $_[0] !~ /^(Assets|Liabilities|Accrued:[^:]+Receivable)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^(Unearned Income)/ and $_[1] !~ /^(Assets|Liabilities|Accrued)/) {
|
} elsif ($_[0] =~ /^(Accrued)/ and $_[1] !~ /^(Assets|Liabilities|Accrued)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^(Unearned Income)/ and $_[0] !~ /^(Assets|Liabilities|Accrued)/) {
|
} elsif ($_[1] =~ /^(Accrued)/ and $_[0] !~ /^(Assets|Liabilities|Accrued)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^Income/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
} elsif ($_[0] =~ /^(Unearned Income)/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Income/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
} elsif ($_[1] =~ /^(Unearned Income)/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^Expense/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Expense)/) {
|
} elsif ($_[0] =~ /^Income/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Income)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Expense/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Expense)/) {
|
} elsif ($_[1] =~ /^Income/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Income)/) {
|
||||||
|
return 1;
|
||||||
|
} elsif ($_[0] =~ /^Expense/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Income|Unearned Income|Expense)/) {
|
||||||
|
return -1;
|
||||||
|
} elsif ($_[1] =~ /^Expense/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Income|Unearned Income|Expense)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
return $_[0] cmp $_[1];
|
return $_[0] cmp $_[1];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
my @sortedAccounts;
|
my @sortedAccounts;
|
||||||
foreach my $acct ( sort preferredAccountSorting @accounts) {
|
foreach my $acct ( sort preferredAccountSorting @accounts) {
|
||||||
print CHART_OUTPUT "\"$acct\"\n";
|
print CHART_OUTPUT "\"$acct\"\n";
|
||||||
|
|
|
||||||
|
|
@ -40,29 +40,33 @@ sub Commify ($) {
|
||||||
}
|
}
|
||||||
|
|
||||||
sub preferredAccountSorting ($$) {
|
sub preferredAccountSorting ($$) {
|
||||||
if ($_[0] =~ /^Assets/) {
|
if ($_[0] =~ /^Assets/ and $_[1] !~ /^Assets/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Assets/) {
|
} elsif ($_[1] =~ /^Assets/ and $_[0] !~ /^Assets/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^Liabilities/ and $_[1] !~ /^Assets/) {
|
} elsif ($_[0] =~ /^Liabilities/ and $_[1] !~ /^(Assets|Liabilities)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Liabilities/ and $_[0] !~ /^Assets/) {
|
} elsif ($_[1] =~ /^Liabilities/ and $_[0] !~ /^(Assets|Liabilities)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^(Accrued)/ and $_[1] !~ /^(Assets|Liabilities)/) {
|
} elsif ($_[0] =~ /^(Accrued:[^:]+Receivable)/ and $_[1] !~ /^(Assets|Liabilities|Accrued:[^:]+Receivable)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^(Accrued)/ and $_[0] !~ /^(Assets|Liabilities)/) {
|
} elsif ($_[1] =~ /^(Accrued:[^:]+Receivable)/ and $_[0] !~ /^(Assets|Liabilities|Accrued:[^:]+Receivable)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^(Unearned Income)/ and $_[1] !~ /^(Assets|Liabilities|Accrued)/) {
|
} elsif ($_[0] =~ /^(Accrued)/ and $_[1] !~ /^(Assets|Liabilities|Accrued)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^(Unearned Income)/ and $_[0] !~ /^(Assets|Liabilities|Accrued)/) {
|
} elsif ($_[1] =~ /^(Accrued)/ and $_[0] !~ /^(Assets|Liabilities|Accrued)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^Income/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
} elsif ($_[0] =~ /^(Unearned Income)/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Income/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
} elsif ($_[1] =~ /^(Unearned Income)/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} elsif ($_[0] =~ /^Expense/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Expense)/) {
|
} elsif ($_[0] =~ /^Income/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Income)/) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($_[1] =~ /^Expense/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Expense)/) {
|
} elsif ($_[1] =~ /^Income/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Unearned Income|Income)/) {
|
||||||
|
return 1;
|
||||||
|
} elsif ($_[0] =~ /^Expense/ and $_[1] !~ /^(Assets|Liabilities|Accrued|Income|Unearned Income|Expense)/) {
|
||||||
|
return -1;
|
||||||
|
} elsif ($_[1] =~ /^Expense/ and $_[0] !~ /^(Assets|Liabilities|Accrued|Income|Unearned Income|Expense)/) {
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
return $_[0] cmp $_[1];
|
return $_[0] cmp $_[1];
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue