Hi, i i'am using a trace inside a functional field, but for some reason i see this trace 3 times each time change from one record to other and every time i load a record from tree_view
Here is the code is causing it.
Code:
def _test_fnct(self, cr, uid, ids, field_name, arg, context):
res = {}
print "Function trace"
return res
Code:
_columns = {
'fnct_field':fields.function(_test_fnct,type = 'binary',method = True,string='This is a test field'),
So I see
Quote:
Function trace
Function trace
Function trace
in the server terminal