This question has been flagged

I'm upgrading a third party contract module to Odoo 13. While the process I'm stuck on this error:

 raise ValueError('External ID not found in the system: %s' % xmlid)
odoo.tools.convert.ParseError: "<class 'ValueError'>: "External ID not found in the system: account.group_account_move" while evaluating
"[(4, ref('account.group_account_move'))]"" while parsing /home/nizar/workspace/odoo/contract/contract/security/groups.xml:5, near
<odoo>

    <record id="can_terminate_contract" model="res.groups">
        <field name="name">Contract: Can Terminate Contracts</field>
        <field name="implied_ids" eval="[(4, ref('account.group_account_move'))]"/>
    </record>

</odoo>


Avatar
Discard
Best Answer

Hi,

The error says that there is no record with the external id  "account.group_account_move" in the Groups table.

so just remove that line from the code or adjust code accordingly .


Thanks

Avatar
Discard