[FIX] odoo imports
This commit is contained in:
parent
00dbaa7f5e
commit
342d10d336
@ -4,4 +4,4 @@
|
|||||||
|
|
||||||
from . import account_move
|
from . import account_move
|
||||||
from . import account_invoice
|
from . import account_invoice
|
||||||
from . import stock
|
from . import stock_move
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from openerp import api, models
|
from odoo import api, models
|
||||||
|
|
||||||
|
|
||||||
class AccountInvoice(models.Model):
|
class AccountInvoice(models.Model):
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from openerp import fields, models
|
from odoo import fields, models
|
||||||
|
|
||||||
|
|
||||||
class AccountMoveLine(models.Model):
|
class AccountMoveLine(models.Model):
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from openerp import api, models
|
from odoo import api, models
|
||||||
|
|
||||||
|
|
||||||
class StockMove(models.Model):
|
class StockMove(models.Model):
|
@ -2,8 +2,8 @@
|
|||||||
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
from openerp.tests import common
|
from odoo.tests import common
|
||||||
from openerp import fields
|
from odoo import fields
|
||||||
|
|
||||||
|
|
||||||
class TestAccountMoveLinePurchaseInfo(common.TransactionCase):
|
class TestAccountMoveLinePurchaseInfo(common.TransactionCase):
|
||||||
|
Loading…
Reference in New Issue
Block a user