Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion product_pricelist/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
"name": "Pricelists information on Products",
"version": "19.0.1.0.0",
"version": "19.0.1.1.0",
"category": "Sales & Purchases",
"sequence": 14,
"author": "ADHOC SA",
Expand Down
7 changes: 5 additions & 2 deletions product_pricelist/views/product_template_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,18 @@
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<group name="description" position="before">
<field name="pricelist_rule_ids" position="before">
<field name="pricelist_ids" >
<list delete='false' create='false' edit="false" editable="top" options="{'no_open': True}">
<field name="name"/>
<field name="price"/>
<field name="currency_id" column_invisible="True"/>
</list>
</field>
</group>
</field>
<field name="pricelist_rule_ids" position="attributes">
<attribute name="invisible">1</attribute>
</field>
</field>
</record>
</odoo>