Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 15f549fd

Von Philip Reetz vor fast 18 Jahren hinzugefügt

  • ID 15f549fdb43fba2d99817c659533dfa02638bf27
  • Vorgänger 3f65b4fb
  • Nachfolger 88bc69df

Prozentangaben in der Steuerbeschreibung wieder hinzugefuegt

Unterschiede anzeigen:

bin/mozilla/ir.pl
558 558

  
559 559
        $tax .= qq|
560 560
		<tr>
561
		  <th align=right>$form->{"${item}_description"}&nbsp;|
562
		                  . $form->{"${item}_rate"} * 100 .qq|%</th>
561
		  <th align=right>$form->{"${item}_description"}</th>
563 562
		  <td align=right>$form->{"${item}_total"}</td>
564 563
		</tr>
565 564
|;
......
600 599

  
601 600
        $tax .= qq|
602 601
	      <tr>
603
		<th align=right>Enthaltene $form->{"${item}_description"}&nbsp;|
604
		                . $form->{"${item}_rate"} * 100 .qq|%</th>
602
		<th align=right>Enthaltene $form->{"${item}_description"}</th>
605 603
		<td align=right>$form->{"${item}_total"}</td>
606 604
	      </tr>
607 605
	      <tr>
bin/mozilla/is.pl
856 856

  
857 857
        $tax .= qq|
858 858
	      <tr>
859
		<th align=right>$form->{"${item}_description"}&nbsp;|
860
		. $form->{"${item}_rate"} * 100 .qq|%</th>
859
		<th align=right>$form->{"${item}_description"}</th>
861 860
		<td align=right>$form->{"${item}_total"}</td>
862 861
	      </tr>
863 862
|;
......
896 895

  
897 896
        $tax .= qq|
898 897
	      <tr>
899
		<th align=right>Enthaltene $form->{"${item}_description"}&nbsp;|
900
                  . $form->{"${item}_rate"} * 100 .qq|%</th>
898
		<th align=right>Enthaltene $form->{"${item}_description"}</th>
901 899
		<td align=right>$form->{"${item}_total"}</td>
902 900
	      </tr>
903 901
	      <tr>
bin/mozilla/oe.pl
891 891

  
892 892
        $tax .= qq|
893 893
	      <tr>
894
		<th align=right>$form->{"${item}_description"}&nbsp;|
895
		                . $form->{"${item}_rate"} * 100 .qq|%</th>
894
		<th align=right>$form->{"${item}_description"}</th>
896 895
		<td align=right>$form->{"${item}_total"}</td>
897 896
	      </tr>
898 897
|;
......
931 930

  
932 931
        $tax .= qq|
933 932
	      <tr>
934
		<th align=right>Enthaltene $form->{"${item}_description"}&nbsp;|
935
		                . $form->{"${item}_rate"} * 100 .qq|%</th>
933
		<th align=right>Enthaltene $form->{"${item}_description"}</th>
936 934
		<td align=right>$form->{"${item}_total"}</td>
937 935
	      </tr>
938 936
	      <tr>
sql/Pg-upgrade2/fix_taxdescription.sql
1
-- @tag: fix_taxdescription
2
-- @description: Durch das Update wurden in der Taxdescription die Prozentangabgen entfernt. Ist ung?nstig f?r die Druckausgabe
3
-- @depends: ustva_setup_2007_update_chart_taxkeys_tax
4

  
5

  
6

  
7
--#############################################################
8
--#
9
--# Taxdescription setzen
10
--#
11
--#############################################################
12

  
13
UPDATE tax SET 
14
  taxdescription = 'USt-frei'
15
WHERE taxkey = '1'
16
  AND
17
  EXISTS ( -- update only for SKR03
18
    SELECT coa FROM defaults 
19
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
20
  )
21
;
22

  
23
UPDATE tax SET 
24
  taxdescription = 'Umsatzsteuer 7%' 
25
WHERE taxkey = '2'
26
  AND
27
  EXISTS ( -- update only for SKR03
28
    SELECT coa FROM defaults 
29
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
30
  )
31
;
32

  
33
UPDATE tax SET 
34
  taxdescription = 'Umsatzsteuer 16%' 
35
WHERE taxkey = '3' AND rate=0.16
36
  AND
37
  EXISTS ( -- update only for SKR03
38
    SELECT coa FROM defaults 
39
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
40
  )
41
;
42

  
43
UPDATE tax SET 
44
  taxdescription = 'Umsatzsteuer 19%' 
45
WHERE taxkey = '3' AND rate=0.19
46
  AND
47
  EXISTS ( -- update only for SKR03
48
    SELECT coa FROM defaults 
49
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
50
  )
51
;
52

  
53
UPDATE tax SET 
54
  taxdescription = 'Vorsteuer 7%' 
55
WHERE taxkey = '8'
56
  AND
57
  EXISTS ( -- update only for SKR03
58
    SELECT coa FROM defaults 
59
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
60
  )
61
;
62

  
63
UPDATE tax SET 
64
  taxdescription = 'Vorsteuer 19%' 
65
WHERE taxkey = '9' AND rate=0.19
66
  AND
67
  EXISTS ( -- update only for SKR03
68
    SELECT coa FROM defaults 
69
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
70
  )
71
;
72

  
73
UPDATE tax SET 
74
  taxdescription = 'Vorsteuer 16%' 
75
WHERE taxkey = '9' AND rate=0.16
76
  AND
77
  EXISTS ( -- update only for SKR03
78
    SELECT coa FROM defaults 
79
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
80
  )
81
;
82

  
83
UPDATE tax SET 
84
  taxdescription = 'Im anderen EU-Staat steuerpflichtige Lieferung' 
85
WHERE taxkey = '10'
86
  AND
87
  EXISTS ( -- update only for SKR03
88
    SELECT coa FROM defaults 
89
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
90
  )
91
;
92

  
93
UPDATE tax SET 
94
  taxdescription = 'Steuerfreie innergem. Lieferung an Abnehmer mit Id.-Nr.' 
95
WHERE taxkey = '11'
96
  AND
97
  EXISTS ( -- update only for SKR03
98
    SELECT coa FROM defaults 
99
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
100
  )
101
;
102

  
103
UPDATE tax SET 
104
  taxdescription = 'Steuerpflichtige EG-Lieferung zum erm??igten Steuersatz 7%' 
105
WHERE taxkey = '12'
106
  AND
107
  EXISTS ( -- update only for SKR03
108
    SELECT coa FROM defaults 
109
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
110
  )
111
;
112

  
113
UPDATE tax SET 
114
  taxdescription = 'Steuerpflichtige EG-Lieferung zum vollen Steuersatz 16%' 
115
WHERE taxkey = '13' AND rate=0.16
116
  AND
117
  EXISTS ( -- update only for SKR03
118
    SELECT coa FROM defaults 
119
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
120
  )
121
;
122

  
123
UPDATE tax SET 
124
  taxdescription = 'Steuerpflichtige EG-Lieferung zum vollen Steuersatz 19%' 
125
WHERE taxkey = '13' AND rate=0.19
126
  AND
127
  EXISTS ( -- update only for SKR03
128
    SELECT coa FROM defaults 
129
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
130
  )
131
;
132

  
133

  
134
UPDATE tax SET 
135
  taxdescription = 'Steuerpflichtiger innergem. Erwerb zum erm??igten Steuersatz 7%' 
136
WHERE taxkey = '18'
137
  AND
138
  EXISTS ( -- update only for SKR03
139
    SELECT coa FROM defaults 
140
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
141
  )
142
;
143

  
144
UPDATE tax SET 
145
  taxdescription = 'Steuerpflichtiger innergem. Erwerb zum vollen Steuersatz 19%'
146
WHERE taxkey = '19' and rate=0.19
147
  AND
148
  EXISTS ( -- update only for SKR03
149
    SELECT coa FROM defaults 
150
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
151
  )
152
;
153

  
154
UPDATE tax SET 
155
  taxdescription = 'Steuerpflichtiger innergem. Erwerb zum vollen Steuersatz 16%'
156
WHERE taxkey = '19' and rate=0.16
157
  AND
158
  EXISTS ( -- update only for SKR03
159
    SELECT coa FROM defaults 
160
    WHERE defaults.coa='Germany-DATEV-SKR03EU'
161
  )
162
;

Auch abrufbar als: Unified diff