Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
4997 Vizualizări

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

 

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Autor Cel mai bun răspuns

Thanks You Chirag, Its Working Fine.

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
aug. 25
434
2
iul. 25
612
1
iul. 25
556
2
iul. 25
587
1
iun. 25
596