[IMP] account_quotation_sale_order_invoice_title: add qweb reports

This commit is contained in:
clementthomas
2024-10-07 10:36:11 +02:00
parent 612d51d632
commit 76203c5387
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_invoice_document" inherit_id="account.report_invoice_document">
<xpath expr="//span[@t-field='o.name']" position="after">
<div t-field="o.move_title" />
</xpath>
</template>
</odoo>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_saleorder_document" inherit_id="sale.report_saleorder_document">
<xpath expr="//span[@t-field='doc.name']" position="after">
<div t-field="doc.so_title"></div>
</xpath>
</template>
</odoo>