From 7d9c7e0c9f9f8596e3174ea5db8fb61e7842e0c9 Mon Sep 17 00:00:00 2001 From: Ismael Moral Date: Thu, 25 Jan 2024 09:26:44 +0100 Subject: [PATCH 1/2] build(IC-5): add .idea in gitignore file --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 505dddb..b3d0d92 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.pyc +.idea /venv /build /dist From cea68b2b126ea17c966ea5c5d918ec9864a100b8 Mon Sep 17 00:00:00 2001 From: Ismael Moral Date: Thu, 25 Jan 2024 09:27:05 +0100 Subject: [PATCH 2/2] fix(IC-5): update vat to EE from 20 to 22 --- pyvat/vat_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyvat/vat_rules.py b/pyvat/vat_rules.py index bf40d93..51cea86 100644 --- a/pyvat/vat_rules.py +++ b/pyvat/vat_rules.py @@ -352,7 +352,7 @@ def get_vat_rate(self, item_type): 'CZ': CzVatRules(21), 'DE': DeVatRules(), 'DK': ConstantEuVatRateRules(25), - 'EE': ConstantEuVatRateRules(20), + 'EE': ConstantEuVatRateRules(22), 'EL': ElVatRules(), 'GR': ElVatRules(), # Synonymous country code for Greece 'ES': EsVatRules(),