This question has been flagged
1 Reply
3851 Views

Good day everyone!
I find a problem in Odoo 8 with tracking field ID (model project.task) by "track_visibility" parameter. I tried use
track_visibility="always" and track_visibility="onchange", but it's not work. Other fields tracking fine.

How can I track ID field in messages?

Avatar
Discard
Best Answer

An ID is a unique identifier or primary key for a record in a database. Changing id means removing that record from database. Hence you can't track it's visibility.

Avatar
Discard
Author

Thank you for your prompt response!

Is it possible to somehow rewrite the ID in another field and display it?

I just need to display the task number (ID) in notifications for users.

@Roman: why don't you simply add the "ID" field in the form view to show it?

Author

Thank you for response!

I already add "ID" on my form)

I need the "ID" along with other observable fields to be sent in notifications to users.