ADD module pos_usability

This commit is contained in:
David Beal
2019-10-11 15:12:21 +02:00
parent 1812c7f5af
commit fc4ea217e0
6 changed files with 488 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_saledetails" inherit_id="point_of_sale.report_saledetails">
<xpath expr="//table[3]/thead/tr/th[3]" position="after">
<th>Amount</th>
</xpath>
<xpath expr="//table[3]/tbody/tr" position="inside">
<td><t t-esc="tax['tax_amount'] + tax['base_amount']"
t-options="{'widget': 'float', 'precision': currency_precision}" /></td>
</xpath>
</template>
</odoo>