Revision 2dc09cf5
Von Moritz Bunkus vor mehr als 16 Jahren hinzugefügt
SL/AP.pm | ||
---|---|---|
467 | 467 |
my $sortdir = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC'; |
468 | 468 |
my $sortorder = join(', ', map { "$_ $sortdir" } @a); |
469 | 469 |
|
470 |
if (grep({ $_ eq $form->{sort} } |
|
471 |
qw(transdate id invnumber ordnumber name netamount tax amount |
|
472 |
paid datepaid due duedate notes employee))) { |
|
470 |
if (grep({ $_ eq $form->{sort} } qw(transdate id invnumber ordnumber name netamount tax amount paid datepaid due duedate notes employee transaction_description))) { |
|
473 | 471 |
$sortorder = $form->{sort} . " $sortdir"; |
474 | 472 |
} |
475 | 473 |
|
Auch abrufbar als: Unified diff
Sortieren nach Vorgangsbezeichnung ermöglichen. Fix für Bug 749.