Skip to content
Snippets Groups Projects
Commit 94164834 authored by Ravi Patel's avatar Ravi Patel Committed by Yannick Tivisse
Browse files

[IMP] website_quote: Hide 'Unit Price' column from quote template line.

The unit price of the quote template lines is never be used anywhere

It is logical that pricelists determine the price of products and this
field is quite informative.
parent 49a9eba6
Branches
Tags
No related merge requests found
......@@ -80,7 +80,7 @@
<field
name="product_uom_qty" class="oe_inline"/>
</div>
<field name="price_unit"/>
<field name="price_unit" invisible="1"/>
<label for="discount" groups="sale.group_discount_per_so_line"/>
<div groups="sale.group_discount_per_so_line">
<field name="discount" class="oe_inline"/> %%
......@@ -104,7 +104,7 @@
<field name="product_uom_qty"/>
<field name="product_uom_id" groups="product.group_uom" on_change="product_uom_change(product_id, product_uom_id"/>
<field name="discount" groups="sale.group_discount_per_so_line"/>
<field name="price_unit"/>
<field name="price_unit" invisible="1"/>
<field name="website_description" invisible="1"/>
</tree>
</field>
......@@ -117,7 +117,7 @@
<field name="name"/>
<field name="quantity"/>
<field name="uom_id" groups="product.group_uom"/>
<field name="price_unit"/>
<field name="price_unit" invisible="1"/>
<field name="discount" groups="sale.group_discount_per_so_line"/>
<field name="website_description" invisible="1"/>
</tree>
......@@ -130,7 +130,7 @@
<field name="name"/>
<field name="quantity"/>
<field name="uom_id" groups="product.group_uom"/>
<field name="price_unit"/>
<field name="price_unit" invisible="1"/>
<field name="discount" groups="sale.group_discount_per_so_line"/>
<field name="website_description" invisible="1"/>
</tree>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment