trytond-party_company/user.xml

23 lines
904 B
XML

<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="user_view_form">
<field name="model">res.user</field>
<field name="inherit" ref="res.user_view_form"/>
<field name="name">user_form</field>
</record>
<record model="res.user" id="user_party_company">
<field name="login">user_cron_party_company</field>
<field name="name">Cron User Company</field>
<field name="active" eval="False"/>
</record>
<record model="res.user-res.group" id="user_party_company_group_admin">
<field name="user" ref="user_party_company"/>
<field name="group" ref="res.group_admin"/>
</record>
</data>
</tryton>