Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
4583 Widoki

I'm getting a parse error on my base.action.rule record and I don't understand why. It seems like it's well formatted XML. My whole document is this:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="rule_set_reminder_lead" model="base.action.rule">
            <field name="name">Trigger email scheduling when Order is set to confirm.</field>
            <field name="model_id" ref="sale.model_sale_order" />
            <field name="server_action_ids" eval="[(6,0,[ref('ir_actions_server_schedule_emails')])]" />
        </record>

        <record id="ir_actions_server_schedule_emails" model="ir.actions.server">
            <field name="state">code</field>
            <field name="model_id" ref="sale.model_sale_order"/>
            <field name="code">exit()</field>

            <field name="type">ir.actions.server</field>
            <field name="condition">True</field>
            <field name="name">Schedule Emails</field>
        </record>
    </data>
</openerp>

Any idea why?

Awatar
Odrzuć
Autor Najlepsza odpowiedź

The problem was that the Automated Action Rules module wasn't installed. It's really difficult to tell these things with the current error output.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
mar 25
1180
0
lis 24
1423
0
cze 24
1487
1
cze 24
1964
0
paź 23
2039