Files
odoo-usability/sale_confirm_wizard/sale_view.xml
2017-05-11 22:23:54 +02:00

26 lines
939 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
© 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<odoo>
<record id="view_order_form" model="ir.ui.view">
<field name="name">sale.confirm.wizard.sale_order_form</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<button name="action_confirm" type="object" states="draft" position="attributes">
<attribute name="type">action</attribute>
<attribute name="name">%(sale_confirm_action)d</attribute>
</button>
<button name="action_confirm" type="object" states="sent" position="attributes">
<attribute name="type">action</attribute>
<attribute name="name">%(sale_confirm_action)d</attribute>
</button>
</field>
</record>
</odoo>