i want to hide the fields which already exist in same form !! can anyone help me
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
Hi,
You can try this code. if you need to remove the duplicates from the form view
<record id="view_order_form_duplicate" model="ir.ui.view">
<field name="name">sale.order.form.duplicate</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<form position="attributes">
<attribute name="string">Add the non duplicate string</attribute>
<attribute name="duplicate">false</attribute>
</form>
</field>
</record>
Hope it 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é | |
---|---|---|---|---|
|
2
mars 15
|
4534 | ||
How to hide fields?
Résolu
|
|
3
mars 15
|
28622 | |
|
3
mars 16
|
8595 | ||
|
1
mars 16
|
10179 | ||
|
2
mars 15
|
4082 |
i just tried like this .
<record id="view_order_form_duplicate" model="ir.ui.view">
<field name="name">sale.order.form.duplicate</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//form" position="attributes">
<attribute name="duplicate">False</attribute>
</xpath>
</field>
</record>
but its not working :(
please help me !!