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.
68 lines
3.4 KiB
68 lines
3.4 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.delivery
|
|
</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="sale.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@name='quotation_order_setting_container']"
|
|
position="after">
|
|
<h2>Sale Consignment</h2>
|
|
<div class="row mt16 o_settings_container"
|
|
name="consignment_order">
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="settings_consignment_order">
|
|
<div class="o_setting_left_pane">
|
|
<field name="group_consignment_order"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="group_consignment_order"/>
|
|
<div class="text-muted">
|
|
Enable the sale consignment order
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="settings_consignment_destination"
|
|
attrs="{'invisible': [('group_consignment_order', '!=', True)]}">
|
|
<div class="o_setting_right_pane">
|
|
<field name="location_dest_id"/>
|
|
<div class="text-muted">
|
|
Choose the product destination location.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="settings_consignment_product"
|
|
attrs="{'invisible': [('group_consignment_order', '!=', True)]}">
|
|
<div class="o_setting_left_pane">
|
|
<field name="consignment_product_only"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="consignment_product_only"/>
|
|
<div class="text-muted">
|
|
Enable product filtered in consignment by
|
|
consignment product.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="settings_consignment_customer"
|
|
attrs="{'invisible': [('group_consignment_order', '!=', True)]}">
|
|
<div class="o_setting_left_pane">
|
|
<field name="consignment_customer_only"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="consignment_customer_only"/>
|
|
<div class="text-muted">
|
|
Enable customer filtered in consignment by
|
|
consignment customer.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|