bemade-addons/bemade_hide_decimal_on_unit/views/sale.xml

16 lines
No EOL
634 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_saleorder_document_strip_decimal" inherit_id="sale.report_saleorder_document">
<td name="td_quantity" position="replace">
<td name="td_quantity" class="text-right">
<t t-if="int(line.product_uom_qty) == line.product_uom_qty">
<span t-esc="'%.0f' % line.product_uom_qty"/>
</t>
<t t-else="">
<span t-esc="line.product_uom_qty"/>
</t>
<span t-field="line.product_uom"/>
</td>
</td>
</template>
</odoo>