mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-29 11:44:04 +02:00
25 lines
860 B
XML
25 lines
860 B
XML
<?xml version="1.0"?>
|
|
<odoo>
|
|
<record id="res_config_sale_project" model="ir.ui.view">
|
|
<field name="name">res.config.sale.project</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="priority" eval="50"/>
|
|
<field name="inherit_id" ref="base.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@data-key='sale_management']//h2" position="before">
|
|
<h2>Project - Field Service Task</h2>
|
|
<div class="row mt16 o_settings_container" id="product_deposit">
|
|
<div class="col-xs-12 o_setting_box">
|
|
<group>
|
|
<field name="project_id" domain="[('is_fsm', '=', True)]" style="width:80%%"/>
|
|
</group>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|
|
|
|
|