@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 Akretion - Benoît Guillot
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
@ -1,10 +1,11 @@
from odoo import fields, models, api, exceptions, _
import hashlib
from collections import OrderedDict
from odoo import _, exceptions, fields, models
class ResPartner(models.Model):
_inherit = "res.partner"
from odoo.tests import SavepointCase
from odoo.exceptions import UserError
class TestAddressVersion(SavepointCase):
# Copyright 2020 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
@ -0,0 +1 @@
../../../../partner_address_version
@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)