mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-30 12:14:12 +02:00
14 lines
677 B
XML
14 lines
677 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="sale_task_view" model="ir.ui.view">
|
|
<field name="name">sale.order.inherit</field>
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//button[@name='preview_sale_order']" position="before">
|
|
<button type="object" name="action_view_task" attrs="{'invisible': [('state', 'not in',['sale','done'])]}" string='Field Services' class="oe_stat_button" icon="fa-align-justify" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|