Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 29 |
Technical Name |
ica_record_confirmation |
License | LGPL-3 |
Use Case
- In Odoo, Add your form view:
- will be show confirmation dialoag every record creation and write
<?xml version="1.0" encoding="UTF-8" ?> <odoo> <record id="view_partner_form" model="ir.ui.view"> <field name="name">view_partner_form</field> <field name="model">res.partner</field> <field name="inherit_id" ref="base.view_partner_form"/> <field name="arch" type="xml"> <xpath expr="//form" position="attributes"> <attribute name="js_class">show_confirmation_form_view</attribute> </xpath> </field> </record> </odoo>
Please log in to comment on this module