Files
intrastat-extrastat/hs_code_link/models/product.py
2017-07-27 13:41:00 +02:00

16 lines
345 B
Python

# -*- coding: utf-8 -*-
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models, fields
class ProductTemplate(models.Model):
_inherit = 'product.template'
hs_code = fields.Char(
related='hs_code_id.hs_code',
readonly=True,
store=True,
)