store = []
for products in self.order_line:
store.append ((0,0, {'name': products.name, 'project_id': project_id,
'sale_order': products.id}))
for l in store:
self.env ['project.task']. create (l)
But i am getting this error: project_id = vals.get ('project_id') or self.env.context.get ('default_project_id')
Exception
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/odoo/http.py", line 639, in _handle_exception
return super (JsonRequest, self) ._ handle_exception (exception)
File "/usr/lib/python3/dist-packages/odoo/http.py", line 315, in _handle_exception
raise exception.with_traceback (None) from new_cause
AttributeError: 'int' object has no attribute 'get'
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
store.append ((0,0, {'name': products.name, 'project_id': project_id,
'sale_order': products.id}))
->store.append ((0,0, {'name': products.name, 'project_id': products.project_id,
'sale_order': products.id}))
I don't understand exactly the code that you posted, but I think that it is possible that the vals variable has the id of the project and it is a int variable without get method
How to use get method on int? Just simply tell how to create multiple task in existing project by code. I tried to fetch Id of existing project and then create task in it but I get this attribute error.
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
1
4月 24
|
3735 | ||
|
2
9月 23
|
3953 | ||
|
1
6月 23
|
4050 | ||
|
0
2月 22
|
2042 | ||
|
1
6月 21
|
4879 |