Revision c1d8418b
Von Udo Spallek vor mehr als 17 Jahren hinzugefügt
bin/mozilla/ustva.pl | ||
---|---|---|
754 | 754 |
# Outputformat specific customisation's |
755 | 755 |
# |
756 | 756 |
|
757 |
my @category_cent = qw( |
|
758 |
511 861 36 80 971 931 98 96 53 74 |
|
759 |
85 65 66 61 62 67 63 64 59 69 |
|
760 |
39 83 811 891 Z43 Z45 Z53 Z62 Z65 Z67 |
|
761 |
|
|
762 |
); |
|
763 |
|
|
764 |
my @category_euro = qw( |
|
765 |
41 44 49 43 48 51 86 35 77 76 91 89 |
|
766 |
97 93 95 94 42 60 45 52 73 84 81 |
|
767 |
); |
|
757 |
my @category_cent = USTVA->report_variables({ |
|
758 |
myconfig => \%myconfig, |
|
759 |
form => $form, |
|
760 |
type => '', |
|
761 |
attribute => 'position', |
|
762 |
dec_places => '2', |
|
763 |
}); |
|
768 | 764 |
|
765 |
push @category_cent, qw(83 Z43 Z45 Z53 Z62 Z65 Z67); |
|
766 |
|
|
767 |
my @category_euro = USTVA->report_variables({ |
|
768 |
myconfig => \%myconfig, |
|
769 |
form => $form, |
|
770 |
type => '', |
|
771 |
attribute => 'position', |
|
772 |
dec_places => '0', |
|
773 |
}); |
|
774 |
|
|
769 | 775 |
$form->{id} = []; |
770 | 776 |
$form->{amount} = []; |
771 | 777 |
|
Auch abrufbar als: Unified diff
Verlagern der USTVA Kennziffern auf einen zentralen Datenbankeintrag.
Dies verhindert Probleme, dass manche Kennziffern in einzelnen Ausgabemedien nicht erscheinen, in anderen jedoch schon.
Auch bietet die Verlagerung auf die Datenbank - in einem späteren Schritt - die Abstraktion von Steuerreports auf verschiedene internationale Gegebenheiten.
Zur Vereinfachung habe ich das Schema tax.* eingefuehrt, in dem perspektivisch alle Steuerreport relevanten Tabellen einzug halten koennen.