1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
from odoo.addons.account.tests.test_tax import TestTaxCommon
from odoo.tests import tagged
from odoo.exceptions import ValidationError
@tagged('post_install', '-at_install')
class TestTaxesComputation(TestTaxCommon):
def python_tax(self, formula, **kwargs):
self.number += 1
vals = {
**kwargs,
'name': f"code_({self.number})",
'amount_type': 'code',
'amount': 0.0,
'formula': formula,
}
if 'price_include' in vals:
price_include = vals.pop('price_include')
if self.env.company.account_price_include != price_include:
vals['price_include_override'] = price_include
else:
vals['price_include_override'] = False
return self.env['account.tax'].create(vals)
def _jsonify_tax(self, tax):
values = super()._jsonify_tax(tax)
values['formula_decoded_info'] = tax.formula_decoded_info
return values
def assert_python_taxes_computation(
self,
formula,
price_unit,
expected_values,
product_values=None,
price_include='tax_excluded',
):
tax = self.python_tax(formula, price_include=price_include)
if product_values:
product = self.env['product.product'].create({
'name': "assert_python_taxes_computation",
**product_values,
})
else:
product = None
return self.assert_taxes_computation(tax, price_unit, expected_values, product=product)
def test_formula(self):
self.assert_python_taxes_computation(
"max(quantity * price_unit * 0.21, quantity * 4.17)",
130.0,
{
'total_included': 157.3,
'total_excluded': 130.0,
'taxes_data': (
(130.0, 27.3),
),
},
)
self.assert_python_taxes_computation(
"max(quantity * price_unit * 0.21, quantity * 4.17)",
130.0,
{
'total_included': 130.0,
'total_excluded': 102.7,
'taxes_data': (
(102.7, 27.3),
),
},
price_include='tax_included',
)
self.assert_python_taxes_computation(
"product.volume * quantity * 0.35",
100.0,
{
'total_included': 135.0,
'total_excluded': 100.0,
'taxes_data': (
(100.0, 35.0),
),
},
product_values={'volume': 100.0},
)
self.assert_python_taxes_computation(
"product.volume > 100 and 10 or 5",
100.0,
{
'total_included': 110.0,
'total_excluded': 100.0,
'taxes_data': (
(100.0, 10.0),
),
},
product_values={'volume': 105.0},
)
self.assert_python_taxes_computation(
"product.volume > 100 and 10 or 5",
100.0,
{
'total_included': 105.0,
'total_excluded': 100.0,
'taxes_data': (
(100.0, 5.0),
),
},
product_values={'volume': 50.0},
)
self.assert_python_taxes_computation(
"product.volume > 100 and 5 or None",
100.0,
{
'total_included': 100.0,
'total_excluded': 100.0,
'taxes_data': [],
},
product_values={'volume': 50.0},
)
self.assert_python_taxes_computation(
"(product.volume or 5.0) and 0.0 or 10.0",
100.0,
{
'total_included': 110.0,
'total_excluded': 100.0,
'taxes_data': (
(100.0, 10.0),
),
},
product_values={'volume': 0.0},
)
self._run_js_tests()
def test_invalid_formula(self):
# You have no access to relational field.
with self.assertRaises(ValidationError):
self.python_tax(formula='product.product_tmpl_id')
# You don't have access to any record.
with self.assertRaises(ValidationError):
self.python_tax(formula='product.sudo()')
# You are restricted to min max but that's it: no python collection.
with self.assertRaises(ValidationError):
self.python_tax(formula='tuple(1, 2, 3)')
with self.assertRaises(ValidationError):
self.python_tax(formula='set(1, 2, 3)')
with self.assertRaises(ValidationError):
self.python_tax(formula='[1, 2, 3]')
# No access to builtins that are not part of the whitelist.
with self.assertRaises(ValidationError):
self.python_tax(formula='range(1, 10)')
|