In one modification I inherited res.partner field "phone" and changed it to required in my python class:
my_res_partner.py
________________________________________
from openerp import models, fields, api
class my_res_partner(models.Model):
_inherit = 'res.partner'
phone = fields.Char(required=True, select=True)
__________________________________________
BUT IN ANOTHER IT WILL NOT WORK TO CHANGE THE STRING!
I checked and the string is defined in the crm_lead.py... Why won't this work?
my_crm.py
---------------------------------------------------------------------------
from openerp import models, fields, api
class my_crm(models.Model):
_inherit = 'crm.lead'
contact_name = fields.Char(string="Name")
___________________________________________
If you can answer this please do. Thanks in advance.
Odoo is much buggy, we had face many inheritance issues, including generated traceback much horrible.