I want to modify the RFQ report and in that I wanted to call a python method from the Qweb report,
here is some sample code,
<span t-field ="o.my_custom_fuction()" />
and my python function is like
@api.model
def my_custom_function(self):
return "some_value"
But it is giving me error like qwebException : "my_custom_function()" while evaluating.
Any clue what I am missing?