25 lines
783 B
Python
25 lines
783 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
# Part of the Fusion Plating product family.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
# Mirror the res.company fields so the admin can manage them from
|
|
# Settings → Fusion Plating → Contract Review without navigating
|
|
# into the company record.
|
|
x_fc_qa_assistant_user_ids = fields.Many2many(
|
|
related='company_id.x_fc_qa_assistant_user_ids',
|
|
readonly=False,
|
|
string='Planning Signers',
|
|
)
|
|
x_fc_qa_manager_user_ids = fields.Many2many(
|
|
related='company_id.x_fc_qa_manager_user_ids',
|
|
readonly=False,
|
|
string='QA Manager',
|
|
)
|