ribbon del producto según configuraciones en la compañía cuando se actualizan los campos en distribución.
43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<!-- Copyright (C) 2022: Criptomart (https://criptomart.net)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -->
|
|
<odoo>
|
|
<data>
|
|
|
|
<record model="ir.ui.view" id="product_retail_cm_form_config">
|
|
<field name="name">product.template.reatil.form</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<field name="sale_ok" position="before">
|
|
<span>
|
|
<field name="in_distribution"/>
|
|
<label for="in_distribution" />
|
|
</span>
|
|
<span>
|
|
<field name="in_distribution_music"/>
|
|
<label for="in_distribution_music" />
|
|
</span>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
<!--Filter for products in distribution -->
|
|
<record id="view_product_search_form_inherit_distribution" model="ir.ui.view">
|
|
<field name="name">view.product.search.form.inherit.distribution</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_search_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//filter[@name='services']" position="before">
|
|
<separator/>
|
|
<filter string="En Distribución"
|
|
name="products_distribution_filter"
|
|
domain="['|',('in_distribution', '=', True),('in_distribution_music', '=', True)]"
|
|
help="Products sold to retailers."
|
|
icon="terp-project"
|
|
/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|