report_invoice.xml 411 B

1234567891011
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="point_of_sale.report_invoice_document" inherit_id="account.report_invoice_document">
  4. <xpath expr="//i[hasclass('oe_payment_label')]" position="inside">
  5. <t t-if="payment_vals.get('pos_payment_name')">
  6. using <t t-esc="payment_vals['pos_payment_name']" />
  7. </t>
  8. </xpath>
  9. </template>
  10. </odoo>