İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
2137 Görünümler

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
Vazgeç
En İyi Yanıt

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
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
0
Şub 24
1738
2
Eki 23
1941
2
Haz 20
5576
0
Ağu 15
4181
1
Haz 25
672