# -*- coding: utf-8 -*- # © 2015-2016 Akretion (Alexis de Lattre ) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, fields class ProductProduct(models.Model): _inherit = 'product.product' price_history_ids = fields.One2many( 'product.price.history', 'product_id', string='Product Price History')