9 lines
189 B
Python
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')
|