how to override the create function with the new api
I test this but does not work :
@api.one def create(self,vals): return super(<my_classe>,self).create(vals)
TypeError: create() takes exactly 2 arguments (1 given)
how to override the create function with the new api
I test this but does not work :
@api.one def create(self,vals): return super(<my_classe>,self).create(vals)
TypeError: create() takes exactly 2 arguments (1 given)
You use decorator @api.model.
@api.model
def create(self,vals):
....
return super(<my_classe>,self).create(vals)
Create an account today to enjoy exclusive features and engage with our awesome community!
Prijavi| Related Posts | Odgovori | Prikazi | Aktivnost | |
|---|---|---|---|---|
|
0
dec. 15
|
8852 | |||
|
5
nov. 15
|
7903 | |||
|
0
okt. 17
|
12238 | |||
|
1
feb. 16
|
6009 | |||
|
Compute field V8
Solved
|
3
avg. 15
|
20654 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.