[IMP] : black, isort, prettier

This commit is contained in:
Pedro M. Baeza
2020-07-13 18:28:03 +02:00
committed by Jean-Charles Drubay
parent 8880bb66cf
commit 92a4e7781e
46 changed files with 2703 additions and 2811 deletions

View File

@@ -10,15 +10,15 @@ from odoo import fields, models
class ContractTemplateLine(models.Model):
_name = 'contract.template.line'
_inherit = 'contract.abstract.contract.line'
_name = "contract.template.line"
_inherit = "contract.abstract.contract.line"
_description = "Contract Template Line"
_order = "sequence,id"
contract_id = fields.Many2one(
string='Contract',
comodel_name='contract.template',
string="Contract",
comodel_name="contract.template",
required=True,
ondelete='cascade',
oldname='analytic_account_id',
ondelete="cascade",
oldname="analytic_account_id",
)