[IMP] base_technical_user: black, isort, prettier
parent
b007c479b9
commit
8a36b50bbc
|
@ -1,19 +1,15 @@
|
|||
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
{
|
||||
'name': "Base Technical User",
|
||||
'summary': """
|
||||
"name": "Base Technical User",
|
||||
"summary": """
|
||||
Add a technical user parameter on the company """,
|
||||
'author': 'ACSONE SA/NV, Odoo Community Association (OCA)',
|
||||
'website': "https://github.com/OCA/server-tools/",
|
||||
'category': 'Hidden/Dependency',
|
||||
'version': '12.0.1.0.0',
|
||||
'license': 'AGPL-3',
|
||||
'depends': [
|
||||
'base',
|
||||
],
|
||||
'data': [
|
||||
'views/res_company_view.xml'
|
||||
],
|
||||
'installable': True
|
||||
"author": "ACSONE SA/NV, Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/server-tools/",
|
||||
"category": "Hidden/Dependency",
|
||||
"version": "12.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"depends": ["base"],
|
||||
"data": ["views/res_company_view.xml"],
|
||||
"installable": True,
|
||||
}
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo import models, fields
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = 'res.company'
|
||||
_inherit = "res.company"
|
||||
|
||||
user_tech_id = fields.Many2one(
|
||||
comodel_name="res.users",
|
||||
string="Technical User",
|
||||
help="This user can be used by process for technical purpose",
|
||||
domain="[('company_id', '=', id)]")
|
||||
domain="[('company_id', '=', id)]",
|
||||
)
|
||||
|
|
|
@ -1,16 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="res_company_view_form_inherit_base_technical_user" model="ir.ui.view">
|
||||
<field name="name">res.company.form (base_technical_user)</field>
|
||||
<field name="model">res.company</field>
|
||||
<field name="inherit_id" ref="base.view_company_form"/>
|
||||
<field name="inherit_id" ref="base.view_company_form" />
|
||||
<field name="priority">20</field>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//notebook/page[1]" position="after">
|
||||
<page name="configuration" string="Configuration">
|
||||
<group>
|
||||
<group name="tech_param" string="Technical Parameters" groups="base.group_erp_manager">
|
||||
<field name="user_tech_id"/>
|
||||
<group
|
||||
name="tech_param"
|
||||
string="Technical Parameters"
|
||||
groups="base.group_erp_manager"
|
||||
>
|
||||
<field name="user_tech_id" />
|
||||
</group>
|
||||
</group>
|
||||
</page>
|
||||
|
|
Loading…
Reference in New Issue