mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
17 lines
469 B
Python
17 lines
469 B
Python
# Copyright 2020 David BEAL @ Akretion
|
||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
||
|
||
from odoo import fields, models
|
||
|
||
|
||
class ProductProduct(models.Model):
|
||
_inherit = "product.product"
|
||
|
||
qty_by_workcenter_ids = fields.One2many(
|
||
comodel_name="product.workcenter.quantity",
|
||
inverse_name="product_id",
|
||
groups="mrp_production_request.group_mrp_production_request_user",
|
||
string="Capacity by workcenter",
|
||
)
|