I want to hide the 2 buttons on opportunity view : 'Create Quotation' & 'Convert to Quotation' These 2 buttons are created using xpath from sale_crm (default odoo module) module not implemented directly on opportunity form view ..
And this is the code from sale_crm module
<xpath expr="//field[@name='stage_id']" position="before">
<button attrs="{'invisible': [('probability', '<', 100)]}"
string="Create Quotation" name="618" type="action"/>
<button attrs="{'invisible': [('probability', '=', 100)]}"
string="Convert to Quotation" name="618" type="action"
class="oe_highlight"/>
</xpath>
how can I hide them from my custom module