mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
15 lines
546 B
Python
15 lines
546 B
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
# For copyright and license notices, see __openerp__.py file in root directory
|
|
##############################################################################
|
|
from openerp import models, fields
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = "product.template"
|
|
|
|
qc_triggers = fields.One2many(
|
|
comodel_name="qc.trigger.product_template_line",
|
|
inverse_name="product_template",
|
|
string="Quality control triggers")
|