Buenas.
Estoy intentando hacer una menu conceptual para añadir un nuevo formato a factura que hereda del formato de factura de Odoo.
Adjunto el código
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data>
<report id="report_invoice_card"
string="Invoice Card"
model="account.invoice"
report_type="qweb-pdf"
name="custom_reports.report_invoice_card"
print_report_name="'A- %s' % (object.name)"
/>
<template id="report_invoice_card_document" inherit_id="account.report_invoice_document">
<xpath expr="//h2" position="replace">
<h2 class="mt16">
prueba
</h2>
</xpath>
</template>
<template id="report_invoice_card" inherit_id="account.report_invoice">
<xpath expr='//t[@t-call="account.report_invoice_document"]' position="replace">
<t t-call="custom_reports.report_invoice_card_document"
t-lang="o.partner_id.lang"/>
</xpath>
</template>
</data>
</odoo>