Skip to Content
Menu
This question has been flagged
1 Reply
790 Views

Hello ,

for example in project application when you try to rename a task and save the new name, your action will be written in the end of the page like this

  • Title: old name --> new name

 right?

 so how can i hide this details ?



Avatar
Discard
Best Answer

Hello rwzi,

Please find code in comment. 

I hope this will help you.

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Avatar
Discard

You can used bellow code..

class Task(models.Model):
_inherit = "project.task"

name = fields.Char(string='Title', tracking=False, required=True, index=True)

Related Posts Replies Views Activity
3
Feb 21
24797
2
May 24
474
1
Sep 23
3581
0
Jul 23
1507
4
Dec 22
6781