I want to hide the 2 buttons on opportunity view : 'Create Quotation' & 'Convert to Quotation' which are created by Xpath 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 do it ..??