Hi. I have a Many2One field and Multi line text field. I want to transfer record from Many2One fied to Multi line Text field when CheckBox is selected. Then when I change rercord in Many2One field and press CheckBox again I want the previous record t ostay and add a new one to the field. I'm using Studio and Compute function.
for record in self:
if record.x_studio_check_out:
record['x_studio_history_2']=record['x_studio_so'],record['x_studio_history_2']
But it gives me this in result
(project.task(53,), False) after first run and then (project.task(49,), '(project.task(53,), False)') after second Instead of showing value of the field SO
Any help is appreiciated as always