Merge pull request #114 from bimajatiwijaya/v10_crm_rma_location

[10.0] Migration RMA Location
This commit is contained in:
Maxime Chambreuil
2017-09-11 09:45:47 -05:00
committed by GitHub
4 changed files with 6 additions and 6 deletions

View File

@@ -4,8 +4,8 @@
from . import models
from openerp import SUPERUSER_ID
from openerp.api import Environment
from odoo import SUPERUSER_ID
from odoo.api import Environment
def post_init_hook(cr, registry):

View File

@@ -4,7 +4,7 @@
{
'name': 'RMA Location',
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'author': "Vauxoo, Odoo Community Association (OCA)",
'license': 'AGPL-3',
'website': 'http://www.camptocamp.com,http://www.vauxoo.com',
@@ -17,6 +17,6 @@
'views/stock_warehouse.xml',
],
'post_init_hook': 'post_init_hook',
'installable': False,
'installable': True,
'auto_install': False,
}

View File

@@ -3,7 +3,7 @@
# © 2015 Osval Reyes, Yanina Aular, Vauxoo
# 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 StockWarehouse(models.Model):

View File

@@ -2,7 +2,7 @@
# © 2015 Osval Reyes, Vauxoo
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp.tests.common import TransactionCase
from odoo.tests.common import TransactionCase
class TestLocationRma(TransactionCase):