Skip to content
Snippets Groups Projects
Commit d043fd03 authored by Joren Van Onder's avatar Joren Van Onder
Browse files

[FIX] point_of_sale: display correct uom on weighable products

Everything's displayed fine on orderlines with weighable products, this
only affected the small blue labels on the products.

opw-674264
parent 92f1cbeb
No related branches found
No related tags found
No related merge requests found
......@@ -751,7 +751,7 @@
</t>
<t t-if="product.to_weight">
<span class="price-tag">
<t t-esc="widget.format_currency(product.price,'Product Price')+'/Kg'"/>
<t t-esc="widget.format_currency(product.price,'Product Price')+'/'+widget.pos.units_by_id[product.uom_id[0]].name"/>
</span>
</t>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment