Files
manufacture/quality_control_stock_oca/models/qc_trigger.py
Pedro M. Baeza beaa72876e [IMP] Total refactorization of quality control modules with new API, README files, and new concepts. WIP of quality_control_tolerance
Merge branch '8.0' of github.com:odoomrp/odoomrp-wip into 8.0

[FIX] quality_control_stock:
* File missing
* Triggers for product category
2024-02-28 11:56:41 +01:00

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)