Hello,
I am new to Odoo. How can I remove the "Duplicate" option from actions dropdown in the Employees app. I am using odoo 10.0.
Following is the link to the image for better understanding.
https://i.stack.imgur.com/IWypg.png
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello,
I am new to Odoo. How can I remove the "Duplicate" option from actions dropdown in the Employees app. I am using odoo 10.0.
Following is the link to the image for better understanding.
https://i.stack.imgur.com/IWypg.png
This is supported in Odoo 19 Studio:

Both for the Form View and the List View.
In inherited Form :
<xpath expr="//form" position="attributes">
<attribute name="duplicate">0</attribute>
</xpath>
Hi
Look This
https://apps.openerp.com/apps/modules/9.0/web_duplicate_visibility/
<record id="view_form_id" model="ir.ui.view">
<field name="name">view name</field>
<field name="model">my.model</field>
<field name="priority" eval="10"/>
<field name="arch" type="xml">
<form string="..." duplicate="0">
...
</form>
</field>
</record>Try to add
<form string="..." duplicate="0">
To your Form
https://www.youtube.com/watch?v=IoiailfpSFg
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
Aanmelden
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.