Files
manufacture/mrp_subcontracting_inhibit/models/product_supplierinfo.py
Víctor Martínez 4bfcf8872c [ADD] mrp_subcontracting_inhibit: New module
TT38580 TT38581
2023-09-18 13:11:35 +02:00

10 lines
309 B
Python

# Copyright 2022 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class ProductSupplierinfo(models.Model):
_inherit = "product.supplierinfo"
subcontracting_inhibit = fields.Boolean(string="Subcontracting inhibited")