@ -4,7 +4,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from collections import OrderedDict
from openerp import api, models
from odoo import api, models
def update_dict(data, fields):
@ -2,8 +2,8 @@
# Copyright 2017 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp.exceptions import ValidationError
from openerp import api, fields, models, _
from odoo.exceptions import ValidationError
from odoo import api, fields, models, _
class IrExportsLine(models.Model):
@ -4,9 +4,9 @@
# Raphaël Reverdy <raphael.reverdy@akretion.com>
from openerp.exceptions import Warning as UserError
from openerp.tools.translate import _
from odoo.exceptions import Warning as UserError
from odoo.tools.translate import _
def __parse_field(parser_field):
@ -2,7 +2,7 @@
# © <YEAR(S)> <AUTHOR(S)>
from openerp.tests.common import TransactionCase
from odoo.tests.common import TransactionCase
class TestParser(TransactionCase):
# © 2017 ACSONE SA/NV
class TestIrExportsLine(TransactionCase):