You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
1.5 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="sale_order_quotation_inherit" model="ir.ui.view">
<field name="name">sale.order.quotation.inherit</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_quotation_tree_with_onboarding"/>
<field name="arch" type="xml">
<xpath expr="//tree" position="inside">
<header>
<button class="btn-primary" name="action_multi_confirm" type="object"
string="Confirm Orders"/>
<button class="btn-secondary" name="action_multi_cancel" type="object"
string="Cancel Orders"/>
</header>
</xpath>
</field>
</record>
<record id="purchase_order_quotation_inherit" model="ir.ui.view">
<field name="name">purchase.order.quotation.inherit</field>
<field name="model">purchase.order</field>
<field name="inherit_id" ref="purchase.purchase_order_kpis_tree"/>
<field name="arch" type="xml">
<xpath expr="//tree" position="inside">
<header>
<button class="btn-primary" name="action_multi_confirm" type="object"
string="Confirm Orders"/>
<button class="btn-secondary" name="action_multi_cancel" type="object"
string="Cancel Orders"/>
</header>
</xpath>
</field>
</record>
</odoo>