2
0

[FIX] odoo imports

This commit is contained in:
lreficent 2017-11-13 12:40:59 +01:00 committed by Andrea Stirpe
parent 00dbaa7f5e
commit 342d10d336
5 changed files with 6 additions and 6 deletions

View File

@ -4,4 +4,4 @@
from . import account_move
from . import account_invoice
from . import stock
from . import stock_move

View File

@ -2,7 +2,7 @@
# © 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).
from openerp import api, models
from odoo import api, models
class AccountInvoice(models.Model):

View File

@ -2,7 +2,7 @@
# © 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).
from openerp import fields, models
from odoo import fields, models
class AccountMoveLine(models.Model):

View File

@ -2,7 +2,7 @@
# © 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).
from openerp import api, models
from odoo import api, models
class StockMove(models.Model):

View File

@ -2,8 +2,8 @@
# © 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).
from openerp.tests import common
from openerp import fields
from odoo.tests import common
from odoo import fields
class TestAccountMoveLinePurchaseInfo(common.TransactionCase):