Hi,
I created some inherit fields in res.partner but i don't how to search in this fields through XML-RPC.
I created my field like this:
from openerp import models, fields class pb_it(models.Model): _inherit = 'res.partner' app_product_key = fields.Char(string='Product Key')XML-RPC return
ValueError: Invalid field 'app_product_key' in leaf "<osv.ExtendedLeaf: ('app_product_key', '=', '4784-AZ44-Q123') on res_partner (ctx: )
If you have an idea :)
Thanks
can you put your xmlrpc calling code ? It is easy to find out an issue.
Another idea is to be sure that the module that add the field are correctly installed or updated, the code is imported in the module and the model is correctly extended with the field. Perhaps the error is due to the res.partner model just don't know about the field due to the previous reasons
Ok, my dev envirement die, so i reinstalled everything on a new computer, and now it work, so :)