mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
[ADD] rma: new module
[UPD] Update rma.pot Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: rma-12.0/rma-12.0-rma Translate-URL: https://translation.odoo-community.org/projects/rma-12-0/rma-12-0-rma/
This commit is contained in:
committed by
Nikolaus Weingartmair
parent
a7bddf7db9
commit
42c8f0630a
14
rma/models/res_users.py
Normal file
14
rma/models/res_users.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# Copyright 2020 Tecnativa - Ernesto Tejeda
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
rma_team_id = fields.Many2one(
|
||||
comodel_name='rma.team',
|
||||
string="RMA Team",
|
||||
help='RMA Team the user is member of.',
|
||||
)
|
||||
Reference in New Issue
Block a user