diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/stock_account/views/res_config_settings_views.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/stock_account/views/res_config_settings_views.xml')
| -rw-r--r-- | addons/stock_account/views/res_config_settings_views.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/addons/stock_account/views/res_config_settings_views.xml b/addons/stock_account/views/res_config_settings_views.xml new file mode 100644 index 00000000..138461b8 --- /dev/null +++ b/addons/stock_account/views/res_config_settings_views.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <record id="res_config_settings_view_form" model="ir.ui.view"> + <field name="name">res.config.settings.view.form.inherit.stock.account</field> + <field name="model">res.config.settings</field> + <field name="inherit_id" ref="stock.res_config_settings_view_form"/> + <field name="arch" type="xml"> + <div id="production_lot_info" position="after"> + <h2>Valuation</h2> + <div class="row mt16 o_settings_container" name="valuation_setting_container"> + <div class="col-12 col-lg-6 o_setting_box" + id="additional_cost_setting" + title="Affect landed costs on reception operations and split them among products to update their cost price."> + <div class="o_setting_left_pane"> + <field name="module_stock_landed_costs"/> + </div> + <div class="o_setting_right_pane"> + <label for="module_stock_landed_costs"/> + <a href="https://www.odoo.com/documentation/14.0/applications/inventory_and_mrp/inventory/management/reporting/integrating_landed_costs.html" title="Documentation" class="o_doc_link" target="_blank"></a> + <div class="text-muted"> + Add additional cost (transport, customs, ...) in the value of the product. + </div> + <div class="content-group"> + <div name="landed_cost_info"/> + </div> + </div> + </div> + </div> + </div> + </field> + </record> + </data> +</odoo> |
