mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
[IMP] quality_control: black, isort
This commit is contained in:
committed by
Stefano Consolaro
parent
a834796aa0
commit
a6f788f2d5
@@ -9,17 +9,19 @@ from odoo import fields, models
|
||||
|
||||
|
||||
class QcTrigger(models.Model):
|
||||
_name = 'qc.trigger'
|
||||
_description = 'Quality control trigger'
|
||||
_name = "qc.trigger"
|
||||
_description = "Quality control trigger"
|
||||
|
||||
name = fields.Char(string='Name', required=True,
|
||||
translate=True)
|
||||
active = fields.Boolean(string='Active', default=True)
|
||||
name = fields.Char(string="Name", required=True, translate=True)
|
||||
active = fields.Boolean(string="Active", default=True)
|
||||
company_id = fields.Many2one(
|
||||
comodel_name='res.company', string='Company',
|
||||
default=lambda self: self.env['res.company']._company_default_get(
|
||||
'qc.test'))
|
||||
comodel_name="res.company",
|
||||
string="Company",
|
||||
default=lambda self: self.env["res.company"]._company_default_get("qc.test"),
|
||||
)
|
||||
partner_selectable = fields.Boolean(
|
||||
string='Selectable by partner', default=False, readonly=True,
|
||||
help='This technical field is to allow to filter by partner in'
|
||||
' triggers')
|
||||
string="Selectable by partner",
|
||||
default=False,
|
||||
readonly=True,
|
||||
help="This technical field is to allow to filter by partner in" " triggers",
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user