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?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
1
回复
2056
查看
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
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
0
2月 24
|
1685 | ||
|
2
10月 23
|
1880 | ||
|
2
6月 20
|
5499 | ||
|
0
8月 15
|
4063 | ||
|
1
6月 25
|
538 |