[IMP] base_comment_template: black, isort, prettier

This commit is contained in:
Pierre Verkest
2021-01-07 22:37:54 +01:00
parent cfcac1d83e
commit 85e13a0bf7
12 changed files with 74 additions and 71 deletions

View File

@@ -7,13 +7,13 @@ class ResPartner(models.Model):
_inherit = "res.partner"
property_comment_template_id = fields.Many2one(
comodel_name='base.comment.template',
string='Conditions template',
comodel_name="base.comment.template",
string="Conditions template",
company_dependent=True,
)
@api.model
def _commercial_fields(self):
res = super(ResPartner, self)._commercial_fields()
res += ['property_comment_template_id']
res += ["property_comment_template_id"]
return res