mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[FIX] odoo imports
This commit is contained in:
@@ -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):
|
||||||
|
|||||||
Reference in New Issue
Block a user