mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
13 lines
452 B
Python
13 lines
452 B
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
# For copyright and license notices, see __openerp__.py file in root directory
|
|
##############################################################################
|
|
from openerp import models, fields
|
|
|
|
|
|
class QcTrigger(models.Model):
|
|
_inherit = 'qc.trigger'
|
|
|
|
picking_type = fields.Many2one(
|
|
comodel_name="stock.picking.type", readonly=True)
|