From 8a36b50bbcb9db9a91c3db93af401cb9d6707529 Mon Sep 17 00:00:00 2001 From: HviorForgeFlow Date: Tue, 26 May 2020 16:23:26 +0200 Subject: [PATCH] [IMP] base_technical_user: black, isort, prettier --- base_technical_user/__manifest__.py | 24 ++++++++----------- base_technical_user/models/res_company.py | 7 +++--- .../views/res_company_view.xml | 12 ++++++---- 3 files changed, 22 insertions(+), 21 deletions(-) diff --git a/base_technical_user/__manifest__.py b/base_technical_user/__manifest__.py index d50ed0420..278730420 100644 --- a/base_technical_user/__manifest__.py +++ b/base_technical_user/__manifest__.py @@ -1,19 +1,15 @@ # Copyright 2017 ACSONE SA/NV () # 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, } diff --git a/base_technical_user/models/res_company.py b/base_technical_user/models/res_company.py index 625e08933..1183c0e05 100644 --- a/base_technical_user/models/res_company.py +++ b/base_technical_user/models/res_company.py @@ -1,13 +1,14 @@ # Copyright 2017 ACSONE SA/NV () # 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)]", + ) diff --git a/base_technical_user/views/res_company_view.xml b/base_technical_user/views/res_company_view.xml index 032751b11..3a7675aa6 100644 --- a/base_technical_user/views/res_company_view.xml +++ b/base_technical_user/views/res_company_view.xml @@ -1,16 +1,20 @@ - + res.company.form (base_technical_user) res.company - + 20 - - + +