Browse Source

added tva final to text message

contab 1 năm trước cách đây
mục cha
commit
daeb087d98
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      winmentor/taxes.py

+ 1 - 1
winmentor/taxes.py

@@ -29,7 +29,7 @@ class Taxes(object):
     def __repr__(self) -> str:
         s = ''
         s += 'Impozite {} {}{}'.format(self.period, self.name, '\n' * 2)
-        s += 'TVA: {}\n'.format(self.vat)
+        s += 'TVA: {}, TVA final: {}\n'.format(self.vat, self.vat_final)
         s += 'Contributii: {}\n'.format(self.contribs)
         s += 'CAM: {}\n'.format(self.cam)
         s += 'Impozit {}: {}\n'.format(self.tax_type, self.income_tax)