mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
20 lines
637 B
Python
20 lines
637 B
Python
# Copyright 2016 Akretion (http://www.akretion.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
|
|
from flectra.tests.common import TransactionCase
|
|
|
|
|
|
class TestVatSanitized(TransactionCase):
|
|
|
|
def test_vat_sanitized(self):
|
|
ldlc = self.env['res.partner'].create({
|
|
'name': 'LDLC',
|
|
'is_company': True,
|
|
'vat': 'fr 26 403 554 181'
|
|
})
|
|
self.assertEqual(ldlc.sanitized_vat, 'FR26403554181')
|
|
# Also test invalidation
|
|
ldlc.vat = False
|
|
self.assertEqual(ldlc.sanitized_vat, False)
|