Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
1699 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
0
úno 24
1341
2
říj 23
1504
2
čvn 20
5087
0
srp 15
3685
0
čvn 25
77