añadido product_secuence y product_code_unique para crear secuencias de productos por categoría

related 6
This commit is contained in:
santiky 2021-08-08 14:53:02 +02:00
parent 46d66821ec
commit 4fe2e3d368
Signed by: snt
GPG key ID: A9FD34930EADBE71
73 changed files with 5643 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="res_config_settings_view_form" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.product</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="product.res_config_settings_view_form" />
<field name="arch" type="xml">
<div id="product_general_settings" position="inside">
<div class="col-12 col-lg-6 o_setting_box">
<div class="o_setting_left_pane">
<field name="use_parent_categories_to_determine_prefix" />
</div>
<div class="o_setting_right_pane">
<label for="use_parent_categories_to_determine_prefix"
string="Use parent categories to determine the prefix" />
<div class="text-muted">
Use parent categories to determine the prefix if the category
has no settings for the prefix.
</div>
</div>
</div>
</div>
</field>
</record>
</odoo>