From a3793c4a15727c5844fa7265a1ad9dff6fecaa58 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Sat, 31 Mar 2007 12:51:43 +0200 Subject: [PATCH] trechnung: update for 19% VAT --- trechnung | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/trechnung b/trechnung index fee9774..bb9582c 100755 --- 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:' -- 2.39.2