]> piware.de Git - bin.git/commitdiff
trechnung: update for 19% VAT
authorMartin Pitt <martin.pitt@ubuntu.com>
Sat, 31 Mar 2007 10:51:43 +0000 (12:51 +0200)
committerMartin Pitt <martin.pitt@ubuntu.com>
Sat, 31 Mar 2007 10:51:43 +0000 (12:51 +0200)
trechnung

index fee9774c69cc2e9e00da55d077e0ecc0e1645205..bb9582c628cbe0ef50a93674badc45ac01e52f70 100755 (executable)
--- a/trechnung
+++ b/trechnung
@@ -54,10 +54,10 @@ common = next_price(f, 'Monatliche Beträge')
 #other = next_price(f, 'Sonstige Leistungen des Konzerns')
 #if other:
 #    common = common + other
-bill_vat = next_price(f, 'Umsatzsteuer 16 %')
+bill_vat = next_price(f, 'Umsatzsteuer 19 %')
 bill_gross = next_price(f, 'Rechnungsbetrag')
 
-bill_item_re = re.compile('^\s*\d+\.\s*.*16')
+bill_item_re = re.compile('^\s*\d+\.\s*.*19')
 
 # Telekom
 assert search_substr(f, 'Summe Monatliche Beträge')
@@ -110,11 +110,11 @@ print '----------------------------------------'
 print 'Verrechnung allgemeine Gebühren (Aufschlag für jeden: %.2f)' % common
 print_price(price)
 
-vat = sum * 0.16
+vat = sum * 0.19
 gross = sum + vat
 
 for k, v in price.iteritems():
-    price[k] *= 1.16
+    price[k] *= 1.19
 
 print '----------------------------------------'
 print 'Aufschlag Mehrwertsteuer:'