I wanted to update default template user from xml, but due to no update=1 on the xml it is not updating. what is the best practice to update the template user?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
1
Répondre
5714
Vues
the best way to update the template user is to delete the template user using xml and create the same template user with your modification in it.
you can delete the user using
<delete id="auth_signup.default_template_user" model="res.users"/>
and create it again(make sure you use the proper ID)
<record id="auth_signup.default_template_user" model="res.users">
<field name="name">New Template User</field>
<field name="login">portaltemplate</field>
<field name="active" eval="False"/>
<field name="groups_id" eval="[(6, 0, [ref('base.group_portal')])]"/>
</record>
Hope this helps!
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
3
avr. 23
|
7320 | ||
|
3
nov. 15
|
5160 | ||
|
1
mars 25
|
1193 | ||
|
0
nov. 24
|
1431 | ||
|
0
juin 24
|
1489 |