Revision 2302fc97
Von G. Richardson vor mehr als 4 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
501 | 501 |
my $item = shift; |
502 | 502 |
return [ |
503 | 503 |
$item->{id} .'--'. $item->{rate}, |
504 |
$item->{taxdescription} .' '. ($item->{rate} * 100) .' %', |
|
504 |
$item->{taxkey} . ' - ' . $item->{taxdescription} .' '. ($item->{rate} * 100) .' %',
|
|
505 | 505 |
]; |
506 | 506 |
}; |
507 | 507 |
|
bin/mozilla/ar.pl | ||
---|---|---|
438 | 438 |
$taxchart_to_use = $item if $key eq $form->{"taxchart_$i"}; |
439 | 439 |
|
440 | 440 |
push(@taxchart_values, $key); |
441 |
$taxchart_labels{$key} = $item->taxdescription . " " . $item->rate * 100 . ' %'; |
|
441 |
$taxchart_labels{$key} = $item->taxkey . " - " . $item->taxdescription . " " . $item->rate * 100 . ' %';
|
|
442 | 442 |
} |
443 | 443 |
|
444 | 444 |
$taxchart_to_use //= $default_taxchart // $first_taxchart; |
bin/mozilla/gl.pl | ||
---|---|---|
835 | 835 |
$taxchart_to_use = $item if $key eq $form->{"taxchart_$i"}; |
836 | 836 |
|
837 | 837 |
push(@taxchart_values, $key); |
838 |
$taxchart_labels{$key} = $item->taxdescription . " " . $item->rate * 100 . ' %'; |
|
838 |
$taxchart_labels{$key} = $item->taxkey . " - " . $item->taxdescription . " " . $item->rate * 100 . ' %';
|
|
839 | 839 |
} |
840 | 840 |
|
841 | 841 |
$taxchart_to_use //= $default_taxchart // $first_taxchart; |
templates/webpages/gl/update_tax_accounts.html | ||
---|---|---|
1 | 1 |
[% USE L %][%- USE LxERP -%] |
2 | 2 |
[% FOR row = TAX_ACCOUNTS %] |
3 |
<option value='[% row.id %]--[% row.rate %]'[% IF row.is_default %] selected[% END %]>[% row.taxdescription %] [% LxERP.round_amount(row.rate * 100) %] %</option> |
|
3 |
<option value='[% row.id %]--[% row.rate %]'[% IF row.is_default %] selected[% END %]>[% row.taxkey _ " - " _ row.taxdescription %] [% LxERP.round_amount(row.rate * 100) %] %</option>
|
|
4 | 4 |
[% END %] |
Auch abrufbar als: Unified diff
Steuerschlüssel in Dropdowns anzeigen
bei Dialog-, Debitoren- und Kreditorenbuchungen.
Damit man z.B. durch die Mehrwertsteuerumstellung des Konjunkturpakets
die Vorsteuer 16% des alten Steuerschlüssels 7 von dem des aktuellen
Steuerschlüssels 9 unterscheiden kann.