Skip to Content
Menú
This question has been flagged
1 Respondre
2022 Vistes

I created a project and I am creating several tasks under it, I need each task created to start its name with : Project Name - Task Name. I am using only Odoo studio and I don't need to do a customized module. Is there anyway to achieve this?

Avatar
Descartar
Best Answer

Hi

Since you are using Odoo Online, create an automated action to update the task name as Follow:


On creating a new record in Task(project.task), this automated action will trigger and update the Name of the Task.code:

record.write({
  'name': record.project_id.name + ' ' + '-' + ' ' +record.name
})


Hope it helps

Avatar
Descartar
Related Posts Respostes Vistes Activitat
0
de febr. 24
1648
2
d’oct. 23
1854
2
de juny 20
5438
0
d’ag. 15
4027
1
de juny 25
512