I have created a new group I want when I create a new user by default should take the group that I have created. my code
<record id="category_account_move_journal" model="ir.module.category">
<field name="name">Journal Holder</field>
<field name="description">Category for Journal</field>
<field name="sequence">5 </field>
</record>
<record id="group_account_move_journal" model="res.groups">
<field name="name">See his Journals</field>
<field name="category_id" ref="category_account_move_journal"/>
<field name="implied_ids" eval="[(4,ref('base.group_user'))]"/>
</record>
<record id="group_account_move_manager_journal" model="res.groups">
<field name="name">See all Journals</field>
<field name="category_id" ref="category_account_move_journal"/>
<field name="implied_ids" eval="[(4,ref('group_account_move_journal'))]"/>
</record>
Odoo has a data record named "default_user" as a template for the newly created users.
An example of its use can be the
_default_groups
method in theres.user
model:So you need to inherit this template and add the desired groups and the new users will have your group.