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.
59 lines
2.9 KiB
59 lines
2.9 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Creating a session to the sale settings for creating the low sales report-->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.config.settings.view.form.inherit.low.sale.report
|
|
</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='invoicing_setting_container']"
|
|
position="after">
|
|
<h2 class="mt32">Low Sales Report</h2>
|
|
<div class="row mt16 o_settings_container"
|
|
name="low_sales_report_setting_container">
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="low_sale_report">
|
|
<div class="o_setting_right_pane">
|
|
<label for="product_type">Default Report Type
|
|
</label>
|
|
<div class="text-muted">
|
|
Define the default type for the low sales
|
|
report. Should analysis be made for product
|
|
templates in general or for product variants?
|
|
</div>
|
|
<field name="product_type"/>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="low_sale_report">
|
|
<div class="o_setting_right_pane">
|
|
<label for="absolute_qty">Default critical level
|
|
(absolute quantity)
|
|
</label>
|
|
<div class="text-muted">
|
|
Define the default critical level for sales
|
|
(default unit of measure),under which products
|
|
are considered poorly performing
|
|
</div>
|
|
<field name="absolute_qty"/>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="low_sale_report">
|
|
<div class="o_setting_right_pane">
|
|
<label for="analysed_period">Default analyzed period
|
|
</label>
|
|
<div class="text-muted">
|
|
Define which period should be analyzed by
|
|
default
|
|
</div>
|
|
<field name="analysed_period"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|