Files
test/sf_manufacturing/models/res_user.py
2023-11-21 17:42:36 +08:00

9 lines
189 B
Python

# -*- coding: utf-8 -*-
from odoo import fields, models
class Users(models.Model):
_inherit = 'res.users'
workcenter_ids = fields.Many2many("mrp.workcenter", 'users_workcenter')