Hello guys,
I would like to add in projects something like this:
once task is moved in to "Done" column automatically send message to the assigned user (followers)
so I tried <attrib="{'invisible':[('stage_id','=','Done')]}"/> to hide/unhide followers which unhided should automatically send message to them.
BUT stage_id = 'Done' doesn't work.
I know I can set stage change for each of them (followers) but it's not what I want.
Any suggestions ?
I already tried this:
<div attrs="{'invisible': [('stage_id','=','Arrived')]}" class="oe_chatter">
<field name="message_ids" attrs="{'invisible': [('stage_id','=','Sorting')]}"/>
<field name="message_follower_ids" groups="base.group_user" attrs="{'invisible': [('stage_id','=','Finished')]}"/>
</div>