Hi to all. Is it possible to change string label base on condition? I have function that will return something but before it return an object i want to change label of some fields kindd this one:
if state == 'approved':
self.write(cr,uid,ids,{
'temp_holder' : uid,
#but at the same time, i want to change the string label of temp_holder just like this: Approved by
})
Any help is very much appreciated.