Fix tax calculation issue

This commit is contained in:
Raphael Michel
2020-12-10 18:04:56 +01:00
parent 90475e4159
commit 1d722da5af
4 changed files with 26 additions and 7 deletions

View File

@@ -2512,7 +2512,7 @@ class OrderChangeManagerTests(TestCase):
assert nop.price == Decimal('23.00')
assert nop.tax_rule == self.tr19
assert nop.tax_rate == Decimal('100.00')
assert nop.tax_value == Decimal('19.33')
assert nop.tax_value == Decimal('11.50')
@classscope(attr='o')
def test_change_taxrate_from_reverse_charge(self):