Skip to content

Commit

Permalink
Merge a81054d into 487c7d2
Browse files Browse the repository at this point in the history
  • Loading branch information
mileo committed Dec 7, 2015
2 parents 487c7d2 + a81054d commit ae83b8d
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
12 changes: 12 additions & 0 deletions l10n_br_sale_product/8.0.1.0.0/openupgrade_analysis.txt
@@ -0,0 +1,12 @@
---Fields in module 'l10n_br_sale_product'---
l10n_br_sale_product / res.company / account_freight_id (many2one) : NEW relation: account.account
l10n_br_sale_product / res.company / account_insurance_id (many2one): NEW relation: account.account
l10n_br_sale_product / res.company / account_other_costs (many2one): NEW relation: account.account
l10n_br_sale_product / res.company / default_ind_pres (selection) : NEW selection_keys: ['0', '1', '2', '3', '4', '9']
l10n_br_sale_product / sale.order / amount_costs (float) : not a function anymore
l10n_br_sale_product / sale.order / amount_freight (float) : not a function anymore
l10n_br_sale_product / sale.order / amount_insurance (float) : not a function anymore
---XML records in module 'l10n_br_sale_product'---
NEW ir.ui.view: l10n_br_sale_product.l10n_br_sale_company_form
NEW ir.ui.view: l10n_br_sale_product.l10n_br_sale_product_company_form
NEW res.company: base.main_company
36 changes: 36 additions & 0 deletions l10n_br_sale_product/8.0.1.0.0/pre-migration.py
@@ -0,0 +1,36 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2015 KMEE INFORMATICA LTDA - Luis Felipe Miléo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

import logging
from openerp.openupgrade import openupgrade


logger = logging.getLogger('OpenUpgrade.l10n_br_sale')

column_renames = {
'res_company': [
('default_fiscal_category_sale_id', 'sale_fiscal_category_id'),
],
}


@openupgrade.migrate()
def migrate(cr, version):
openupgrade.rename_columns(cr, column_renames)

0 comments on commit ae83b8d

Please sign in to comment.