You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
466 B
18 lines
466 B
# Copyright 2019 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
import logging
|
|
|
|
from openupgradelib import openupgrade
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
def migrate(cr, version):
|
|
xmlids_to_rename = [
|
|
(
|
|
'product_contract.account_analytic_account_recurring_form_form',
|
|
'product_contract.contract_contract_customer_form_view',
|
|
)
|
|
]
|
|
openupgrade.rename_xmlids(cr, xmlids_to_rename)
|