24 lines
687 B
XML
24 lines
687 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
© 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
<data>
|
|
|
|
<record id="view_order_form" model="ir.ui.view">
|
|
<field name="name">add.bom.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_quotation_send" position="before">
|
|
<button name="%(sale_add_phantom_bom_action)d" type="action"
|
|
string="Add Kit" states="draft,sent"/>
|
|
</button>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|