Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
5
回复
2779
查看
Hi,
You can override the create method, and you can update the values inside the vals variable and pass it.
@api.model
def create(self, vals):
# update vals as per the need and pass
result = super(ClassName, self).create(vals)
return result
Thanks
@Niyas Raphy thank you soo much for your help its solve my issue .... (y)
Hi Usman,
Use res instead of self and also you need to pass some context to avoid recurrent calling
By Using Following Code
if not res._context.get('block_call'):
You need to define your code insideWhile Calling Custom Create send Context like below codeself.with_context(block_call=True).create(values)
Thanks
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
0
4月 24
|
1917 | ||
|
0
12月 19
|
4613 | ||
|
5
12月 19
|
3716 | ||
|
0
8月 19
|
4 | ||
|
1
2月 19
|
6950 |
@Niyas Rephy yes
Please provide more description of what do you want to do
Hi, you are calling same create method inside the create method.