[MIG] account_payment_purchase: Migration to 10.0

This commit is contained in:
Abranes
2018-07-05 16:16:58 +02:00
committed by cubells
parent 884f6f6102
commit 26c69eb9e4
6 changed files with 7 additions and 6 deletions

View File

@@ -72,6 +72,7 @@ Contributors
* Danimar Ribeiro
* Raphaël Valyi
* Vicent Cubells <vicent.cubells@tecnativa.com>
* Abraham Anes <abraham@studio73.es>
Maintainer
----------

View File

@@ -5,7 +5,7 @@
{
'name': 'Account Payment Purchase',
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'category': 'Banking addons',
'license': 'AGPL-3',
'summary': "Adds Bank Account and Payment Mode on Purchase Orders",

View File

@@ -3,7 +3,7 @@
# Copyright 2017 Tecnativa - Vicent Cubells.
# License AGPL-3.0 or later (http://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 @@
# Copyright 2015 Tecnativa - Pedro M. Baeza
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp import api, models
from odoo import api, models
class ProcurementOrder(models.Model):

View File

@@ -3,7 +3,7 @@
# Copyright 2017 Tecnativa - Vicent Cubells.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import api, fields, models
from odoo import api, fields, models
class PurchaseOrder(models.Model):

View File

@@ -3,8 +3,8 @@
# Copyright 2017 Tecnativa - Vicent Cubells
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp import fields
from openerp.tests import common
from odoo import fields
from odoo.tests import common
class TestAccountPaymentPurchase(common.SavepointCase):