Revision a5448e98
Von G. Richardson vor mehr als 4 Jahren hinzugefügt
SL/AM.pm | ||
---|---|---|
106 | 106 |
|
107 | 107 |
# get the taxkeys of the account |
108 | 108 |
$form->{ACCOUNT_TAXKEYS} = []; |
109 |
foreach my $taxkey ( @{ $chart_obj->taxkeys } ) { |
|
109 |
foreach my $taxkey ( sort { $b->startdate <=> $a->startdate } @{ $chart_obj->taxkeys } ) {
|
|
110 | 110 |
push @{ $form->{ACCOUNT_TAXKEYS} }, { id => $taxkey->id, |
111 | 111 |
chart_id => $taxkey->chart_id, |
112 | 112 |
tax_id => $taxkey->tax_id, |
Auch abrufbar als: Unified diff
Konten bearbeiten - Steuerschlüssel nach Datum sortieren
Es gab keine Sortierreihenfolge.