Hi everybody!!!
Please, i have a many2one field defined like this:
'project_service' : fields.many2one('project_service', string= 'service'),
The problem is that when when i want to make print on this field i get "false" despite it was defined very well.
Is it empty or what please who can help
Thanks a lot in advance
For a many2one field, if no value is selected, it will return False. If there is any value for it, it displays the id of the selected record at the print statement.
I think syntax like 'project_service' : fields.many2one('project.service', string= 'service'), Try this one.