跳至内容
菜单
此问题已终结
2 回复
4993 查看

I want to inherit workflow based on user requirement.

For example original code

        <record id="t7" model="workflow.transition">
            <field name="act_from" ref="act_confirm"/>
            <field name="act_to" ref="act_draft"/>
            <field name="signal">draft</field>
            <field name="group_id" ref="base.group_hr_user"/>
        </record>

In the above code I want to comment the following line <field name="group_id" ref="base.group_hr_user"/> because the action for the following  tranisition only possible for user belongs to "Human Resource/Officer". I want to customize the following action to all users.

So that I inherited by following code,

        <record id="hr_expense.t7" model="workflow.transition">
            <field name="act_from" ref="hr_expense.act_confirm"/>
            <field name="act_to" ref="hr_expense.act_draft"/>
            <field name="signal">draft</field>
        </record>

After I update the following code in my customized module,It doesn't give what I want.Original code only running.

Is it possible to inherit workflow.??. Or I have to change in Original source code.??.

 

形象
丢弃
最佳答案

Hi Saravanan,

Please write down follwing record into your customized module to achive your objective.

<record id="hr_expense.t7" model="workflow.transition">

    <field name="act_from" ref="hr_expense.act_confirm"/>

    <field name="act_to" ref="hr_expense.act_draft"/>

     <field name="signal">draft</field>

    <field name="group_id" ref=""/>       

</record>

Note : When we use same ID into XML record at that time system will only update that record. So, you have to be specify the "group_id" with no group thats it.

形象
丢弃
编写者 最佳答案

Thanks You Chirag, Its Working Fine.

形象
丢弃
相关帖文 回复 查看 活动
1
8月 25
432
2
7月 25
612
1
7月 25
555
2
7月 25
586
1
6月 25
595