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.
 
 
 
 
 

19 lines
1.1 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!--Hide print button in purchase.order-->
<record id="purchase_order_form" model="ir.ui.view">
<field name="name">purchase.order.view.form.inherit.hide.all.print.button</field>
<field name="inherit_id" ref="purchase.purchase_order_form"/>
<field name="model">purchase.order</field>
<field name="arch" type="xml">
<xpath expr="//button[@name='print_quotation' and @states='draft']" position="replace">
<button name="print_quotation" string="Print RFQ" type="object" states="draft"
class="oe_highlight" data-hotkey="k" groups="!hide_all_print_button.hide_all_print_button_group_purchase"/>
</xpath>
<xpath expr="//button[@name='print_quotation' and @states='sent']" position="replace">
<button name="print_quotation" string="Print RFQ" type="object" states="sent"
data-hotkey="k" groups="!hide_all_print_button.hide_all_print_button_group_purchase"/>
</xpath>
</field>
</record>
</odoo>