report_purchaseorder.xml 602 B

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