[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
This commit is contained in:
Joren Van Onder 2016-04-20 10:04:06 +02:00
parent 92f1cbeb6f
commit d043fd03ce
1 changed files with 1 additions and 1 deletions

View File

@ -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>