[IMP] fix field names

This commit is contained in:
Stepan Savelyev 2019-12-28 15:30:45 +05:00
parent 51d3472132
commit 00ba1fa6a9

View File

@ -4,9 +4,9 @@ from odoo import api, fields, models
class ResPartner(models.Model):
_inherit = "res.partner"
name_parent_case = fields.Char(string="Name Parent Case",)
name_initials_case = fields.Char(string="Name Initials Case",)
function_parent_case = fields.Char(string="Function Parent Case",)
name_parent_case = fields.Char(string="Name Genitive",)
name_initials_case = fields.Char(string="Name Initials",)
function_parent_case = fields.Char(string="Function Genitive",)
client_contract_ids = fields.One2many(
"res.partner.contract", "partner_id", string="Contracts",
)