Files
jikimo_sf/mrp_workorder_hr/models/mrp_routing.py
2023-04-14 17:42:23 +08:00

9 lines
255 B
Python

# -*- coding: utf-8 -*-
from odoo import models, fields
class MrpRouting(models.Model):
_inherit = 'mrp.routing.workcenter'
employee_ratio = fields.Float("Employee Capacity", default=1, help="Number of employees needed to complete operation.")