You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
593 B

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <odoo>
  3. <template
  4. id="report_purchaseorder_document"
  5. inherit_id="purchase.report_purchaseorder_document"
  6. >
  7. <xpath expr="//table[1]/thead/tr//th[last()]" position="before">
  8. <th name="th_discount" class="text-right"><strong>Disc. (%)</strong></th>
  9. </xpath>
  10. <xpath expr="//td[span[@t-field='line.price_subtotal']]" position="before">
  11. <td name="td_discount" class="text-right">
  12. <span t-field="line.discount" />
  13. </td>
  14. </xpath>
  15. </template>
  16. </odoo>