[IMP] account_quotation_sale_order_invoice_title: add qweb reports
This commit is contained in:
@@ -60,6 +60,8 @@ This module is maintained by ELABORE.
|
||||
"data": [
|
||||
"views/sale_views.xml",
|
||||
"views/account_move_views.xml",
|
||||
"views/account_invoice_report.xml",
|
||||
"views/sale_order_report.xml",
|
||||
],
|
||||
"qweb": [],
|
||||
}
|
||||
|
@@ -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>
|
@@ -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>
|
Reference in New Issue
Block a user