Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
2019 Weergaven

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
Annuleer
Beste antwoord

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
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
feb. 24
1645
2
okt. 23
1854
2
jun. 20
5437
0
aug. 15
4026
1
jun. 25
509