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.
25 lines
1.5 KiB
25 lines
1.5 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="//app[@name='sale_management']" position="inside">
|
|
<block title="Low Sales Report">
|
|
<setting string="Default Report Type" help="Define the default type for the low sales report.
|
|
Should analysis be made for product templates in general or for product variants?">
|
|
<field name="product_type"/>
|
|
</setting>
|
|
<setting string="Default critical level (absolute quantity)" help="Define the default critical level for sales (default unit of measure),under which products are considered poorly performing">
|
|
<field name="absolute_qty"/>
|
|
</setting>
|
|
<setting string="Default analyzed period" help="Define which period should be analyzed by default">
|
|
<field name="analysed_period"/>
|
|
</setting>
|
|
</block>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|