Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
5010 Lượt xem

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.??.

 

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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.

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Thanks You Chirag, Its Working Fine.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 8 25
435
2
thg 7 25
614
1
thg 7 25
556
2
thg 7 25
588
1
thg 6 25
597