[IMP] base_technical_user: black, isort, prettier

pull/2510/head
HviorForgeFlow 2020-05-26 16:23:26 +02:00 committed by Daniel Duque
parent b007c479b9
commit 8a36b50bbc
3 changed files with 22 additions and 21 deletions

View File

@ -1,19 +1,15 @@
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>) # Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{ {
'name': "Base Technical User", "name": "Base Technical User",
'summary': """ "summary": """
Add a technical user parameter on the company """, Add a technical user parameter on the company """,
'author': 'ACSONE SA/NV, Odoo Community Association (OCA)', "author": "ACSONE SA/NV, Odoo Community Association (OCA)",
'website': "https://github.com/OCA/server-tools/", "website": "https://github.com/OCA/server-tools/",
'category': 'Hidden/Dependency', "category": "Hidden/Dependency",
'version': '12.0.1.0.0', "version": "12.0.1.0.0",
'license': 'AGPL-3', "license": "AGPL-3",
'depends': [ "depends": ["base"],
'base', "data": ["views/res_company_view.xml"],
], "installable": True,
'data': [
'views/res_company_view.xml'
],
'installable': True
} }

View File

@ -1,13 +1,14 @@
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>) # Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). # 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): class ResCompany(models.Model):
_inherit = 'res.company' _inherit = "res.company"
user_tech_id = fields.Many2one( user_tech_id = fields.Many2one(
comodel_name="res.users", comodel_name="res.users",
string="Technical User", string="Technical User",
help="This user can be used by process for technical purpose", help="This user can be used by process for technical purpose",
domain="[('company_id', '=', id)]") domain="[('company_id', '=', id)]",
)

View File

@ -1,16 +1,20 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8" ?>
<odoo> <odoo>
<record id="res_company_view_form_inherit_base_technical_user" model="ir.ui.view"> <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="name">res.company.form (base_technical_user)</field>
<field name="model">res.company</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="priority">20</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<xpath expr="//notebook/page[1]" position="after"> <xpath expr="//notebook/page[1]" position="after">
<page name="configuration" string="Configuration"> <page name="configuration" string="Configuration">
<group> <group>
<group name="tech_param" string="Technical Parameters" groups="base.group_erp_manager"> <group
<field name="user_tech_id"/> name="tech_param"
string="Technical Parameters"
groups="base.group_erp_manager"
>
<field name="user_tech_id" />
</group> </group>
</group> </group>
</page> </page>