Hello,
I have a class "task" with one field "taskname".
_columns={
'taskname':fields.char('Task',size= 32 ,required=True),
}
I have also a relation to the task.
_columns={
'task_id':fields.many2one('gestion.tasks', 'Task', readonly=False, relate=True),
}
But in the view I have "model,id" and not the task name.
How can I show the taskname and not the ID in my view?
Thanks.