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