Hello everyone,
I want to update the attribute value of existing transition record of standard module by inhierit or overriding functionality not from database level.
I faced a problem when i tried to update the attribute value of flow_stop field of activity.
What I want is :
I have added new transition which i want to call after last state/done of workflow which stops the flow of workflow.
So,
1) I have inherited xml record of that activity and set flow_stop to false does not impact anything.
2) I have update it from database than it works fine as i want but after updation of custom module in running database again it revert back to flow_stop to true what is the reason for it?
I have tried this one which doesn't work
<record id="sale.act_done" model="workflow.activity">
<field name="wkf_id" ref="sale.wkf_sale"/>
<field name="name">done</field>
<field name="flow_stop">False</field> <!-- False and 0 both tried -->
<field name="kind">function</field>
<field name="action">action_done()</field>
<field name="join_mode">AND</field>
</record>
How can I overcome this issue?
Any solution or guidance is highly appreciated
Thanks & Regards,
Anil